From 8844f3e5958b6ed8dfda89c670f46e5910199f11 Mon Sep 17 00:00:00 2001 From: BiancaIalangi Date: Sun, 4 May 2025 11:39:32 +0300 Subject: [PATCH 1/7] wasmer5 - check multiple wasmer imports --- framework/meta/src/cmd.rs | 1 + framework/meta/src/cmd/all.rs | 8 +++- framework/meta/src/cmd/cargo_toml.rs | 58 ++++++++++++++++++++++++++++ 3 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 framework/meta/src/cmd/cargo_toml.rs diff --git a/framework/meta/src/cmd.rs b/framework/meta/src/cmd.rs index 8dc9863398..70371c03dc 100644 --- a/framework/meta/src/cmd.rs +++ b/framework/meta/src/cmd.rs @@ -1,4 +1,5 @@ pub mod all; +pub mod cargo_toml; pub mod chain_simulator; pub mod code_report; pub mod info; diff --git a/framework/meta/src/cmd/all.rs b/framework/meta/src/cmd/all.rs index d44835bd0b..a360afc7c5 100644 --- a/framework/meta/src/cmd/all.rs +++ b/framework/meta/src/cmd/all.rs @@ -1,4 +1,7 @@ -use super::print_util::{print_all_command, print_all_count, print_all_index}; +use super::{ + cargo_toml::check_executor, + print_util::{print_all_command, print_all_count, print_all_index}, +}; use crate::{ cli::AllArgs, folder_structure::{dir_pretty_print, RelevantDirectories}, @@ -17,6 +20,9 @@ pub fn call_all_meta(args: &AllArgs) { fn perform_call_all_meta(path: &Path, ignore: &[String], raw_args: Vec) { let dirs = RelevantDirectories::find_all(path, ignore); + + check_executor(&dirs); + dir_pretty_print(dirs.iter_contract_crates(), "", &|_| {}); let num_contract_crates = dirs.iter_contract_crates().count(); diff --git a/framework/meta/src/cmd/cargo_toml.rs b/framework/meta/src/cmd/cargo_toml.rs new file mode 100644 index 0000000000..196993223a --- /dev/null +++ b/framework/meta/src/cmd/cargo_toml.rs @@ -0,0 +1,58 @@ +use std::collections::{HashMap, HashSet}; + +use serde::Deserialize; + +use crate::folder_structure::RelevantDirectories; + +const CARGO_TOML: &str = "Cargo.toml"; +const SCENARIO: &str = "multiversx-sc-scenario"; +const WASMER: &str = "wasmer"; + +#[derive(Debug, Deserialize)] +struct CargoToml { + #[serde(default, rename = "dev-dependencies")] + dev_dependencies: HashMap, +} + +#[derive(Debug, Deserialize)] +#[serde(untagged)] +#[allow(dead_code)] + +enum Dependency { + Simple(String), + Detailed(DependencyDetail), +} + +#[derive(Debug, Deserialize)] +struct DependencyDetail { + #[serde(default)] + pub features: Vec, +} + +pub fn check_executor(relevant_directories: &RelevantDirectories) { + let mut scenario_features: HashSet = HashSet::new(); + + for dir in relevant_directories.iter() { + let toml_dir = dir.path.join(CARGO_TOML); + let content = std::fs::read_to_string(toml_dir).unwrap(); + let cargo_toml_content: CargoToml = toml::from_str(&content).unwrap(); + let dependencies = &cargo_toml_content.dev_dependencies; + + if let Some(Dependency::Detailed(dependency)) = dependencies.get(SCENARIO) { + for feature in dependency.features.iter() { + if !scenario_features.contains(feature) { + scenario_features.insert(feature.clone()); + } + } + } + } + + let count = scenario_features + .iter() + .filter(|s| s.contains(WASMER)) + .count(); + + if count > 1 { + panic!("Cannot import two different executors: found multiple wasmer components"); + } +} From a1b903dee5c25e9913afbeab7c5a8e1556542e3f Mon Sep 17 00:00:00 2001 From: BiancaIalangi Date: Sun, 4 May 2025 11:42:44 +0300 Subject: [PATCH 2/7] remove empty line --- framework/meta/src/cmd/cargo_toml.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/framework/meta/src/cmd/cargo_toml.rs b/framework/meta/src/cmd/cargo_toml.rs index 196993223a..5d4480c568 100644 --- a/framework/meta/src/cmd/cargo_toml.rs +++ b/framework/meta/src/cmd/cargo_toml.rs @@ -17,7 +17,6 @@ struct CargoToml { #[derive(Debug, Deserialize)] #[serde(untagged)] #[allow(dead_code)] - enum Dependency { Simple(String), Detailed(DependencyDetail), From a01c45807be8fb6291d845be2e6e4e6551bbcde3 Mon Sep 17 00:00:00 2001 From: BiancaIalangi Date: Wed, 7 May 2025 11:36:02 +0300 Subject: [PATCH 3/7] check exec - impl cargo tree --- Cargo.lock | 63 + contracts/examples/adder/file.json | 160346 ++++++++++++++++++++++ contracts/examples/adder/file.txt | 211 + contracts/examples/multisig/file.json | 160821 +++++++++++++++++++++++ contracts/examples/multisig/file.txt | 841 + contracts/examples/multisig/file2.txt | 633 + framework/meta/Cargo.toml | 2 + framework/meta/src/cmd/all.rs | 217 +- 8 files changed, 323129 insertions(+), 5 deletions(-) create mode 100644 contracts/examples/adder/file.json create mode 100644 contracts/examples/adder/file.txt create mode 100644 contracts/examples/multisig/file.json create mode 100644 contracts/examples/multisig/file.txt create mode 100644 contracts/examples/multisig/file2.txt diff --git a/Cargo.lock b/Cargo.lock index 407757e7ec..aebe12034d 100755 --- a/Cargo.lock +++ b/Cargo.lock @@ -121,6 +121,12 @@ dependencies = [ "multiversx-sc-meta-lib", ] +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + [[package]] name = "android-tzdata" version = "0.1.1" @@ -531,6 +537,38 @@ version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" +[[package]] +name = "camino" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.19.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.12", +] + [[package]] name = "cc" version = "1.2.20" @@ -1486,6 +1524,12 @@ dependencies = [ "multiversx-sc-meta-lib", ] +[[package]] +name = "fixedbitset" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" + [[package]] name = "flate2" version = "1.1.1" @@ -2086,6 +2130,8 @@ version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" dependencies = [ + "allocator-api2", + "equivalent", "foldhash", "serde", ] @@ -3182,6 +3228,7 @@ name = "multiversx-sc-meta" version = "0.57.1" dependencies = [ "bip39", + "cargo_metadata", "clap", "colored 3.0.0", "common-path", @@ -3192,6 +3239,7 @@ dependencies = [ "multiversx-sc-meta-lib", "multiversx-sc-snippets", "pathdiff", + "petgraph", "reqwest", "ruplacer", "semver", @@ -3753,6 +3801,18 @@ version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" +[[package]] +name = "petgraph" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a98c6720655620a521dcc722d0ad66cd8afd5d86e34a89ef691c50b7b24de06" +dependencies = [ + "fixedbitset", + "hashbrown 0.15.2", + "indexmap 2.9.0", + "serde", +] + [[package]] name = "pin-project" version = "1.1.10" @@ -4843,6 +4903,9 @@ name = "semver" version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" +dependencies = [ + "serde", +] [[package]] name = "send-tx-repeat" diff --git a/contracts/examples/adder/file.json b/contracts/examples/adder/file.json new file mode 100644 index 0000000000..267db24c59 --- /dev/null +++ b/contracts/examples/adder/file.json @@ -0,0 +1,160346 @@ +{ + "packages": [ + { + "name": "Inflector", + "version": "0.11.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", + "license": "BSD-2-Clause", + "license_file": null, + "description": "Adds String based inflections for Rust. Snake, kebab, camel, sentence, class, title and table cases as well as ordinalize, deordinalize, demodulize, foreign key, and pluralize/singularize are supported as both traits and pure functions acting on String types.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "inflector", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/tests/lib.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "heavyweight" + ], + "heavyweight": [ + "regex", + "lazy_static" + ], + "lazy_static": [ + "dep:lazy_static" + ], + "regex": [ + "dep:regex" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Josh Teeter" + ], + "categories": [ + "text-processing", + "value-formatting" + ], + "keywords": [ + "pluralize", + "Inflector", + "camel", + "snake", + "inflection" + ], + "readme": "README.md", + "repository": "https://github.com/whatisinternet/inflector", + "homepage": "https://github.com/whatisinternet/inflector", + "documentation": "https://docs.rs/Inflector", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "abi-tester", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "abi_tester", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/src/abi_tester.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "abi_tester_abi_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/tests/abi_tester_abi_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "abi-tester-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "abi-tester", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "abi-tester-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "adder", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "adder", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/src/adder.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_unit_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_unit_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "adder-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "adder", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "adder-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "addr2line", + "version": "0.24.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A cross-platform symbolication library written in Rust, using `gimli`", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.3.21", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "wrap_help" + ], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cpp_demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "fallible-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gimli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.31.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "read" + ], + "target": null, + "registry": null + }, + { + "name": "memmap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "object", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.36.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "read", + "compression" + ], + "target": null, + "registry": null + }, + { + "name": "rustc-demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typed-arena", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "findshlibs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libtest-mimic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "addr2line", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "addr2line", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/src/bin/addr2line.rs", + "edition": "2018", + "required-features": [ + "bin" + ], + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "all": [ + "bin" + ], + "alloc": [ + "dep:alloc" + ], + "bin": [ + "loader", + "rustc-demangle", + "cpp_demangle", + "fallible-iterator", + "smallvec", + "dep:clap" + ], + "cargo-all": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "cpp_demangle": [ + "dep:cpp_demangle" + ], + "default": [ + "rustc-demangle", + "cpp_demangle", + "loader", + "fallible-iterator", + "smallvec" + ], + "fallible-iterator": [ + "dep:fallible-iterator" + ], + "loader": [ + "std", + "dep:object", + "dep:memmap2", + "dep:typed-arena" + ], + "rustc-demangle": [ + "dep:rustc-demangle" + ], + "rustc-dep-of-std": [ + "core", + "alloc", + "compiler_builtins", + "gimli/rustc-dep-of-std" + ], + "smallvec": [ + "dep:smallvec" + ], + "std": [ + "gimli/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "DWARF", + "debug", + "elf", + "symbolicate", + "atos" + ], + "readme": "README.md", + "repository": "https://github.com/gimli-rs/addr2line", + "homepage": null, + "documentation": "https://docs.rs/addr2line", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "adler2", + "version": "2.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", + "license": "0BSD OR MIT OR Apache-2.0", + "license_file": null, + "description": "A simple clean-room implementation of the Adler-32 checksum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "adler2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--cfg=docsrs" + ] + } + }, + "release": { + "no-dev-version": true, + "pre-release-commit-message": "Release {{version}}", + "tag-message": "{{version}}", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "replace": "## Unreleased\n\nNo changes.\n\n## [{{version}} - {{date}}](https://github.com/jonas-schievink/adler/releases/tag/v{{version}})\n", + "search": "## Unreleased\n" + }, + { + "file": "README.md", + "replace": "adler = \"{{version}}\"", + "search": "adler = \"[a-z0-9\\\\.-]+\"" + }, + { + "file": "src/lib.rs", + "replace": "https://docs.rs/adler/{{version}}", + "search": "https://docs.rs/adler/[a-z0-9\\.-]+" + } + ] + } + }, + "publish": null, + "authors": [ + "Jonas Schievink ", + "oyvindln " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "checksum", + "integrity", + "hash", + "adler32", + "zlib" + ], + "readme": "README.md", + "repository": "https://github.com/oyvindln/adler2", + "homepage": null, + "documentation": "https://docs.rs/adler2/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "aes", + "version": "0.8.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "aarch64" + ], + "target": "cfg(all(aes_armv8, target_arch = \"aarch64\"))", + "registry": null + }, + { + "name": "cpufeatures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(not(all(aes_armv8, target_arch = \"aarch64\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "aes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hazmat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/tests/hazmat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "hazmat": [], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "aes", + "rijndael", + "block-cipher" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/block-ciphers", + "homepage": null, + "documentation": "https://docs.rs/aes", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "ahash", + "version": "0.8.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A non-cryptographic hash function using AES-NI for high performance", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "atomic-polyfill", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "const-random", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.117", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pcg-mwc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "seahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.59", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.4", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.18.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ahash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "map_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/map_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nopanic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/nopanic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ahash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/map_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "atomic-polyfill": [ + "dep:atomic-polyfill", + "once_cell/atomic-polyfill" + ], + "compile-time-rng": [ + "const-random" + ], + "const-random": [ + "dep:const-random" + ], + "default": [ + "std", + "runtime-rng" + ], + "getrandom": [ + "dep:getrandom" + ], + "nightly-arm-aes": [], + "no-rng": [], + "runtime-rng": [ + "getrandom" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ], + "rustc-args": [ + "-C", + "target-feature=+aes" + ], + "rustdoc-args": [ + "-C", + "target-feature=+aes" + ] + } + } + }, + "publish": null, + "authors": [ + "Tom Kaitchuck " + ], + "categories": [ + "algorithms", + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "hasher", + "hashmap", + "aes", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/tkaitchuck/ahash", + "homepage": null, + "documentation": "https://docs.rs/ahash", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "aho-corasick", + "version": "1.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Fast multiple substring searching.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "aho_corasick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std", + "perf-literal" + ], + "logging": [ + "dep:log" + ], + "perf-literal": [ + "dep:memchr" + ], + "std": [ + "memchr?/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "string", + "search", + "text", + "pattern", + "multi" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/aho-corasick", + "homepage": "https://github.com/BurntSushi/aho-corasick", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "alloc-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmer-experimental" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "alloc_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/src/alloc_features_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "af_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/af_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "alloc_features_general_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_general_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "alloc_features_managed_buffer_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_managed_buffer_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "alloc_features_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "alloc_features_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "alloc-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "alloc-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "alloc-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "android-tzdata", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser for the Android-specific tzdata file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "android_tzdata", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android-tzdata-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android-tzdata-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RumovZ" + ], + "categories": [ + "date-and-time" + ], + "keywords": [ + "parser", + "android", + "timezone" + ], + "readme": "README.md", + "repository": "https://github.com/RumovZ/android-tzdata", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "android_system_properties", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Minimal Android system properties wrapper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.126", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "android_system_properties", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android_system_properties-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "time_zone", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android_system_properties-0.1.5/examples/time_zone.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android_system_properties-0.1.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "arm-linux-androideabi", + "armv7-linux-androideabi", + "aarch64-linux-android", + "i686-linux-android", + "x86_64-linux-android", + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Nicolas Silva " + ], + "categories": [], + "keywords": [ + "android" + ], + "readme": "README.md", + "repository": "https://github.com/nical/android_system_properties", + "homepage": "https://github.com/nical/android_system_properties", + "documentation": "https://docs.rs/android_system_properties", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "anstream", + "version": "0.6.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A simple cross platform library for writing colored text to a terminal.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle-parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle-query", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colorchoice", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is_terminal_polyfill", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.48", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf8parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "divan", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "owo-colors", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strip-ansi-escapes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle-wincon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dump-stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/examples/dump-stream.rs", + "edition": "2021", + "required-features": [ + "auto" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "query-stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/examples/query-stream.rs", + "edition": "2021", + "required-features": [ + "auto" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "strip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/strip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "wincon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/wincon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "auto": [ + "dep:anstyle-query" + ], + "default": [ + "auto", + "wincon" + ], + "test": [], + "wincon": [ + "dep:anstyle-wincon" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "strip", + "wincon" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "anstyle", + "version": "1.0.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "ANSI text styling", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dump-style", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/examples/dump-style.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "tag-prefix": "", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "anstyle-parse", + "version": "0.2.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parse ANSI Style Escapes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf8parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "codegenrs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "divan", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vte_generate_state_changes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle_parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "parselog", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/examples/parselog.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/benches/parse.rs", + "edition": "2021", + "required-features": [ + "utf8" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "core": [ + "dep:arrayvec" + ], + "default": [ + "utf8" + ], + "utf8": [ + "dep:utf8parse" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "vte" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "anstyle-query", + "version": "1.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Look up colored console capabilities", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Console", + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle_query", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "query", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/examples/query.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "cli", + "color", + "no-std", + "terminal", + "ansi" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "anstyle-wincon", + "version": "3.0.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.7", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Styling legacy Windows terminals", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.20.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Console", + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle_wincon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-wincon-3.0.7/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dump-wincon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-wincon-3.0.7/examples/dump-wincon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "set-wincon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-wincon-3.0.7/examples/set-wincon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-wincon-3.0.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-pc-windows-msvc" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "windows" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "anyhow", + "version": "1.0.98", + "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Flexible concrete Error type built on std::error::Error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.51", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.66", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anyhow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_autotrait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_autotrait.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_backtrace.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_boxed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_boxed.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_chain", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_chain.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_context", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_context.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_convert", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_convert.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_downcast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_downcast.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ensure", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_ensure.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ffi", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_ffi.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_fmt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_repr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_repr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_source", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_source.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "backtrace": [ + "dep:backtrace" + ], + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns", + "no-std" + ], + "keywords": [ + "error", + "error-handling" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/anyhow", + "homepage": null, + "documentation": "https://docs.rs/anyhow", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.39" + }, + { + "name": "anymap2", + "version": "0.13.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A safe and convenient store for one value of each type", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anymap2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Chris Morgan ", + "Azriel Hoh " + ], + "categories": [], + "keywords": [ + "container", + "data-structure", + "map" + ], + "readme": "README.md", + "repository": "https://github.com/azriel91/anymap2", + "homepage": null, + "documentation": "https://docs.rs/anymap2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "arbitrary", + "version": "1.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#arbitrary@1.4.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The trait for generating structured data from unstructured data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "derive_arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "exhaustigen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "arbitrary", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "derive_enum", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/examples/derive_enum.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bound", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/tests/bound.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/tests/derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/tests/path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "derive": [ + "derive_arbitrary" + ], + "derive_arbitrary": [ + "dep:derive_arbitrary" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust-Fuzz Project Developers", + "Nick Fitzgerald ", + "Manish Goregaokar ", + "Simonas Kazlauskas ", + "Brian L. Troutwine ", + "Corey Farwell " + ], + "categories": [ + "development-tools::testing" + ], + "keywords": [ + "arbitrary", + "testing" + ], + "readme": "README.md", + "repository": "https://github.com/rust-fuzz/arbitrary/", + "homepage": null, + "documentation": "https://docs.rs/arbitrary/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "arrayvec", + "version": "0.7.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "arrayvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "borsh", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/borsh.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "arraystring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/benches/arraystring.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "extend", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/benches/extend.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "borsh": [ + "dep:borsh" + ], + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "borsh", + "serde", + "zeroize" + ] + } + }, + "release": { + "no-dev-version": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "stack", + "vector", + "array", + "data-structure", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/bluss/arrayvec", + "homepage": null, + "documentation": "https://docs.rs/arrayvec/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.51" + }, + { + "name": "atomic-waker", + "version": "1.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A synchronization primitive for task wakeup", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "cargo_bench_support" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "atomic_waker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/tests/basic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "waker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/benches/waker.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "portable-atomic": [ + "dep:portable-atomic" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Stjepan Glavina ", + "Contributors to futures-rs" + ], + "categories": [ + "asynchronous", + "concurrency" + ], + "keywords": [ + "waker", + "notify", + "wake", + "futures", + "async" + ], + "readme": "README.md", + "repository": "https://github.com/smol-rs/atomic-waker", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "autocfg", + "version": "1.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Automatic cfg for Rust compiler features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "autocfg", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "integers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/integers.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "nightly", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/nightly.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "paths", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/paths.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/traits.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "versions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/versions.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/no_std.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rustflags", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/rustflags.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wrappers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/wrappers.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Josh Stone " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "rustc", + "build", + "autoconf" + ], + "readme": "README.md", + "repository": "https://github.com/cuviper/autocfg", + "homepage": null, + "documentation": "https://docs.rs/autocfg/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.0" + }, + { + "name": "backtrace", + "version": "0.3.74", + "id": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library to acquire a stack trace (backtrace) at runtime in a Rust program.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cpp_demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "rustc-demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "libloading", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "addr2line", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.24.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.156", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", + "registry": null + }, + { + "name": "object", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.36.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "read_core", + "elf", + "macho", + "pe", + "xcoff", + "unaligned", + "archive" + ], + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", + "registry": null + }, + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/examples/backtrace.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "raw", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/examples/raw.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accuracy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/accuracy/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "concurrent-panics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/concurrent-panics.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "current-exe-mismatch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/current-exe-mismatch.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "long_fn_name", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/long_fn_name.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sgx-image-base", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/sgx-image-base.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "skip_inner_frames", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/skip_inner_frames.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/smoke.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/benches/benchmarks.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "coresymbolication": [], + "cpp_demangle": [ + "dep:cpp_demangle" + ], + "dbghelp": [], + "default": [ + "std" + ], + "dl_iterate_phdr": [], + "dladdr": [], + "kernel32": [], + "libunwind": [], + "serde": [ + "dep:serde" + ], + "serialize-serde": [ + "serde" + ], + "std": [], + "unix-backtrace": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/backtrace-rs", + "homepage": "https://github.com/rust-lang/backtrace-rs", + "documentation": "https://docs.rs/backtrace", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "base64", + "version": "0.22.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "encodes and decodes base64 as bytes or utf8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rstest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rstest_reuse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "base64", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "base64", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/examples/base64.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/tests/encode.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/tests/tests.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/benches/benchmarks.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Marshall Pierce " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "base64", + "utf8", + "encode", + "decode", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/marshallpierce/rust-base64", + "homepage": null, + "documentation": "https://docs.rs/base64", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.48.0" + }, + { + "name": "base64ct", + "version": "1.7.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of\ndata-dependent branches/LUTs and thereby provides portable \"best effort\"\nconstant-time operation and embedded-friendly no_std support\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "base64ct", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bcrypt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/bcrypt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crypt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/crypt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proptests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/proptests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "shacrypt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/shacrypt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "standard", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/standard.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "url", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/url.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "encoding", + "no-std", + "parser-implementations" + ], + "keywords": [ + "crypto", + "base64", + "pem", + "phc" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats", + "homepage": "https://github.com/RustCrypto/formats/tree/master/base64ct", + "documentation": "https://docs.rs/base64ct", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "basic-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "basic_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/src/basic_features_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_big_num_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_big_num_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_egld_decimal_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_egld_decimal_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_is_builtin_function_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_is_builtin_function_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_managed_buffer_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_buffer_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_managed_decimal_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_decimal_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_managed_option_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_option_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_managed_vec_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_vec_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_ordered_binary_tree_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_ordered_binary_tree_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_sparse_array_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_sparse_array_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_storage_mapper_get_at_address_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_storage_mapper_get_at_address_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_timelock_mapper_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_timelock_mapper_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_token_identifier_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_token_identifier_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "basic-features-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "basic-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "system-sc-interact", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls" + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "basic_features_interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/src/bf_interact.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "basic-features-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/src/bf_interact_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bf_interact_cs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/tests/bf_interact_cs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "basic-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "basic-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "basic-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "basic-interactor", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "adder", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "basic_interactor", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/src/basic_interactor.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "basic-interactor", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/src/basic_interactor_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_interactor_cs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/tests/basic_interactor_cs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bech32", + "version": "0.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "license": "MIT", + "license_file": null, + "description": "Encodes and decodes the Bech32 format and implements the bech32 and bech32m checksums", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bech32", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bip_173_test_vectors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/tests/bip_173_test_vectors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bip_350_test_vectors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/tests/bip_350_test_vectors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Clark Moody", + "Andrew Poelstra", + "Tobin Harding" + ], + "categories": [ + "encoding", + "cryptography::cryptocurrencies" + ], + "keywords": [ + "base32", + "encoding", + "bech32", + "bitcoin", + "cryptocurrency" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/rust-bech32", + "homepage": null, + "documentation": "https://docs.rs/bech32/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "benchmark-common", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "benchmark_common", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "big-float-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "big_float_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/src/big_float_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_float_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/tests/big_float_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_float_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/tests/big_float_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "big-float-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "big-float-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "big-float-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bincode", + "version": "1.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "license": "MIT", + "license_file": null, + "description": "A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.63", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.27", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bincode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/tests/test.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "i128": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ty Overby ", + "Francesco Mazzoli ", + "David Tolnay ", + "Zoey Riordan " + ], + "categories": [ + "encoding", + "network-programming" + ], + "keywords": [ + "binary", + "encode", + "decode", + "serialize", + "deserialize" + ], + "readme": "./readme.md", + "repository": "https://github.com/servo/bincode", + "homepage": null, + "documentation": "https://docs.rs/bincode", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bindgen", + "version": "0.70.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Automatically generates Rust FFI bindings to C and C++ libraries.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "annotate-snippets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "color" + ], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cexpr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clang-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "clang_6_0" + ], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.10, <0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "prettyplease", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "verbatim" + ], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "unicode-perl" + ], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shlex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits", + "visit-mut" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bindgen", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "__cli": [], + "__testing_only_extra_assertions": [], + "__testing_only_libclang_16": [], + "__testing_only_libclang_9": [], + "default": [ + "logging", + "prettyplease", + "runtime" + ], + "experimental": [ + "dep:annotate-snippets" + ], + "logging": [ + "dep:log" + ], + "prettyplease": [ + "dep:prettyplease" + ], + "runtime": [ + "clang-sys/runtime" + ], + "static": [ + "clang-sys/static" + ], + "which-rustfmt": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "experimental" + ] + } + }, + "release": { + "pre-release-hook": [ + "../node_modules/doctoc/doctoc.js", + "../CHANGELOG.md" + ], + "release": true, + "pre-release-replacements": [ + { + "file": "../CHANGELOG.md", + "replace": "# Unreleased\n## Added\n## Changed\n## Removed\n## Fixed\n## Security\n\n# {{version}} ({{date}})", + "search": "# Unreleased" + } + ] + } + }, + "publish": null, + "authors": [ + "Jyun-Yan You ", + "Emilio Cobos Álvarez ", + "Nick Fitzgerald ", + "The Servo project developers" + ], + "categories": [ + "external-ffi-bindings", + "development-tools::ffi" + ], + "keywords": [ + "bindings", + "ffi", + "code-generation" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/rust-bindgen", + "homepage": "https://rust-lang.github.io/rust-bindgen/", + "documentation": "https://docs.rs/bindgen", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.70.0" + }, + { + "name": "bip39", + "version": "2.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "license": "CC0-1.0", + "license_file": null, + "description": "Library for BIP-39 Bitcoin mnemonic codes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitcoin_hashes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.12, <=0.13", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.6.0, <0.9.0", + "kind": null, + "rename": "crate_rand", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.4.0, <0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "unicode-normalization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.1.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "zeroize_derive" + ], + "target": null, + "registry": null + }, + { + "name": "bitcoin_hashes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.12, <0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bip39", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "all-languages": [ + "chinese-simplified", + "chinese-traditional", + "czech", + "french", + "italian", + "japanese", + "korean", + "portuguese", + "spanish" + ], + "alloc": [ + "unicode-normalization" + ], + "chinese-simplified": [], + "chinese-traditional": [], + "crate_rand": [ + "dep:crate_rand" + ], + "czech": [], + "default": [ + "std" + ], + "french": [], + "italian": [], + "japanese": [], + "korean": [], + "portuguese": [], + "rand": [ + "crate_rand", + "rand_core" + ], + "rand_core": [ + "dep:rand_core" + ], + "serde": [ + "dep:serde" + ], + "spanish": [], + "std": [ + "alloc", + "serde/std", + "unicode-normalization/std" + ], + "unicode-normalization": [ + "dep:unicode-normalization" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Steven Roose " + ], + "categories": [], + "keywords": [ + "crypto", + "bitcoin", + "bip39", + "mnemonic" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/rust-bip39/", + "homepage": "https://github.com/rust-bitcoin/rust-bip39/", + "documentation": "https://docs.rs/bip39/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitcoin-internals", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", + "license": "CC0-1.0", + "license_file": null, + "description": "Internal types and macros used by rust-bitcoin ecosystem", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitcoin_internals", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Poelstra ", + "The Rust Bitcoin developers" + ], + "categories": [ + "cryptography::cryptocurrencies" + ], + "keywords": [ + "internal" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/rust-bitcoin/", + "homepage": null, + "documentation": "https://docs.rs/bitcoin-internals", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitcoin_hashes", + "version": "0.13.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", + "license": "CC0-1.0", + "license_file": null, + "description": "Hash functions used by the rust-bitcoin eccosystem", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "core2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": "actual-core2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-conservative", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": "hex", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitcoin-internals", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": "internals", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "wasm32-unknown-unknown", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitcoin_hashes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin_hashes-0.13.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "actual-core2": [ + "dep:actual-core2" + ], + "alloc": [ + "internals/alloc", + "hex/alloc" + ], + "core2": [ + "actual-core2", + "hex/core2" + ], + "default": [ + "std" + ], + "schemars": [ + "dep:schemars" + ], + "serde": [ + "dep:serde" + ], + "serde-std": [ + "serde/std" + ], + "small-hash": [], + "std": [ + "alloc", + "internals/std", + "hex/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin_hashes-0.13.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Poelstra " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "crypto", + "bitcoin", + "hash", + "digest" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/rust-bitcoin", + "homepage": null, + "documentation": "https://docs.rs/bitcoin_hashes/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitflags", + "version": "1.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A macro to generate structures which behave like bitflags.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitflags", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/tests/basic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/tests/compile.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [], + "example_generated": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "example_generated" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "no-std" + ], + "keywords": [ + "bit", + "bitmask", + "bitflags", + "flags" + ], + "readme": "README.md", + "repository": "https://github.com/bitflags/bitflags", + "homepage": "https://github.com/bitflags/bitflags", + "documentation": "https://docs.rs/bitflags", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitflags", + "version": "2.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A macro to generate structures which behave like bitflags.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.19", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitflags", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_bits_type", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/custom_bits_type.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/custom_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/fmt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "macro_free", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/macro_free.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/benches/parse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "bytemuck": [ + "dep:bytemuck" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "example_generated": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "example_generated" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "no-std" + ], + "keywords": [ + "bit", + "bitmask", + "bitflags", + "flags" + ], + "readme": "README.md", + "repository": "https://github.com/bitflags/bitflags", + "homepage": "https://github.com/bitflags/bitflags", + "documentation": "https://docs.rs/bitflags", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "block-buffer", + "version": "0.10.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Buffer type for block processing of data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "block_buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "block", + "buffer" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/block-buffer", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bonding-curve-contract", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bonding_curve_contract", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/src/bonding_curve_contract.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bonding_curve_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/tests/bonding_curve_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bonding_curve_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/tests/bonding_curve_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bonding-curve-contract-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "bonding-curve-contract", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "bonding-curve-contract-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "boolinator", + "version": "2.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Provides the Boolinator trait, which lets you use Option and Result-style combinators with bools.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "boolinator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/boolinator-2.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/boolinator-2.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Daniel Keep " + ], + "categories": [], + "keywords": [ + "bool", + "combinator", + "monad", + "serious" + ], + "readme": "README.md", + "repository": "https://github.com/DanielKeep/rust-boolinator", + "homepage": null, + "documentation": "https://danielkeep.github.io/rust-boolinator/doc/boolinator/index.html", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bstr", + "version": "1.12.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A string type that is not required to be valid UTF-8.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "dfa-search" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.85", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ucd-parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-segmentation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bstr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "graphemes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/graphemes.rs", + "edition": "2021", + "required-features": [ + "std", + "unicode" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "graphemes-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/graphemes-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lines", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/lines.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lines-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/lines-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "uppercase", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/uppercase.rs", + "edition": "2021", + "required-features": [ + "std", + "unicode" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "uppercase-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/uppercase-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "words", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/words.rs", + "edition": "2021", + "required-features": [ + "std", + "unicode" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "words-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/words-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "memchr/alloc", + "serde?/alloc" + ], + "default": [ + "std", + "unicode" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc", + "memchr/std", + "serde?/std" + ], + "unicode": [ + "dep:regex-automata" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "text-processing", + "encoding" + ], + "keywords": [ + "string", + "str", + "byte", + "bytes", + "text" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/bstr", + "homepage": "https://github.com/BurntSushi/bstr", + "documentation": "https://docs.rs/bstr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.73" + }, + { + "name": "builtin-func-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "builtin_func_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/src/builtin_func_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_transfer_promise_blackbox_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/tests/esdt_transfer_promise_blackbox_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_transfer_promise_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/tests/esdt_transfer_promise_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "builtin-func-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "builtin-func-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "builtin-func-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bumpalo", + "version": "3.17.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A fast bump allocation arena for Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "allocator-api2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.171", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.115", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bumpalo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.17.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "allocator-api2": [ + "dep:allocator-api2" + ], + "allocator_api": [], + "boxed": [], + "collections": [], + "default": [], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.17.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Nick Fitzgerald " + ], + "categories": [ + "memory-management", + "rust-patterns", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/fitzgen/bumpalo", + "homepage": null, + "documentation": "https://docs.rs/bumpalo", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71.1" + }, + { + "name": "bytecheck", + "version": "0.6.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "license": "MIT", + "license_file": null, + "description": "Derive macro for bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytecheck_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "simdutf8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bytecheck", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "simdutf8", + "std" + ], + "simdutf8": [ + "dep:simdutf8" + ], + "std": [ + "ptr_meta/std", + "bytecheck_derive/std", + "simdutf8/std" + ], + "uuid": [ + "dep:uuid" + ], + "verbose": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "bytecheck", + "validation", + "zero-copy", + "rkyv" + ], + "readme": "crates-io.md", + "repository": "https://github.com/djkoloski/bytecheck", + "homepage": null, + "documentation": "https://docs.rs/bytecheck", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bytecheck", + "version": "0.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "license": "MIT", + "license_file": null, + "description": "Memory validation framework for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytecheck_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rancor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "simdutf8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "uuid-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bytecheck", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.8.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "simdutf8" + ], + "simdutf8": [ + "dep:simdutf8" + ], + "uuid-1": [ + "dep:uuid-1" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.8.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "no_std", + "validation", + "serialization" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/bytecheck", + "homepage": null, + "documentation": "https://docs.rs/bytecheck", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "bytecheck_derive", + "version": "0.6.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", + "license": "MIT", + "license_file": null, + "description": "Derive macro for bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "bytecheck_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.6.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.6.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/djkoloski/bytecheck", + "homepage": null, + "documentation": "https://docs.rs/bytecheck_derive", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bytecheck_derive", + "version": "0.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", + "license": "MIT", + "license_file": null, + "description": "Derive macro for bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "full", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "bytecheck_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.8.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.8.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "no_std", + "validation", + "serialization" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/bytecheck", + "homepage": null, + "documentation": "https://docs.rs/bytecheck_derive", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "byteorder", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Library for reading/writing numbers in big-endian and little-endian.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "byteorder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "i128": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "encoding", + "parsing", + "no-std" + ], + "keywords": [ + "byte", + "endian", + "big-endian", + "little-endian", + "binary" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/byteorder", + "homepage": "https://github.com/BurntSushi/byteorder", + "documentation": "https://docs.rs/byteorder", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "bytes", + "version": "1.10.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "license": "MIT", + "license_file": null, + "description": "Types and traits for working with bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": "extra-platforms", + "optional": true, + "uses_default_features": false, + "features": [ + "require-cas" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_buf.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_buf_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_buf_mut.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_bytes_odd_alloc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes_odd_alloc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_bytes_vec_alloc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes_vec_alloc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_chain", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_chain.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_debug.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_iter.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_reader", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_reader.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_take", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_take.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/buf.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bytes_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/bytes_mut.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "extra-platforms": [ + "dep:extra-platforms" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Carl Lerche ", + "Sean McArthur " + ], + "categories": [ + "network-programming", + "data-structures" + ], + "keywords": [ + "buffers", + "zero-copy", + "io" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/bytes", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.39" + }, + { + "name": "cc", + "version": "1.2.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "jobserver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.30", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shlex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.62", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.20/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "jobserver": [], + "parallel": [ + "dep:libc", + "dep:jobserver" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.20/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "build-dependencies" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/cc-rs", + "homepage": "https://github.com/rust-lang/cc-rs", + "documentation": "https://docs.rs/cc", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "cexpr", + "version": "0.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "A C expression parser and evaluator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "nom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "clang-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.13.0, <0.29.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cexpr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "clang", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/tests/clang.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jethro Beekman " + ], + "categories": [], + "keywords": [ + "C", + "expression", + "parser" + ], + "readme": null, + "repository": "https://github.com/jethrogb/rust-cexpr", + "homepage": null, + "documentation": "https://docs.rs/cexpr/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "cfg-if", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cfg_if", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "xcrate", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/tests/xcrate.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/cfg-if", + "homepage": "https://github.com/alexcrichton/cfg-if", + "documentation": "https://docs.rs/cfg-if", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "check-pause", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "check_pause", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/src/check_pause.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "check-pause-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "check-pause", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "check-pause-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "child", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "child", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "child-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "child", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "child-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "chrono", + "version": "0.4.41", + "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Date and time library for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pure-rust-locales", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.43", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.99", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "similar-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "android-tzdata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"android\")", + "registry": null + }, + { + "name": "iana-time-zone", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.45", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "fallback" + ], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-link", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.61", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "chrono", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dateutils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/dateutils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wasm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/wasm.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "win_bindings", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/win_bindings.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__internal_bench": [], + "alloc": [], + "android-tzdata": [ + "dep:android-tzdata" + ], + "arbitrary": [ + "dep:arbitrary" + ], + "clock": [ + "winapi", + "iana-time-zone", + "android-tzdata", + "now" + ], + "default": [ + "clock", + "std", + "oldtime", + "wasmbind" + ], + "iana-time-zone": [ + "dep:iana-time-zone" + ], + "js-sys": [ + "dep:js-sys" + ], + "libc": [], + "now": [ + "std" + ], + "oldtime": [], + "pure-rust-locales": [ + "dep:pure-rust-locales" + ], + "rkyv": [ + "dep:rkyv", + "rkyv/size_32" + ], + "rkyv-16": [ + "dep:rkyv", + "rkyv?/size_16" + ], + "rkyv-32": [ + "dep:rkyv", + "rkyv?/size_32" + ], + "rkyv-64": [ + "dep:rkyv", + "rkyv?/size_64" + ], + "rkyv-validation": [ + "rkyv?/validation" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ], + "unstable-locales": [ + "pure-rust-locales" + ], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ], + "wasmbind": [ + "wasm-bindgen", + "js-sys" + ], + "winapi": [ + "windows-link" + ], + "windows-link": [ + "dep:windows-link" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arbitrary", + "rkyv", + "serde", + "unstable-locales" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "date-and-time" + ], + "keywords": [ + "date", + "time", + "calendar" + ], + "readme": "README.md", + "repository": "https://github.com/chronotope/chrono", + "homepage": "https://github.com/chronotope/chrono", + "documentation": "https://docs.rs/chrono/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.62.0" + }, + { + "name": "cipher", + "version": "0.4.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Traits for describing block ciphers and stream ciphers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "blobby", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crypto-common", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "inout", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cipher", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "blobby": [ + "dep:blobby" + ], + "block-padding": [ + "inout/block-padding" + ], + "dev": [ + "blobby" + ], + "rand_core": [ + "crypto-common/rand_core" + ], + "std": [ + "alloc", + "crypto-common/std", + "inout/std" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "block-cipher", + "stream-cipher", + "trait" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits", + "homepage": null, + "documentation": "https://docs.rs/cipher", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "clang-sys", + "version": "1.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", + "license": "Apache-2.0", + "license_file": null, + "description": "Rust bindings for libclang.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libloading", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=3.0.0, <3.7.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clang_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/tests/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "clang_10_0": [ + "clang_9_0" + ], + "clang_11_0": [ + "clang_10_0" + ], + "clang_12_0": [ + "clang_11_0" + ], + "clang_13_0": [ + "clang_12_0" + ], + "clang_14_0": [ + "clang_13_0" + ], + "clang_15_0": [ + "clang_14_0" + ], + "clang_16_0": [ + "clang_15_0" + ], + "clang_17_0": [ + "clang_16_0" + ], + "clang_18_0": [ + "clang_17_0" + ], + "clang_3_5": [], + "clang_3_6": [ + "clang_3_5" + ], + "clang_3_7": [ + "clang_3_6" + ], + "clang_3_8": [ + "clang_3_7" + ], + "clang_3_9": [ + "clang_3_8" + ], + "clang_4_0": [ + "clang_3_9" + ], + "clang_5_0": [ + "clang_4_0" + ], + "clang_6_0": [ + "clang_5_0" + ], + "clang_7_0": [ + "clang_6_0" + ], + "clang_8_0": [ + "clang_7_0" + ], + "clang_9_0": [ + "clang_8_0" + ], + "libcpp": [], + "libloading": [ + "dep:libloading" + ], + "runtime": [ + "libloading" + ], + "static": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "clang_18_0", + "runtime" + ] + } + } + }, + "publish": null, + "authors": [ + "Kyle Mayes " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/KyleMayes/clang-sys", + "homepage": null, + "documentation": "https://docs.rs/clang-sys", + "edition": "2021", + "links": "clang", + "default_run": null, + "rust_version": null + }, + { + "name": "clap", + "version": "4.5.37", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "clap_builder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=4.5.37", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=4.5.32", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap-cargo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.15", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shlex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "term-svg" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.91", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trycmd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "color-auto", + "diff", + "examples" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "stdio-fixture", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/src/bin/stdio-fixture.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "01_quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/01_quick.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "01_quick_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/01_quick.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_app_settings", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_app_settings.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_app_settings_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_app_settings.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_apps", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_apps.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_apps_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_apps.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_crate", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_crate.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_crate_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_crate.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_bool", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_01_flag_bool.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_bool_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_01_flag_bool.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_count", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_01_flag_count.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_count_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_01_flag_count.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_02_option.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_02_option.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option_mult", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_02_option_mult.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option_mult_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_02_option_mult.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_03_positional.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_03_positional.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional_mult", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_03_positional_mult.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional_mult_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_03_positional_mult.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_04_subcommands", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_04_subcommands.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_04_subcommands_alt_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_04_subcommands_alt.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_04_subcommands_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_04_subcommands.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_05_default_values", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_05_default_values.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_05_default_values_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_05_default_values.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_06_optional_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_06_optional.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_06_required", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_06_required.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_01_enum", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_01_enum.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_01_enum_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_01_enum.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_01_possible", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_01_possible.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_02_parse.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_parse_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_02_parse.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_validate", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_02_validate.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_validate_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_02_validate.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_03_relations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_03_relations.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_03_relations_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_03_relations.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_04_custom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_04_custom.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_04_custom_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_04_custom.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "05_01_assert", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/05_01_assert.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "05_01_assert_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/05_01_assert.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "busybox", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/multicall-busybox.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cargo-example", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/cargo-example.rs", + "edition": "2021", + "required-features": [ + "cargo", + "color" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cargo-example-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/cargo-example-derive.rs", + "edition": "2021", + "required-features": [ + "derive", + "color" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "demo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/demo.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "escaped-positional", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/escaped-positional.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "escaped-positional-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/escaped-positional-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "find", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/find.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "git", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/git.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "git-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/git-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hostname", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/multicall-hostname.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_augment_args", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/augment_args.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_augment_subcommands", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/augment_subcommands.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_flatten_hand_args", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/flatten_hand_args.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_hand_subcommand", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/hand_subcommand.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pacman", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/pacman.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "repl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/repl.rs", + "edition": "2021", + "required-features": [ + "help" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "repl-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/repl-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "typed-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/typed-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "cargo": [ + "clap_builder/cargo" + ], + "color": [ + "clap_builder/color" + ], + "debug": [ + "clap_builder/debug", + "clap_derive?/debug" + ], + "default": [ + "std", + "color", + "help", + "usage", + "error-context", + "suggestions" + ], + "deprecated": [ + "clap_builder/deprecated", + "clap_derive?/deprecated" + ], + "derive": [ + "dep:clap_derive" + ], + "env": [ + "clap_builder/env" + ], + "error-context": [ + "clap_builder/error-context" + ], + "help": [ + "clap_builder/help" + ], + "std": [ + "clap_builder/std" + ], + "string": [ + "clap_builder/string" + ], + "suggestions": [ + "clap_builder/suggestions" + ], + "unicode": [ + "clap_builder/unicode" + ], + "unstable-derive-ui-tests": [], + "unstable-doc": [ + "clap_builder/unstable-doc", + "derive" + ], + "unstable-ext": [ + "clap_builder/unstable-ext" + ], + "unstable-markdown": [ + "clap_derive/unstable-markdown" + ], + "unstable-styles": [ + "clap_builder/unstable-styles" + ], + "unstable-v5": [ + "clap_builder/unstable-v5", + "clap_derive?/unstable-v5", + "deprecated" + ], + "usage": [ + "clap_builder/usage" + ], + "wrap_help": [ + "clap_builder/wrap_help" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "unstable-doc" + ] + }, + "release": { + "shared-version": true, + "tag-name": "v{{version}}", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", + "search": "" + }, + { + "file": "CITATION.cff", + "replace": "date-released: {{date}}", + "search": "^date-released: ....-..-.." + }, + { + "file": "CITATION.cff", + "replace": "version: {{version}}", + "search": "^version: .+\\..+\\..+" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "blob/v{{version}}/CHANGELOG.md", + "search": "blob/v.+\\..+\\..+/CHANGELOG.md" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "argument", + "cli", + "arg", + "parser", + "parse" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_builder", + "version": "4.5.37", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.73", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap_lex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strsim", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "terminal_size", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicase", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "color-print", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unic-emoji-char", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap_builder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.37/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "cargo": [], + "color": [ + "dep:anstream" + ], + "debug": [ + "dep:backtrace" + ], + "default": [ + "std", + "color", + "help", + "usage", + "error-context", + "suggestions" + ], + "deprecated": [], + "env": [], + "error-context": [], + "help": [], + "std": [ + "anstyle/std" + ], + "string": [], + "suggestions": [ + "dep:strsim", + "error-context" + ], + "unicode": [ + "dep:unicode-width", + "dep:unicase" + ], + "unstable-doc": [ + "cargo", + "wrap_help", + "env", + "unicode", + "string", + "unstable-ext" + ], + "unstable-ext": [], + "unstable-styles": [ + "color" + ], + "unstable-v5": [ + "deprecated" + ], + "usage": [], + "wrap_help": [ + "help", + "dep:terminal_size" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.37/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "-Zunstable-options", + "-Zrustdoc-scrape-examples" + ], + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "unstable-doc" + ] + }, + "release": { + "dependent-version": "upgrade", + "shared-version": true, + "tag-name": "v{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "argument", + "cli", + "arg", + "parser", + "parse" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_derive", + "version": "4.5.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parse command line argument by defining a struct, derive crate.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "heck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pulldown-cmark", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "clap_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "debug": [], + "default": [], + "deprecated": [], + "raw-deprecated": [ + "deprecated" + ], + "unstable-markdown": [ + "dep:pulldown-cmark", + "dep:anstyle" + ], + "unstable-v5": [ + "deprecated" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "release": { + "dependent-version": "upgrade", + "shared-version": true, + "tag-name": "v{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface", + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "clap", + "cli", + "parse", + "derive", + "proc_macro" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_lex", + "version": "0.7.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Minimal, flexible command line parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap_lex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/Cargo.toml", + "metadata": { + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", + "search": "" + }, + { + "exactly": 4, + "file": "README.md", + "prerelease": true, + "replace": "github.com/clap-rs/clap/blob/{{tag_name}}/", + "search": "github.com/clap-rs/clap/blob/[^/]+/" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "argument", + "cli", + "arg", + "parser", + "parse" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "cmake", + "version": "0.1.54", + "id": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A build dependency for running `cmake` to build a native library\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cmake", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cmake-0.1.54/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cmake-0.1.54/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "build-dependencies" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/cmake-rs", + "homepage": "https://github.com/rust-lang/cmake-rs", + "documentation": "https://docs.rs/cmake", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "colorchoice", + "version": "1.0.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Global override of color control", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "colorchoice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "cli", + "color", + "no-std", + "terminal", + "ansi" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "colored", + "version": "2.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", + "license": "MPL-2.0", + "license_file": null, + "description": "The most simple way to add colors in your terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ansi_term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rspec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.48, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Console" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "colored", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "as_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/as_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "control", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/control.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/custom_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dynamic_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/dynamic_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "most_simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/most_simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "nested_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/nested_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ansi_term_compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/tests/ansi_term_compat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "no-color": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Thomas Wickham " + ], + "categories": [], + "keywords": [ + "color", + "string", + "term", + "ansi_term", + "term-painter" + ], + "readme": "README.md", + "repository": "https://github.com/mackwic/colored", + "homepage": "https://github.com/mackwic/colored", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "colored", + "version": "3.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "license": "MPL-2.0", + "license_file": null, + "description": "The most simple way to add colors in your terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ansi_term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rspec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.48, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Console" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "colored", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "as_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/as_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "control", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/control.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/custom_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dynamic_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/dynamic_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "most_simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/most_simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "nested_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/nested_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ansi_term_compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/tests/ansi_term_compat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "no-color": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Thomas Wickham " + ], + "categories": [], + "keywords": [ + "color", + "string", + "term", + "ansi_term", + "term-painter" + ], + "readme": "README.md", + "repository": "https://github.com/mackwic/colored", + "homepage": "https://github.com/mackwic/colored", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "common-path", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Finds the common prefix between a set of paths\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "common_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/common-path-1.0.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/common-path-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Paul Woolcock " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": "https://gitlab.com/pwoolcoc/common-path", + "documentation": "https://docs.rs/common-path", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "composability-tests", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "builtin-func-features", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features" + }, + { + "name": "forwarder", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" + }, + { + "name": "forwarder-legacy", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy" + }, + { + "name": "forwarder-queue", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue" + }, + { + "name": "forwarder-raw", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "promises-features", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features" + }, + { + "name": "proxy-test-first", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first" + }, + { + "name": "proxy-test-second", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second" + }, + { + "name": "recursive-caller", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + } + ], + "targets": [ + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "composability_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/composability_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "composability_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/composability_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder_blackbox_legacy_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_blackbox_legacy_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder_whitebox_legacy_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_whitebox_legacy_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "promises_feature_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/promises_feature_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "console_error_panic_hook", + "version": "0.1.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "A panic hook for `wasm32-unknown-unknown` that logs panics to `console.error`", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.37", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "console_error_panic_hook", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/tests/tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nick Fitzgerald " + ], + "categories": [ + "wasm" + ], + "keywords": [], + "readme": "./README.md", + "repository": "https://github.com/rustwasm/console_error_panic_hook", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "console_log", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A logging facility that routes Rust log messages to the browser's console.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "console" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "console_log", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_log-1.0.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "color": [ + "wasm-bindgen" + ], + "default": [], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_log-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Matthew Nicholson " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "log", + "logging", + "console", + "web_sys", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/iamcodemaker/console_log", + "homepage": null, + "documentation": "https://docs.rs/console_log", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "const-oid", + "version": "0.9.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard\nas defined in ITU X.660, with support for BER/DER encoding/decoding as well as\nheapless no_std (i.e. embedded) support\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "const_oid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "db": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "data-structures", + "encoding", + "no-std", + "parser-implementations" + ], + "keywords": [ + "iso", + "iec", + "itu", + "oid" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats/tree/master/const-oid", + "homepage": null, + "documentation": "https://docs.rs/const-oid", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "convert_case", + "version": "0.8.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "license": "MIT", + "license_file": null, + "description": "Convert strings into any case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-segmentation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "convert_case", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "string_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/tests/string_types.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "rand": [ + "dep:rand" + ], + "random": [ + "rand" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "rutrum " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "casing", + "case", + "string" + ], + "readme": "README.md", + "repository": "https://github.com/rutrum/convert-case", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "copy_dir", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Copy directories recursively in a straightforward and predictable way.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "copy_dir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/copy_dir-0.1.3/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/copy_dir-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Michael Dunsmuir " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": "https://github.com/mdunsmuir/copy_dir", + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "core-foundation", + "version": "0.9.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bindings to Core Foundation for macOS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "core-foundation-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "core_foundation", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_macro_outside_crate", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/tests/use_macro_outside_crate.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chrono": [ + "dep:chrono" + ], + "default": [ + "link" + ], + "link": [ + "core-foundation-sys/link" + ], + "mac_os_10_7_support": [ + "core-foundation-sys/mac_os_10_7_support" + ], + "mac_os_10_8_features": [ + "core-foundation-sys/mac_os_10_8_features" + ], + "uuid": [ + "dep:uuid" + ], + "with-chrono": [ + "chrono" + ], + "with-uuid": [ + "uuid" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-apple-darwin" + } + } + }, + "publish": null, + "authors": [ + "The Servo Project Developers" + ], + "categories": [ + "os::macos-apis" + ], + "keywords": [ + "macos", + "framework", + "objc" + ], + "readme": null, + "repository": "https://github.com/servo/core-foundation-rs", + "homepage": "https://github.com/servo/core-foundation-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "core-foundation-sys", + "version": "0.8.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bindings to Core Foundation for macOS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "core_foundation_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "link" + ], + "link": [], + "mac_os_10_7_support": [], + "mac_os_10_8_features": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-apple-darwin" + } + } + }, + "publish": null, + "authors": [ + "The Servo Project Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/servo/core-foundation-rs", + "homepage": "https://github.com/servo/core-foundation-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "corosensei", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A fast and safe implementation of stackful coroutines", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scopeguard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.69", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion-cycles-per-byte", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.159", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Diagnostics_Debug", + "Win32_System_Kernel", + "Win32_System_Memory", + "Win32_System_Threading", + "Win32_System_SystemInformation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "corosensei", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/backtrace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "coroutine", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/benches/coroutine.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "asm-unwind": [ + "unwind" + ], + "default": [ + "default-stack", + "unwind" + ], + "default-stack": [ + "libc", + "windows-sys" + ], + "libc": [ + "dep:libc" + ], + "unwind": [], + "windows-sys": [ + "dep:windows-sys" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu", + "i686-unknown-linux-gnu", + "aarch64-unknown-linux-gnu", + "armv7-unknown-linux-gnueabihf", + "riscv64gc-unknown-linux-gnu", + "x86_64-apple-darwin", + "aarch64-apple-darwin", + "x86_64-pc-windows-msvc", + "i686-pc-windows-msvc" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std", + "concurrency" + ], + "keywords": [ + "coroutine", + "stack", + "fiber", + "generator" + ], + "readme": "README.md", + "repository": "https://github.com/Amanieu/corosensei", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.59.0" + }, + { + "name": "cpufeatures", + "version": "0.2.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, \nwith no_std support and support for mobile targets including Android and iOS\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "aarch64-linux-android", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cpufeatures", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "aarch64", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/aarch64.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "loongarch64", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/loongarch64.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "x86", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/x86.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "hardware-support", + "no-std" + ], + "keywords": [ + "cpuid", + "target-feature" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/cpufeatures", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crc32fast", + "version": "1.4.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crc32fast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/benches/bench.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sam Rijs ", + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "checksum", + "crc", + "crc32", + "simd", + "fast" + ], + "readme": "README.md", + "repository": "https://github.com/srijs/rust-crc32fast", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crossbeam-deque", + "version": "0.8.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Concurrent work-stealing deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-epoch", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_deque", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fifo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/fifo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "injector", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/injector.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lifo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/lifo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "steal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/steal.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "crossbeam-epoch/std", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "algorithms", + "concurrency", + "data-structures" + ], + "keywords": [ + "chase-lev", + "lock-free", + "scheduler", + "scheduling" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "crossbeam-epoch", + "version": "0.9.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Epoch-based garbage collection", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": "loom-crate", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(crossbeam_loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_epoch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "sanitize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/examples/sanitize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "loom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/tests/loom.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "defer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/defer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "flush", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/flush.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "pin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/pin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "loom": [ + "loom-crate", + "crossbeam-utils/loom" + ], + "loom-crate": [ + "dep:loom-crate" + ], + "nightly": [ + "crossbeam-utils/nightly" + ], + "std": [ + "alloc", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "memory-management", + "no-std" + ], + "keywords": [ + "lock-free", + "rcu", + "atomic", + "garbage" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "crossbeam-queue", + "version": "0.3.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Concurrent queues", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "array_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/tests/array_queue.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "seg_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/tests/seg_queue.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "nightly": [ + "crossbeam-utils/nightly" + ], + "std": [ + "alloc", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "data-structures", + "no-std" + ], + "keywords": [ + "queue", + "mpmc", + "lock-free", + "producer", + "consumer" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "crossbeam-utils", + "version": "0.8.21", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Utilities for concurrent programming", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(crossbeam_loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "atomic_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/atomic_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cache_padded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/cache_padded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/parker.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sharded_lock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/sharded_lock.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "thread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/thread.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wait_group", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/wait_group.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "atomic_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/benches/atomic_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "loom": [ + "dep:loom" + ], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "algorithms", + "concurrency", + "data-structures", + "no-std" + ], + "keywords": [ + "scoped", + "thread", + "atomic", + "cache" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "crowdfunding-erc20", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crowdfunding_erc20", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/src/crowdfunding_erc20.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_erc20_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/tests/crowdfunding_erc20_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_erc20_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/tests/crowdfunding_erc20_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crowdfunding-erc20-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "crowdfunding-erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding-erc20-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crowdfunding-esdt", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crowdfunding_esdt", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/src/crowdfunding_esdt.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_esdt_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_esdt_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_esdt_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crowdfunding-esdt-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "crowdfunding-esdt", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding-esdt-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-bubbles", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crypto_bubbles", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/src/crypto_bubbles.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crypto_bubbles_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/tests/crypto_bubbles_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crypto_bubbles_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/tests/crypto_bubbles_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-bubbles-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "crypto-bubbles", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "crypto-bubbles-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-common", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Common cryptographic traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "more_lengths" + ], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typenum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crypto_common", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "getrandom": [ + "rand_core/getrandom" + ], + "rand_core": [ + "dep:rand_core" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "traits" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits", + "homepage": null, + "documentation": "https://docs.rs/crypto-common", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-zombies", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crypto_zombies", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-zombies-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "crypto-zombies", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "crypto-zombies-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ctr", + "version": "0.9.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "CTR block modes of operation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "aes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "kuznyechik", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "magma", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ctr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "aes128", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/benches/aes128.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "cipher/alloc" + ], + "block-padding": [ + "cipher/block-padding" + ], + "std": [ + "cipher/std", + "alloc" + ], + "zeroize": [ + "cipher/zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "block-mode", + "stream-cipher", + "ciphers" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/block-modes", + "homepage": null, + "documentation": "https://docs.rs/ctr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "curve25519-dalek", + "version": "4.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", + "license": "BSD-3-Clause", + "license_file": null, + "description": "A pure-Rust implementation of group operations on ristretto255 and Curve25519", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "group", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "getrandom" + ], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "curve25519-dalek-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(not(curve25519_dalek_backend = \"fiat\"), not(curve25519_dalek_backend = \"serial\"), target_arch = \"x86_64\"))", + "registry": null + }, + { + "name": "fiat-crypto", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(curve25519_dalek_backend = \"fiat\")", + "registry": null + }, + { + "name": "cpufeatures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"x86_64\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "curve25519_dalek", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "dalek_benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/benches/dalek_benchmarks.rs", + "edition": "2021", + "required-features": [ + "alloc", + "rand_core" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "zeroize?/alloc" + ], + "default": [ + "alloc", + "precomputed-tables", + "zeroize" + ], + "digest": [ + "dep:digest" + ], + "ff": [ + "dep:ff" + ], + "group": [ + "dep:group", + "rand_core" + ], + "group-bits": [ + "group", + "ff/bits" + ], + "legacy_compatibility": [], + "precomputed-tables": [], + "rand_core": [ + "dep:rand_core" + ], + "serde": [ + "dep:serde" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "rand_core", + "digest", + "legacy_compatibility", + "group-bits" + ], + "rustdoc-args": [ + "--html-in-header", + "docs/assets/rustdoc-include-katex-header.html", + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Isis Lovecruft ", + "Henry de Valence " + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "cryptography", + "crypto", + "ristretto", + "curve25519", + "ristretto255" + ], + "readme": "README.md", + "repository": "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek", + "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", + "documentation": "https://docs.rs/curve25519-dalek", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "curve25519-dalek-derive", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "curve25519-dalek Derives", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.66", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.27", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "curve25519_dalek_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/dalek-cryptography/curve25519-dalek", + "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", + "documentation": "https://docs.rs/curve25519-dalek-derive", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "darling", + "version": "0.20.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", + "license": "MIT", + "license_file": null, + "description": "A proc-macro library for reading attributes into structs when\nimplementing custom derives.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "darling_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.20.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "darling_macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.20.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.86", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.15", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(compiletests)", + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.89", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(compiletests)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "darling", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "automatic_bounds", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/automatic_bounds.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "consume_fields", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/consume_fields.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "expr_with", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/expr_with.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "fallible_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/fallible_read.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "heterogeneous_enum_and_word", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/heterogeneous_enum_and_word.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "shorthand_or_long_field", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/shorthand_or_long_field.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "supports_struct", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/supports_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accrue_errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/accrue_errors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "attrs_with", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/attrs_with.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/compiletests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "computed_bound", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/computed_bound.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom_bound", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/custom_bound.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "data_with", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/data_with.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "defaults", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/defaults.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_newtype", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_newtype.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_struct", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_unit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_unit.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_error_accumulation", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten_error_accumulation.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_from_field", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten_from_field.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forward_attrs_to_from_attributes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/forward_attrs_to_from_attributes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_meta.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_type_param", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_type_param.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_type_param_default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_type_param_default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_variant", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_variant.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "happy_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/happy_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/hash_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "meta_with", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/meta_with.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/multiple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "newtype", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/newtype.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "skip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/skip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spanned_value", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/spanned_value.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "split_declaration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/split_declaration.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "suggestions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/suggestions.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "supports", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/supports.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unsupported_attributes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/unsupported_attributes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "suggestions" + ], + "diagnostics": [ + "darling_core/diagnostics" + ], + "suggestions": [ + "darling_core/suggestions" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/TedDriggs/darling", + "homepage": null, + "documentation": "https://docs.rs/darling/0.20.11", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "darling_core", + "version": "0.20.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "license": "MIT", + "license_file": null, + "description": "Helper crate for proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ident_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.86", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strsim", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "darling_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_core-0.20.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "diagnostics": [], + "strsim": [ + "dep:strsim" + ], + "suggestions": [ + "strsim" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_core-0.20.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/TedDriggs/darling", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "darling_macro", + "version": "0.20.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", + "license": "MIT", + "license_file": null, + "description": "Internal support for a proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "darling_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.20.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "darling_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_macro-0.20.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_macro-0.20.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/TedDriggs/darling", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "dashmap", + "version": "6.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "license": "MIT", + "license_file": null, + "description": "Blazing fast concurrent HashMap for Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "raw" + ], + "target": null, + "registry": null + }, + { + "name": "lock_api", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.18.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.188", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "typesize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dashmap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "inline": [ + "hashbrown/inline-more" + ], + "raw-api": [], + "rayon": [ + "dep:rayon" + ], + "serde": [ + "dep:serde" + ], + "typesize": [ + "dep:typesize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "rayon", + "raw-api", + "serde" + ] + } + } + }, + "publish": null, + "authors": [ + "Acrimon " + ], + "categories": [ + "concurrency", + "algorithms", + "data-structures" + ], + "keywords": [ + "atomic", + "concurrent", + "hashmap" + ], + "readme": "README.md", + "repository": "https://github.com/xacrimon/dashmap", + "homepage": "https://github.com/xacrimon/dashmap", + "documentation": "https://docs.rs/dashmap", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "der", + "version": "0.7.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules\n(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with\nfull support for heapless no_std targets\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "const-oid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "der_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flagset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pem-rfc7468", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "der", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "datetime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/datetime.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pem", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/pem.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set_of", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/set_of.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "zeroize?/alloc" + ], + "arbitrary": [ + "dep:arbitrary", + "const-oid?/arbitrary", + "std" + ], + "bytes": [ + "dep:bytes", + "alloc" + ], + "derive": [ + "dep:der_derive" + ], + "flagset": [ + "dep:flagset" + ], + "oid": [ + "dep:const-oid" + ], + "pem": [ + "dep:pem-rfc7468", + "alloc", + "zeroize" + ], + "real": [], + "std": [ + "alloc" + ], + "time": [ + "dep:time" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "data-structures", + "encoding", + "no-std", + "parser-implementations" + ], + "keywords": [ + "asn1", + "crypto", + "itu", + "pkcs" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats/tree/master/der", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "derive_arbitrary", + "version": "1.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_arbitrary@1.4.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Derives arbitrary traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive", + "parsing", + "extra-traits" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "derive_arbitrary", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_arbitrary-1.4.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_arbitrary-1.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust-Fuzz Project Developers", + "Nick Fitzgerald ", + "Manish Goregaokar ", + "Andre Bogus ", + "Corey Farwell " + ], + "categories": [ + "development-tools::testing" + ], + "keywords": [ + "arbitrary", + "testing", + "derive", + "macro" + ], + "readme": "README.md", + "repository": "https://github.com/rust-fuzz/arbitrary", + "homepage": null, + "documentation": "https://docs.rs/arbitrary/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "derive_more", + "version": "0.99.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", + "license": "MIT", + "license_file": null, + "description": "Adds #[derive(x)] macros for more traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "peg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "derive_more", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deny_missing_docs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/examples/deny_missing_docs.rs", + "edition": "2018", + "required-features": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "from", + "from_str", + "index", + "index_mut", + "into", + "mul_assign", + "mul", + "not", + "try_into", + "is_variant" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "add", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/add.rs", + "edition": "2018", + "required-features": [ + "add" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "add_assign", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/add_assign.rs", + "edition": "2018", + "required-features": [ + "add_assign" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "as_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/as_mut.rs", + "edition": "2018", + "required-features": [ + "as_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "as_ref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/as_ref.rs", + "edition": "2018", + "required-features": [ + "as_ref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "boats_display_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/boats_display_derive.rs", + "edition": "2018", + "required-features": [ + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constructor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/constructor.rs", + "edition": "2018", + "required-features": [ + "constructor" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/deref.rs", + "edition": "2018", + "required-features": [ + "deref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deref_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/deref_mut.rs", + "edition": "2018", + "required-features": [ + "deref_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "display", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/display.rs", + "edition": "2018", + "required-features": [ + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/error_tests.rs", + "edition": "2018", + "required-features": [ + "error" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/from.rs", + "edition": "2018", + "required-features": [ + "from" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_str", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/from_str.rs", + "edition": "2018", + "required-features": [ + "from_str" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/generics.rs", + "edition": "2018", + "required-features": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "from", + "from_str", + "index", + "index_mut", + "into", + "mul_assign", + "mul", + "not", + "try_into", + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "index", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/index.rs", + "edition": "2018", + "required-features": [ + "index" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "index_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/index_mut.rs", + "edition": "2018", + "required-features": [ + "index_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "into", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/into.rs", + "edition": "2018", + "required-features": [ + "into" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "into_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/into_iterator.rs", + "edition": "2018", + "required-features": [ + "into_iterator" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "is_variant", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/is_variant.rs", + "edition": "2018", + "required-features": [ + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/lib.rs", + "edition": "2018", + "required-features": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "from", + "from_str", + "index", + "index_mut", + "into", + "mul_assign", + "mul", + "not", + "try_into", + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mul", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/mul.rs", + "edition": "2018", + "required-features": [ + "mul" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mul_assign", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/mul_assign.rs", + "edition": "2018", + "required-features": [ + "mul_assign" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/no_std.rs", + "edition": "2018", + "required-features": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "from", + "from_str", + "index", + "index_mut", + "into", + "mul_assign", + "mul", + "not", + "sum", + "try_into", + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "not", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/not.rs", + "edition": "2018", + "required-features": [ + "not" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sum", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/sum.rs", + "edition": "2018", + "required-features": [ + "sum" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_into", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/try_into.rs", + "edition": "2018", + "required-features": [ + "try_into" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unwrap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/unwrap.rs", + "edition": "2018", + "required-features": [ + "unwrap" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "add": [], + "add_assign": [], + "as_mut": [], + "as_ref": [], + "constructor": [], + "convert_case": [ + "dep:convert_case" + ], + "default": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "error", + "from", + "from_str", + "index", + "index_mut", + "into", + "into_iterator", + "iterator", + "mul_assign", + "mul", + "not", + "sum", + "try_into", + "is_variant", + "unwrap" + ], + "deref": [], + "deref_mut": [], + "display": [ + "syn/extra-traits" + ], + "error": [ + "syn/extra-traits" + ], + "from": [ + "syn/extra-traits" + ], + "from_str": [], + "generate-parsing-rs": [ + "peg" + ], + "index": [], + "index_mut": [], + "into": [ + "syn/extra-traits" + ], + "into_iterator": [], + "is_variant": [ + "convert_case" + ], + "iterator": [], + "mul": [ + "syn/extra-traits" + ], + "mul_assign": [ + "syn/extra-traits" + ], + "nightly": [], + "not": [ + "syn/extra-traits" + ], + "peg": [ + "dep:peg" + ], + "rustc_version": [ + "dep:rustc_version" + ], + "sum": [], + "testing-helpers": [ + "rustc_version" + ], + "track-caller": [], + "try_into": [ + "syn/extra-traits" + ], + "unwrap": [ + "convert_case", + "rustc_version" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jelte Fennema " + ], + "categories": [ + "development-tools", + "development-tools::procedural-macro-helpers", + "no-std" + ], + "keywords": [ + "derive", + "Add", + "From", + "Display", + "IntoIterator" + ], + "readme": "README.md", + "repository": "https://github.com/JelteF/derive_more", + "homepage": null, + "documentation": "https://jeltef.github.io/derive_more/derive_more/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "derive_more", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", + "license": "MIT", + "license_file": null, + "description": "Adds #[derive(x)] macros for more traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "derive_more-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.56", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "derive_more", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deny_missing_docs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/examples/deny_missing_docs.rs", + "edition": "2021", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "add", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/add.rs", + "edition": "2021", + "required-features": [ + "add" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "add_assign", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/add_assign.rs", + "edition": "2021", + "required-features": [ + "add_assign" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "as_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/as_mut.rs", + "edition": "2021", + "required-features": [ + "as_ref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "as_ref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/as_ref.rs", + "edition": "2021", + "required-features": [ + "as_ref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "boats_display_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/boats_display_derive.rs", + "edition": "2021", + "required-features": [ + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compile_fail", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/compile_fail/mod.rs", + "edition": "2021", + "required-features": [ + "as_ref", + "debug", + "display", + "from", + "into", + "is_variant", + "try_from" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constructor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/constructor.rs", + "edition": "2021", + "required-features": [ + "constructor" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/debug.rs", + "edition": "2021", + "required-features": [ + "debug" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/deref.rs", + "edition": "2021", + "required-features": [ + "deref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deref_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/deref_mut.rs", + "edition": "2021", + "required-features": [ + "deref_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "display", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/display.rs", + "edition": "2021", + "required-features": [ + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/error_tests.rs", + "edition": "2021", + "required-features": [ + "error" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/from.rs", + "edition": "2021", + "required-features": [ + "from" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_str", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/from_str.rs", + "edition": "2021", + "required-features": [ + "from_str" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/generics.rs", + "edition": "2021", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "index", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/index.rs", + "edition": "2021", + "required-features": [ + "index" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "index_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/index_mut.rs", + "edition": "2021", + "required-features": [ + "index_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "into", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/into.rs", + "edition": "2021", + "required-features": [ + "into" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "into_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/into_iterator.rs", + "edition": "2021", + "required-features": [ + "into_iterator" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "is_variant", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/is_variant.rs", + "edition": "2021", + "required-features": [ + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/lib.rs", + "edition": "2021", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mul", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/mul.rs", + "edition": "2021", + "required-features": [ + "mul" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mul_assign", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/mul_assign.rs", + "edition": "2021", + "required-features": [ + "mul_assign" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/no_std.rs", + "edition": "2021", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "not", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/not.rs", + "edition": "2021", + "required-features": [ + "not" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sum", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/sum.rs", + "edition": "2021", + "required-features": [ + "sum" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_from.rs", + "edition": "2021", + "required-features": [ + "try_from" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_into", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_into.rs", + "edition": "2021", + "required-features": [ + "try_into" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_unwrap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_unwrap.rs", + "edition": "2021", + "required-features": [ + "try_unwrap" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unwrap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/unwrap.rs", + "edition": "2021", + "required-features": [ + "unwrap" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "add": [ + "derive_more-impl/add" + ], + "add_assign": [ + "derive_more-impl/add_assign" + ], + "as_ref": [ + "derive_more-impl/as_ref" + ], + "constructor": [ + "derive_more-impl/constructor" + ], + "debug": [ + "derive_more-impl/debug" + ], + "default": [ + "std" + ], + "deref": [ + "derive_more-impl/deref" + ], + "deref_mut": [ + "derive_more-impl/deref_mut" + ], + "display": [ + "derive_more-impl/display" + ], + "error": [ + "derive_more-impl/error" + ], + "from": [ + "derive_more-impl/from" + ], + "from_str": [ + "derive_more-impl/from_str" + ], + "full": [ + "add", + "add_assign", + "as_ref", + "constructor", + "debug", + "deref", + "deref_mut", + "display", + "error", + "from", + "from_str", + "index", + "index_mut", + "into", + "into_iterator", + "is_variant", + "mul", + "mul_assign", + "not", + "sum", + "try_from", + "try_into", + "try_unwrap", + "unwrap" + ], + "index": [ + "derive_more-impl/index" + ], + "index_mut": [ + "derive_more-impl/index_mut" + ], + "into": [ + "derive_more-impl/into" + ], + "into_iterator": [ + "derive_more-impl/into_iterator" + ], + "is_variant": [ + "derive_more-impl/is_variant" + ], + "mul": [ + "derive_more-impl/mul" + ], + "mul_assign": [ + "derive_more-impl/mul_assign" + ], + "not": [ + "derive_more-impl/not" + ], + "std": [], + "sum": [ + "derive_more-impl/sum" + ], + "testing-helpers": [ + "derive_more-impl/testing-helpers", + "dep:rustc_version" + ], + "try_from": [ + "derive_more-impl/try_from" + ], + "try_into": [ + "derive_more-impl/try_into" + ], + "try_unwrap": [ + "derive_more-impl/try_unwrap" + ], + "unwrap": [ + "derive_more-impl/unwrap" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "full" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Jelte Fennema " + ], + "categories": [ + "development-tools", + "development-tools::procedural-macro-helpers", + "no-std", + "rust-patterns" + ], + "keywords": [ + "derive", + "Add", + "From", + "Display", + "IntoIterator" + ], + "readme": "README.md", + "repository": "https://github.com/JelteF/derive_more", + "homepage": null, + "documentation": "https://docs.rs/derive_more", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.75.0" + }, + { + "name": "derive_more-impl", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", + "license": "MIT", + "license_file": null, + "description": "Internal implementation of `derive_more` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.45", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-xid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "derive_more_impl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "add": [], + "add_assign": [], + "as_ref": [ + "syn/extra-traits", + "syn/visit" + ], + "constructor": [], + "debug": [ + "syn/extra-traits", + "dep:unicode-xid" + ], + "default": [], + "deref": [], + "deref_mut": [], + "display": [ + "syn/extra-traits", + "dep:unicode-xid" + ], + "error": [ + "syn/extra-traits" + ], + "from": [ + "syn/extra-traits" + ], + "from_str": [], + "full": [ + "add", + "add_assign", + "as_ref", + "constructor", + "debug", + "deref", + "deref_mut", + "display", + "error", + "from", + "from_str", + "index", + "index_mut", + "into", + "into_iterator", + "is_variant", + "mul", + "mul_assign", + "not", + "sum", + "try_from", + "try_into", + "try_unwrap", + "unwrap" + ], + "index": [], + "index_mut": [], + "into": [ + "syn/extra-traits" + ], + "into_iterator": [], + "is_variant": [ + "dep:convert_case" + ], + "mul": [ + "syn/extra-traits" + ], + "mul_assign": [ + "syn/extra-traits" + ], + "not": [ + "syn/extra-traits" + ], + "sum": [], + "testing-helpers": [ + "dep:rustc_version" + ], + "try_from": [], + "try_into": [ + "syn/extra-traits" + ], + "try_unwrap": [ + "dep:convert_case" + ], + "unwrap": [ + "dep:convert_case" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-1.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "full" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Jelte Fennema " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/JelteF/derive_more", + "homepage": null, + "documentation": "https://docs.rs/derive_more", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.75.0" + }, + { + "name": "digest", + "version": "0.10.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Traits for cryptographic hash functions and message authentication codes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "blobby", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "block-buffer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "const-oid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crypto-common", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "digest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "blobby": [ + "dep:blobby" + ], + "block-buffer": [ + "dep:block-buffer" + ], + "const-oid": [ + "dep:const-oid" + ], + "core-api": [ + "block-buffer" + ], + "default": [ + "core-api" + ], + "dev": [ + "blobby" + ], + "mac": [ + "subtle" + ], + "oid": [ + "const-oid" + ], + "rand_core": [ + "crypto-common/rand_core" + ], + "std": [ + "alloc", + "crypto-common/std" + ], + "subtle": [ + "dep:subtle" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "digest", + "crypto", + "hash" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits", + "homepage": null, + "documentation": "https://docs.rs/digest", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "digital-cash", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "digital_cash", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/src/digital_cash.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "digital_cash_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/tests/digital_cash_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "digital_cash_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/tests/digital_cash_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Valentin Craciun" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "digital-cash-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "digital-cash", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "digital-cash-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "displaydoc", + "version": "0.2.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.24", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "displaydoc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compile_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/compile_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "happy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/happy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "num_in_field", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/num_in_field.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "variantless", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/variantless.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "no-dev-version": true, + "pre-release-hook": [ + "./update-readme.sh" + ], + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "#![doc(html_root_url = \"https://docs.rs/{{crate_name}}/{{version}}\")]", + "search": "#!\\[doc\\(html_root_url.*" + }, + { + "file": "CHANGELOG.md", + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n\n# [Unreleased] - ReleaseDate", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/yaahc/{{crate_name}}/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Jane Lusby " + ], + "categories": [], + "keywords": [ + "display", + "derive" + ], + "readme": "README.md", + "repository": "https://github.com/yaahc/displaydoc", + "homepage": "https://github.com/yaahc/displaydoc", + "documentation": "https://docs.rs/displaydoc", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "dynasm", + "version": "1.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "license": "MPL-2.0", + "license_file": null, + "description": "A plugin for assembling code at runtime. Combined with the runtime crate dynasmrt it can be used to write JIT compilers easily.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro-error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.26", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "dynasm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-1.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "dynasm_extract": [], + "dynasm_opmap": [], + "filelocal": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-1.2.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alexander Stocko ", + "CensoredUsername " + ], + "categories": [], + "keywords": [ + "jit", + "dynasm", + "dynasmrt", + "dynasm-rs", + "assembler" + ], + "readme": "../README.md", + "repository": "https://github.com/CensoredUsername/dynasm-rs", + "homepage": null, + "documentation": "https://censoredusername.github.io/dynasm-rs/plugin/dynasm/index.html", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dynasmrt", + "version": "1.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "license": "MPL-2.0", + "license_file": null, + "description": "A simple runtime for assembling code at runtime. Combined with the plugin crate dynasm it can be used to write JIT compilers easily.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dynasm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memmap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dynasmrt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-1.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-1.2.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alexander Stocko ", + "CensoredUsername " + ], + "categories": [], + "keywords": [ + "jit", + "dynasm", + "dynasmrt", + "dynasm-rs", + "assembler" + ], + "readme": "../README.md", + "repository": "https://github.com/CensoredUsername/dynasm-rs", + "homepage": null, + "documentation": "https://censoredusername.github.io/dynasm-rs/plugin/dynasm/index.html", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ed25519", + "version": "2.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)\nsupport library providing signature type definitions and PKCS#8 private key\ndecoding/encoding support\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "pkcs8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "signature", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ed25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rand_core" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "ring-compat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "signature" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ed25519", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/hex.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pkcs8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/pkcs8.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "pkcs8?/alloc" + ], + "default": [ + "std" + ], + "pem": [ + "alloc", + "pkcs8/pem" + ], + "pkcs8": [ + "dep:pkcs8" + ], + "serde": [ + "dep:serde" + ], + "serde_bytes": [ + "serde", + "dep:serde_bytes" + ], + "std": [ + "pkcs8?/std", + "signature/std" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "curve25519", + "ecc", + "signature", + "signing" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/signatures/tree/master/ed25519", + "homepage": null, + "documentation": "https://docs.rs/ed25519", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "ed25519-dalek", + "version": "2.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "curve25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "digest" + ], + "target": null, + "registry": null + }, + { + "name": "ed25519", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=2.2, <2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "merlin", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "signature", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=2.0, <2.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "blake2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "curve25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "digest", + "rand_core" + ], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "x25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "static_secrets" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ed25519_dalek", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ed25519", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/ed25519.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pkcs8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/pkcs8.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "validation_criteria", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/validation_criteria.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "x25519", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/x25519.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ed25519_benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/benches/ed25519_benchmarks.rs", + "edition": "2021", + "required-features": [ + "rand_core" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "curve25519-dalek/alloc", + "ed25519/alloc", + "serde?/alloc", + "zeroize/alloc" + ], + "asm": [ + "sha2/asm" + ], + "batch": [ + "alloc", + "merlin", + "rand_core" + ], + "default": [ + "fast", + "std", + "zeroize" + ], + "digest": [ + "signature/digest" + ], + "fast": [ + "curve25519-dalek/precomputed-tables" + ], + "hazmat": [], + "legacy_compatibility": [ + "curve25519-dalek/legacy_compatibility" + ], + "merlin": [ + "dep:merlin" + ], + "pem": [ + "alloc", + "ed25519/pem", + "pkcs8" + ], + "pkcs8": [ + "ed25519/pkcs8" + ], + "rand_core": [ + "dep:rand_core" + ], + "serde": [ + "dep:serde", + "ed25519/serde" + ], + "signature": [ + "dep:signature" + ], + "std": [ + "alloc", + "ed25519/std", + "serde?/std", + "sha2/std" + ], + "zeroize": [ + "dep:zeroize", + "curve25519-dalek/zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "batch", + "digest", + "hazmat", + "pem", + "serde" + ], + "rustdoc-args": [ + "--html-in-header", + "docs/assets/rustdoc-include-katex-header.html", + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "isis lovecruft ", + "Tony Arcieri ", + "Michael Rosenberg " + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "cryptography", + "ed25519", + "curve25519", + "signature", + "ECC" + ], + "readme": "README.md", + "repository": "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/ed25519-dalek", + "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", + "documentation": "https://docs.rs/ed25519-dalek", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "either", + "version": "1.15.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.95", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "either", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + }, + "release": { + "allow-branch": [ + "main" + ], + "sign-tag": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "data-structure", + "no_std" + ], + "readme": "README-crates.io.md", + "repository": "https://github.com/rayon-rs/either", + "homepage": null, + "documentation": "https://docs.rs/either/1/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "empty", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "empty", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/src/empty.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "empty_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/tests/empty_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "empty_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/tests/empty_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "empty-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "empty", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "empty-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "encoding_rs", + "version": "0.8.35", + "id": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", + "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", + "license_file": null, + "description": "A Gecko-oriented implementation of the Encoding Standard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "any_all_workaround", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "encoding_rs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "any_all_workaround": [ + "dep:any_all_workaround" + ], + "default": [ + "alloc" + ], + "fast-big5-hanzi-encode": [], + "fast-gb-hanzi-encode": [], + "fast-hangul-encode": [], + "fast-hanja-encode": [], + "fast-kanji-encode": [], + "fast-legacy-encode": [ + "fast-hangul-encode", + "fast-hanja-encode", + "fast-kanji-encode", + "fast-gb-hanzi-encode", + "fast-big5-hanzi-encode" + ], + "less-slow-big5-hanzi-encode": [], + "less-slow-gb-hanzi-encode": [], + "less-slow-kanji-encode": [], + "serde": [ + "dep:serde" + ], + "simd-accel": [ + "any_all_workaround" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Henri Sivonen " + ], + "categories": [ + "text-processing", + "encoding", + "web-programming", + "internationalization" + ], + "keywords": [ + "encoding", + "web", + "unicode", + "charset" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/encoding_rs", + "homepage": "https://docs.rs/encoding_rs/", + "documentation": "https://docs.rs/encoding_rs/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "endian-type", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", + "license": "MIT", + "license_file": null, + "description": "Type safe wrappers for types with a defined byte order", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "endian_type", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endian-type-0.1.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endian-type-0.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Lolirofle " + ], + "categories": [], + "keywords": [ + "endian", + "byteorder" + ], + "readme": null, + "repository": "https://github.com/Lolirofle/endian-type.git", + "homepage": "https://github.com/Lolirofle/endian-type", + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "enum-iterator", + "version": "0.7.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "license": "0BSD", + "license_file": null, + "description": "Tools to iterate over the variants of a field-less enum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "enum-iterator-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "enum_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-0.7.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-0.7.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Stephane Raux " + ], + "categories": [], + "keywords": [ + "enum", + "variants", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/stephaneyfx/enum-iterator.git", + "homepage": "https://github.com/stephaneyfx/enum-iterator", + "documentation": "https://docs.rs/enum-iterator", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "enum-iterator-derive", + "version": "0.7.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", + "license": "0BSD", + "license_file": null, + "description": "Procedural macro to iterate over the variants of a field-less enum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "enum_iterator_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-derive-0.7.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-derive-0.7.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Stephane Raux " + ], + "categories": [], + "keywords": [ + "enum", + "variants", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/stephaneyfx/enum-iterator.git", + "homepage": "https://github.com/stephaneyfx/enum-iterator", + "documentation": "https://docs.rs/enum-iterator-derive", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "enumset", + "version": "1.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A library for creating compact sets of enums.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "enumset_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "serde2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "i128" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "enumset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "conversions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/conversions.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ops", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/ops.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "repr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/repr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "proc-macro-crate": [ + "enumset_derive/proc-macro-crate" + ], + "serde": [ + "serde2", + "enumset_derive/serde" + ], + "serde2": [ + "dep:serde2" + ], + "std": [ + "alloc", + "enumset_derive/proc-macro-crate", + "enumset_derive/std_deprecation_warning" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Alissa Rao " + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "enum", + "bitset" + ], + "readme": "README.md", + "repository": "https://github.com/Lymia/enumset", + "homepage": null, + "documentation": "https://docs.rs/enumset/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "enumset_derive", + "version": "0.10.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "An internal helper crate for enumset. Not public API.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "darling", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro-crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "enumset_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset_derive-0.10.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "proc-macro-crate": [ + "dep:proc-macro-crate" + ], + "serde": [], + "std_deprecation_warning": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset_derive-0.10.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alissa Rao " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/Lymia/enumset", + "homepage": null, + "documentation": "https://lymia.moe/doc/enumset/enumset/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "env_filter", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Filter log events using environment variables\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "perf" + ], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "env_filter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-0.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "regex" + ], + "regex": [ + "dep:regex" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-0.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "logging", + "log", + "logger" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/env_logger", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "env_logger", + "version": "0.11.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A logging implementation for `log` which is configured via an environment\nvariable.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "wincon" + ], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_filter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "env_logger", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_default_format", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/custom_default_format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_format", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/custom_format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "direct_logger", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/direct_logger.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "filters_from_code", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/filters_from_code.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "in_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/in_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "syslog_friendly_format", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/syslog_friendly_format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "init-twice-retains-filter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/init-twice-retains-filter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "log-in-log", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/log-in-log.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "log_tls_dtors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/log_tls_dtors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regexp_filter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/regexp_filter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "auto-color": [ + "color", + "anstream/auto" + ], + "color": [ + "dep:anstream", + "dep:anstyle" + ], + "default": [ + "auto-color", + "humantime", + "regex" + ], + "humantime": [ + "dep:jiff" + ], + "kv": [ + "log/kv" + ], + "regex": [ + "env_filter/regex" + ], + "unstable-kv": [ + "kv" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "logging", + "log", + "logger" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/env_logger", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "equivalent", + "version": "1.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Traits for key comparison in maps.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "equivalent", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hashmap", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/indexmap-rs/equivalent", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.6" + }, + { + "name": "erc1155", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "erc1155-user-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc1155", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/src/erc1155.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/tests/erc1155_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/tests/erc1155_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-marketplace", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc1155", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc1155_marketplace", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155_marketplace_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/tests/erc1155_marketplace_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155_marketplace_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/tests/erc1155_marketplace_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-marketplace-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc1155-marketplace", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155-marketplace-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc1155", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-user-mock", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc1155_user_mock", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-user-mock-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc1155-user-mock", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155-user-mock-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc20", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc20", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/src/erc20.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc20_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/tests/erc20_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc20_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/tests/erc20_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc20-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc20-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc721", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc721", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/src/erc721.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/tests/nft_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/tests/nft_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc721-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc721", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc721-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "errno", + "version": "0.3.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Cross-platform interface to the `errno` variable.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"hermit\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Diagnostics_Debug" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "errno", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.11/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "libc/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Chris Wong ", + "Dan Gohman " + ], + "categories": [ + "no-std", + "os" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/lambda-fairy/rust-errno", + "homepage": null, + "documentation": "https://docs.rs/errno", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "esdt-contract-pair", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "first-contract", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "second-contract", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract" + } + ], + "targets": [ + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "esdt-system-sc-mock", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "esdt_system_sc_mock", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/src/esdt_system_sc_mock.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_system_sc_mock_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/tests/esdt_system_sc_mock_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_system_sc_mock_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/tests/esdt_system_sc_mock_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "esdt-system-sc-mock-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "esdt-system-sc-mock-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "esdt-transfer-with-fee", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "esdt_transfer_with_fee", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/src/esdt_transfer_with_fee.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_transfer_with_fee_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/tests/esdt_transfer_with_fee_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_transfer_with_fee_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/tests/esdt_transfer_with_fee_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "esdt-transfer-with-fee-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "esdt-transfer-with-fee", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "esdt-transfer-with-fee-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "exchange-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "exchange_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/src/exchange_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "exchange_features_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/tests/exchange_features_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin-Marius Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "exchange-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "exchange-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "exchange-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "factorial", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmer-experimental" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "factorial", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/src/factorial.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "factorial_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "factorial_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "factorial_scenario_rs_wasmer_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_rs_wasmer_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "factorial_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "run-go-tests": [ + "multiversx-sc-scenario/run-go-tests" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "factorial-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "factorial", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "factorial-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "factory-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "order-book-factory", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "factory-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fallible-iterator", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Fallible iterator traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fallible_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/sfackler/rust-fallible-iterator", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fastrand", + "version": "2.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple and fast random number generator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wyhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "js" + ], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fastrand", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "char", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/tests/char.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/tests/smoke.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "getrandom": [ + "dep:getrandom" + ], + "js": [ + "std", + "getrandom" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Stjepan Glavina " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "simple", + "fast", + "rand", + "random", + "wyrand" + ], + "readme": "README.md", + "repository": "https://github.com/smol-rs/fastrand", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "fiat-crypto", + "version": "0.2.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#fiat-crypto@0.2.9", + "license": "MIT OR Apache-2.0 OR BSD-1-Clause", + "license_file": null, + "description": "Fiat-crypto generated Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fiat_crypto", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fiat-crypto-0.2.9/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fiat-crypto-0.2.9/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Fiat Crypto library authors " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/mit-plv/fiat-crypto", + "homepage": "https://github.com/mit-plv/fiat-crypto", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "filetime", + "version": "0.2.25", + "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Platform-agnostic accessors of timestamps in File metadata\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libredox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"redox\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.27", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Storage_FileSystem" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "filetime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.25/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.25/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "timestamp", + "mtime" + ], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/filetime", + "homepage": "https://github.com/alexcrichton/filetime", + "documentation": "https://docs.rs/filetime", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "first-contract", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "first_contract", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "first-contract-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "first-contract", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "first-contract-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "flate2", + "version": "1.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams.\nSupports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,\nand raw deflate streams.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cloudflare-zlib-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libz-ng-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libz-rs-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "rust-allocator" + ], + "target": null, + "registry": null + }, + { + "name": "libz-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "with-alloc" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "with-alloc" + ], + "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "flate2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "compress_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/compress_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decompress_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/decompress_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflatedecoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflatedecoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflatedecoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflateencoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflateencoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflateencoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzbuilder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzbuilder.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzdecoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzdecoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzdecoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzencoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzencoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzencoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzmultidecoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzmultidecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzmultidecoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzmultidecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibdecoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibdecoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibdecoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibencoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibencoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibencoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "early-flush", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/early-flush.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "empty-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/empty-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gunzip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/gunzip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zero-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/zero-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "any_impl": [], + "any_zlib": [ + "any_impl" + ], + "cloudflare-zlib-sys": [ + "dep:cloudflare-zlib-sys" + ], + "cloudflare_zlib": [ + "any_zlib", + "cloudflare-zlib-sys" + ], + "default": [ + "rust_backend" + ], + "libz-ng-sys": [ + "dep:libz-ng-sys" + ], + "libz-rs-sys": [ + "dep:libz-rs-sys" + ], + "libz-sys": [ + "dep:libz-sys" + ], + "miniz-sys": [ + "rust_backend" + ], + "miniz_oxide": [ + "dep:miniz_oxide" + ], + "rust_backend": [ + "miniz_oxide", + "any_impl" + ], + "zlib": [ + "any_zlib", + "libz-sys" + ], + "zlib-default": [ + "any_zlib", + "libz-sys/default" + ], + "zlib-ng": [ + "any_zlib", + "libz-ng-sys" + ], + "zlib-ng-compat": [ + "zlib", + "libz-sys/zlib-ng" + ], + "zlib-rs": [ + "any_zlib", + "libz-rs-sys" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton ", + "Josh Triplett " + ], + "categories": [ + "compression", + "api-bindings" + ], + "keywords": [ + "gzip", + "deflate", + "zlib", + "zlib-ng", + "encoding" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/flate2-rs", + "homepage": "https://github.com/rust-lang/flate2-rs", + "documentation": "https://docs.rs/flate2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.67.0" + }, + { + "name": "fnv", + "version": "1.0.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "license": "Apache-2.0 / MIT", + "license_file": null, + "description": "Fowler–Noll–Vo hash function", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fnv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/servo/rust-fnv", + "homepage": null, + "documentation": "https://doc.servo.org/fnv/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "foldhash", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", + "license": "Zlib", + "license_file": null, + "description": "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "foldhash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Orson Peters " + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "hash", + "hasher", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/orlp/foldhash", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "foreign-types", + "version": "0.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A framework for Rust wrappers over C APIs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "foreign-types-shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "foreign_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/sfackler/foreign-types", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "foreign-types-shared", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "An internal crate used by foreign-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "foreign_types_shared", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/sfackler/foreign-types", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "form_urlencoded", + "version": "1.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "form_urlencoded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + } + ], + "features": { + "alloc": [ + "percent-encoding/alloc" + ], + "default": [ + "std" + ], + "std": [ + "alloc", + "percent-encoding/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "no_std" + ], + "keywords": [], + "readme": null, + "repository": "https://github.com/servo/rust-url", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.51" + }, + { + "name": "formatted-message-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "formatted_message_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/src/formatted_message_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "msg_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "msg_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "msg_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "formatted-message-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "formatted-message-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "formatted-message-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/src/forwarder_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "forwarder", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder_interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/src/interact.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/src/interactor_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "interact_cs_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/interact_cs_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "interact_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/interact_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenarios_go_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/scenarios_go_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-legacy", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder_legacy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/src/forwarder_legacy_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-legacy-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "forwarder-legacy", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-legacy-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "forwarder", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-queue", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-wasm-adapter", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder_queue", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/src/forwarder_queue.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "multiversx-sc-wasm-adapter": [ + "dep:multiversx-sc-wasm-adapter" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Costin Carabas " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-queue-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "forwarder-queue", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-queue-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-raw", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder_raw", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/src/forwarder_raw.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-raw-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "forwarder-raw", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-raw-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fractional-nfts", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fractional_nfts", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/src/fractional_nfts.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fractional-nfts-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "fractional-nfts", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "fractional-nfts-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "futures", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "sink" + ], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-executor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-task", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "sink" + ], + "target": null, + "registry": null + }, + { + "name": "assert_matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "_require_features", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/_require_features.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async_await_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/async_await_macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "auto_traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/auto_traits.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bilock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/bilock.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/compat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "eager_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/eager_drop.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "eventual", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/eventual.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_abortable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_abortable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_basic_combinators", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_basic_combinators.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_fuse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_fuse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_inspect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_inspect.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_join_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_join_all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_obj", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_obj.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_select_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_select_all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_select_ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_select_ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_shared", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_shared.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_try_flatten_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_try_flatten_stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_try_join_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_try_join_all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_buf_reader", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_buf_reader.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_buf_writer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_buf_writer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_cursor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_cursor.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_line_writer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_line_writer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_lines", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_lines.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_exact", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_exact.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_line", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_line.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_to_end", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_to_end.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_to_string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_to_string.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_until", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_until.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_window", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_window.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lock_mutex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/lock_mutex.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro_comma_support", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/macro_comma_support.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "object_safety", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/object_safety.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "oneshot", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/oneshot.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ready_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/ready_queue.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "recurse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/recurse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sink", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/sink.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sink_fanout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/sink_fanout.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_abortable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_abortable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_buffer_unordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_buffer_unordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_catch_unwind", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_catch_unwind.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_futures_ordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_futures_ordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_futures_unordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_futures_unordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_into_async_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_into_async_read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_peekable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_peekable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_select_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_select_all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_select_next_some", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_select_next_some.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_split.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_try_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_try_stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_unfold", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_unfold.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_arc_wake", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/task_arc_wake.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_atomic_waker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/task_atomic_waker.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/test_macro.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/try_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "futures-core/alloc", + "futures-task/alloc", + "futures-sink/alloc", + "futures-channel/alloc", + "futures-util/alloc" + ], + "async-await": [ + "futures-util/async-await", + "futures-util/async-await-macro" + ], + "bilock": [ + "futures-util/bilock" + ], + "cfg-target-has-atomic": [], + "compat": [ + "std", + "futures-util/compat" + ], + "default": [ + "std", + "async-await", + "executor" + ], + "executor": [ + "std", + "futures-executor/std" + ], + "futures-executor": [ + "dep:futures-executor" + ], + "io-compat": [ + "compat", + "futures-util/io-compat" + ], + "std": [ + "alloc", + "futures-core/std", + "futures-task/std", + "futures-io/std", + "futures-sink/std", + "futures-util/std", + "futures-util/io", + "futures-util/channel" + ], + "thread-pool": [ + "executor", + "futures-executor/thread-pool" + ], + "unstable": [ + "futures-core/unstable", + "futures-task/unstable", + "futures-channel/unstable", + "futures-io/unstable", + "futures-util/unstable" + ], + "write-all-vectored": [ + "futures-util/write-all-vectored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "std", + "async-await", + "compat", + "io-compat", + "executor", + "thread-pool" + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "asynchronous" + ], + "keywords": [ + "futures", + "async", + "future" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-channel", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Channels for asynchronous communication using futures-rs.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_channel", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "channel", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/channel.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mpsc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mpsc-close", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc-close.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mpsc-size_hint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc-size_hint.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "oneshot", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/oneshot.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mpsc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/benches/sync_mpsc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "futures-core/alloc" + ], + "cfg-target-has-atomic": [], + "default": [ + "std" + ], + "futures-sink": [ + "dep:futures-sink" + ], + "sink": [ + "futures-sink" + ], + "std": [ + "alloc", + "futures-core/std" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-core", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The core traits and types in for the `futures` library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "require-cas" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "cfg-target-has-atomic": [], + "default": [ + "std" + ], + "portable-atomic": [ + "dep:portable-atomic" + ], + "std": [ + "alloc" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "futures-executor", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Executors for asynchronous tasks based on the futures-rs library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-task", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_executor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "local_pool", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/tests/local_pool.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "thread_notify", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/benches/thread_notify.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "num_cpus": [ + "dep:num_cpus" + ], + "std": [ + "futures-core/std", + "futures-task/std", + "futures-util/std" + ], + "thread-pool": [ + "std", + "num_cpus" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-io", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_io", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "futures-macro", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The futures-rs procedural macro implementations.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "futures_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-sink", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The asynchronous `Sink` trait for the futures-rs library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_sink", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "futures-task", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Tools for working with tasks.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_task", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "cfg-target-has-atomic": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-util", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Common utilities and extension traits for the futures-rs library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "futures-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-task", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.25", + "kind": null, + "rename": "futures_01", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bilock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/bilock.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_unordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/flatten_unordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "futures_unordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/futures_unordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "select", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/select.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "futures-core/alloc", + "futures-task/alloc" + ], + "async-await": [], + "async-await-macro": [ + "async-await", + "futures-macro" + ], + "bilock": [], + "cfg-target-has-atomic": [], + "channel": [ + "std", + "futures-channel" + ], + "compat": [ + "std", + "futures_01" + ], + "default": [ + "std", + "async-await", + "async-await-macro" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "futures-io": [ + "dep:futures-io" + ], + "futures-macro": [ + "dep:futures-macro" + ], + "futures-sink": [ + "dep:futures-sink" + ], + "futures_01": [ + "dep:futures_01" + ], + "io": [ + "std", + "futures-io", + "memchr" + ], + "io-compat": [ + "io", + "compat", + "tokio-io" + ], + "memchr": [ + "dep:memchr" + ], + "portable-atomic": [ + "futures-core/portable-atomic" + ], + "sink": [ + "futures-sink" + ], + "slab": [ + "dep:slab" + ], + "std": [ + "alloc", + "futures-core/std", + "futures-task/std", + "slab" + ], + "tokio-io": [ + "dep:tokio-io" + ], + "unstable": [ + "futures-core/unstable", + "futures-task/unstable" + ], + "write-all-vectored": [ + "io" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "gas-schedule-generator", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-vm", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm" + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gas_schedule_generator", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "gas-schedule-generator", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generation_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/tests/generation_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "generic-array", + "version": "0.14.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "license": "MIT", + "license_file": null, + "description": "Generic types implementing functionality of arrays", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typenum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "generic_array", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "more_lengths": [], + "serde": [ + "dep:serde" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "zeroize" + ] + } + } + }, + "publish": null, + "authors": [ + "Bartłomiej Kamiński ", + "Aaron Trent " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "generic", + "array" + ], + "readme": "README.md", + "repository": "https://github.com/fizyk20/generic-array.git", + "homepage": null, + "documentation": "http://fizyk20.github.io/generic-array/generic_array/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "generic-array", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", + "license": "MIT", + "license_file": null, + "description": "Generic types implementing functionality of arrays", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "const-default", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "faster-hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typenum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "const-generics" + ], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "generic_array", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-1.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "const-default": [ + "dep:const-default" + ], + "faster-hex": [ + "dep:faster-hex" + ], + "internals": [], + "serde": [ + "dep:serde" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-1.2.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "zeroize", + "const-default", + "alloc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "all-features": true + } + }, + "publish": null, + "authors": [ + "Bartłomiej Kamiński ", + "Aaron Trent " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "generic", + "array" + ], + "readme": "README.md", + "repository": "https://github.com/fizyk20/generic-array.git", + "homepage": null, + "documentation": "https://fizyk20.github.io/generic-array/generic_array/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.83" + }, + { + "name": "getrandom", + "version": "0.2.16", + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A small cross-platform library for retrieving random data from system source", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.62", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "getrandom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/custom.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "normal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/normal.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rdrand", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/rdrand.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/benches/buffer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "custom": [], + "js": [ + "wasm-bindgen", + "js-sys" + ], + "js-sys": [ + "dep:js-sys" + ], + "linux_disable_fallback": [], + "rdrand": [], + "rustc-dep-of-std": [ + "compiler_builtins", + "core", + "libc/rustc-dep-of-std", + "wasi/rustc-dep-of-std" + ], + "std": [], + "test-in-browser": [], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/Cargo.toml", + "metadata": { + "cross": { + "target": { + "x86_64-unknown-netbsd": { + "pre-build": [ + "mkdir -p /tmp/netbsd", + "curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O", + "tar -C /tmp/netbsd -xJf base.tar.xz", + "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", + "rm base.tar.xz", + "rm -rf /tmp/netbsd" + ] + } + } + }, + "docs": { + "rs": { + "features": [ + "std", + "custom" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers" + ], + "categories": [ + "os", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-random/getrandom", + "homepage": null, + "documentation": "https://docs.rs/getrandom", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "getrandom", + "version": "0.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A small cross-platform library for retrieving random data from system source", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.98", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\")))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\")))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.77", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\"), target_feature = \"atomics\"))", + "registry": null + }, + { + "name": "wasi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))", + "registry": null + }, + { + "name": "r-efi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^5.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"netbsd\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"solaris\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"vxworks\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "getrandom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/benches/buffer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "rustc-dep-of-std": [ + "dep:compiler_builtins", + "dep:core" + ], + "std": [], + "wasm_js": [ + "dep:wasm-bindgen", + "dep:js-sys" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/Cargo.toml", + "metadata": { + "cross": { + "target": { + "x86_64-unknown-netbsd": { + "pre-build": [ + "mkdir -p /tmp/netbsd", + "curl -fO https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.3/amd64/binary/sets/base.tar.xz", + "tar -C /tmp/netbsd -xJf base.tar.xz", + "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", + "rm base.tar.xz", + "rm -rf /tmp/netbsd" + ] + } + } + }, + "docs": { + "rs": { + "features": [ + "std" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers" + ], + "categories": [ + "os", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-random/getrandom", + "homepage": null, + "documentation": "https://docs.rs/getrandom", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "gimli", + "version": "0.28.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library for reading and writing the DWARF debugging format.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fallible-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-assembler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gimli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.28.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "read-all", + "write" + ], + "endian-reader": [ + "read", + "dep:stable_deref_trait" + ], + "fallible-iterator": [ + "dep:fallible-iterator" + ], + "read": [ + "read-core" + ], + "read-all": [ + "read", + "std", + "fallible-iterator", + "endian-reader" + ], + "read-core": [], + "rustc-dep-of-std": [ + "dep:core", + "dep:alloc", + "dep:compiler_builtins" + ], + "std": [ + "fallible-iterator?/std", + "stable_deref_trait?/std" + ], + "write": [ + "dep:indexmap" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.28.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "parser-implementations" + ], + "keywords": [ + "DWARF", + "debug", + "ELF", + "eh_frame" + ], + "readme": "./README.md", + "repository": "https://github.com/gimli-rs/gimli", + "homepage": null, + "documentation": "https://docs.rs/gimli", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "gimli", + "version": "0.31.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library for reading and writing the DWARF debugging format.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fallible-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-assembler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gimli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.31.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "read-all", + "write" + ], + "endian-reader": [ + "read", + "dep:stable_deref_trait" + ], + "fallible-iterator": [ + "dep:fallible-iterator" + ], + "read": [ + "read-core" + ], + "read-all": [ + "read", + "std", + "fallible-iterator", + "endian-reader" + ], + "read-core": [], + "rustc-dep-of-std": [ + "dep:core", + "dep:alloc", + "dep:compiler_builtins" + ], + "std": [ + "fallible-iterator?/std", + "stable_deref_trait?/std" + ], + "write": [ + "dep:indexmap" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.31.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "parser-implementations" + ], + "keywords": [ + "DWARF", + "debug", + "ELF", + "eh_frame" + ], + "readme": "README.md", + "repository": "https://github.com/gimli-rs/gimli", + "homepage": null, + "documentation": "https://docs.rs/gimli", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "glob", + "version": "0.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Support for matching file paths against Unix shell style patterns.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "glob", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "glob-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/tests/glob-std.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "filesystem" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/glob", + "homepage": "https://github.com/rust-lang/glob", + "documentation": "https://docs.rs/glob/0.3.1", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.23.0" + }, + { + "name": "globset", + "version": "0.4.16", + "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Cross platform single glob and glob set matching. Glob set matching is the\nprocess of matching one or more glob patterns against a single candidate path\nsimultaneously, and returning all of the globs that matched.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "perf", + "syntax", + "meta", + "nfa", + "hybrid" + ], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.188", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.107", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "globset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "log" + ], + "log": [ + "dep:log" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ], + "simd-accel": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "regex", + "glob", + "multiple", + "set", + "pattern" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", + "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", + "documentation": "https://docs.rs/globset", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo", + "version": "0.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A modular toolkit for Rust and WebAssembly", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo-console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-dialogs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-events", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-history", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-net", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-render", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-storage", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-timers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-worker", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-0.8.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "console": [ + "gloo-console" + ], + "default": [ + "timers", + "events", + "file", + "dialogs", + "storage", + "render", + "console", + "utils", + "history", + "worker", + "net" + ], + "dialogs": [ + "gloo-dialogs" + ], + "events": [ + "gloo-events" + ], + "file": [ + "gloo-file" + ], + "futures": [ + "timers", + "file", + "worker", + "gloo-timers/futures", + "gloo-file/futures", + "gloo-worker/futures" + ], + "gloo-console": [ + "dep:gloo-console" + ], + "gloo-dialogs": [ + "dep:gloo-dialogs" + ], + "gloo-events": [ + "dep:gloo-events" + ], + "gloo-file": [ + "dep:gloo-file" + ], + "gloo-history": [ + "dep:gloo-history" + ], + "gloo-net": [ + "dep:gloo-net" + ], + "gloo-render": [ + "dep:gloo-render" + ], + "gloo-storage": [ + "dep:gloo-storage" + ], + "gloo-timers": [ + "dep:gloo-timers" + ], + "gloo-utils": [ + "dep:gloo-utils" + ], + "gloo-worker": [ + "dep:gloo-worker" + ], + "history": [ + "gloo-history" + ], + "net": [ + "gloo-net" + ], + "render": [ + "gloo-render" + ], + "storage": [ + "gloo-storage" + ], + "timers": [ + "gloo-timers" + ], + "utils": [ + "gloo-utils" + ], + "worker": [ + "gloo-worker" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-0.8.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "docsrs" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo", + "homepage": "https://gloo-rs.web.app/", + "documentation": "https://docs.rs/gloo/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-console", + "version": "0.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with browser's console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "console", + "Document" + ], + "target": null, + "registry": null + }, + { + "name": "gloo-timers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_console", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "web", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/tests/web.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "development-tools::profiling", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/console", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": "https://docs.rs/gloo-console/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-dialogs", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with dialogs in browser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Window" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_dialogs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-dialogs-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-dialogs-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/dialogs", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-events", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with DOM event listeners", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Event", + "EventTarget", + "AddEventListenerOptions" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "HtmlElement", + "Window", + "Document", + "Element", + "MouseEvent", + "ProgressEvent" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_events", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "web", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/tests/web.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "web-programming", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/events", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-file", + "version": "0.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with JavaScript files and blobs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-events", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Blob", + "File", + "FileList", + "FileReader", + "HtmlInputElement", + "BlobPropertyBag", + "FilePropertyBag", + "DomException", + "Url" + ], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmbind" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": "futures_rs", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Window", + "Response" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "web", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/tests/web.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "futures": [ + "futures-channel" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "mime": [ + "dep:mime" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "futures" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/file", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-history", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Universal Session History", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo-events", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde-wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "History", + "Window", + "Location", + "Url" + ], + "target": null, + "registry": null + }, + { + "name": "gloo-timers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_history", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser_history", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/browser_history.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser_history_feat_serialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/browser_history_feat_serialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_history", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/hash_history.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_history_feat_serialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/hash_history_feat_serialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "memory_history", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/memory_history.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "memory_history_feat_serialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/memory_history_feat_serialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/utils.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "query" + ], + "query": [ + "thiserror", + "serde_urlencoded" + ], + "serde_urlencoded": [ + "dep:serde_urlencoded" + ], + "thiserror": [ + "dep:thiserror" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "history", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/history", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-net", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "HTTP requests library for WASM Apps", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_net", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/tests/http.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "query", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/tests/query.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "json", + "websocket", + "http", + "eventsource" + ], + "eventsource": [ + "futures-channel", + "futures-core", + "pin-project", + "web-sys/Event", + "web-sys/EventTarget", + "web-sys/EventSource", + "web-sys/MessageEvent" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "futures-core": [ + "dep:futures-core" + ], + "futures-sink": [ + "dep:futures-sink" + ], + "http": [ + "web-sys/Headers", + "web-sys/UrlSearchParams", + "web-sys/Url", + "web-sys/Request", + "web-sys/RequestInit", + "web-sys/RequestMode", + "web-sys/Response", + "web-sys/ResponseInit", + "web-sys/ResponseType", + "web-sys/Window", + "web-sys/RequestCache", + "web-sys/RequestCredentials", + "web-sys/ObserverCallback", + "web-sys/RequestRedirect", + "web-sys/ReferrerPolicy", + "web-sys/AbortSignal", + "web-sys/ReadableStream", + "web-sys/Blob", + "web-sys/FormData", + "web-sys/WorkerGlobalScope" + ], + "json": [ + "serde", + "serde_json", + "gloo-utils/serde" + ], + "pin-project": [ + "dep:pin-project" + ], + "serde": [ + "dep:serde" + ], + "serde_json": [ + "dep:serde_json" + ], + "websocket": [ + "web-sys/WebSocket", + "web-sys/AddEventListenerOptions", + "web-sys/ErrorEvent", + "web-sys/FileReader", + "web-sys/MessageEvent", + "web-sys/ProgressEvent", + "web-sys/CloseEvent", + "web-sys/CloseEventInit", + "web-sys/BinaryType", + "web-sys/Blob", + "futures-channel", + "futures-core", + "futures-sink", + "pin-project" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group", + "Muhammad Hamza " + ], + "categories": [ + "wasm", + "web-programming::http-client", + "api-bindings" + ], + "keywords": [ + "requests", + "http", + "wasm", + "websockets" + ], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-net", + "version": "0.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "HTTP requests library for WASM Apps", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_net", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/tests/http.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "query", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/tests/query.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "json", + "websocket", + "http", + "eventsource" + ], + "eventsource": [ + "futures-channel", + "futures-core", + "pin-project", + "web-sys/Event", + "web-sys/EventTarget", + "web-sys/EventSource", + "web-sys/MessageEvent" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "futures-core": [ + "dep:futures-core" + ], + "futures-io": [ + "dep:futures-io" + ], + "futures-sink": [ + "dep:futures-sink" + ], + "http": [ + "web-sys/Headers", + "web-sys/UrlSearchParams", + "web-sys/Url", + "web-sys/Request", + "web-sys/RequestInit", + "web-sys/RequestMode", + "web-sys/Response", + "web-sys/ResponseInit", + "web-sys/ResponseType", + "web-sys/RequestCache", + "web-sys/RequestCredentials", + "web-sys/ObserverCallback", + "web-sys/RequestRedirect", + "web-sys/ReferrerPolicy", + "web-sys/AbortSignal", + "web-sys/ReadableStream", + "web-sys/Blob", + "web-sys/FormData" + ], + "io-util": [ + "futures-io" + ], + "json": [ + "serde", + "serde_json", + "gloo-utils/serde" + ], + "pin-project": [ + "dep:pin-project" + ], + "serde": [ + "dep:serde" + ], + "serde_json": [ + "dep:serde_json" + ], + "websocket": [ + "web-sys/WebSocket", + "web-sys/AddEventListenerOptions", + "web-sys/ErrorEvent", + "web-sys/FileReader", + "web-sys/MessageEvent", + "web-sys/ProgressEvent", + "web-sys/CloseEvent", + "web-sys/CloseEventInit", + "web-sys/BinaryType", + "web-sys/Blob", + "futures-channel", + "futures-core", + "futures-sink", + "pin-project" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group", + "Elina " + ], + "categories": [ + "wasm", + "web-programming::http-client", + "api-bindings" + ], + "keywords": [ + "requests", + "http", + "wasm", + "websockets" + ], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64" + }, + { + "name": "gloo-render", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with browser's requestAnimationFrame", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Window" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_render", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-render-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-render-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "storage", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/storage", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-storage", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with local and session storage in browser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Storage", + "Window" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_storage", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "local_storage", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/tests/local_storage.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "session_storage", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/tests/session_storage.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "storage", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/storage", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-timers", + "version": "0.2.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with JavaScript timers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_timers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "node", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/tests/node.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "web", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/tests/web.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "futures": [ + "futures-core", + "futures-channel" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "futures-core": [ + "dep:futures-core" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "futures" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/timers", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-utils", + "version": "0.1.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Convenience crate for common `web_sys` features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Document", + "History", + "HtmlElement", + "Location", + "Window", + "HtmlHeadElement", + "Element" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "serde" + ], + "serde": [ + "dep:serde", + "dep:serde_json" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/utils", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-utils", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for common `web_sys` features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Document", + "History", + "HtmlElement", + "Location", + "Window", + "HtmlHeadElement", + "Element" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "serde" + ], + "serde": [ + "dep:serde", + "dep:serde_json" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/utils", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64" + }, + { + "name": "gloo-worker", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with Web Workers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anymap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Blob", + "BlobPropertyBag", + "DedicatedWorkerGlobalScope", + "MessageEvent", + "Url", + "Worker", + "WorkerOptions" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_worker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-worker-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "futures": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-worker-0.2.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/worker", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "h2", + "version": "0.4.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "license": "MIT", + "license_file": null, + "description": "An HTTP/2 client and server", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "atomic-waker", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "io-util" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "codec", + "io" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rt-multi-thread", + "macros", + "sync", + "net" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "h2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "akamai", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/akamai.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/client.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/server.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/benches/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "stream": [], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "stream" + ] + } + } + }, + "publish": null, + "authors": [ + "Carl Lerche ", + "Sean McArthur " + ], + "categories": [ + "asynchronous", + "web-programming", + "network-programming" + ], + "keywords": [ + "http", + "async", + "non-blocking" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/h2", + "homepage": null, + "documentation": "https://docs.rs/h2", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "hashbrown", + "version": "0.12.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust port of Google's SwissTable hash map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashbrown", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hasher", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/hasher.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rayon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/rayon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "insert_unique_unchecked", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ahash": [ + "dep:ahash" + ], + "ahash-compile-time-rng": [ + "ahash/compile-time-rng" + ], + "alloc": [ + "dep:alloc" + ], + "bumpalo": [ + "dep:bumpalo" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "ahash", + "inline-more" + ], + "inline-more": [], + "nightly": [], + "raw": [], + "rayon": [ + "dep:rayon" + ], + "rustc-dep-of-std": [ + "nightly", + "core", + "compiler_builtins", + "alloc", + "rustc-internal-api" + ], + "rustc-internal-api": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "nightly", + "rayon", + "serde", + "raw" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "no_std", + "hashmap", + "swisstable" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/hashbrown", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "hashbrown", + "version": "0.14.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust port of Google's SwissTable hash map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "allocator-api2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.42", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "allocator-api2" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.42", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "validation" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashbrown", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hasher", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/hasher.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "raw", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/raw.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rayon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/rayon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "insert_unique_unchecked", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/benches/insert_unique_unchecked.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ahash": [ + "dep:ahash" + ], + "alloc": [ + "dep:alloc" + ], + "allocator-api2": [ + "dep:allocator-api2" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "ahash", + "inline-more", + "allocator-api2" + ], + "equivalent": [ + "dep:equivalent" + ], + "inline-more": [], + "nightly": [ + "allocator-api2?/nightly", + "bumpalo/allocator_api" + ], + "raw": [], + "rayon": [ + "dep:rayon" + ], + "rkyv": [ + "dep:rkyv" + ], + "rustc-dep-of-std": [ + "nightly", + "core", + "compiler_builtins", + "alloc", + "rustc-internal-api" + ], + "rustc-internal-api": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "nightly", + "rayon", + "serde", + "raw" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "no_std", + "hashmap", + "swisstable" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/hashbrown", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "hashbrown", + "version": "0.15.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust port of Google's SwissTable hash map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "allocator-api2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "foldhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "allocator-api2" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashbrown", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hasher", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/hasher.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rayon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/rayon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "insert_unique_unchecked", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/insert_unique_unchecked.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "set_ops", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/set_ops.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "dep:alloc" + ], + "allocator-api2": [ + "dep:allocator-api2" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "default-hasher", + "inline-more", + "allocator-api2", + "equivalent", + "raw-entry" + ], + "default-hasher": [ + "dep:foldhash" + ], + "equivalent": [ + "dep:equivalent" + ], + "inline-more": [], + "nightly": [ + "allocator-api2?/nightly", + "bumpalo/allocator_api" + ], + "raw-entry": [], + "rayon": [ + "dep:rayon" + ], + "rustc-dep-of-std": [ + "nightly", + "core", + "compiler_builtins", + "alloc", + "rustc-internal-api", + "raw-entry" + ], + "rustc-internal-api": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "nightly", + "rayon", + "serde", + "raw-entry" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "no_std", + "hashmap", + "swisstable" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/hashbrown", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "heck", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "heck is a case conversion library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "heck", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "no-std" + ], + "keywords": [ + "string", + "case", + "camel", + "snake", + "unicode" + ], + "readme": "README.md", + "repository": "https://github.com/withoutboats/heck", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "hermit-abi", + "version": "0.3.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Hermit system calls definitions.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hermit_abi", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hermit-abi-0.3.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [ + "dep:alloc" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [], + "rustc-dep-of-std": [ + "core", + "alloc", + "compiler_builtins/rustc-dep-of-std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hermit-abi-0.3.9/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Stefan Lankes" + ], + "categories": [ + "os" + ], + "keywords": [ + "unikernel", + "libos" + ], + "readme": "README.md", + "repository": "https://github.com/hermit-os/hermit-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hex", + "version": "0.4.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Encoding and decoding data into/from hexadecimal representation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "faster-hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version-sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "version-number", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/tests/version-number.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "hex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/benches/hex.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "KokaKiwi " + ], + "categories": [ + "encoding", + "no-std" + ], + "keywords": [ + "no_std", + "hex" + ], + "readme": "README.md", + "repository": "https://github.com/KokaKiwi/rust-hex", + "homepage": null, + "documentation": "https://docs.rs/hex/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hex-conservative", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", + "license": "CC0-1.0", + "license_file": null, + "description": "A hex encoding and decoding crate with a conservative MSRV and dependency policy.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "core2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hex_conservative", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/custom.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hexy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/hexy.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "wrap_array_display_hex_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/wrap_array_display_hex_trait.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "wrap_array_fmt_traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/wrap_array_fmt_traits.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "core2": [ + "dep:core2" + ], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Poelstra " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "encoding", + "hex", + "hexadecimal" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/hex-conservative", + "homepage": null, + "documentation": "https://docs.rs/hex-conservative/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hex-literal", + "version": "0.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Macro for converting hexadecimal string to a byte array at compile time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hex_literal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/tests/basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [], + "keywords": [ + "hex", + "literals" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/hex-literal", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "hmac", + "version": "0.12.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Generic implementation of Hash-based Message Authentication Code (HMAC)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "mac" + ], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "md-5", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha-1", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "streebog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hmac", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "reset": [], + "std": [ + "digest/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "mac", + "hmac", + "digest" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/MACs", + "homepage": null, + "documentation": "https://docs.rs/hmac", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "home", + "version": "0.5.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Shared definitions of home directories.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_UI_Shell", + "Win32_System_Com" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "home", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Brian Anderson " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/cargo", + "homepage": "https://github.com/rust-lang/cargo", + "documentation": "https://docs.rs/home", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "http", + "version": "0.2.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A set of types for representing HTTP requests and responses.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "<=1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "seahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "header_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/header_map.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "header_map_fuzz", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/header_map_fuzz.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "status_code", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/status_code.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton ", + "Carl Lerche ", + "Sean McArthur " + ], + "categories": [ + "web-programming" + ], + "keywords": [ + "http" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/http", + "homepage": null, + "documentation": "https://docs.rs/http", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.49.0" + }, + { + "name": "http", + "version": "1.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A set of types for representing HTTP requests and responses.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "header_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/header_map.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "header_map_fuzz", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/header_map_fuzz.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "status_code", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/status_code.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton ", + "Carl Lerche ", + "Sean McArthur " + ], + "categories": [ + "web-programming" + ], + "keywords": [ + "http" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/http", + "homepage": null, + "documentation": "https://docs.rs/http", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.49.0" + }, + { + "name": "http-body", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "license": "MIT", + "license_file": null, + "description": "Trait representing an asynchronous, streaming, HTTP request or response body.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "http_body", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "is_end_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/tests/is_end_stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Carl Lerche ", + "Lucio Franco ", + "Sean McArthur " + ], + "categories": [ + "web-programming" + ], + "keywords": [ + "http" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/http-body", + "homepage": null, + "documentation": "https://docs.rs/http-body", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.49" + }, + { + "name": "http-body-util", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Combinators and adapters for HTTP request or response bodies.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "rt", + "sync", + "rt-multi-thread" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "http_body_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "channel": [ + "dep:tokio" + ], + "default": [], + "full": [ + "channel" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Carl Lerche ", + "Lucio Franco ", + "Sean McArthur " + ], + "categories": [ + "web-programming" + ], + "keywords": [ + "http" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/http-body", + "homepage": null, + "documentation": "https://docs.rs/http-body-util", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "httparse", + "version": "1.10.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "httparse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uri", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/tests/uri.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/benches/parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "network-programming", + "no-std", + "parser-implementations", + "web-programming" + ], + "keywords": [ + "http", + "parser", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/httparse", + "homepage": null, + "documentation": "https://docs.rs/httparse", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hyper", + "version": "1.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "license": "MIT", + "license_file": null, + "description": "A protective and efficient HTTP library for all.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "h2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "httparse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "httpdate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "const_generics", + "const_new" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "want", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "form_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sink" + ], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "sink" + ], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "spmc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fs", + "macros", + "net", + "io-std", + "io-util", + "rt", + "rt-multi-thread", + "sync", + "time", + "test-util" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hyper", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.6.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "capi": [], + "client": [ + "dep:want", + "dep:pin-project-lite", + "dep:smallvec" + ], + "default": [], + "ffi": [ + "dep:http-body-util", + "futures-util?/alloc" + ], + "full": [ + "client", + "http1", + "http2", + "server" + ], + "http1": [ + "dep:futures-channel", + "dep:futures-util", + "dep:httparse", + "dep:itoa" + ], + "http2": [ + "dep:futures-channel", + "dep:futures-util", + "dep:h2" + ], + "nightly": [], + "server": [ + "dep:httpdate", + "dep:pin-project-lite", + "dep:smallvec" + ], + "tracing": [ + "dep:tracing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.6.0/Cargo.toml", + "metadata": { + "capi": { + "header": { + "generation": false, + "subdirectory": false + }, + "install": { + "include": { + "asset": [ + { + "from": "capi/include/hyper.h" + } + ] + } + } + }, + "docs": { + "rs": { + "features": [ + "ffi", + "full", + "tracing" + ], + "rustdoc-args": [ + "--cfg", + "hyper_unstable_ffi", + "--cfg", + "hyper_unstable_tracing" + ] + } + }, + "playground": { + "features": [ + "full" + ] + } + }, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "network-programming", + "web-programming::http-client", + "web-programming::http-server" + ], + "keywords": [ + "http", + "hyper", + "hyperium" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/hyper", + "homepage": "https://hyper.rs", + "documentation": "https://docs.rs/hyper", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "hyper-rustls", + "version": "0.27.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", + "license": "Apache-2.0 OR ISC OR MIT", + "license_file": null, + "description": "Rustls+hyper integration for pure rust HTTPS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "client-legacy", + "tokio" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-native-certs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-platform-verifier", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "server-auto" + ], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "tls12" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pemfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "io-std", + "macros", + "net", + "rt-multi-thread" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hyper_rustls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/examples/client.rs", + "edition": "2021", + "required-features": [ + "native-tokio", + "http1" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/examples/server.rs", + "edition": "2021", + "required-features": [ + "aws-lc-rs" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "aws-lc-rs": [ + "rustls/aws_lc_rs" + ], + "default": [ + "native-tokio", + "http1", + "tls12", + "logging", + "aws-lc-rs" + ], + "fips": [ + "aws-lc-rs", + "rustls/fips" + ], + "http1": [ + "hyper-util/http1" + ], + "http2": [ + "hyper-util/http2" + ], + "log": [ + "dep:log" + ], + "logging": [ + "log", + "tokio-rustls/logging", + "rustls/logging" + ], + "native-tokio": [ + "rustls-native-certs" + ], + "ring": [ + "rustls/ring" + ], + "rustls-native-certs": [ + "dep:rustls-native-certs" + ], + "rustls-platform-verifier": [ + "dep:rustls-platform-verifier" + ], + "tls12": [ + "tokio-rustls/tls12", + "rustls/tls12" + ], + "webpki-roots": [ + "dep:webpki-roots" + ], + "webpki-tokio": [ + "webpki-roots" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "http1", + "http2", + "logging", + "native-tokio", + "ring", + "rustls-platform-verifier", + "tls12", + "webpki-tokio" + ], + "no-default-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/hyper-rustls", + "homepage": "https://github.com/rustls/hyper-rustls", + "documentation": "https://docs.rs/hyper-rustls/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "hyper-tls", + "version": "0.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Default TLS implementation for use with hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "client-legacy", + "tokio" + ], + "target": null, + "registry": null + }, + { + "name": "native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "http1" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "io-std", + "macros", + "io-util" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hyper_tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/examples/client.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alpn": [ + "native-tls/alpn" + ], + "vendored": [ + "native-tls/vendored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [], + "keywords": [ + "hyper", + "tls", + "http", + "https", + "ssl" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/hyper-tls", + "homepage": "https://hyper.rs", + "documentation": "https://docs.rs/hyper-tls", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hyper-util", + "version": "0.1.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "license": "MIT", + "license_file": null, + "description": "hyper utilities", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.16", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "socket2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "all" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "pretty_env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "test-util", + "signal" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pnet_datalink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.35.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"linux\", target_os = \"macos\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hyper_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/client.rs", + "edition": "2021", + "required-features": [ + "client-legacy", + "http1", + "tokio" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/server.rs", + "edition": "2021", + "required-features": [ + "server", + "http1", + "tokio" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "server_graceful", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/server_graceful.rs", + "edition": "2021", + "required-features": [ + "tokio", + "server-graceful", + "server-auto" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "legacy_client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/tests/legacy_client.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__internal_happy_eyeballs_tests": [], + "client": [ + "hyper/client", + "dep:tracing", + "dep:futures-channel", + "dep:tower-service" + ], + "client-legacy": [ + "client", + "dep:socket2", + "tokio/sync", + "dep:libc" + ], + "default": [], + "full": [ + "client", + "client-legacy", + "server", + "server-auto", + "server-graceful", + "service", + "http1", + "http2", + "tokio", + "tracing" + ], + "http1": [ + "hyper/http1" + ], + "http2": [ + "hyper/http2" + ], + "server": [ + "hyper/server" + ], + "server-auto": [ + "server", + "http1", + "http2" + ], + "server-graceful": [ + "server", + "tokio/sync", + "futures-util/alloc" + ], + "service": [ + "dep:tower-service" + ], + "tokio": [ + "dep:tokio", + "tokio/net", + "tokio/rt", + "tokio/time" + ], + "tracing": [ + "dep:tracing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "full" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "network-programming", + "web-programming::http-client", + "web-programming::http-server" + ], + "keywords": [ + "http", + "hyper", + "hyperium" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/hyper-util", + "homepage": "https://hyper.rs", + "documentation": "https://docs.rs/hyper-util", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "iana-time-zone", + "version": "0.1.63", + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "get the IANA time zone for the current system", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "chrono-tz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.66", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.89", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.46", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "android_system_properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"android\")", + "registry": null + }, + { + "name": "iana-time-zone-haiku", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"haiku\")", + "registry": null + }, + { + "name": "windows-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.56, <=0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"windows\")", + "registry": null + }, + { + "name": "core-foundation-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "iana_time_zone", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_timezone", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/get_timezone.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_timezone_loop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/get_timezone_loop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stress-test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/stress-test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "fallback": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Straw ", + "René Kijewski ", + "Ryan Lopopolo " + ], + "categories": [ + "date-and-time", + "internationalization", + "os" + ], + "keywords": [ + "IANA", + "time" + ], + "readme": "README.md", + "repository": "https://github.com/strawlab/iana-time-zone", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.62.0" + }, + { + "name": "iana-time-zone-haiku", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "iana-time-zone support crate for Haiku OS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.79", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "iana_time_zone_haiku", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-haiku-0.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-haiku-0.1.2/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-haiku-0.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "René Kijewski " + ], + "categories": [ + "date-and-time", + "internationalization", + "os" + ], + "keywords": [ + "IANA", + "time" + ], + "readme": "README.md", + "repository": "https://github.com/strawlab/iana-time-zone", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "icu_collections", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Collection of API for use in ICU libraries.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive", + "yoke" + ], + "target": null, + "registry": null + }, + { + "name": "iai", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_collections", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "unicode_bmp_blocks_selector", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/examples/unicode_bmp_blocks_selector.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "char16trie", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/tests/char16trie.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cpt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/tests/cpt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "codepointtrie", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/codepointtrie.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iai_cpt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/iai_cpt.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "inv_list", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/inv_list.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "databake": [ + "dep:databake", + "zerovec/databake" + ], + "serde": [ + "dep:serde", + "zerovec/serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_locid", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "API for managing Unicode Language and Locale Identifiers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "litemap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "writeable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "iai", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_locid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "filter_langids", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/examples/filter_langids.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "syntatically_canonicalize_locales", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/examples/syntatically_canonicalize_locales.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "langid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/tests/langid.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "locale", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/tests/locale.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iai_langid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/iai_langid.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "langid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/langid.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "locale", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/locale.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "subtags", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/subtags.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [ + "serde" + ], + "databake": [ + "dep:databake" + ], + "serde": [ + "dep:serde", + "tinystr/serde" + ], + "std": [], + "zerovec": [ + "dep:zerovec" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_locid_transform", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "API for Unicode Language and Locale Identifiers canonicalization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_locid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "zerovec" + ], + "target": null, + "registry": null + }, + { + "name": "icu_locid_transform_data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "zerovec" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "yoke" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_locid_transform", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "locale_canonicalizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/tests/locale_canonicalizer.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "locale_canonicalizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/benches/locale_canonicalizer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [ + "serde" + ], + "compiled_data": [ + "dep:icu_locid_transform_data" + ], + "datagen": [ + "serde", + "dep:databake", + "zerovec/databake", + "icu_locid/databake", + "tinystr/databake" + ], + "default": [ + "compiled_data" + ], + "serde": [ + "dep:serde", + "icu_locid/serde", + "tinystr/serde", + "zerovec/serde", + "icu_provider/serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ], + "skip_optional_dependencies": true + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_locid_transform_data", + "version": "1.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", + "license": "Unicode-3.0", + "license_file": null, + "description": "Data for the icu_locid_transform crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_locid_transform_data", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/Cargo.toml", + "metadata": { + "sources": { + "cldr": { + "tagged": "46.0.0-BETA2" + }, + "icuexport": { + "tagged": "icu4x/2024-05-16/75.x" + }, + "segmenter_lstm": { + "tagged": "v0.1.0" + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_normalizer", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "API for normalizing text into Unicode Normalization Forms", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_collections", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_normalizer_data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf16_iter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf8_iter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "write16", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arraystring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "atoi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "detone", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "write16", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "arrayvec" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_normalizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "canonical_composition", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/canonical_composition.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "canonical_decomposition", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/canonical_decomposition.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "composing_normalizer_nfc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/composing_normalizer_nfc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "composing_normalizer_nfkc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/composing_normalizer_nfkc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "decomposing_normalizer_nfd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "decomposing_normalizer_nfkd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfkd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiled_data": [ + "dep:icu_normalizer_data", + "icu_properties/compiled_data" + ], + "datagen": [ + "serde", + "dep:databake", + "icu_collections/databake", + "zerovec/databake", + "icu_properties/datagen" + ], + "default": [ + "compiled_data" + ], + "experimental": [], + "serde": [ + "dep:serde", + "icu_collections/serde", + "zerovec/serde", + "icu_properties/serde" + ], + "std": [ + "icu_collections/std", + "icu_properties/std", + "icu_provider/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_normalizer_data", + "version": "1.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", + "license": "Unicode-3.0", + "license_file": null, + "description": "Data for the icu_normalizer crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_normalizer_data", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/Cargo.toml", + "metadata": { + "sources": { + "cldr": { + "tagged": "46.0.0-BETA2" + }, + "icuexport": { + "tagged": "icu4x/2024-05-16/75.x" + }, + "segmenter_lstm": { + "tagged": "v0.1.0" + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_properties", + "version": "1.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "license": "Unicode-3.0", + "license_file": null, + "description": "Definitions for Unicode properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_collections", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_locid_transform", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "compiled_data" + ], + "target": null, + "registry": null + }, + { + "name": "icu_properties_data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "zerovec" + ], + "target": null, + "registry": null + }, + { + "name": "unicode-bidi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_properties", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-1.5.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bidi": [ + "dep:unicode-bidi" + ], + "compiled_data": [ + "dep:icu_properties_data", + "dep:icu_locid_transform" + ], + "datagen": [ + "serde", + "dep:databake", + "zerovec/databake", + "icu_collections/databake", + "tinystr/databake" + ], + "default": [ + "compiled_data" + ], + "serde": [ + "dep:serde", + "tinystr/serde", + "zerovec/serde", + "icu_collections/serde", + "icu_provider/serde" + ], + "std": [ + "icu_collections/std", + "icu_provider/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-1.5.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_properties_data", + "version": "1.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", + "license": "Unicode-3.0", + "license_file": null, + "description": "Data for the icu_properties crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_properties_data", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/Cargo.toml", + "metadata": { + "sources": { + "cldr": { + "tagged": "46.0.0-BETA2" + }, + "icuexport": { + "tagged": "icu4x/2024-05-16/75.x" + }, + "segmenter_lstm": { + "tagged": "v0.1.0" + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_provider", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Trait and struct definitions for the ICU data provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "erased-serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "icu_locid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "writeable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_provider", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "data_locale_bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/benches/data_locale_bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "datagen": [ + "serde", + "dep:erased-serde", + "dep:databake", + "std", + "sync" + ], + "deserialize_bincode_1": [ + "serde", + "dep:bincode", + "std" + ], + "deserialize_json": [ + "serde", + "dep:serde_json" + ], + "deserialize_postcard_1": [ + "serde", + "dep:postcard" + ], + "experimental": [], + "log_error_context": [ + "logging" + ], + "logging": [ + "dep:log" + ], + "macros": [ + "dep:icu_provider_macros" + ], + "serde": [ + "dep:serde", + "yoke/serde" + ], + "std": [ + "icu_locid/std" + ], + "sync": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "macros" + ], + "max_combination_size": 3 + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_provider_macros", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Proc macros for ICU data providers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "icu_provider_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider_macros-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider_macros-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "ident_case", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Utility for applying case rules to Rust identifiers.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ident_case", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ident_case-1.0.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ident_case-1.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/TedDriggs/ident_case", + "homepage": null, + "documentation": "https://docs.rs/ident_case/1.0.1", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "idna", + "version": "1.0.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "idna_adapter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "const_generics" + ], + "target": null, + "registry": null + }, + { + "name": "utf8_iter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "assert_matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tester", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "idna", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/unit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unitbis", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/unitbis.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/benches/all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "compiled_data": [ + "idna_adapter/compiled_data" + ], + "default": [ + "std", + "compiled_data" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [], + "keywords": [ + "no_std", + "web", + "http" + ], + "readme": "README.md", + "repository": "https://github.com/servo/rust-url/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "idna_adapter", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Back end adapter for idna", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "icu_normalizer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "idna_adapter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "compiled_data": [ + "icu_normalizer/compiled_data", + "icu_properties/compiled_data" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "no-std", + "internationalization" + ], + "keywords": [ + "unicode", + "dns", + "idna" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/idna_adapter", + "homepage": "https://docs.rs/crate/idna_adapter/latest", + "documentation": "https://docs.rs/idna_adapter/latest/idna_adapter/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67.0" + }, + { + "name": "ignore", + "version": "0.4.23", + "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "A fast library for efficiently matching ignore files such as `.gitignore`\nagainst file paths.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "globset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "perf", + "syntax", + "meta", + "nfa", + "hybrid", + "dfa-onepass" + ], + "target": null, + "registry": null + }, + { + "name": "same-file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "crossbeam-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ignore", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "walk", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/examples/walk.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gitignore_matched_path_or_any_parents_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/tests/gitignore_matched_path_or_any_parents_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "simd-accel": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "glob", + "ignore", + "gitignore", + "pattern", + "file" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", + "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", + "documentation": "https://docs.rs/ignore", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "implicit-clone", + "version": "0.3.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Immutable types and ImplicitClone trait similar to Copy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "implicit_clone", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/implicit-clone-0.3.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "indexmap": [ + "dep:indexmap" + ], + "map": [ + "indexmap" + ], + "serde": [ + "dep:serde", + "indexmap/serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/implicit-clone-0.3.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Cecile Tonglet " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "immutable", + "cheap-clone", + "copy", + "rc" + ], + "readme": "README.md", + "repository": "https://github.com/yewstack/implicit-clone", + "homepage": "https://github.com/yewstack/implicit-clone", + "documentation": "https://docs.rs/implicit-clone", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "indexmap", + "version": "1.9.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A hash table with consistent order and fast iteration.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "raw" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": "rustc-rayon", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "indexmap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_full_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/macros_full_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/quick.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "faststring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/benches/faststring.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "quickcheck": [ + "dep:quickcheck" + ], + "rayon": [ + "dep:rayon" + ], + "rustc-rayon": [ + "dep:rustc-rayon" + ], + "serde": [ + "dep:serde" + ], + "serde-1": [ + "serde" + ], + "std": [], + "test_debug": [], + "test_low_transition_point": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arbitrary", + "quickcheck", + "serde-1", + "rayon" + ] + } + }, + "release": { + "no-dev-version": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hashmap", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/bluss/indexmap", + "homepage": null, + "documentation": "https://docs.rs/indexmap/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "indexmap", + "version": "2.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A hash table with consistent order and fast iteration.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "indexmap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_full_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/macros_full_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/quick.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "faststring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/benches/faststring.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "borsh": [ + "dep:borsh" + ], + "default": [ + "std" + ], + "quickcheck": [ + "dep:quickcheck" + ], + "rayon": [ + "dep:rayon" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "test_debug": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arbitrary", + "quickcheck", + "serde", + "borsh", + "rayon" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "allow-branch": [ + "main" + ], + "sign-tag": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hashmap", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/indexmap-rs/indexmap", + "homepage": null, + "documentation": "https://docs.rs/indexmap/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "inout", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Custom reference types for code generic over in-place and buffer-to-buffer modes of operation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "block-padding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "inout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "block-padding": [ + "dep:block-padding" + ], + "std": [ + "block-padding/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [], + "keywords": [ + "custom-reference" + ], + "readme": null, + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/inout", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact/src/comp_interact_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Costin Carabas " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ipnet", + "version": "2.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "heapless", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "serde", + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ipnet", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "heapless": [ + "dep:heapless" + ], + "json": [ + "serde", + "schemars" + ], + "schemars": [ + "dep:schemars" + ], + "ser_as_str": [ + "heapless" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Kris Price " + ], + "categories": [ + "network-programming" + ], + "keywords": [ + "IP", + "CIDR", + "network", + "prefix", + "subnet" + ], + "readme": "README.md", + "repository": "https://github.com/krisprice/ipnet", + "homepage": null, + "documentation": "https://docs.rs/ipnet", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "is_terminal_polyfill", + "version": "1.70.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Polyfill for `is_terminal` stdlib feature for use with older MSRVs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "is_terminal_polyfill", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/polyfill-rs/is_terminal_polyfill/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/polyfill-rs/is_terminal_polyfill", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70.0" + }, + { + "name": "itertools", + "version": "0.13.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "permutohedron", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "itertools", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iris", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/examples/iris.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adaptors_no_collect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/adaptors_no_collect.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/flatten_ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "laziness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/laziness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_hygiene", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/macros_hygiene.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "merge_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/merge_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "peeking_take_while", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/peeking_take_while.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/quick.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/test_core.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/test_std.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/zip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench1", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/bench1.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations_with_replacement", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/combinations_with_replacement.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "fold_specialization", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/fold_specialization.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "powerset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/powerset.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tree_reduce", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tree_reduce.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuple_combinations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tuple_combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "use_std" + ], + "use_alloc": [], + "use_std": [ + "use_alloc", + "either/use_std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "algorithms", + "rust-patterns", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "iterator", + "data-structure", + "zip", + "product" + ], + "readme": "README.md", + "repository": "https://github.com/rust-itertools/itertools", + "homepage": null, + "documentation": "https://docs.rs/itertools/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.43.1" + }, + { + "name": "itertools", + "version": "0.14.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "permutohedron", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "itertools", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iris", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/examples/iris.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adaptors_no_collect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/adaptors_no_collect.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/flatten_ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "laziness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/laziness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_hygiene", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/macros_hygiene.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "merge_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/merge_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "peeking_take_while", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/peeking_take_while.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/quick.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/test_core.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/test_std.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/zip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench1", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/bench1.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations_with_replacement", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/combinations_with_replacement.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "fold_specialization", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/fold_specialization.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "k_smallest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/k_smallest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "powerset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/powerset.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tree_reduce", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tree_reduce.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuple_combinations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tuple_combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "use_std" + ], + "use_alloc": [], + "use_std": [ + "use_alloc", + "either/use_std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "algorithms", + "rust-patterns", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "iterator", + "data-structure", + "zip", + "product" + ], + "readme": "README.md", + "repository": "https://github.com/rust-itertools/itertools", + "homepage": null, + "documentation": "https://docs.rs/itertools/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "itoa", + "version": "1.0.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Fast integer primitive to string conversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "itoa", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "no-panic": [ + "dep:no-panic" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "value-formatting", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "integer" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/itoa", + "homepage": null, + "documentation": "https://docs.rs/itoa", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "jiff", + "version": "0.2.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "A date-time library that encourages you to jump into the pit of success.\n\nThis library is heavily inspired by the Temporal project.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "jiff-static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jiff-tzdb", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.21", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.203", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.38", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "chrono-tz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "humantime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.39.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.203", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.117", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_yaml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.34", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tabwriter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.36", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "local-offset", + "macros", + "parsing" + ], + "target": null, + "registry": null + }, + { + "name": "tzfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.50", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.70", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "jiff-static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + }, + { + "name": "jiff-tzdb-platform", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(any(windows, target_family = \"wasm\"))", + "registry": null + }, + { + "name": "hifitime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(target_has_atomic = \"ptr\"))", + "registry": null + }, + { + "name": "portable-atomic-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(target_has_atomic = \"ptr\"))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52.0, <=0.59", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "Win32_Foundation", + "Win32_System_Time" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "jiff", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "serde?/alloc", + "portable-atomic-util/alloc" + ], + "default": [ + "std", + "tz-system", + "tz-fat", + "tzdb-bundle-platform", + "tzdb-zoneinfo", + "tzdb-concatenated", + "perf-inline" + ], + "js": [ + "dep:wasm-bindgen", + "dep:js-sys" + ], + "logging": [ + "dep:log" + ], + "perf-inline": [], + "serde": [ + "dep:serde" + ], + "static": [ + "static-tz", + "jiff-static?/tzdb" + ], + "static-tz": [ + "dep:jiff-static" + ], + "std": [ + "alloc", + "log?/std", + "serde?/std" + ], + "tz-fat": [ + "jiff-static?/tz-fat" + ], + "tz-system": [ + "std", + "dep:windows-sys" + ], + "tzdb-bundle-always": [ + "dep:jiff-tzdb", + "alloc" + ], + "tzdb-bundle-platform": [ + "dep:jiff-tzdb-platform", + "alloc" + ], + "tzdb-concatenated": [ + "std" + ], + "tzdb-zoneinfo": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "date-and-time", + "no-std" + ], + "keywords": [ + "date", + "time", + "calendar", + "zone", + "duration" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/jiff", + "homepage": null, + "documentation": "https://docs.rs/jiff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "jiff-static", + "version": "0.2.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#jiff-static@0.2.10", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Create static TimeZone values for Jiff (useful in core-only environments).", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "jiff-tzdb", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.93", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.38", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.98", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "jiff_static", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-static-0.2.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "perf-inline": [], + "tz-fat": [], + "tzdb": [ + "dep:jiff-tzdb" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-static-0.2.10/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "date-and-time" + ], + "keywords": [ + "date", + "time", + "static", + "zone", + "iana" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/jiff", + "homepage": "https://github.com/BurntSushi/jiff/tree/master/crates/jiff-static", + "documentation": "https://docs.rs/jiff-tzdb", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "js-sys", + "version": "0.3.77", + "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bindings for all JS global objects and functions in all JS environments like\nNode.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "js_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.77/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "wasm-bindgen/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.77/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [ + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/js-sys", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "keccak", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Pure Rust implementation of the Keccak sponge function including the keccak-f\nand keccak-p variants\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cpufeatures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"aarch64\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "keccak", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/benches/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "asm": [], + "no_unroll": [], + "simd": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "sponge", + "keccak", + "keccak-f", + "keccak-p" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/sponges/tree/master/keccak", + "homepage": null, + "documentation": "https://docs.rs/keccak", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "random", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kitty", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-auction", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" + }, + { + "name": "kitty-ownership", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kitty_auction", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_auction_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/tests/kitty_auction_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_auction_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/tests/kitty_auction_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-auction-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty-auction", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "kitty-auction-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-genetic-alg", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "random", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kitty_genetic_alg", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_genetic_alg_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/tests/kitty_genetic_alg_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_genetic_alg_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/tests/kitty_genetic_alg_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-genetic-alg-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty-genetic-alg", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "kitty-genetic-alg-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-ownership", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" + }, + { + "name": "kitty-genetic-alg", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "random", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kitty_ownership", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_ownership_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/tests/kitty_ownership_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_ownership_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/tests/kitty_ownership_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-ownership-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty-ownership", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "kitty-ownership-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "large-storage", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "large_storage", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/src/large_storage.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "large_storage_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/tests/large_storage_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "large_storage_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/tests/large_storage_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "large-storage-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "large-storage", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "large-storage-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lazy_static", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A macro for declaring lazily evaluated statics in Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "spin", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "once" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lazy_static", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "mutex_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/examples/mutex_map.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/no_std.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/test.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ui", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/ui.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "spin": [ + "dep:spin" + ], + "spin_no_std": [ + "spin" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Marvin Löbel " + ], + "categories": [ + "no-std", + "rust-patterns", + "memory-management" + ], + "keywords": [ + "macro", + "lazy", + "static" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang-nursery/lazy-static.rs", + "homepage": null, + "documentation": "https://docs.rs/lazy_static", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "leb128", + "version": "0.2.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "Read and write DWARF's \"Little Endian Base 128\" (LEB128) variable length integer encoding.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "leb128", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "leb128-repl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/src/bin/leb128-repl.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quickchecks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/tests/quickchecks.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "nightly": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nick Fitzgerald ", + "Philip Craig " + ], + "categories": [], + "keywords": [ + "LEB128", + "DWARF", + "variable", + "length", + "encoding" + ], + "readme": "./README.md", + "repository": "https://github.com/gimli-rs/leb128", + "homepage": null, + "documentation": "https://docs.rs/leb128", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "leb128fmt", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library to encode and decode LEB128 compressed integers.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "leb128fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128fmt-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128fmt-0.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Bryant Luk " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc", + "compression", + "parser-implementations" + ], + "keywords": [ + "leb128", + "encoding", + "no_std", + "compression" + ], + "readme": "README.md", + "repository": "https://github.com/bluk/leb128fmt", + "homepage": null, + "documentation": "https://docs.rs/leb128fmt", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "libc", + "version": "0.2.172", + "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Raw FFI bindings to platform libraries like libc.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "const_fn", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/tests/const_fn.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "align": [], + "const-extern-fn": [], + "default": [ + "std" + ], + "extra_traits": [], + "rustc-dep-of-std": [ + "align", + "rustc-std-workspace-core" + ], + "rustc-std-workspace-core": [ + "dep:rustc-std-workspace-core" + ], + "std": [], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "-Zbuild-std=core" + ], + "default-target": "x86_64-unknown-linux-gnu", + "features": [ + "extra_traits" + ], + "targets": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-linux-android", + "aarch64-pc-windows-msvc", + "aarch64-unknown-freebsd", + "aarch64-unknown-fuchsia", + "aarch64-unknown-hermit", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-linux-musl", + "aarch64-unknown-netbsd", + "aarch64-unknown-openbsd", + "aarch64-wrs-vxworks", + "arm-linux-androideabi", + "arm-unknown-linux-gnueabi", + "arm-unknown-linux-gnueabihf", + "arm-unknown-linux-musleabi", + "arm-unknown-linux-musleabihf", + "armebv7r-none-eabi", + "armebv7r-none-eabihf", + "armv5te-unknown-linux-gnueabi", + "armv5te-unknown-linux-musleabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabihf", + "armv7-unknown-linux-musleabihf", + "armv7-wrs-vxworks-eabihf", + "armv7r-none-eabi", + "armv7r-none-eabihf", + "i586-unknown-linux-gnu", + "i586-unknown-linux-musl", + "i686-linux-android", + "i686-pc-windows-gnu", + "i686-pc-windows-msvc", + "i686-pc-windows-msvc", + "i686-unknown-freebsd", + "i686-unknown-haiku", + "i686-unknown-linux-gnu", + "i686-unknown-linux-musl", + "i686-unknown-netbsd", + "i686-unknown-openbsd", + "i686-wrs-vxworks", + "mips-unknown-linux-gnu", + "mips-unknown-linux-musl", + "mips64-unknown-linux-gnuabi64", + "mips64-unknown-linux-muslabi64", + "mips64el-unknown-linux-gnuabi64", + "mips64el-unknown-linux-muslabi64", + "mipsel-sony-psp", + "mipsel-unknown-linux-gnu", + "mipsel-unknown-linux-musl", + "nvptx64-nvidia-cuda", + "powerpc-unknown-linux-gnu", + "powerpc-unknown-linux-gnuspe", + "powerpc-unknown-netbsd", + "powerpc-wrs-vxworks", + "powerpc-wrs-vxworks-spe", + "powerpc64-unknown-freebsd", + "powerpc64-unknown-linux-gnu", + "powerpc64-wrs-vxworks", + "powerpc64le-unknown-linux-gnu", + "riscv32gc-unknown-linux-gnu", + "riscv32i-unknown-none-elf", + "riscv32imac-unknown-none-elf", + "riscv32imc-unknown-none-elf", + "riscv32-wrs-vxworks", + "riscv64gc-unknown-freebsd", + "riscv64gc-unknown-hermit", + "riscv64gc-unknown-linux-gnu", + "riscv64gc-unknown-linux-musl", + "riscv64gc-unknown-none-elf", + "riscv64imac-unknown-none-elf", + "riscv64-wrs-vxworks", + "s390x-unknown-linux-gnu", + "s390x-unknown-linux-musl", + "sparc-unknown-linux-gnu", + "sparc64-unknown-linux-gnu", + "sparc64-unknown-netbsd", + "sparcv9-sun-solaris", + "thumbv6m-none-eabi", + "thumbv7em-none-eabi", + "thumbv7em-none-eabihf", + "thumbv7m-none-eabi", + "thumbv7neon-linux-androideabi", + "thumbv7neon-unknown-linux-gnueabihf", + "wasm32-unknown-emscripten", + "wasm32-unknown-unknown", + "x86_64-apple-darwin", + "x86_64-apple-ios", + "x86_64-fortanix-unknown-sgx", + "x86_64-linux-android", + "x86_64-pc-solaris", + "x86_64-pc-windows-gnu", + "x86_64-pc-windows-msvc", + "x86_64-unknown-dragonfly", + "x86_64-unknown-freebsd", + "x86_64-unknown-fuchsia", + "x86_64-unknown-haiku", + "x86_64-unknown-hermit", + "x86_64-unknown-illumos", + "x86_64-unknown-l4re-uclibc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-gnux32", + "x86_64-unknown-linux-musl", + "x86_64-unknown-netbsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-redox", + "x86_64-wrs-vxworks" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "external-ffi-bindings", + "no-std", + "os" + ], + "keywords": [ + "libc", + "ffi", + "bindings", + "operating", + "system" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/libc", + "homepage": "https://github.com/rust-lang/libc", + "documentation": "https://docs.rs/libc/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "libloading", + "version": "0.8.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", + "license": "ISC", + "license_file": null, + "description": "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.48, <0.53", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <0.59", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libloading", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constants", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/constants.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "functions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/functions.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "library_filename", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/library_filename.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "markers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/markers.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "windows", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/windows.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "libloading_docs" + ] + } + } + }, + "publish": null, + "authors": [ + "Simonas Kazlauskas " + ], + "categories": [ + "api-bindings" + ], + "keywords": [ + "dlopen", + "load", + "shared", + "dylib" + ], + "readme": "README.mkd", + "repository": "https://github.com/nagisa/rust_libloading/", + "homepage": null, + "documentation": "https://docs.rs/libloading/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "libredox", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Redox stable ABI", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ioslice", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "redox_syscall", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libredox", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libredox-0.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "call": [], + "default": [ + "call", + "std", + "redox_syscall" + ], + "ioslice": [ + "dep:ioslice" + ], + "mkns": [ + "ioslice" + ], + "redox_syscall": [ + "dep:redox_syscall" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libredox-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "4lDO2 <4lDO2@protonmail.com>" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://gitlab.redox-os.org/redox-os/libredox.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "libunwind", + "version": "1.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", + "license": "MIT", + "license_file": null, + "description": "Rust bindings to the libunwind C library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libunwind", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libunwind-1.3.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libunwind-1.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bluefish43/libunwind-sys", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "linked-list-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "linked_list_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/src/linked_list_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "linked_list_repeat_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/linked_list_repeat_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "linked-list-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "linked-list-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "linked-list-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "linux-raw-sys", + "version": "0.9.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Generated bindings for Linux's userspace API", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.49", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.100", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "linux_raw_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.9.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bootparam": [], + "btrfs": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std", + "general", + "errno" + ], + "elf": [], + "elf_uapi": [], + "errno": [], + "general": [], + "if_arp": [], + "if_ether": [], + "if_packet": [], + "image": [], + "io_uring": [], + "ioctl": [], + "landlock": [], + "loop_device": [], + "mempolicy": [], + "net": [], + "netlink": [], + "no_std": [], + "prctl": [], + "ptrace": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins", + "no_std" + ], + "std": [], + "system": [], + "xdp": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.9.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "default", + "bootparam", + "btrfs", + "elf_uapi", + "image", + "ioctl", + "landlock", + "netlink", + "io_uring", + "if_arp", + "if_ether", + "if_packet", + "net", + "ptrace", + "prctl", + "elf", + "xdp", + "mempolicy", + "system", + "loop_device" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "i686-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Dan Gohman " + ], + "categories": [ + "external-ffi-bindings" + ], + "keywords": [ + "linux", + "uapi", + "ffi" + ], + "readme": "README.md", + "repository": "https://github.com/sunfishcode/linux-raw-sys", + "homepage": null, + "documentation": "https://docs.rs/linux-raw-sys", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "litemap", + "version": "0.7.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", + "license": "Unicode-3.0", + "license_file": null, + "description": "A key-value Map implementation based on a flat, sorted Vec.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "validation" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "litemap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "language_names_hash_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/language_names_hash_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "language_names_lite_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/language_names_lite_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "litemap_bincode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/litemap_bincode.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "litemap_postcard", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/litemap_postcard.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rkyv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/rkyv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "store", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/store.rs", + "edition": "2021", + "required-features": [ + "testing" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "litemap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/benches/litemap.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "databake": [ + "dep:databake" + ], + "default": [ + "alloc" + ], + "serde": [ + "dep:serde" + ], + "testing": [ + "alloc" + ], + "yoke": [ + "dep:yoke" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [], + "keywords": [ + "sorted", + "vec", + "map", + "hashmap", + "btreemap" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": "https://docs.rs/litemap", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "local-esdt-and-nft", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "local_esdt_and_nft", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "local-esdt-and-nft-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "local-esdt-and-nft", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "local-esdt-and-nft-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lock_api", + "version": "0.4.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "owning_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scopeguard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.126", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lock_api", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arc_lock": [], + "atomic_usize": [], + "default": [ + "atomic_usize" + ], + "nightly": [], + "owning_ref": [ + "dep:owning_ref" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "concurrency", + "no-std" + ], + "keywords": [ + "mutex", + "rwlock", + "lock", + "no_std" + ], + "readme": null, + "repository": "https://github.com/Amanieu/parking_lot", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "log", + "version": "0.4.27", + "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A lightweight logging facade for Rust\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "value-bag", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "inline-i128" + ], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.63", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "value-bag", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "test" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "log", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "value", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/benches/value.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "kv": [], + "kv_serde": [ + "kv_std", + "value-bag/serde", + "serde" + ], + "kv_std": [ + "std", + "kv", + "value-bag/error" + ], + "kv_sval": [ + "kv", + "value-bag/sval", + "sval", + "sval_ref" + ], + "kv_unstable": [ + "kv", + "value-bag" + ], + "kv_unstable_serde": [ + "kv_serde", + "kv_unstable_std" + ], + "kv_unstable_std": [ + "kv_std", + "kv_unstable" + ], + "kv_unstable_sval": [ + "kv_sval", + "kv_unstable" + ], + "max_level_debug": [], + "max_level_error": [], + "max_level_info": [], + "max_level_off": [], + "max_level_trace": [], + "max_level_warn": [], + "release_max_level_debug": [], + "release_max_level_error": [], + "release_max_level_info": [], + "release_max_level_off": [], + "release_max_level_trace": [], + "release_max_level_warn": [], + "serde": [ + "dep:serde" + ], + "std": [], + "sval": [ + "dep:sval" + ], + "sval_ref": [ + "dep:sval_ref" + ], + "value-bag": [ + "dep:value-bag" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std", + "serde", + "kv_std", + "kv_sval", + "kv_serde" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "logging" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/log", + "homepage": null, + "documentation": "https://docs.rs/log", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "lottery-erc20", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lottery_erc20", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/src/lottery.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lottery_erc20_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/tests/lottery_erc20_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lottery_erc20_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/tests/lottery_erc20_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lottery-erc20-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "lottery-erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "lottery-erc20-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lottery-esdt", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lottery_esdt", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/src/lottery.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lottery_esdt_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/tests/lottery_esdt_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lottery_esdt_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/tests/lottery_esdt_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lottery-esdt-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "lottery-esdt", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "lottery-esdt-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "loupe", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Profiling tool for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "loupe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/tests/derive.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "derive" + ], + "derive": [ + "loupe-derive" + ], + "enable-indexmap": [ + "indexmap" + ], + "indexmap": [ + "dep:indexmap" + ], + "loupe-derive": [ + "dep:loupe-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/wasmerio/loupe", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "loupe-derive", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Profiling tool for Rust, see the `loupe` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "loupe_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-derive-0.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-derive-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/wasmerio/loupe", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "mach2", + "version": "0.4.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", + "license": "BSD-2-Clause OR MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "mach2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mach2-0.4.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mach2-0.4.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-apple-darwin" + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "api-bindings", + "external-ffi-bindings", + "no-std", + "os" + ], + "keywords": [ + "kernel", + "macos", + "darwin" + ], + "readme": "README.md", + "repository": "https://github.com/JohnTitor/mach2", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "macho-unwind-info", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#macho-unwind-info@0.5.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A parser for Apple's Compact Unwinding Format, which is used in the __unwind_info section of mach-O binaries.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "object", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.36", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "macho_unwind_info", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/macho-unwind-info-0.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "unwindinfodump", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/macho-unwind-info-0.5.0/examples/unwindinfodump.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "unwindinfolookup", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/macho-unwind-info-0.5.0/examples/unwindinfolookup.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/macho-unwind-info-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Markus Stange " + ], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "unwinding", + "exception", + "apple", + "object", + "parser" + ], + "readme": "Readme.md", + "repository": "https://github.com/mstange/macho-unwind-info", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "managed-map-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "managed_map_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/src/mmap_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_map_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/tests/managed_map_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_map_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/tests/managed_map_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "managed-map-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "managed-map-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "managed-map-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "map-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "map_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/src/map_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "map-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "map-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "map-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "memchr", + "version": "2.7.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for\n1, 2 or 3 byte search and single substring search.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memchr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "libc": [], + "logging": [ + "dep:log" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "std": [ + "alloc" + ], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant ", + "bluss" + ], + "categories": [], + "keywords": [ + "memchr", + "memmem", + "substring", + "find", + "search" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/memchr", + "homepage": "https://github.com/BurntSushi/memchr", + "documentation": "https://docs.rs/memchr/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "memmap2", + "version": "0.5.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Cross-platform Rust API for memory-mapped file IO", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "owning_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memmap2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/examples/cat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "stable_deref_trait": [ + "dep:stable_deref_trait" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dan Burkert ", + "Yevhenii Reizner " + ], + "categories": [], + "keywords": [ + "mmap", + "memory-map", + "io", + "file" + ], + "readme": "README.md", + "repository": "https://github.com/RazrFalcon/memmap2-rs", + "homepage": null, + "documentation": "https://docs.rs/memmap2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "memmap2", + "version": "0.6.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Cross-platform Rust API for memory-mapped file IO", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "owning_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memmap2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/examples/cat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "stable_deref_trait": [ + "dep:stable_deref_trait" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dan Burkert ", + "Yevhenii Reizner " + ], + "categories": [], + "keywords": [ + "mmap", + "memory-map", + "io", + "file" + ], + "readme": "README.md", + "repository": "https://github.com/RazrFalcon/memmap2-rs", + "homepage": null, + "documentation": "https://docs.rs/memmap2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "memoffset", + "version": "0.9.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", + "license": "MIT", + "license_file": null, + "description": "offset_of functionality for Rust structs.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memoffset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [], + "unstable_const": [], + "unstable_offset_of": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Gilad Naaman " + ], + "categories": [ + "no-std" + ], + "keywords": [ + "mem", + "offset", + "offset_of", + "offsetof" + ], + "readme": "README.md", + "repository": "https://github.com/Gilnaa/memoffset", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "mime", + "version": "0.3.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Strongly Typed Mimes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "mime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "cmp", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/cmp.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/fmt.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/parse.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [], + "keywords": [ + "mime", + "media-extensions", + "media-types" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/mime", + "homepage": null, + "documentation": "https://docs.rs/mime", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "minimal-lexical", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Fast float parsing conversion routines.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "minimal_lexical", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bellerophon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/bellerophon.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bellerophon_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/bellerophon_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/integration_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lemire_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/lemire_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "libm_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/libm_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mask_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/mask_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "number_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/number_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/parse_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rounding_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/rounding_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "slow_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/slow_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stackvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/stackvec.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "vec_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/vec_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "compact": [], + "default": [ + "std" + ], + "lint": [], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Huszagh " + ], + "categories": [ + "parsing", + "no-std" + ], + "keywords": [ + "parsing", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/Alexhuszagh/minimal-lexical", + "homepage": null, + "documentation": "https://docs.rs/minimal-lexical", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "miniz_oxide", + "version": "0.8.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "license": "MIT OR Zlib OR Apache-2.0", + "license_file": null, + "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "adler2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "simd-adler32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "miniz_oxide", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [ + "dep:alloc" + ], + "block-boundary": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "with-alloc" + ], + "rustc-dep-of-std": [ + "core", + "alloc", + "compiler_builtins", + "adler2/rustc-dep-of-std" + ], + "serde": [ + "dep:serde" + ], + "simd": [ + "simd-adler32" + ], + "simd-adler32": [ + "dep:simd-adler32" + ], + "std": [], + "with-alloc": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Frommi ", + "oyvindln ", + "Rich Geldreich richgel99@gmail.com" + ], + "categories": [ + "compression" + ], + "keywords": [ + "zlib", + "miniz", + "deflate", + "encoding" + ], + "readme": "Readme.md", + "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", + "homepage": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", + "documentation": "https://docs.rs/miniz_oxide", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "mio", + "version": "1.0.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", + "license": "MIT", + "license_file": null, + "description": "Lightweight non-blocking I/O.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.159", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"hermit\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.159", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "wasi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.159", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Wdk_Foundation", + "Wdk_Storage_FileSystem", + "Wdk_System_IO", + "Win32_Foundation", + "Win32_Networking_WinSock", + "Win32_Storage_FileSystem", + "Win32_System_IO", + "Win32_System_WindowsProgramming" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "mio", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_listenfd_server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/tcp_listenfd_server.rs", + "edition": "2021", + "required-features": [ + "os-poll", + "net" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/tcp_server.rs", + "edition": "2021", + "required-features": [ + "os-poll", + "net" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "udp_server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/udp_server.rs", + "edition": "2021", + "required-features": [ + "os-poll", + "net" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "log" + ], + "log": [ + "dep:log" + ], + "net": [], + "os-ext": [ + "os-poll", + "windows-sys/Win32_System_Pipes", + "windows-sys/Win32_Security" + ], + "os-poll": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ], + "targets": [ + "aarch64-apple-ios", + "aarch64-linux-android", + "wasm32-wasi", + "x86_64-apple-darwin", + "x86_64-pc-windows-gnu", + "x86_64-pc-windows-msvc", + "x86_64-unknown-dragonfly", + "x86_64-unknown-freebsd", + "x86_64-unknown-illumos", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-netbsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-hermit" + ] + } + }, + "playground": { + "features": [ + "os-poll", + "os-ext", + "net" + ] + } + }, + "publish": null, + "authors": [ + "Carl Lerche ", + "Thomas de Zeeuw ", + "Tokio Contributors " + ], + "categories": [ + "asynchronous" + ], + "keywords": [ + "io", + "async", + "non-blocking" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/mio", + "homepage": "https://github.com/tokio-rs/mio", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "more-asserts", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "license": "CC0-1.0", + "license_file": null, + "description": "Small library providing additional assert_* and debug_assert_* macros.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "more_asserts", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/more-asserts-0.2.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/more-asserts-0.2.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Thom Chiovoloni " + ], + "categories": [], + "keywords": [ + "assert", + "debug_assert", + "debug", + "assertions", + "testing" + ], + "readme": "README.md", + "repository": "https://github.com/thomcc/rust-more-asserts", + "homepage": "https://github.com/thomcc/rust-more-asserts", + "documentation": "https://docs.rs/more-asserts", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multi-contract-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multi_contract_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/src/multi_contract_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_contract_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/tests/multi_contract_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_contract_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/tests/multi_contract_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "example_feature": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multi-contract-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multi-contract-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multi-contract-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multisig", + "version": "1.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmer-experimental" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multisig", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/src/multisig.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/adder_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multisig_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multisig_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multisig_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multisig_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multisig-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multisig", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multisig-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact/src/multisig_interact.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multisig-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multisig", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multisig-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-core", + "version": "0.14.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX chain interfaces, constants, and base types", + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-codec", + "source": null, + "req": "=0.22.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_core", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/core/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/chain/core/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "vm", + "tools" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-scenario-format", + "version": "0.23.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "Parser/writer of the MultiversX transaction scenario format", + "source": null, + "dependencies": [ + { + "name": "bech32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_scenario_format", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "interpreter_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/tests/interpreter_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reconstructor_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/tests/reconstructor_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-vm", + "version": "0.14.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX VM implementation and tooling", + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ed25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-core", + "source": null, + "req": "=0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" + }, + { + "name": "multiversx-chain-vm-executor", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-vm-executor-wasmer", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-vm-executor-wasmer-experimental", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_seeder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_vm", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gas_schedule_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/tests/gas_schedule_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_crypto", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/tests/test_crypto.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "multiversx-chain-vm-executor-wasmer": [ + "dep:multiversx-chain-vm-executor-wasmer" + ], + "multiversx-chain-vm-executor-wasmer-experimental": [ + "dep:multiversx-chain-vm-executor-wasmer-experimental" + ], + "rand": [ + "dep:rand" + ], + "wasm-incompatible": [ + "rand" + ], + "wasmer-experimental": [ + "multiversx-chain-vm-executor-wasmer-experimental" + ], + "wasmer-prod": [ + "multiversx-chain-vm-executor-wasmer" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "vm", + "tools" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-vm-executor", + "version": "0.3.0", + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX VM executor interface", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_vm_executor", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deserialization_from_file_test", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/tests/deserialization_from_file_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "Ovidiu Stinga ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "blockchain", + "VM" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-vm-executor-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-vm-executor-wasmer-experimental", + "version": "0.3.0", + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", + "license": null, + "license_file": null, + "description": null, + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-vm-executor", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rc-new-cyclic-fallible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "singlepass", + "sys", + "wat" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_vm_executor_wasmer_experimental", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "endpoints_test", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/tests/endpoints_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-price-aggregator-sc", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX Price aggregator Smart Contract", + "source": null, + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_price_aggregator_sc", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_stress_blackbox", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_stress_blackbox.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Claudiu-Marcel Bruda ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-price-aggregator-sc-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-price-aggregator-sc", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multiversx-price-aggregator-sc-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX smart contract API", + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-core", + "source": null, + "req": "=0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" + }, + { + "name": "multiversx-sc-codec", + "source": null, + "req": "=0.22.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec" + }, + { + "name": "multiversx-sc-derive", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive" + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.19", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unwrap-infallible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "formatter_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/tests/formatter_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "esdt-token-payment-legacy-decode": [], + "managed-buffer-builder-cached": [], + "num-bigint": [ + "multiversx-sc-codec/num-bigint" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies", + "development-tools" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.83" + }, + { + "name": "multiversx-sc-codec", + "version": "0.22.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "Lightweight binary serializer/deserializer, written especially for MultiversX smart contracts", + "source": null, + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-codec-derive", + "source": null, + "req": "=0.22.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unwrap-infallible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-codec-derive", + "source": null, + "req": "=0.22.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_codec", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_bitflags_struct", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_bitflags_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_empty_struct_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_empty_struct_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_enum_or_default_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_or_default_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_enum_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_enum_tricky_defaults_fieldless_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_tricky_defaults_fieldless_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_enum_tricky_defaults_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_tricky_defaults_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_hygiene", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_hygiene.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_struct_or_default_generic_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_or_default_generic_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_struct_or_default_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_or_default_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_struct_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_struct_with_generic_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_with_generic_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_tuple_struct_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_tuple_struct_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_impl_enum", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_enum.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_impl_struct", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_impl_struct_opt_field", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_struct_opt_field.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_impl_wrapped_array", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_wrapped_array.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "derive": [ + "multiversx-sc-codec-derive" + ], + "multiversx-sc-codec-derive": [ + "dep:multiversx-sc-codec-derive" + ], + "num-bigint": [ + "dep:num-bigint" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies", + "development-tools" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-codec-derive", + "version": "0.22.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "Macro implementations of multiversx-sc-codec #[derive(NestedEncode, NestedDecode, TopEncode, TopDecode)]", + "source": null, + "dependencies": [ + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.94", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.0.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "multiversx_sc_codec_derive", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "syn/full", + "syn/parsing", + "syn/extra-traits" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "dorin.iancu ", + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies", + "development-tools" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-derive", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX smart contract API procedural macros", + "source": null, + "dependencies": [ + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.94", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "radix_trie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.0.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "multiversx_sc_derive", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "syn/full", + "syn/parsing", + "syn/extra-traits" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-meta", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX smart contract crate management standalone tool", + "source": null, + "dependencies": [ + { + "name": "bip39", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "common-path", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "copy_dir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "home", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.5.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc", + "num-bigint" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "pathdiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "blocking", + "json" + ], + "target": null, + "registry": null + }, + { + "name": "ruplacer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "preserve_order" + ], + "target": null, + "registry": null + }, + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "deflate" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "sc-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "install_debugger_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/install_debugger_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stg_process_code_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/stg_process_code_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "template_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/template_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "template-test-current": [], + "template-test-released": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract", + "debug" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-meta-lib", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX smart contract meta-programming tools and build system", + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc", + "num-bigint" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "preserve_order" + ], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.227", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmprinter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.227", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.217.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_meta_lib", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ei_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/tests/ei_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_contract_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/tests/multi_contract_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract", + "debug" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-modules", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX WebAssembly standard smart contract modules", + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_modules", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [ + "multiversx-sc/alloc" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-scenario", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX tools for writing and executing scenarios", + "source": null, + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bech32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-scenario-format", + "source": null, + "req": "^0.23.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format" + }, + { + "name": "multiversx-chain-vm", + "source": null, + "req": "=0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm" + }, + { + "name": "multiversx-chain-vm-executor", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc", + "num-bigint" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pathdiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "simple-error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unwrap-infallible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_scenario", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "address_eq_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/address_eq_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_float_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_float_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_int_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_int_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_uint_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_uint_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "contract_without_macros", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/contract_without_macros.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_biguint_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_biguint_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_decimal_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_decimal_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_enum_1", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_1.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_enum_2_managed", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_2_managed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_enum_simple", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_esdt_token_payment_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_esdt_token_payment_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_struct_1_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_1_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_struct_2_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_2_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_struct_3", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_3.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_token_payment_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/esdt_token_payment_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hex_call_data_arg_load", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/hex_call_data_arg_load.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_buffer_read_to_end_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_buffer_read_to_end_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_codec_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_codec_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_decimal_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_decimal_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_map_encoded_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_map_encoded_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_option_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_option_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_ref_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_ref_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_type_debug_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_type_debug_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_vec_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_vec_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_transfer_with_egld", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/multi_transfer_with_egld.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_value_encoded_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/multi_value_encoded_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "path_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/path_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenarios_io_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/scenarios_io_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenarios_self_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/scenarios_self_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "single_tx_api_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/single_tx_api_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "static_buffer_ref_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/static_buffer_ref_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_bi_di_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_bi_di_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_map_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_map_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_map_storage_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_map_storage_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_set_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_set_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_unordered_set_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_unordered_set_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_linked_list_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_linked_list_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_print_api", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_print_api.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_queue_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_queue_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_vec_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_vec_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_identifier_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/token_identifier_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_properties_result_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/token_properties_result_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tx_call_normalize", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/tx_call_normalize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "wasm-incompatible" + ], + "run-go-tests": [], + "wasm-incompatible": [ + "multiversx-chain-vm/wasm-incompatible" + ], + "wasmer-experimental": [ + "multiversx-chain-vm/wasmer-experimental" + ], + "wasmer-prod": [ + "multiversx-chain-vm/wasmer-prod" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract", + "debug" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-snippets", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX framework for building smart contract interaction snippets", + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-scenario-format", + "source": null, + "req": "^0.23.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "multiversx-sdk", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" + }, + { + "name": "multiversx-sdk-dapp", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp" + }, + { + "name": "multiversx-sdk-http", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http" + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_snippets", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_deployed_address", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_deployed_address.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_issued_token_identifier", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_issued_token_identifier.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_logs", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_logs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_multi_contract_sc_result", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_multi_contract_sc_result.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_multiple_sc_results", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_multiple_sc_results.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_sc_result", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_sc_result.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "dapp": [ + "multiversx-sdk-dapp" + ], + "default": [ + "http", + "default-tls" + ], + "default-tls": [ + "multiversx-sdk-http/default-tls" + ], + "http": [ + "multiversx-sdk-http", + "tokio" + ], + "multiversx-sdk-dapp": [ + "dep:multiversx-sdk-dapp" + ], + "multiversx-sdk-http": [ + "dep:multiversx-sdk-http" + ], + "static-tls": [ + "multiversx-sdk-http/static-tls" + ], + "tokio": [ + "dep:tokio" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract", + "snippets" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-wasm-adapter", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX WebAssembly VM API wrapper", + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_wasm_adapter", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies", + "development-tools::ffi" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sdk", + "version": "0.9.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "license": "MIT", + "license_file": null, + "description": "SDK for interacting with the MultiversX blockchain", + "source": null, + "dependencies": [ + { + "name": "aes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bech32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bip39", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rand" + ], + "target": null, + "registry": null + }, + { + "name": "ctr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hmac", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-core", + "source": null, + "req": "=0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" + }, + { + "name": "pbkdf2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pem", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scrypt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.130", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.68", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "preserve_order" + ], + "target": null, + "registry": null + }, + { + "name": "serde_repr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "v4" + ], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sdk", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "generate_mnemonic", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/examples/generate_mnemonic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "retrieve_tx_on_network_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/tests/retrieve_tx_on_network_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wallet_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/tests/wallet_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "api-bindings" + ], + "keywords": [ + "multiversx", + "blockchain", + "sdk", + "api" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sdk-dapp", + "version": "0.9.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "license": "MIT", + "license_file": null, + "description": "SDK for interacting with the MultiversX blockchain for wasm-bindgen environments", + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.44", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "gloo-net", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.70", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sdk", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.93", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.43", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.70", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sdk_dapp", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "api-bindings" + ], + "keywords": [ + "multiversx", + "blockchain", + "sdk", + "wasm", + "wasm-bindgen" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sdk-http", + "version": "0.9.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "license": "MIT", + "license_file": null, + "description": "SDK for interacting with the MultiversX blockchain", + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.44", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sdk", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "blocking", + "json" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sdk_http", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "account", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/account.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "account_storage", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/account_storage.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_esdt_tokens", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_esdt_tokens.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_hyper_block_by_hash", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_by_hash.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_hyper_block_by_nonce", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_by_nonce.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_hyper_block_latest", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_latest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_network_config", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_network_config.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_network_economics", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_network_economics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "sign_tx", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/sign_tx.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "sign_txs", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/sign_txs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tx_cost", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_cost.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tx_default_args", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_default_args.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tx_info", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_info.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "vm_query", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/vm_query.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "get_network_config_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/tests/get_network_config_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain_simulator": [], + "default": [ + "default-tls" + ], + "default-tls": [ + "reqwest/default-tls" + ], + "static-tls": [ + "reqwest/rustls-tls" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "api-bindings" + ], + "keywords": [ + "multiversx", + "blockchain", + "sdk", + "api" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-wegld-swap-sc", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX Wrapped EGLD Smart Contract", + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_wegld_swap_sc", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/src/wegld.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wegld_swap_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/tests/wegld_swap_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dorin Iancu ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-wegld-swap-sc-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "multiversx-wegld-swap-sc", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multiversx-wegld-swap-sc-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "munge", + "version": "0.4.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", + "license": "MIT", + "license_file": null, + "description": "Macro for custom destructuring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "munge_macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "munge", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "macro", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/djkoloski/munge", + "homepage": null, + "documentation": "https://docs.rs/munge", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "munge_macro", + "version": "0.4.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", + "license": "MIT", + "license_file": null, + "description": "Macro for custom destructuring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "full", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "munge_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge_macro-0.4.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge_macro-0.4.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "macro", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/djkoloski/munge", + "homepage": null, + "documentation": "https://docs.rs/munge_macro", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "mxpy-snippet-generator", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "bech32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "mxpy-snippet-generator", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator/src/mxpy_snippet_generator.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "native-tls", + "version": "0.2.14", + "id": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A wrapper over a platform's native TLS implementation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-cert-gen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", + "registry": null + }, + { + "name": "openssl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", + "registry": null + }, + { + "name": "openssl-probe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", + "registry": null + }, + { + "name": "openssl-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.81", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"macos\")", + "registry": null + }, + { + "name": "schannel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"windows\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + }, + { + "name": "security-framework", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + }, + { + "name": "security-framework-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "native_tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "google-connect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/google-connect.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple-server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/simple-server.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple-server-pkcs8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/simple-server-pkcs8.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alpn": [ + "security-framework/alpn" + ], + "vendored": [ + "openssl/vendored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "alpn" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/sfackler/rust-native-tls", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.80.0" + }, + { + "name": "nft-minter", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nft_minter", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_minter_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/tests/nft_minter_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_minter_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/tests/nft_minter_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-minter-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "nft-minter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "nft-minter-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-storage-prepay", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nft_storage_prepay", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/src/nft_storage_prepay.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-storage-prepay-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "nft-storage-prepay", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "nft-storage-prepay-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-subscription", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nft_subscription", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_subscription_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/tests/nft_subscription_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_subscription_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/tests/nft_subscription_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Thouny " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-subscription-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "nft-subscription", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "nft-subscription-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Thouny " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nibble_vec", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", + "license": "MIT", + "license_file": null, + "description": "Vector data-structure for half-byte values.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nibble_vec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/examples/debug.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "nib_bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/benches/nib_bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Michael Sproul " + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "vector", + "nibble", + "slice", + "data-structure", + "collection" + ], + "readme": "README.md", + "repository": "https://github.com/michaelsproul/rust_nibble_vec", + "homepage": null, + "documentation": "https://docs.rs/rust_nibble_vec", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nom", + "version": "7.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "license": "MIT", + "license_file": null, + "description": "A byte-oriented, zero-copy, parser combinators library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "minimal-lexical", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/custom_error.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/json.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/json_iterator.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/iterator.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "s_expression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/s_expression.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/string.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/arithmetic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic_ast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/arithmetic_ast.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "css", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/css.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom_errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/custom_errors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "escaped", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/escaped.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "float", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/float.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fnmut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/fnmut.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/ini.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ini_str", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/ini_str.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issues", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/issues.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/json.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mp4", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/mp4.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiline", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/multiline.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "overflow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/overflow.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reborrow_fold", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/reborrow_fold.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "docsrs": [], + "std": [ + "alloc", + "memchr/std", + "minimal-lexical/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "features": [ + "alloc", + "std", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "contact@geoffroycouprie.com" + ], + "categories": [ + "parsing" + ], + "keywords": [ + "parser", + "parser-combinators", + "parsing", + "streaming", + "bit" + ], + "readme": "README.md", + "repository": "https://github.com/Geal/nom", + "homepage": null, + "documentation": "https://docs.rs/nom", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.48" + }, + { + "name": "num-bigint", + "version": "0.4.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Big integer implementation for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-integer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.46", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "i128" + ], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "i128" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "num_bigint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bigint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bigint_bitwise", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint_bitwise.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bigint_scalar", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint_scalar.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "biguint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/biguint.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "biguint_scalar", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/biguint_scalar.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fuzzed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/fuzzed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "modpow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/modpow.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/roots.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bigint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/bigint.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "factorial", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/factorial.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "gcd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/gcd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/roots.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "shootout-pidigits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/shootout-pidigits.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "default": [ + "std" + ], + "quickcheck": [ + "dep:quickcheck" + ], + "rand": [ + "dep:rand" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "num-integer/std", + "num-traits/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std", + "serde", + "rand", + "quickcheck", + "arbitrary" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "data-structures", + "science" + ], + "keywords": [ + "mathematics", + "numerics", + "bignum" + ], + "readme": "README.md", + "repository": "https://github.com/rust-num/num-bigint", + "homepage": "https://github.com/rust-num/num-bigint", + "documentation": "https://docs.rs/num-bigint", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "num-integer", + "version": "0.1.46", + "id": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Integer traits and functions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "i128" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "num_integer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "average", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/tests/average.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/tests/roots.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "average", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/average.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "gcd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/gcd.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/roots.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "i128": [], + "std": [ + "num-traits/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "science", + "no-std" + ], + "keywords": [ + "mathematics", + "numerics" + ], + "readme": "README.md", + "repository": "https://github.com/rust-num/num-integer", + "homepage": "https://github.com/rust-num/num-integer", + "documentation": "https://docs.rs/num-integer", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "num-traits", + "version": "0.2.19", + "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Numeric traits for generic mathematics", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "num_traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/tests/cast.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "i128": [], + "libm": [ + "dep:libm" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "science", + "no-std" + ], + "keywords": [ + "mathematics", + "numerics" + ], + "readme": "README.md", + "repository": "https://github.com/rust-num/num-traits", + "homepage": "https://github.com/rust-num/num-traits", + "documentation": "https://docs.rs/num-traits", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "num_cpus", + "version": "1.16.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Get the number of CPUs on a machine.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.26", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(windows))", + "registry": null + }, + { + "name": "hermit-abi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"hermit\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "num_cpus", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "values", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/examples/values.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "hardware-support" + ], + "keywords": [ + "cpu", + "cpus", + "cores" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/num_cpus", + "homepage": null, + "documentation": "https://docs.rs/num_cpus", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "object", + "version": "0.32.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A unified interface for reading and writing object file formats.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "ahash" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruzstd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.118.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "object", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/tests/integration.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse_self", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/tests/parse_self.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "all": [ + "read", + "write", + "std", + "compression", + "wasm" + ], + "alloc": [ + "dep:alloc" + ], + "archive": [], + "cargo-all": [], + "coff": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "compression": [ + "dep:flate2", + "dep:ruzstd", + "std" + ], + "core": [ + "dep:core" + ], + "default": [ + "read", + "compression" + ], + "doc": [ + "read_core", + "write_std", + "std", + "compression", + "archive", + "coff", + "elf", + "macho", + "pe", + "wasm", + "xcoff" + ], + "elf": [], + "macho": [], + "pe": [ + "coff" + ], + "read": [ + "read_core", + "archive", + "coff", + "elf", + "macho", + "pe", + "xcoff", + "unaligned" + ], + "read_core": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins", + "alloc", + "memchr/rustc-dep-of-std" + ], + "std": [ + "memchr/std" + ], + "unaligned": [], + "unstable": [], + "unstable-all": [ + "all", + "unstable" + ], + "wasm": [ + "dep:wasmparser" + ], + "write": [ + "write_std", + "coff", + "elf", + "macho", + "pe", + "xcoff" + ], + "write_core": [ + "dep:crc32fast", + "dep:indexmap", + "dep:hashbrown" + ], + "write_std": [ + "write_core", + "std", + "indexmap?/std", + "crc32fast?/std" + ], + "xcoff": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "doc" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "object", + "elf", + "mach-o", + "pe", + "coff" + ], + "readme": "README.md", + "repository": "https://github.com/gimli-rs/object", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "object", + "version": "0.36.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A unified interface for reading and writing object file formats.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruzstd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.222.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "object", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/tests/integration.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse_self", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/tests/parse_self.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "all": [ + "read", + "write", + "build", + "std", + "compression", + "wasm" + ], + "alloc": [ + "dep:alloc" + ], + "archive": [], + "build": [ + "build_core", + "write_std", + "elf" + ], + "build_core": [ + "read_core", + "write_core" + ], + "cargo-all": [], + "coff": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "compression": [ + "dep:flate2", + "dep:ruzstd", + "std" + ], + "core": [ + "dep:core" + ], + "default": [ + "read", + "compression" + ], + "doc": [ + "read_core", + "write_std", + "build_core", + "std", + "compression", + "archive", + "coff", + "elf", + "macho", + "pe", + "wasm", + "xcoff" + ], + "elf": [], + "macho": [], + "pe": [ + "coff" + ], + "read": [ + "read_core", + "archive", + "coff", + "elf", + "macho", + "pe", + "xcoff", + "unaligned" + ], + "read_core": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins", + "alloc", + "memchr/rustc-dep-of-std" + ], + "std": [ + "memchr/std" + ], + "unaligned": [], + "unstable": [], + "unstable-all": [ + "all", + "unstable" + ], + "wasm": [ + "dep:wasmparser" + ], + "write": [ + "write_std", + "coff", + "elf", + "macho", + "pe", + "xcoff" + ], + "write_core": [ + "dep:crc32fast", + "dep:indexmap", + "dep:hashbrown" + ], + "write_std": [ + "write_core", + "std", + "indexmap?/std", + "crc32fast?/std" + ], + "xcoff": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "doc" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "object", + "elf", + "mach-o", + "pe", + "coff" + ], + "readme": "README.md", + "repository": "https://github.com/gimli-rs/object", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "once_cell", + "version": "1.21.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Single assignment cells and lazy values.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "critical-section", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "critical-section", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "once_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bench_acquire", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/bench_acquire.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lazy_static", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/lazy_static.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "reentrant_init_deadlocks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/reentrant_init_deadlocks.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "regex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/regex.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "test_synchronization", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/test_synchronization.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "it", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/tests/it/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "race" + ], + "atomic-polyfill": [ + "critical-section" + ], + "critical-section": [ + "dep:critical-section", + "portable-atomic" + ], + "default": [ + "std" + ], + "parking_lot": [ + "dep:parking_lot_core" + ], + "portable-atomic": [ + "dep:portable-atomic" + ], + "race": [], + "std": [ + "alloc" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Aleksey Kladov " + ], + "categories": [ + "rust-patterns", + "memory-management" + ], + "keywords": [ + "lazy", + "static" + ], + "readme": "README.md", + "repository": "https://github.com/matklad/once_cell", + "homepage": null, + "documentation": "https://docs.rs/once_cell", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "openssl", + "version": "0.10.72", + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", + "license": "Apache-2.0", + "license_file": null, + "description": "OpenSSL bindings", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "openssl-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.107", + "kind": null, + "rename": "ffi", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "foreign-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "openssl-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "openssl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "mk_certs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/examples/mk_certs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aws-lc": [ + "ffi/aws-lc" + ], + "bindgen": [ + "ffi/bindgen" + ], + "default": [], + "unstable_boringssl": [ + "ffi/unstable_boringssl" + ], + "v101": [], + "v102": [], + "v110": [], + "v111": [], + "vendored": [ + "ffi/vendored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [ + "cryptography", + "api-bindings" + ], + "keywords": [ + "crypto", + "tls", + "ssl", + "dtls" + ], + "readme": "README.md", + "repository": "https://github.com/sfackler/rust-openssl", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "openssl-macros", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Internal macros used by the openssl crate.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "openssl_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "openssl-probe", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Tool for helping to find SSL certificate locations on the system for OpenSSL\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "openssl_probe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "probe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/examples/probe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/openssl-probe", + "homepage": "https://github.com/alexcrichton/openssl-probe", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "openssl-sys", + "version": "0.9.107", + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", + "license": "MIT", + "license_file": null, + "description": "FFI bindings to OpenSSL", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aws-lc-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.27", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "ssl" + ], + "target": null, + "registry": null + }, + { + "name": "bssl-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.69.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "experimental" + ], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "openssl-src", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^300.2.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "legacy" + ], + "target": null, + "registry": null + }, + { + "name": "pkg-config", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vcpkg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "openssl_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-main", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/build/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aws-lc": [ + "dep:aws-lc-sys" + ], + "bindgen": [ + "dep:bindgen" + ], + "bssl-sys": [ + "dep:bssl-sys" + ], + "openssl-src": [ + "dep:openssl-src" + ], + "unstable_boringssl": [ + "bssl-sys" + ], + "vendored": [ + "openssl-src" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/Cargo.toml", + "metadata": { + "pkg-config": { + "openssl": "1.0.1" + } + }, + "publish": null, + "authors": [ + "Alex Crichton ", + "Steven Fackler " + ], + "categories": [ + "cryptography", + "external-ffi-bindings" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/sfackler/rust-openssl", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": "openssl", + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "order-book-factory", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "order_book_factory", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "order-book-pair", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "order_book_pair", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pair_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/tests/pair_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pair_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/tests/pair_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "pair-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "order-book-pair", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "pair-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "panic-message-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmer-experimental" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "panic_message_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/src/panic_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pmf_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pmf_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pmf_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pmf_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "run-go-tests": [ + "multiversx-sc-scenario/run-go-tests" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "panic-message-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "panic-message-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "panic-message-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "parent", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "parent", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "parent-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "parent", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "parent-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "parking_lot", + "version": "0.12.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "More compact and efficient implementations of the standard synchronization primitives.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lock_api", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "parking_lot", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue_392", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/tests/issue_392.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue_203", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/tests/issue_203.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "arc_lock": [ + "lock_api/arc_lock" + ], + "deadlock_detection": [ + "parking_lot_core/deadlock_detection" + ], + "default": [], + "hardware-lock-elision": [], + "nightly": [ + "parking_lot_core/nightly", + "lock_api/nightly" + ], + "owning_ref": [ + "lock_api/owning_ref" + ], + "send_guard": [], + "serde": [ + "lock_api/serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arc_lock", + "serde", + "deadlock_detection" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "arc_lock", + "serde", + "deadlock_detection" + ] + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "mutex", + "condvar", + "rwlock", + "once", + "thread" + ], + "readme": "README.md", + "repository": "https://github.com/Amanieu/parking_lot", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "parking_lot_core", + "version": "0.9.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An advanced API for creating custom synchronization primitives.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.60", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "petgraph", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thread-id", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "redox_syscall", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"redox\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "parking_lot_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "backtrace": [ + "dep:backtrace" + ], + "deadlock_detection": [ + "petgraph", + "thread-id", + "backtrace" + ], + "nightly": [], + "petgraph": [ + "dep:petgraph" + ], + "thread-id": [ + "dep:thread-id" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "mutex", + "condvar", + "rwlock", + "once", + "thread" + ], + "readme": null, + "repository": "https://github.com/Amanieu/parking_lot", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "password-hash", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Traits which describe the functionality of password hashing algorithms,\nas well as a `no_std`-friendly implementation of the PHC string format\n(a well-defined subset of the Modular Crypt Format a.k.a. MCF)\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64ct", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "password_hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoding", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/encoding.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hashing", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/hashing.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "password_hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/password_hash.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_vectors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/test_vectors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "base64ct/alloc" + ], + "default": [ + "rand_core" + ], + "getrandom": [ + "rand_core/getrandom" + ], + "rand_core": [ + "dep:rand_core" + ], + "std": [ + "alloc", + "base64ct/std", + "rand_core/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "authentication", + "cryptography", + "no-std" + ], + "keywords": [ + "crypt", + "mcf", + "password", + "pbkdf", + "phc" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits/tree/master/password-hash", + "homepage": null, + "documentation": "https://docs.rs/password-hash", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "paste", + "version": "1.0.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Macros for all your token pasting needs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "paste-test-suite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.49", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "paste", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_item", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_item.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_attr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_attr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_doc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_doc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_expr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "macros" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/paste", + "homepage": null, + "documentation": "https://docs.rs/paste", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "pathdiff", + "version": "0.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Library for diffing paths to obtain relative paths", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "camino", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pathdiff", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "camino": [ + "dep:camino" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "path", + "relative" + ], + "readme": null, + "repository": "https://github.com/Manishearth/pathdiff", + "homepage": null, + "documentation": "https://docs.rs/pathdiff/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "payable-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "payable_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/src/payable_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "payable_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "payable_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "payable_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "payable-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "payable-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "payable-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "payable-interactor", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "payable-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "payable_interactor", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/src/payable_interactor.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "payable-interactor", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/src/payable_interactor_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "payable_interactor_cs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/tests/payable_interactor_cs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "pbkdf2", + "version": "0.12.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Generic implementation of PBKDF2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "mac" + ], + "target": null, + "registry": null + }, + { + "name": "hmac", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "password-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "rand_core" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hmac", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "streebog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pbkdf2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/tests/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/benches/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "hmac" + ], + "hmac": [ + "dep:hmac" + ], + "parallel": [ + "rayon", + "std" + ], + "password-hash": [ + "dep:password-hash" + ], + "rayon": [ + "dep:rayon" + ], + "sha1": [ + "dep:sha1" + ], + "sha2": [ + "dep:sha2" + ], + "simple": [ + "hmac", + "password-hash", + "sha2" + ], + "std": [ + "password-hash/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "authentication", + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "hashing", + "password", + "phf" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2", + "homepage": null, + "documentation": "https://docs.rs/pbkdf2", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "pem", + "version": "3.0.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", + "license": "MIT", + "license_file": null, + "description": "Parse and encode PEM-encoded data.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pem", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "pem_benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/benches/pem_benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "base64/std", + "serde?/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jonathan Creekmore " + ], + "categories": [ + "cryptography" + ], + "keywords": [ + "no-std", + "no_std", + "pem" + ], + "readme": "README.md", + "repository": "https://github.com/jcreekmore/pem-rs.git", + "homepage": "https://github.com/jcreekmore/pem-rs.git", + "documentation": "https://docs.rs/pem/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "percent-encoding", + "version": "2.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Percent encoding and decoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "percent_encoding", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "no_std" + ], + "keywords": [], + "readme": null, + "repository": "https://github.com/servo/rust-url/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.51" + }, + { + "name": "pin-project", + "version": "1.1.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A crate for safe and ergonomic pin-projection.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "pin-project-internal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.1.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pin_project", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum-default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/enum-default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum-default-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/enum-default-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "not_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/not_unpin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "not_unpin-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/not_unpin-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pinned_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/pinned_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pinned_drop-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/pinned_drop-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "project_replace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/project_replace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "project_replace-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/project_replace-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "struct-default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/struct-default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "struct-default-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/struct-default-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "unsafe_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/unsafe_unpin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "unsafe_unpin-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/unsafe_unpin-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cfg", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/cfg.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "drop_order", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/drop_order.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "expandtest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/expandtest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pin_project", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/pin_project.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pinned_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/pinned_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proper_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/proper_unpin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "repr_packed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/repr_packed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unsafe_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/unsafe_unpin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "pin_project_internal::*" + ] + }, + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "pin", + "macros", + "attribute" + ], + "readme": "README.md", + "repository": "https://github.com/taiki-e/pin-project", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "pin-project-internal", + "version": "1.1.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Implementation detail of the `pin-project` crate.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "parsing", + "printing", + "clone-impls", + "proc-macro", + "full", + "visit-mut" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "pin_project_internal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "pin", + "macros", + "attribute" + ], + "readme": null, + "repository": "https://github.com/taiki-e/pin-project", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "pin-project-lite", + "version": "0.2.16", + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A lightweight version of pin-project written with declarative macros.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pin_project_lite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "drop_order", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/drop_order.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "expandtest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/expandtest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proper_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/proper_unpin.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [] + }, + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "pin", + "macros" + ], + "readme": "README.md", + "repository": "https://github.com/taiki-e/pin-project-lite", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.37" + }, + { + "name": "pin-utils", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Utilities for pinning\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pin_utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "projection", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/tests/projection.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stack_pin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/tests/stack_pin.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Josef Brandl " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang-nursery/pin-utils", + "homepage": null, + "documentation": "https://docs.rs/pin-utils", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ping-pong-dapp", + "version": "0.1.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "console_log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "dapp" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.210", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yew", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "csr" + ], + "target": null, + "registry": null + }, + { + "name": "yew-router", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yew_icons", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "BootstrapHeartFill" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ping-pong-dapp", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ping-pong-egld", + "version": "0.0.2", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ping_pong_egld", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/src/ping_pong.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ping_pong_egld_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/tests/ping_pong_egld_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ping_pong_egld_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/tests/ping_pong_egld_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Bruda Claudiu-Marcel " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ping-pong-egld-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "ping-pong-egld", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ping_pong_egld_interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/src/interact.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ping-pong-egld-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/src/interact_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "interact_cs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/tests/interact_cs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ping-pong-egld-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "ping-pong-egld", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ping-pong-egld-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Bruda Claudiu-Marcel " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "pinned", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Synchronisation primitives for !Send tasks.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "async-await" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.21.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pinned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pinned-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pinned-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Kaede Hoshiakwa " + ], + "categories": [ + "asynchronous" + ], + "keywords": [ + "async", + "futures", + "non-blocking" + ], + "readme": "README.md", + "repository": "https://github.com/futursolo/pinned", + "homepage": "https://github.com/futursolo/pinned", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "pkcs8", + "version": "0.10.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "der", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "oid" + ], + "target": null, + "registry": null + }, + { + "name": "pkcs5", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "spki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pkcs8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encrypted_private_key", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/encrypted_private_key.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "private_key", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/private_key.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/traits.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "3des": [ + "encryption", + "pkcs5/3des" + ], + "alloc": [ + "der/alloc", + "der/zeroize", + "spki/alloc" + ], + "des-insecure": [ + "encryption", + "pkcs5/des-insecure" + ], + "encryption": [ + "alloc", + "pkcs5/alloc", + "pkcs5/pbes2", + "rand_core" + ], + "getrandom": [ + "rand_core/getrandom" + ], + "pem": [ + "alloc", + "der/pem", + "spki/pem" + ], + "pkcs5": [ + "dep:pkcs5" + ], + "rand_core": [ + "dep:rand_core" + ], + "sha1-insecure": [ + "encryption", + "pkcs5/sha1-insecure" + ], + "std": [ + "alloc", + "der/std", + "spki/std" + ], + "subtle": [ + "dep:subtle" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "data-structures", + "encoding", + "no-std", + "parser-implementations" + ], + "keywords": [ + "crypto", + "key", + "pkcs", + "private" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats/tree/master/pkcs8", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "pkg-config", + "version": "0.3.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pkg_config", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "build-dependencies" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/pkg-config-rs", + "homepage": null, + "documentation": "https://docs.rs/pkg-config", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "portable-atomic", + "version": "1.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "critical-section", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "build-context", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fastrand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sptr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.163", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Threading" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "portable_atomic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-1.11.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-1.11.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "critical-section": [ + "dep:critical-section" + ], + "default": [ + "fallback" + ], + "disable-fiq": [], + "fallback": [], + "float": [], + "force-amo": [], + "require-cas": [], + "s-mode": [], + "serde": [ + "dep:serde" + ], + "std": [], + "unsafe-assume-single-core": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-1.11.0/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "serde::*" + ] + }, + "docs": { + "rs": { + "features": [ + "float", + "std", + "serde", + "critical-section" + ], + "rustdoc-args": [ + "--cfg", + "portable_atomic_unstable_f16", + "--cfg", + "portable_atomic_unstable_f128" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "embedded", + "hardware-support", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "atomic" + ], + "readme": "README.md", + "repository": "https://github.com/taiki-e/portable-atomic", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.34" + }, + { + "name": "portable-atomic-util", + "version": "0.2.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.4", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Synchronization primitives built with portable-atomic.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "require-cas" + ], + "target": null, + "registry": null + }, + { + "name": "build-context", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "portable_atomic_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-util-0.2.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-util-0.2.4/tests/arc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-util-0.2.4/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-util-0.2.4/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [] + }, + "docs": { + "rs": { + "all-features": true, + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "data-structures", + "embedded", + "no-std" + ], + "keywords": [ + "atomic" + ], + "readme": "README.md", + "repository": "https://github.com/taiki-e/portable-atomic", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.34" + }, + { + "name": "ppv-lite86", + "version": "0.2.21", + "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Cross-platform cryptography-oriented low-level SIMD library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "simd" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ppv_lite86", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "no_simd": [], + "simd": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The CryptoCorrosion Contributors" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "simd", + "x86" + ], + "readme": null, + "repository": "https://github.com/cryptocorrosion/cryptocorrosion", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "prettyplease", + "version": "0.1.25", + "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A minimal `syn` syntax tree pretty-printer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.90", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.90", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "parsing" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "prettyplease", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "verbatim": [ + "syn/parsing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools" + ], + "keywords": [ + "rustfmt" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/prettyplease", + "homepage": null, + "documentation": "https://docs.rs/prettyplease", + "edition": "2021", + "links": "prettyplease01", + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "prettyplease", + "version": "0.2.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A minimal `syn` syntax tree pretty-printer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.96", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "indoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.96", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "extra-traits", + "parsing", + "printing", + "visit-mut" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "prettyplease", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_precedence", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/tests/test_precedence.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "verbatim": [ + "syn/parsing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "verbatim" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools" + ], + "keywords": [ + "rustfmt" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/prettyplease", + "homepage": null, + "documentation": "https://docs.rs/prettyplease", + "edition": "2021", + "links": "prettyplease02", + "default_run": null, + "rust_version": "1.62" + }, + { + "name": "proc-macro-error", + "version": "1.0.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Almost drop-in replacement to panics in proc-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro-error-attr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.107", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.5.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.19", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proc_macro_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro-errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/macro-errors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "runtime-errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/runtime-errors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "syn-error" + ], + "syn": [ + "dep:syn" + ], + "syn-error": [ + "syn" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "CreepySkeleton " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "proc-macro", + "error", + "errors" + ], + "readme": "README.md", + "repository": "https://gitlab.com/CreepySkeleton/proc-macro-error", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proc-macro-error-attr", + "version": "1.0.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Attribute macro for proc-macro-error crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "proc_macro_error_attr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "CreepySkeleton " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://gitlab.com/CreepySkeleton/proc-macro-error", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proc-macro-error-attr2", + "version": "2.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Attribute macro for the proc-macro-error2 crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "proc_macro_error_attr2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "CreepySkeleton ", + "GnomedDev " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/GnomedDev/proc-macro-error-2", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "proc-macro-error2", + "version": "2.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Almost drop-in replacement to panics in proc-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro-error-attr2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.99", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proc_macro_error2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro-errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/macro-errors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/ok.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "runtime-errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/runtime-errors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "syn-error" + ], + "nightly": [], + "syn-error": [ + "dep:syn" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "CreepySkeleton ", + "GnomedDev " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "proc-macro", + "error", + "errors" + ], + "readme": "README.md", + "repository": "https://github.com/GnomedDev/proc-macro-error-2", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "proc-macro2", + "version": "1.0.94", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proc_macro2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "comments", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/comments.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "features", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/features.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "marker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/marker.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test_fmt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test_size.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "proc-macro" + ], + "nightly": [], + "proc-macro": [], + "span-locations": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustc-args": [ + "--cfg=procmacro2_semver_exempt" + ], + "rustdoc-args": [ + "--cfg=procmacro2_semver_exempt", + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "span-locations" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay ", + "Alex Crichton " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/proc-macro2", + "homepage": null, + "documentation": "https://docs.rs/proc-macro2", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "prokio", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An asynchronous runtime compatible with WebAssembly and non-WebAssembly targets.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "async-await" + ], + "target": null, + "registry": null + }, + { + "name": "pin-project", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pinned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.21.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rt", + "time" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "time" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "gloo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "prokio", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prokio-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prokio-0.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "documenting" + ] + } + } + }, + "publish": null, + "authors": [ + "Kaede Hoshikawa " + ], + "categories": [ + "asynchronous" + ], + "keywords": [ + "yew", + "futures", + "async", + "io" + ], + "readme": "README.md", + "repository": "https://github.com/futursolo/prokio", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "promises-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "promises_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/src/promises_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "promises_features_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/tests/promises_features_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "promises-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "promises-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "promises-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-pause", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "check-pause", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proxy_pause", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/src/proxy_pause.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proxy_pause_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/tests/proxy_pause_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proxy_pause_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/tests/proxy_pause_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-pause-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "proxy-pause", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "proxy-pause-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-test-first", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proxy_test_first", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/src/proxy-test-first.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-test-first-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "proxy-test-first", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "proxy-test-first-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-test-second", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proxy_test_second", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/src/proxy-test-second.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-test-second-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "proxy-test-second", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "proxy-test-second-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ptr_meta", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "license": "MIT", + "license_file": null, + "description": "A radioactive stabilization of the ptr_meta rfc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ptr_meta_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ptr_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.1.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.1.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std" + ], + "keywords": [ + "ptr", + "meta", + "no_std" + ], + "readme": "crates-io.md", + "repository": "https://github.com/djkoloski/ptr_meta", + "homepage": null, + "documentation": "https://docs.rs/ptr_meta", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ptr_meta", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "license": "MIT", + "license_file": null, + "description": "A radioactive stabilization of the ptr_meta rfc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ptr_meta_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ptr_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.3.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "derive", + "std" + ], + "derive": [ + "ptr_meta_derive" + ], + "ptr_meta_derive": [ + "dep:ptr_meta_derive" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/ptr_meta", + "homepage": null, + "documentation": "https://docs.rs/ptr_meta", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "ptr_meta_derive", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", + "license": "MIT", + "license_file": null, + "description": "Macros for ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "ptr_meta_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.1.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.1.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/djkoloski/ptr_meta", + "homepage": null, + "documentation": "https://docs.rs/ptr_meta_derive", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ptr_meta_derive", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", + "license": "MIT", + "license_file": null, + "description": "Proc macros for ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "full", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "ptr_meta_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.3.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/ptr_meta", + "homepage": null, + "documentation": "https://docs.rs/ptr_meta_derive", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "queue-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "queue_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/src/queue_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "queue-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "queue-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "queue-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "quote", + "version": "1.0.39", + "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Quasi-quoting macro quote!(...)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.66", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "quote", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "proc-macro" + ], + "proc-macro": [ + "proc-macro2/proc-macro" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/quote", + "homepage": null, + "documentation": "https://docs.rs/quote/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "r-efi", + "version": "5.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#r-efi@5.2.0", + "license": "MIT OR Apache-2.0 OR LGPL-2.1-or-later", + "license_file": null, + "description": "UEFI Reference Specification Protocol Constants and Definitions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "r_efi", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "freestanding", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/examples/freestanding.rs", + "edition": "2018", + "required-features": [ + "native" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gop-query", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/examples/gop-query.rs", + "edition": "2018", + "required-features": [ + "native" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hello-world", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/examples/hello-world.rs", + "edition": "2018", + "required-features": [ + "native" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "efiapi": [], + "examples": [ + "native" + ], + "native": [], + "rustc-dep-of-std": [ + "compiler_builtins/rustc-dep-of-std", + "core" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "embedded", + "hardware-support", + "no-std", + "os" + ], + "keywords": [ + "boot", + "efi", + "firmware", + "specification", + "uefi" + ], + "readme": "README.md", + "repository": "https://github.com/r-efi/r-efi", + "homepage": "https://github.com/r-efi/r-efi/wiki", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.68" + }, + { + "name": "radix_trie", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", + "license": "MIT", + "license_file": null, + "description": "Generic radix trie data-structure.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "endian-type", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nibble_vec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "radix_trie", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "child_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/child_iter.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/debug.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "opt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/opt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string_frequency", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/string_frequency.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "trie_benches", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/benches/trie_benches.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Michael Sproul " + ], + "categories": [ + "data-structures", + "text-processing" + ], + "keywords": [ + "trie", + "patricia", + "collection", + "generic", + "prefix" + ], + "readme": "README.md", + "repository": "https://github.com/michaelsproul/rust_radix_trie", + "homepage": null, + "documentation": "https://docs.rs/radix_trie/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rancor", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "license": "MIT", + "license_file": null, + "description": "Scalable and efficient error handling without type composition", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rancor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rancor-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rancor-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "rust-patterns", + "no-std" + ], + "keywords": [ + "error", + "error-handling", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/rancor", + "homepage": null, + "documentation": "https://docs.rs/rancor", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "rand", + "version": "0.8.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Random number generators and other randomness functionality.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "packed_simd_2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.7", + "kind": null, + "rename": "packed_simd", + "optional": true, + "uses_default_features": true, + "features": [ + "into_bits" + ], + "target": null, + "registry": null + }, + { + "name": "rand_chacha", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_pcg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [ + "rand_core/alloc" + ], + "default": [ + "std", + "std_rng" + ], + "getrandom": [ + "rand_core/getrandom" + ], + "libc": [ + "dep:libc" + ], + "log": [ + "dep:log" + ], + "min_const_gen": [], + "nightly": [], + "packed_simd": [ + "dep:packed_simd" + ], + "rand_chacha": [ + "dep:rand_chacha" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde", + "rand_core/serde1" + ], + "simd_support": [ + "packed_simd" + ], + "small_rng": [], + "std": [ + "rand_core/std", + "rand_chacha/std", + "alloc", + "getrandom", + "libc" + ], + "std_rng": [ + "rand_chacha" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg" + ] + } + }, + "playground": { + "features": [ + "small_rng", + "serde1" + ] + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rand_chacha", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "ChaCha random number generator\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ppv-lite86", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_chacha", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ], + "simd": [], + "std": [ + "ppv-lite86/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers", + "The CryptoCorrosion Contributors" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng", + "chacha" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand_chacha", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rand_core", + "version": "0.6.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Core random number generator traits and tools for implementation.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "getrandom": [ + "dep:getrandom" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ], + "std": [ + "alloc", + "getrandom", + "getrandom/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg" + ] + } + }, + "playground": { + "all-features": true + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand_core", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rand_seeder", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A universal random number seeder based on SipHash.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_seeder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "seedrng", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/examples/seedrng.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/benches/mod.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rand Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng", + "seeder" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/seeder", + "homepage": "https://rust-random.github.io/book/guide-seeding.html#a-string-or-any-hashable-data", + "documentation": "https://docs.rs/rand_seeder", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "random", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "random", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rayon", + "version": "1.10.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Simple work-stealing parallelism for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm_sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rayon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chars", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/chars.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "clones", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/clones.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "collect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/collect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cross-pool", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/cross-pool.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/debug.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "drain_vec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/drain_vec.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "intersperse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/intersperse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue671", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/issue671.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue671-unzip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/issue671-unzip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "iter_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/iter_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "named-threads", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/named-threads.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "octillion", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/octillion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "par_bridge_recursion", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/par_bridge_recursion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "producer_split_at", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/producer_split_at.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sort-panic-safe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/sort-panic-safe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "str", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/str.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "web_spin_lock": [ + "dep:wasm_sync", + "rayon-core/web_spin_lock" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Niko Matsakis ", + "Josh Stone " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "parallel", + "thread", + "concurrency", + "join", + "performance" + ], + "readme": "README.md", + "repository": "https://github.com/rayon-rs/rayon", + "homepage": null, + "documentation": "https://docs.rs/rayon/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rayon-core", + "version": "1.12.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Core APIs for Rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm_sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scoped-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rayon_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "double_init_fail", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/double_init_fail.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "init_zero_threads", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/init_zero_threads.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scope_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/scope_join.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scoped_threadpool", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/scoped_threadpool.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "simple_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/simple_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stack_overflow_crash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/stack_overflow_crash.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_current_thread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/use_current_thread.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "web_spin_lock": [ + "dep:wasm_sync" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Niko Matsakis ", + "Josh Stone " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "parallel", + "thread", + "concurrency", + "join", + "performance" + ], + "readme": "README.md", + "repository": "https://github.com/rayon-rs/rayon", + "homepage": null, + "documentation": "https://docs.rs/rayon/", + "edition": "2021", + "links": "rayon-core", + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rc-new-cyclic-fallible", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "Fallible variant of Rc::new_cyclic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rc_new_cyclic_fallible", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rc_new_cyclic_fallible_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/tests/rc_new_cyclic_fallible_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/multiversx/rc-new-cyclic-fallible", + "homepage": null, + "documentation": "https://github.com/multiversx/rc-new-cyclic-fallible/blob/main/README.md", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "recursive-caller", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "recursive_caller", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/src/recursive_caller.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "recursive-caller-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "recursive-caller", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "recursive-caller-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "redox_syscall", + "version": "0.5.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", + "license": "MIT", + "license_file": null, + "description": "A Rust library to access raw Redox system calls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "syscall", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/redox_syscall-0.5.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "core": [ + "dep:core" + ], + "default": [ + "userspace" + ], + "rustc-dep-of-std": [ + "core", + "bitflags/rustc-dep-of-std" + ], + "std": [], + "userspace": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/redox_syscall-0.5.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jeremy Soller " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://gitlab.redox-os.org/redox-os/syscall", + "homepage": null, + "documentation": "https://docs.rs/redox_syscall", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "regex", + "version": "1.11.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "syntax", + "meta", + "nfa-pikevm" + ], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "atty", + "humantime", + "termcolor" + ], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std", + "perf", + "unicode", + "regex-syntax/default" + ], + "logging": [ + "aho-corasick?/logging", + "memchr?/logging", + "regex-automata/logging" + ], + "pattern": [], + "perf": [ + "perf-cache", + "perf-dfa", + "perf-onepass", + "perf-backtrack", + "perf-inline", + "perf-literal" + ], + "perf-backtrack": [ + "regex-automata/nfa-backtrack" + ], + "perf-cache": [], + "perf-dfa": [ + "regex-automata/hybrid" + ], + "perf-dfa-full": [ + "regex-automata/dfa-build", + "regex-automata/dfa-search" + ], + "perf-inline": [ + "regex-automata/perf-inline" + ], + "perf-literal": [ + "dep:aho-corasick", + "dep:memchr", + "regex-automata/perf-literal" + ], + "perf-onepass": [ + "regex-automata/dfa-onepass" + ], + "std": [ + "aho-corasick?/std", + "memchr?/std", + "regex-automata/std", + "regex-syntax/std" + ], + "unicode": [ + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + "regex-automata/unicode", + "regex-syntax/unicode" + ], + "unicode-age": [ + "regex-automata/unicode-age", + "regex-syntax/unicode-age" + ], + "unicode-bool": [ + "regex-automata/unicode-bool", + "regex-syntax/unicode-bool" + ], + "unicode-case": [ + "regex-automata/unicode-case", + "regex-syntax/unicode-case" + ], + "unicode-gencat": [ + "regex-automata/unicode-gencat", + "regex-syntax/unicode-gencat" + ], + "unicode-perl": [ + "regex-automata/unicode-perl", + "regex-automata/unicode-word-boundary", + "regex-syntax/unicode-perl" + ], + "unicode-script": [ + "regex-automata/unicode-script", + "regex-syntax/unicode-script" + ], + "unicode-segment": [ + "regex-automata/unicode-segment", + "regex-syntax/unicode-segment" + ], + "unstable": [ + "pattern" + ], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers", + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex", + "homepage": "https://github.com/rust-lang/regex", + "documentation": "https://docs.rs/regex", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "regex-automata", + "version": "0.4.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Automata construction and matching using regular expressions.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "atty", + "humantime", + "termcolor" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex_automata", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std", + "syntax", + "perf", + "unicode", + "meta", + "nfa", + "dfa", + "hybrid" + ], + "dfa": [ + "dfa-build", + "dfa-search", + "dfa-onepass" + ], + "dfa-build": [ + "nfa-thompson", + "dfa-search" + ], + "dfa-onepass": [ + "nfa-thompson" + ], + "dfa-search": [], + "hybrid": [ + "alloc", + "nfa-thompson" + ], + "internal-instrument": [ + "internal-instrument-pikevm" + ], + "internal-instrument-pikevm": [ + "logging", + "std" + ], + "logging": [ + "dep:log", + "aho-corasick?/logging", + "memchr?/logging" + ], + "meta": [ + "syntax", + "nfa-pikevm" + ], + "nfa": [ + "nfa-thompson", + "nfa-pikevm", + "nfa-backtrack" + ], + "nfa-backtrack": [ + "nfa-thompson" + ], + "nfa-pikevm": [ + "nfa-thompson" + ], + "nfa-thompson": [ + "alloc" + ], + "perf": [ + "perf-inline", + "perf-literal" + ], + "perf-inline": [], + "perf-literal": [ + "perf-literal-substring", + "perf-literal-multisubstring" + ], + "perf-literal-multisubstring": [ + "std", + "dep:aho-corasick" + ], + "perf-literal-substring": [ + "aho-corasick?/perf-literal", + "dep:memchr" + ], + "std": [ + "regex-syntax?/std", + "memchr?/std", + "aho-corasick?/std", + "alloc" + ], + "syntax": [ + "dep:regex-syntax", + "alloc" + ], + "unicode": [ + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + "unicode-word-boundary", + "regex-syntax?/unicode" + ], + "unicode-age": [ + "regex-syntax?/unicode-age" + ], + "unicode-bool": [ + "regex-syntax?/unicode-bool" + ], + "unicode-case": [ + "regex-syntax?/unicode-case" + ], + "unicode-gencat": [ + "regex-syntax?/unicode-gencat" + ], + "unicode-perl": [ + "regex-syntax?/unicode-perl" + ], + "unicode-script": [ + "regex-syntax?/unicode-script" + ], + "unicode-segment": [ + "regex-syntax?/unicode-segment" + ], + "unicode-word-boundary": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers", + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "regex", + "dfa", + "automata", + "automaton", + "nfa" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex/tree/master/regex-automata", + "homepage": null, + "documentation": "https://docs.rs/regex-automata", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "regex-syntax", + "version": "0.8.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A regular expression parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex_syntax", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "default": [ + "std", + "unicode" + ], + "std": [], + "unicode": [ + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ], + "unicode-age": [], + "unicode-bool": [], + "unicode-case": [], + "unicode-gencat": [], + "unicode-perl": [], + "unicode-script": [], + "unicode-segment": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers", + "Andrew Gallant " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex/tree/master/regex-syntax", + "homepage": null, + "documentation": "https://docs.rs/regex-syntax", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "region", + "version": "3.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "license": "MIT", + "license_file": null, + "description": "Cross-platform virtual memory API", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.153", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mach2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", + "registry": null + }, + { + "name": "mmap-fixed", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.6", + "kind": "dev", + "rename": "mmap", + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Memory", + "Win32_System_SystemInformation", + "Win32_System_Diagnostics_Debug" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "region", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/region-3.0.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/region-3.0.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Elliott Linder " + ], + "categories": [], + "keywords": [ + "region", + "page", + "lock", + "protect", + "maps" + ], + "readme": "README.md", + "repository": "https://github.com/darfink/region-rs", + "homepage": "https://github.com/darfink/region-rs", + "documentation": "https://docs.rs/region", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rend", + "version": "0.5.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", + "license": "MIT", + "license_file": null, + "description": "Cross-platform, endian-aware primitives for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "bytemuck-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rend", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.5.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bytecheck": [ + "dep:bytecheck" + ], + "bytemuck-1": [ + "dep:bytemuck-1" + ], + "default": [], + "zerocopy-0_8": [ + "dep:zerocopy", + "dep:zerocopy-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.5.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std" + ], + "keywords": [ + "endian", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/djkoloski/rend", + "homepage": null, + "documentation": "https://docs.rs/rend", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "reqwest", + "version": "0.12.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "higher level HTTP client library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mime_guess", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sync_wrapper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures" + ], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "limit" + ], + "target": null, + "registry": null + }, + { + "name": "async-compression", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "tokio" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "cookie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.18.0", + "kind": null, + "rename": "cookie_crate", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "cookie_store", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.21.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "encoding_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "h2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "h3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "h3-quinn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hickory-resolver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.24", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "tokio-runtime" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "http-body", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "http1", + "client" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper-rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.27.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "http1", + "tls12" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "http1", + "client", + "client-legacy", + "tokio" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "ipnet", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "mime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.16", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.10", + "kind": null, + "rename": "native-tls-crate", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "quinn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "rustls", + "runtime-tokio" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "tls12" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls-native-certs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls-pemfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "net", + "time" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "tls12" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-socks", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "codec", + "io" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tower", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "timeout", + "util" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "brotli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.0", + "kind": "dev", + "rename": "brotli_crate", + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.28", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "alloc" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "http1", + "http2", + "client", + "server" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "http1", + "http2", + "client", + "client-legacy", + "server-auto", + "tokio" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "libflate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "ring" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros", + "rt-multi-thread" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "zstd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": "zstd_crate", + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.89", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-streams", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "AbortController", + "AbortSignal", + "Headers", + "Request", + "RequestInit", + "RequestMode", + "Response", + "Window", + "FormData", + "Blob", + "BlobPropertyBag", + "ServiceWorkerGlobalScope", + "RequestCredentials", + "File", + "ReadableStream" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.89", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde-serialize" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "system-configuration", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"macos\")", + "registry": null + }, + { + "name": "windows-registry", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "reqwest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "blocking", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/blocking.rs", + "edition": "2021", + "required-features": [ + "blocking" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "connect_via_lower_priority_tokio_runtime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/connect_via_lower_priority_tokio_runtime.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "form", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/form.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "h3_simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/h3_simple.rs", + "edition": "2021", + "required-features": [ + "http3", + "rustls-tls" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_dynamic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/json_dynamic.rs", + "edition": "2021", + "required-features": [ + "json" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_typed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/json_typed.rs", + "edition": "2021", + "required-features": [ + "json" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tor_socks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/tor_socks.rs", + "edition": "2021", + "required-features": [ + "socks" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "badssl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/badssl.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "blocking", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/blocking.rs", + "edition": "2021", + "required-features": [ + "blocking" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "brotli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/brotli.rs", + "edition": "2021", + "required-features": [ + "brotli", + "stream" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/client.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "connector_layers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/connector_layers.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cookie", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/cookie.rs", + "edition": "2021", + "required-features": [ + "cookies" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deflate", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/deflate.rs", + "edition": "2021", + "required-features": [ + "deflate", + "stream" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gzip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/gzip.rs", + "edition": "2021", + "required-features": [ + "gzip", + "stream" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "http3", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/http3.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multipart", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/multipart.rs", + "edition": "2021", + "required-features": [ + "multipart" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proxy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "redirect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/redirect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "timeouts", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/timeouts.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "upgrade", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/upgrade.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wasm_simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/wasm_simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zstd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/zstd.rs", + "edition": "2021", + "required-features": [ + "zstd", + "stream" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__rustls": [ + "dep:hyper-rustls", + "dep:tokio-rustls", + "dep:rustls", + "__tls", + "dep:rustls-pemfile", + "dep:rustls-pki-types" + ], + "__rustls-ring": [ + "hyper-rustls?/ring", + "tokio-rustls?/ring", + "rustls?/ring", + "quinn?/ring" + ], + "__tls": [ + "dep:rustls-pemfile", + "tokio/io-util" + ], + "blocking": [ + "dep:futures-channel", + "futures-channel?/sink", + "futures-util/io", + "futures-util/sink", + "tokio/sync" + ], + "brotli": [ + "dep:async-compression", + "async-compression?/brotli", + "dep:tokio-util" + ], + "charset": [ + "dep:encoding_rs" + ], + "cookies": [ + "dep:cookie_crate", + "dep:cookie_store" + ], + "default": [ + "default-tls", + "charset", + "http2", + "macos-system-configuration" + ], + "default-tls": [ + "dep:hyper-tls", + "dep:native-tls-crate", + "__tls", + "dep:tokio-native-tls" + ], + "deflate": [ + "dep:async-compression", + "async-compression?/zlib", + "dep:tokio-util" + ], + "gzip": [ + "dep:async-compression", + "async-compression?/gzip", + "dep:tokio-util" + ], + "h2": [ + "dep:h2" + ], + "hickory-dns": [ + "dep:hickory-resolver" + ], + "http2": [ + "h2", + "hyper/http2", + "hyper-util/http2", + "hyper-rustls?/http2" + ], + "http3": [ + "rustls-tls-manual-roots", + "dep:h3", + "dep:h3-quinn", + "dep:quinn", + "dep:slab", + "dep:futures-channel" + ], + "json": [ + "dep:serde_json" + ], + "macos-system-configuration": [ + "dep:system-configuration" + ], + "multipart": [ + "dep:mime_guess" + ], + "native-tls": [ + "default-tls" + ], + "native-tls-alpn": [ + "native-tls", + "native-tls-crate?/alpn", + "hyper-tls?/alpn" + ], + "native-tls-vendored": [ + "native-tls", + "native-tls-crate?/vendored" + ], + "rustls-tls": [ + "rustls-tls-webpki-roots" + ], + "rustls-tls-manual-roots": [ + "rustls-tls-manual-roots-no-provider", + "__rustls-ring" + ], + "rustls-tls-manual-roots-no-provider": [ + "__rustls" + ], + "rustls-tls-native-roots": [ + "rustls-tls-native-roots-no-provider", + "__rustls-ring" + ], + "rustls-tls-native-roots-no-provider": [ + "dep:rustls-native-certs", + "hyper-rustls?/native-tokio", + "__rustls" + ], + "rustls-tls-no-provider": [ + "rustls-tls-manual-roots-no-provider" + ], + "rustls-tls-webpki-roots": [ + "rustls-tls-webpki-roots-no-provider", + "__rustls-ring" + ], + "rustls-tls-webpki-roots-no-provider": [ + "dep:webpki-roots", + "hyper-rustls?/webpki-tokio", + "__rustls" + ], + "socks": [ + "dep:tokio-socks" + ], + "stream": [ + "tokio/fs", + "dep:tokio-util", + "dep:wasm-streams" + ], + "trust-dns": [], + "zstd": [ + "dep:async-compression", + "async-compression?/zstd", + "dep:tokio-util" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "reqwest_unstable" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "wasm32-unknown-unknown" + ] + } + }, + "playground": { + "features": [ + "blocking", + "cookies", + "json", + "multipart" + ] + } + }, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "web-programming::http-client", + "wasm" + ], + "keywords": [ + "http", + "request", + "client" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/reqwest", + "homepage": null, + "documentation": "https://docs.rs/reqwest", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "rewards-distribution", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rewards_distribution", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/src/rewards_distribution.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mock_seed_nft_minter", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/mock_seed_nft_minter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mock_seed_nft_minter_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/mock_seed_nft_minter_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rewards_distribution_integration_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/rewards_distribution_integration_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/utils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rewards-distribution-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "rewards-distribution", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "rewards-distribution-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ring", + "version": "0.17.14", + "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "license": "Apache-2.0 AND ISC", + "license_file": null, + "description": "An experiment.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "untrusted", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.8", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Threading" + ], + "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.148", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.37", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.148", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(unix, windows, target_os = \"wasi\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "aead_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/aead_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "agreement_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/agreement_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constant_time_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/constant_time_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "digest_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/digest_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ecdsa_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/ecdsa_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ed25519_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/ed25519_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/error_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hkdf_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/hkdf_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hmac_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/hmac_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pbkdf2_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/pbkdf2_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quic_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/quic_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rand_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/rand_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rsa_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/rsa_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signature_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/signature_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "alloc", + "dev_urandom_fallback" + ], + "dev_urandom_fallback": [], + "less-safe-getrandom-custom-or-rdrand": [], + "less-safe-getrandom-espidf": [], + "slow_tests": [], + "std": [ + "alloc" + ], + "test_logging": [], + "unstable-testing-arm-no-hw": [], + "unstable-testing-arm-no-neon": [], + "wasm32_unknown_unknown_js": [ + "getrandom/js" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "cryptography", + "rand", + "ECC", + "RSA" + ], + "readme": "README.md", + "repository": "https://github.com/briansmith/ring", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": "ring_core_0_17_14_", + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "rkyv", + "version": "0.8.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "license": "MIT", + "license_file": null, + "description": "Zero-copy deserialization framework for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": "arrayvec-0_7", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "simdutf8" + ], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "bytes-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": "hashbrown-0_14", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": "indexmap-2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "munge", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rancor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rend", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "smallvec-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smol_str", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": "smol_str-0_2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smol_str", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": "smol_str-0_3", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thin-vec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.12", + "kind": null, + "rename": "thin-vec-0_2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinyvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "tinyvec-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "triomphe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": "triomphe-0_1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "uuid-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "divan", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rkyv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "backwards_compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/backwards_compat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "complex_wrapper_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/complex_wrapper_types.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "derive_partial_ord", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/derive_partial_ord.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_enum_discriminants", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/explicit_enum_discriminants.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_like_schema", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/json_like_schema.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "readme", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/readme.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "remote_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/remote_types.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/tests/derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ui", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/tests/ui.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "log", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/log.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mesh", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/mesh.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "minecraft_savedata", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/minecraft_savedata.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aligned": [], + "alloc": [ + "dep:hashbrown", + "tinyvec-1?/alloc", + "rancor/alloc" + ], + "arrayvec-0_7": [ + "dep:arrayvec-0_7" + ], + "big_endian": [], + "bytecheck": [ + "dep:bytecheck", + "rend/bytecheck", + "rkyv_derive/bytecheck" + ], + "bytes-1": [ + "dep:bytes-1" + ], + "default": [ + "std", + "bytecheck" + ], + "hashbrown-0_14": [ + "dep:hashbrown-0_14" + ], + "hashbrown-0_15": [ + "dep:hashbrown" + ], + "indexmap-2": [ + "dep:indexmap-2", + "alloc" + ], + "little_endian": [], + "pointer_width_16": [], + "pointer_width_32": [], + "pointer_width_64": [], + "smallvec-1": [ + "dep:smallvec-1" + ], + "smol_str-0_2": [ + "dep:smol_str-0_2" + ], + "smol_str-0_3": [ + "dep:smol_str-0_3" + ], + "std": [ + "alloc", + "bytes-1?/std", + "indexmap-2?/std", + "ptr_meta/std", + "uuid-1?/std" + ], + "thin-vec-0_2": [ + "dep:thin-vec-0_2" + ], + "tinyvec-1": [ + "dep:tinyvec-1" + ], + "triomphe-0_1": [ + "dep:triomphe-0_1", + "alloc" + ], + "unaligned": [], + "uuid-1": [ + "dep:uuid-1", + "bytecheck?/uuid-1" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "bytecheck" + ] + } + } + }, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "archive", + "rkyv", + "serialization", + "zero-copy", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/rkyv", + "homepage": null, + "documentation": "https://docs.rs/rkyv", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "rkyv_derive", + "version": "0.8.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", + "license": "MIT", + "license_file": null, + "description": "Derive macro for rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.73", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "rkyv_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.8.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bytecheck": [], + "default": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.8.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "archive", + "rkyv", + "serialization", + "zero-copy", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/rkyv", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "route-recognizer", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", + "license": "MIT", + "license_file": null, + "description": "Recognizes URL patterns with support for dynamic and wildcard segments", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "route_recognizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "nfa", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/benches/nfa.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "wycats", + "rustasync" + ], + "categories": [], + "keywords": [ + "router", + "url" + ], + "readme": "README.md", + "repository": "https://github.com/rustasync/route-recognizer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ruplacer", + "version": "0.10.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Find and replace text in source files", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "Inflector", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.32", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.3.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ignore", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruplacer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ruplacer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/tests/integration_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/Cargo.toml", + "metadata": { + "deb": { + "extended-description": "Find and replace text in source files" + } + }, + "publish": null, + "authors": [ + "Dimitri Merejkowsky " + ], + "categories": [ + "command-line-utilities" + ], + "keywords": [ + "ruplacer", + "find", + "grep", + "command", + "line" + ], + "readme": "README.md", + "repository": "https://github.com/your-tools/ruplacer", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rust-snippets-generator-test", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rust_snippets_generator_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rust-snippets-generator-test-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "rust-snippets-generator-test", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "rust-snippets-generator-test-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rust-testing-framework-tester", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "adder", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" + }, + { + "name": "basic-features", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" + }, + { + "name": "forwarder", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rust_testing_framework_tester", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rust_testing_framework_tester_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rust_testing_framework_tester_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tester_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/tester_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tester_whitebox_legacy_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/tester_whitebox_legacy_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rust-testing-framework-tester-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "rust-testing-framework-tester", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "rust-testing-framework-tester-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustc-demangle", + "version": "0.1.24", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Rust compiler symbol demangling.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustc_demangle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-demangle-0.1.24/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-demangle-0.1.24/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/rustc-demangle", + "homepage": "https://github.com/rust-lang/rustc-demangle", + "documentation": "https://docs.rs/rustc-demangle", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustc-hash", + "version": "1.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "speed, non-cryptographic hash used in rustc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustc_hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [], + "keywords": [ + "hash", + "fxhash", + "rustc" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang-nursery/rustc-hash", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustc_version", + "version": "0.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library for querying the version of a installed rustc compiler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustc_version", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/tests/all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "version", + "rustc" + ], + "readme": "README.md", + "repository": "https://github.com/djc/rustc-version-rs", + "homepage": null, + "documentation": "https://docs.rs/rustc_version/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.32" + }, + { + "name": "rustix", + "version": "1.0.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.49", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": "dev", + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "linux-raw-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "general", + "ioctl", + "no_std" + ], + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": "libc_errno", + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "linux-raw-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "general", + "errno", + "ioctl", + "no_std", + "elf" + ], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Networking_WinSock" + ], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.20.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustix", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "all-apis": [ + "event", + "fs", + "io_uring", + "mm", + "mount", + "net", + "param", + "pipe", + "process", + "pty", + "rand", + "runtime", + "shm", + "stdio", + "system", + "termios", + "thread", + "time" + ], + "alloc": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "event": [], + "fs": [], + "io_uring": [ + "event", + "fs", + "net", + "thread", + "linux-raw-sys/io_uring" + ], + "libc": [ + "dep:libc" + ], + "libc_errno": [ + "dep:libc_errno" + ], + "linux_4_11": [], + "linux_5_1": [ + "linux_4_11" + ], + "linux_5_11": [ + "linux_5_1" + ], + "linux_latest": [ + "linux_5_11" + ], + "mm": [], + "mount": [], + "net": [ + "linux-raw-sys/net", + "linux-raw-sys/netlink", + "linux-raw-sys/if_ether", + "linux-raw-sys/xdp" + ], + "param": [], + "pipe": [], + "process": [ + "linux-raw-sys/prctl" + ], + "pty": [ + "fs" + ], + "rand": [], + "runtime": [ + "linux-raw-sys/prctl" + ], + "rustc-dep-of-std": [ + "core", + "rustc-std-workspace-alloc", + "compiler_builtins", + "linux-raw-sys/rustc-dep-of-std", + "bitflags/rustc-dep-of-std", + "compiler_builtins?/rustc-dep-of-std" + ], + "rustc-std-workspace-alloc": [ + "dep:rustc-std-workspace-alloc" + ], + "shm": [ + "fs" + ], + "std": [ + "bitflags/std", + "alloc", + "libc?/std", + "libc_errno?/std" + ], + "stdio": [], + "system": [ + "linux-raw-sys/system" + ], + "termios": [], + "thread": [ + "linux-raw-sys/prctl" + ], + "time": [], + "try_close": [], + "use-explicitly-provided-auxv": [], + "use-libc": [ + "libc_errno", + "libc" + ], + "use-libc-auxv": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "all-apis" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "i686-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", + "x86_64-unknown-freebsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-netbsd", + "x86_64-unknown-dragonfly", + "x86_64-unknown-illumos", + "x86_64-unknown-redox", + "x86_64-unknown-haiku", + "wasm32-unknown-emscripten", + "wasm32-wasip1" + ] + } + } + }, + "publish": null, + "authors": [ + "Dan Gohman ", + "Jakub Konka " + ], + "categories": [ + "os::unix-apis", + "date-and-time", + "filesystem", + "network-programming" + ], + "keywords": [ + "api", + "file", + "network", + "safe", + "syscall" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/rustix", + "homepage": null, + "documentation": "https://docs.rs/rustix", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rustls", + "version": "0.23.26", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "license": "Apache-2.0 OR ISC OR MIT", + "license_file": null, + "description": "Rustls is a modern TLS library written in Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aws-lc-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "brotli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "brotli-decompressor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher", + "inline-more" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.16", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "race" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-webpki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.103", + "kind": null, + "rename": "webpki", + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zlib-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "macro_rules_attribute", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "pem", + "aws_lc_rs" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "x509-parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "test_ca", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/examples/internal/test_ca.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/benches/benchmarks.rs", + "edition": "2021", + "required-features": [ + "ring" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aws-lc-rs": [ + "aws_lc_rs" + ], + "aws_lc_rs": [ + "dep:aws-lc-rs", + "webpki/aws-lc-rs", + "aws-lc-rs/aws-lc-sys", + "aws-lc-rs/prebuilt-nasm" + ], + "brotli": [ + "dep:brotli", + "dep:brotli-decompressor", + "std" + ], + "custom-provider": [], + "default": [ + "aws_lc_rs", + "logging", + "std", + "tls12" + ], + "fips": [ + "aws_lc_rs", + "aws-lc-rs?/fips", + "webpki/aws-lc-rs-fips" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "log": [ + "dep:log" + ], + "logging": [ + "log" + ], + "prefer-post-quantum": [ + "aws_lc_rs" + ], + "read_buf": [ + "rustversion", + "std" + ], + "ring": [ + "dep:ring", + "webpki/ring" + ], + "rustversion": [ + "dep:rustversion" + ], + "std": [ + "webpki/std", + "pki-types/std", + "once_cell/std" + ], + "tls12": [], + "zlib": [ + "dep:zlib-rs" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/Cargo.toml", + "metadata": { + "cargo-semver-checks": { + "lints": { + "enum_no_repr_variant_discriminant_changed": "warn" + } + }, + "cargo_check_external_types": { + "allowed_external_types": [ + "rustls_pki_types", + "rustls_pki_types::*" + ] + }, + "docs": { + "rs": { + "features": [ + "read_buf", + "ring" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "cryptography" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/rustls", + "homepage": "https://github.com/rustls/rustls", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "rustls-pemfile", + "version": "2.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", + "license": "Apache-2.0 OR ISC OR MIT", + "license_file": null, + "description": "Basic .pem file parser for keys and certificates", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustls_pemfile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/tests/integration.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/benches/benchmark.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "pki-types/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "cryptography" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/pemfile", + "homepage": "https://github.com/rustls/pemfile", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustls-pki-types", + "version": "1.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Shared types for the rustls PKI ecosystem", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "web-time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "crabgrind", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.1.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_os = \"linux\", target_arch = \"x86_64\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustls_pki_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dns_name", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/dns_name.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "key_type", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/key_type.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pem", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/pem.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "server_name", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/server_name.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ], + "std": [ + "alloc" + ], + "web": [ + "web-time" + ], + "web-time": [ + "dep:web-time" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "data-structures", + "cryptography" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/pki-types", + "homepage": "https://github.com/rustls/pki-types", + "documentation": "https://docs.rs/rustls-pki-types", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "rustls-webpki", + "version": "0.103.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", + "license": "ISC", + "license_file": null, + "description": "Web PKI X.509 Certificate Verification.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aws-lc-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "untrusted", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bzip2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "aws_lc_rs" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "webpki", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "amazon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/amazon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "better_tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/better_tls.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cert_v1_unsupported", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/cert_v1_unsupported.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cert_without_extensions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/cert_without_extensions.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client_auth", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/client_auth.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client_auth_revocation", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/client_auth_revocation.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crl_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/crl_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom_ekus", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/custom_ekus.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/integration.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signatures", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/signatures.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tls_server_certs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/tls_server_certs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "ring?/alloc", + "pki-types/alloc" + ], + "aws-lc-rs": [ + "dep:aws-lc-rs", + "aws-lc-rs/aws-lc-sys", + "aws-lc-rs/prebuilt-nasm" + ], + "aws-lc-rs-fips": [ + "dep:aws-lc-rs", + "aws-lc-rs/fips" + ], + "default": [ + "std" + ], + "ring": [ + "dep:ring" + ], + "std": [ + "alloc", + "pki-types/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "rustls_pki_types::*", + "rustls_pki_types" + ] + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/webpki", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "rustversion", + "version": "1.0.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Conditional compilation according to rustc compiler version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.49", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "rustversion", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_const", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_const.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_eval", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_eval.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/build/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::build-utils", + "no-std", + "no-std::no-alloc" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/dtolnay/rustversion", + "homepage": null, + "documentation": "https://docs.rs/rustversion", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "ruzstd", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", + "license": "MIT", + "license_file": null, + "description": "A decoder for the zstd compression format", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "derive_more", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.99", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "display", + "from" + ], + "target": null, + "registry": null + }, + { + "name": "twox-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruzstd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "zstd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/bin/zstd.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "zstd_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/bin/zstd_stream.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "reversedbitreader_bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/benches/reversedbitreader_bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "derive_more/error" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Moritz Borcherding " + ], + "categories": [], + "keywords": [], + "readme": "Readme.md", + "repository": "https://github.com/KillingSpark/zstd-rs", + "homepage": "https://github.com/KillingSpark/zstd-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ryu", + "version": "1.0.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "license": "Apache-2.0 OR BSL-1.0", + "license_file": null, + "description": "Fast floating point to string conversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ryu", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "upstream_benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/examples/upstream_benchmark.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "common_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/common_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "d2s_intrinsics_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_intrinsics_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "d2s_table_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_table_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "d2s_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "exhaustive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/exhaustive.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "f2s_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/f2s_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "s2d_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/s2d_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "s2f_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/s2f_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "no-panic": [ + "dep:no-panic" + ], + "small": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "value-formatting", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "float" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/ryu", + "homepage": null, + "documentation": "https://docs.rs/ryu", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "salsa20", + "version": "0.10.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Salsa20 Stream Cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "salsa20", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "std": [ + "cipher/std" + ], + "zeroize": [ + "cipher/zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "stream-cipher", + "trait", + "xsalsa20" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/stream-ciphers", + "homepage": null, + "documentation": "https://docs.rs/salsa20", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "same-file", + "version": "1.0.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "license": "Unlicense/MIT", + "license_file": null, + "description": "A simple crate for determining whether two file paths point to the same file.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "same_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "is_same_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/examples/is_same_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "is_stderr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/examples/is_stderr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "same", + "file", + "equal", + "inode" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/same-file", + "homepage": "https://github.com/BurntSushi/same-file", + "documentation": "https://docs.rs/same-file", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "scc", + "version": "2.3.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", + "license": "Apache-2.0", + "license_file": null, + "description": "High-performance containers and utilities for concurrent and asynchronous programming", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sdd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.44", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bag", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/bag.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "hash_cache", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_cache.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "hash_index", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_index.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "hash_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tree_index", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/tree_index.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "equivalent": [ + "dep:equivalent" + ], + "loom": [ + "dep:loom", + "sdd/loom" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "wvwwvwwv " + ], + "categories": [ + "asynchronous", + "caching", + "concurrency", + "data-structures" + ], + "keywords": [ + "async", + "cache", + "concurrent", + "hashmap", + "tree" + ], + "readme": "README.md", + "repository": "https://github.com/wvwwvwwv/scalable-concurrent-containers/", + "homepage": null, + "documentation": "https://docs.rs/scc", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "scenario-tester", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scenario_tester", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_chained_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_chained_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_legacy_proxy_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_legacy_proxy_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_raw_steps_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_raw_steps_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_upgrade_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_upgrade_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_unit_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_unit_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "scenario-tester-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "scenario-tester", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "scenario-tester-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "schannel", + "version": "0.1.27", + "id": "registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.27", + "license": "MIT", + "license_file": null, + "description": "Schannel bindings for rust, allowing SSL/TLS (e.g. https) without openssl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Security_Cryptography", + "Win32_Security_Authentication_Identity", + "Win32_Security_Credentials", + "Win32_System_LibraryLoader", + "Win32_System_Memory", + "Win32_System_SystemInformation" + ], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_SystemInformation", + "Win32_System_Time" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "schannel", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/schannel-0.1.27/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/schannel-0.1.27/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc" + } + } + }, + "publish": null, + "authors": [ + "Steven Fackler ", + "Steffen Butzer " + ], + "categories": [], + "keywords": [ + "windows", + "schannel", + "tls", + "ssl", + "https" + ], + "readme": "README.md", + "repository": "https://github.com/steffengy/schannel-rs", + "homepage": null, + "documentation": "https://docs.rs/schannel/0.1.19/schannel/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "scopeguard", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as\nshorthands for guards with one of the implemented strategies.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scopeguard", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "readme", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/examples/readme.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "use_std" + ], + "use_std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/Cargo.toml", + "metadata": { + "release": { + "no-dev-version": true + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "rust-patterns", + "no-std" + ], + "keywords": [ + "scope-guard", + "defer", + "panic", + "unwind" + ], + "readme": "README.md", + "repository": "https://github.com/bluss/scopeguard", + "homepage": null, + "documentation": "https://docs.rs/scopeguard/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "scrypt", + "version": "0.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Scrypt password-based key derivation function", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "password-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "rand_core" + ], + "target": null, + "registry": null + }, + { + "name": "pbkdf2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "salsa20", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "password-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rand_core" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scrypt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/benches/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "simple", + "std" + ], + "password-hash": [ + "dep:password-hash" + ], + "simple": [ + "password-hash" + ], + "std": [ + "password-hash/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "authentication", + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "hashing", + "password", + "phf" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/password-hashes/tree/master/scrypt", + "homepage": null, + "documentation": "https://docs.rs/scrypt", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "sdd", + "version": "3.0.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", + "license": "Apache-2.0", + "license_file": null, + "description": "Scalable lock-free delayed memory reclaimer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sdd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ebr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/benches/ebr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "loom": [ + "dep:loom" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "wvwwvwwv " + ], + "categories": [ + "concurrency", + "data-structures", + "memory-management" + ], + "keywords": [ + "concurrent", + "epoch", + "garbage", + "lock-free", + "memory" + ], + "readme": "README.md", + "repository": "https://github.com/wvwwvwwv/scalable-delayed-dealloc/", + "homepage": null, + "documentation": "https://docs.rs/sdd", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "second-contract", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "second_contract", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "second-contract-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "second-contract", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "second-contract-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "security-framework", + "version": "2.11.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#security-framework@2.11.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Security.framework bindings for macOS and iOS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "core-foundation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "core-foundation-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.139", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "security-framework-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.11.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "x509-parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "security_framework", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/examples/client.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "find_internet_password", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/examples/find_internet_password.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "set_internet_password", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/examples/set_internet_password.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "OSX_10_10": [ + "OSX_10_9", + "security-framework-sys/OSX_10_10" + ], + "OSX_10_11": [ + "OSX_10_10", + "security-framework-sys/OSX_10_11" + ], + "OSX_10_12": [ + "OSX_10_11", + "security-framework-sys/OSX_10_12" + ], + "OSX_10_13": [ + "OSX_10_12", + "security-framework-sys/OSX_10_13", + "alpn", + "session-tickets", + "serial-number-bigint" + ], + "OSX_10_14": [ + "OSX_10_13", + "security-framework-sys/OSX_10_14" + ], + "OSX_10_15": [ + "OSX_10_14", + "security-framework-sys/OSX_10_15" + ], + "OSX_10_9": [ + "security-framework-sys/OSX_10_9" + ], + "alpn": [], + "default": [ + "OSX_10_12" + ], + "job-bless": [], + "log": [ + "dep:log" + ], + "nightly": [], + "serial-number-bigint": [ + "dep:num-bigint" + ], + "session-tickets": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "OSX_10_15" + ], + "targets": [ + "x86_64-apple-darwin", + "aarch64-apple-ios" + ] + } + } + }, + "publish": null, + "authors": [ + "Steven Fackler ", + "Kornel " + ], + "categories": [ + "os::macos-apis", + "cryptography", + "api-bindings" + ], + "keywords": [ + "iOS", + "TLS", + "SSL", + "crypto", + "keychain" + ], + "readme": "README.md", + "repository": "https://github.com/kornelski/rust-security-framework", + "homepage": "https://lib.rs/crates/security_framework", + "documentation": "https://docs.rs/security_framework", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "security-framework-sys", + "version": "2.14.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Apple `Security.framework` low-level FFI bindings", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "core-foundation-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.150", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "security_framework_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.14.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "OSX_10_10": [ + "OSX_10_9" + ], + "OSX_10_11": [ + "OSX_10_10" + ], + "OSX_10_12": [ + "OSX_10_11" + ], + "OSX_10_13": [ + "OSX_10_12" + ], + "OSX_10_14": [ + "OSX_10_13" + ], + "OSX_10_15": [ + "OSX_10_14" + ], + "OSX_10_9": [], + "default": [ + "OSX_10_12" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.14.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-apple-darwin", + "aarch64-apple-ios" + ] + } + } + }, + "publish": null, + "authors": [ + "Steven Fackler ", + "Kornel " + ], + "categories": [ + "os::macos-apis", + "external-ffi-bindings" + ], + "keywords": [ + "ffi", + "iOS", + "TLS", + "SSL", + "crypto" + ], + "readme": "README.md", + "repository": "https://github.com/kornelski/rust-security-framework", + "homepage": "https://lib.rs/crates/security-framework-sys", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "seed-nft-minter", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "seed_nft_minter", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/src/seed_nft_minter.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "seed-nft-minter-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "seed-nft-minter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "seed-nft-minter-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "self_cell", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", + "license": "Apache-2.0", + "license_file": null, + "description": "Safe-to-use proc-macro-free self-referential structs in stable Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "self_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "old_rust": [ + "rustversion" + ], + "rustversion": [ + "dep:rustversion" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Lukas Bergdoll " + ], + "categories": [ + "rust-patterns", + "memory-management" + ], + "keywords": [ + "lifetime", + "borrowing", + "self", + "reference", + "intrusive" + ], + "readme": "README.md", + "repository": "https://github.com/Voultapher/self_cell", + "homepage": null, + "documentation": "https://docs.rs/self_cell", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "semver", + "version": "1.0.26", + "id": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser and evaluator for Cargo's flavor of Semantic Versioning", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.194", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "semver", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_autotrait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_autotrait.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_identifier", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_identifier.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_version", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_version.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_version_req", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_version_req.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/benches/parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "cargo" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/semver", + "homepage": null, + "documentation": "https://docs.rs/semver", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "send-tx-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "send_tx_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/src/send_tx_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "send-tx-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "send-tx-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "send-tx-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serde", + "version": "1.0.219", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A generic serialization/deserialization framework", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.219", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "derive": [ + "serde_derive" + ], + "rc": [], + "serde_derive": [ + "dep:serde_derive" + ], + "std": [], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "derive", + "rc", + "unstable" + ], + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "derive", + "rc" + ] + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "no_std" + ], + "readme": "crates-io.md", + "repository": "https://github.com/serde-rs/serde", + "homepage": "https://serde.rs", + "documentation": "https://docs.rs/serde", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "serde-wasm-bindgen", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", + "license": "MIT", + "license_file": null, + "description": "Native Serde adapter for wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.83", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "maplit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.39", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.24", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_wasm_bindgen", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/tests/browser.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "node", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/tests/node.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ingvar Stepanyan " + ], + "categories": [ + "development-tools::ffi", + "wasm", + "encoding" + ], + "keywords": [ + "serde", + "serialization", + "javascript", + "wasm", + "webassembly" + ], + "readme": "README.md", + "repository": "https://github.com/cloudflare/serde-wasm-bindgen", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serde-wasm-bindgen", + "version": "0.6.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", + "license": "MIT", + "license_file": null, + "description": "Native Serde adapter for wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.193", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.83", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "maplit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.39", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.24", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_wasm_bindgen", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.6.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.6.5/tests/browser.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "node", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.6.5/tests/node.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.6.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "wasm32-unknown-unknown" + ] + } + } + }, + "publish": null, + "authors": [ + "Ingvar Stepanyan " + ], + "categories": [ + "development-tools::ffi", + "wasm", + "encoding" + ], + "keywords": [ + "serde", + "serialization", + "javascript", + "wasm", + "webassembly" + ], + "readme": "README.md", + "repository": "https://github.com/RReverser/serde-wasm-bindgen", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serde_derive", + "version": "1.0.219", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.81", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "serde_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.219/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "deserialize_in_place": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.219/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "no_std", + "derive" + ], + "readme": "crates-io.md", + "repository": "https://github.com/serde-rs/serde", + "homepage": "https://serde.rs", + "documentation": "https://serde.rs/derive.html", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "serde_json", + "version": "1.0.140", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A JSON serialization file format", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ryu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.194", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.194", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_stacker", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/debug.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lexical", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/lexical.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/regression.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "serde/alloc" + ], + "arbitrary_precision": [], + "default": [ + "std" + ], + "float_roundtrip": [], + "indexmap": [ + "dep:indexmap" + ], + "preserve_order": [ + "indexmap", + "std" + ], + "raw_value": [], + "std": [ + "memchr/std", + "serde/std" + ], + "unbounded_depth": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "preserve_order", + "raw_value", + "unbounded_depth" + ], + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "float_roundtrip", + "raw_value", + "unbounded_depth" + ] + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "encoding", + "parser-implementations", + "no-std" + ], + "keywords": [ + "json", + "serde", + "serialization" + ], + "readme": "README.md", + "repository": "https://github.com/serde-rs/json", + "homepage": null, + "documentation": "https://docs.rs/serde_json", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "serde_repr", + "version": "0.1.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.46", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.100", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "serde_repr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "integer" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/serde-repr", + "homepage": null, + "documentation": "https://docs.rs/serde_repr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "serde_spanned", + "version": "0.6.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Serde-compatible spanned Value", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde-untagged", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_spanned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-0.6.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-0.6.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "serde", + "span" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "serde_urlencoded", + "version": "0.7.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "`x-www-form-urlencoded` meets Serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "form_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ryu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_urlencoded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_deserialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/tests/test_deserialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_serialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/tests/test_serialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Anthony Ramine " + ], + "categories": [ + "encoding", + "web-programming" + ], + "keywords": [ + "serde", + "serialization", + "urlencoded" + ], + "readme": "README.md", + "repository": "https://github.com/nox/serde_urlencoded", + "homepage": null, + "documentation": "https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serial_test", + "version": "3.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "license": "MIT", + "license_file": null, + "description": "Allows for the creation of serialised Rust tests", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "document-features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.6.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fslock", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "executor" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serial_test_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~3.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use_std" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serial_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "async": [ + "dep:futures", + "serial_test_derive/async" + ], + "default": [ + "logging", + "async" + ], + "docsrs": [ + "dep:document-features" + ], + "file_locks": [ + "dep:fslock" + ], + "logging": [ + "dep:log" + ], + "test_logging": [ + "logging", + "dep:env_logger", + "serial_test_derive/test_logging" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "docsrs", + "test_logging" + ], + "skip_optional_dependencies": true + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Tom Parker-Shemilt " + ], + "categories": [ + "development-tools::testing" + ], + "keywords": [ + "sequential", + "testing", + "parallel" + ], + "readme": "README.md", + "repository": "https://github.com/palfrey/serial_test/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serial_test_derive", + "version": "3.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", + "license": "MIT", + "license_file": null, + "description": "Helper crate for serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "full", + "printing", + "parsing", + "clone-impls" + ], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "prettyplease", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "serial_test_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test_derive-3.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "async": [], + "default": [], + "test_logging": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test_derive-3.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Tom Parker-Shemilt " + ], + "categories": [ + "development-tools::testing" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/palfrey/serial_test/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "set-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "set_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/src/set_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "set-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "set-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "set-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "sha2", + "version": "0.10.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cpufeatures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", + "registry": null + }, + { + "name": "sha2-asm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sha2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/benches/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "asm": [ + "sha2-asm" + ], + "asm-aarch64": [ + "asm" + ], + "compress": [], + "default": [ + "std" + ], + "force-soft": [], + "force-soft-compact": [], + "loongarch64_asm": [], + "oid": [ + "digest/oid" + ], + "sha2-asm": [ + "dep:sha2-asm" + ], + "std": [ + "digest/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "sha2", + "hash", + "digest" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/hashes", + "homepage": null, + "documentation": "https://docs.rs/sha2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "sha3", + "version": "0.10.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Pure Rust implementation of SHA-3, a family of Keccak-based hash functions\nincluding the SHAKE family of eXtendable-Output Functions (XOFs), as well as\nthe accelerated variant TurboSHAKE\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "keccak", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sha3", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "aliases", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/aliases.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cshake", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/cshake.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "turboshake", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/turboshake.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/benches/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "asm": [ + "keccak/asm" + ], + "default": [ + "std" + ], + "oid": [ + "digest/oid" + ], + "reset": [], + "std": [ + "digest/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "sha3", + "keccak", + "hash", + "digest" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/hashes", + "homepage": null, + "documentation": "https://docs.rs/sha3", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "shared-buffer", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An abstraction over buffers backed by memory-mapped files or bytes in memory", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memmap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "shared_buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shared-buffer-0.1.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shared-buffer-0.1.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/wasmerio/shared-buffer.git", + "homepage": "https://github.com/wasmerio/shared-buffer.git", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "shlex", + "version": "1.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Split a string into shell words, like Python's shlex.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "shlex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "comex ", + "Fenhl ", + "Adrian Taylor ", + "Alex Touchet ", + "Daniel Parks ", + "Garrett Berg " + ], + "categories": [ + "command-line-interface", + "parser-implementations" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/comex/rust-shlex", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.46.0" + }, + { + "name": "signal-hook-registry", + "version": "1.4.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "Backend crate for signal-hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "signal-hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "signal_hook_registry", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unregister_signal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/tests/unregister_signal.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Michal 'vorner' Vaner ", + "Masaki Hara " + ], + "categories": [], + "keywords": [ + "signal", + "unix", + "daemon" + ], + "readme": "README.md", + "repository": "https://github.com/vorner/signal-hook", + "homepage": null, + "documentation": "https://docs.rs/signal-hook-registry", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "signature", + "version": "2.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "signature_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": "derive", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "signature", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/tests/derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "derive": [ + "dep:derive" + ], + "digest": [ + "dep:digest" + ], + "rand_core": [ + "dep:rand_core" + ], + "std": [ + "alloc", + "rand_core?/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "ecdsa", + "ed25519", + "signature", + "signing" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits/tree/master/signature", + "homepage": null, + "documentation": "https://docs.rs/signature", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "simd-adler32", + "version": "0.3.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", + "license": "MIT", + "license_file": null, + "description": "A SIMD-accelerated Adler-32 hash algorithm implementation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "adler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "adler32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "simd_adler32", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "alts", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/bench/alts.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "variants", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/bench/variants.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "const-generics": [], + "default": [ + "std", + "const-generics" + ], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Marvin Countryman " + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "simd", + "avx2", + "ssse3", + "adler", + "adler32" + ], + "readme": "README.md", + "repository": "https://github.com/mcountryman/simd-adler32", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "simdutf8", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "SIMD-accelerated UTF-8 validation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "simdutf8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "streaming", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/examples/streaming.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "aarch64_neon": [], + "aarch64_neon_prefetch": [], + "default": [ + "std" + ], + "hints": [], + "public_imp": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-unknown-linux-gnu", + "rustdoc-args": [ + "--cfg", + "docsrs" + ], + "targets": [ + "aarch64-unknown-linux-gnu", + "wasm32-unknown-unknown", + "wasm32-wasi" + ] + } + } + }, + "publish": null, + "authors": [ + "Hans Kratz " + ], + "categories": [ + "encoding", + "algorithms", + "no-std" + ], + "keywords": [ + "utf-8", + "unicode", + "string", + "validation", + "simd" + ], + "readme": "README.md", + "repository": "https://github.com/rusticstuff/simdutf8", + "homepage": "https://github.com/rusticstuff/simdutf8", + "documentation": "https://docs.rs/simdutf8/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "simple-error", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A simple error type backed by a string\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "simple_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simple-error-0.3.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simple-error-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "error", + "simple-error" + ], + "readme": "README.md", + "repository": "https://github.com/WiSaGaN/simple-error.git", + "homepage": null, + "documentation": "https://docs.rs/simple-error/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.58.0" + }, + { + "name": "single-value-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "single_value_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/src/single_value_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "single-value-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "single-value-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "single-value-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "slab", + "version": "0.4.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "license": "MIT", + "license_file": null, + "description": "Pre-allocated storage for a uniform data type", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.95", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "slab", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "slab", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/tests/slab.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Carl Lerche " + ], + "categories": [ + "memory-management", + "data-structures", + "no-std" + ], + "keywords": [ + "slab", + "allocator", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/slab", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "smallvec", + "version": "1.15.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "'Small vector' optimization: store up to a small number of items on the stack", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "malloc_size_of", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unty", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": "bincode1", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test_parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "smallvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debugger_visualizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/tests/debugger_visualizer.rs", + "edition": "2018", + "required-features": [ + "debugger_visualizer" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/tests/macro.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "bincode": [ + "dep:bincode" + ], + "const_generics": [], + "const_new": [ + "const_generics" + ], + "debugger_visualizer": [], + "drain_filter": [], + "drain_keep_rest": [ + "drain_filter" + ], + "impl_bincode": [ + "bincode", + "unty" + ], + "malloc_size_of": [ + "dep:malloc_size_of" + ], + "may_dangle": [], + "serde": [ + "dep:serde" + ], + "specialization": [], + "union": [], + "unty": [ + "dep:unty" + ], + "write": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The Servo Project Developers" + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "small", + "vec", + "vector", + "stack", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/servo/rust-smallvec", + "homepage": null, + "documentation": "https://docs.rs/smallvec/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "socket2", + "version": "0.5.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Utilities for handling networking sockets with a maximal amount of configuration\npossible intended.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.171", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Networking_WinSock", + "Win32_System_IO", + "Win32_System_Threading", + "Win32_System_WindowsProgramming" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "socket2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "all": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ], + "targets": [ + "aarch64-apple-ios", + "aarch64-linux-android", + "x86_64-apple-darwin", + "x86_64-unknown-fuchsia", + "x86_64-pc-windows-msvc", + "x86_64-pc-solaris", + "x86_64-unknown-freebsd", + "x86_64-unknown-illumos", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-musl", + "x86_64-unknown-netbsd", + "x86_64-unknown-redox", + "armv7-linux-androideabi", + "i686-linux-android" + ] + } + }, + "playground": { + "features": [ + "all" + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton ", + "Thomas de Zeeuw " + ], + "categories": [ + "api-bindings", + "network-programming" + ], + "keywords": [ + "io", + "socket", + "network" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/socket2", + "homepage": "https://github.com/rust-lang/socket2", + "documentation": "https://docs.rs/socket2", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "spki", + "version": "0.7.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "X.509 Subject Public Key Info (RFC5280) describing public keys as well as their\nassociated AlgorithmIdentifiers (i.e. OIDs)\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "base64ct", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "der", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "oid" + ], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "spki", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spki", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/tests/spki.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/tests/traits.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "base64ct?/alloc", + "der/alloc" + ], + "arbitrary": [ + "std", + "dep:arbitrary", + "der/arbitrary" + ], + "base64": [ + "dep:base64ct" + ], + "fingerprint": [ + "sha2" + ], + "pem": [ + "alloc", + "der/pem" + ], + "sha2": [ + "dep:sha2" + ], + "std": [ + "der/std", + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "data-structures", + "encoding", + "no-std" + ], + "keywords": [ + "crypto", + "x509" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats/tree/master/spki", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "stable_deref_trait", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "stable_deref_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Robert Grosse " + ], + "categories": [ + "memory-management", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/storyyeller/stable_deref_trait", + "homepage": null, + "documentation": "https://docs.rs/stable_deref_trait/1.2.0/stable_deref_trait", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "static_assertions", + "version": "1.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Compile-time assertions to ensure that invariants are met.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "static_assertions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "nightly": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nikolai Vazquez" + ], + "categories": [ + "no-std", + "rust-patterns", + "development-tools::testing" + ], + "keywords": [ + "assert", + "static", + "testing" + ], + "readme": "README.md", + "repository": "https://github.com/nvzqz/static-assertions-rs", + "homepage": "https://github.com/nvzqz/static-assertions-rs", + "documentation": "https://docs.rs/static_assertions/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "str-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "str_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/src/str_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "managed-buffer-builder-cached": [ + "multiversx-sc/managed-buffer-builder-cached" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "str-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "str-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "str-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "strsim", + "version": "0.11.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "license": "MIT", + "license_file": null, + "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "strsim", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/tests/lib.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/benches/benches.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Danny Guo ", + "maxbachmann " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "string", + "similarity", + "Hamming", + "Levenshtein", + "Jaro" + ], + "readme": "README.md", + "repository": "https://github.com/rapidfuzz/strsim-rs", + "homepage": "https://github.com/rapidfuzz/strsim-rs", + "documentation": "https://docs.rs/strsim/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "subtle", + "version": "2.6.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "subtle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "const-generics": [], + "core_hint_black_box": [], + "default": [ + "std", + "i128" + ], + "i128": [], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Isis Lovecruft ", + "Henry de Valence " + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "cryptography", + "crypto", + "constant-time", + "utilities" + ], + "readme": "README.md", + "repository": "https://github.com/dalek-cryptography/subtle", + "homepage": "https://dalek.rs/", + "documentation": "https://docs.rs/subtle", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "syn", + "version": "1.0.109", + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser for Rust source code", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.46", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "blocking" + ], + "target": null, + "registry": null + }, + { + "name": "syn-test-suite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "termcolor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "syn", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/regression.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_asyncness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_asyncness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_attribute", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_attribute.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_derive_input", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_derive_input.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_expr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_generics.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_grouping", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_grouping.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ident", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_ident.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_item", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_item.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_iterators", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_iterators.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_lit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_meta.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_parse_buffer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_parse_stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_pat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_pat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_path.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_precedence", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_precedence.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_receiver", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_receiver.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_round_trip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_round_trip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_shebang", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_shebang.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_should_parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_should_parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_size.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_stmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_stmt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_token_trees", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_token_trees.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ty", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_ty.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_visibility", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_visibility.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zzz_stable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/zzz_stable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/benches/file.rs", + "edition": "2018", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "rust", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/benches/rust.rs", + "edition": "2018", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "clone-impls": [], + "default": [ + "derive", + "parsing", + "printing", + "clone-impls", + "proc-macro" + ], + "derive": [], + "extra-traits": [], + "fold": [], + "full": [], + "parsing": [], + "printing": [ + "quote" + ], + "proc-macro": [ + "proc-macro2/proc-macro", + "quote/proc-macro" + ], + "quote": [ + "dep:quote" + ], + "test": [ + "syn-test-suite/all-features" + ], + "visit": [], + "visit-mut": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "full", + "visit", + "visit-mut", + "fold", + "extra-traits" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "parser-implementations" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/syn", + "homepage": null, + "documentation": "https://docs.rs/syn", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "syn", + "version": "2.0.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser for Rust source code", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.91", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn-test-suite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "termcolor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "blocking" + ], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "syn", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/regression.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_asyncness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_asyncness.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_attribute", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_attribute.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_derive_input", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_derive_input.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_expr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_grouping", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_grouping.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ident", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_ident.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_item", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_item.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_iterators", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_iterators.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_lit.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_meta.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_buffer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_quote", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_quote.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_pat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_pat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_precedence", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_precedence.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_receiver", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_receiver.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_round_trip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_round_trip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_shebang", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_shebang.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_size.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_stmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_stmt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_token_trees", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_token_trees.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ty", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_ty.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_unparenthesize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_unparenthesize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_visibility", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_visibility.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zzz_stable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/zzz_stable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/benches/file.rs", + "edition": "2021", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "rust", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/benches/rust.rs", + "edition": "2021", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "clone-impls": [], + "default": [ + "derive", + "parsing", + "printing", + "clone-impls", + "proc-macro" + ], + "derive": [], + "extra-traits": [], + "fold": [], + "full": [], + "parsing": [], + "printing": [ + "dep:quote" + ], + "proc-macro": [ + "proc-macro2/proc-macro", + "quote?/proc-macro" + ], + "test": [ + "syn-test-suite/all-features" + ], + "visit": [], + "visit-mut": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--generate-link-to-definition", + "--extend-css=src/gen/token.css", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "full", + "visit", + "visit-mut", + "fold", + "extra-traits" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "parser-implementations" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/syn", + "homepage": null, + "documentation": "https://docs.rs/syn", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "sync_wrapper", + "version": "1.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "license": "Apache-2.0", + "license_file": null, + "description": "A tool for enlisting the compiler's help in proving the absence of concurrency", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sync_wrapper", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "futures": [ + "futures-core" + ], + "futures-core": [ + "dep:futures-core" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Actyx AG " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "concurrency" + ], + "readme": "README.md", + "repository": "https://github.com/Actyx/sync_wrapper", + "homepage": "https://docs.rs/sync_wrapper", + "documentation": "https://docs.rs/sync_wrapper", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "synstructure", + "version": "0.13.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "license": "MIT", + "license_file": null, + "description": "Helper methods and macros for custom derives", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive", + "parsing", + "printing", + "clone-impls", + "visit", + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure_test_traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "synstructure", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "proc-macro" + ], + "proc-macro": [ + "proc-macro2/proc-macro", + "syn/proc-macro", + "quote/proc-macro" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nika Layzell " + ], + "categories": [], + "keywords": [ + "syn", + "macros", + "derive", + "expand_substructure", + "enum" + ], + "readme": "README.md", + "repository": "https://github.com/mystor/synstructure", + "homepage": null, + "documentation": "https://docs.rs/synstructure", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "system-configuration", + "version": "0.6.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#system-configuration@0.6.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bindings to SystemConfiguration framework for macOS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "core-foundation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "system-configuration-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "system_configuration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.6.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "set_dns", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.6.1/examples/set_dns.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "watch_dns", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.6.1/examples/watch_dns.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.6.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Mullvad VPN" + ], + "categories": [ + "api-bindings", + "os::macos-apis" + ], + "keywords": [ + "macos", + "system", + "configuration", + "bindings" + ], + "readme": "README.md", + "repository": "https://github.com/mullvad/system-configuration-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "system-configuration-sys", + "version": "0.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#system-configuration-sys@0.6.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Low level bindings to SystemConfiguration framework for macOS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "core-foundation-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.149", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "system_configuration_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Mullvad VPN" + ], + "categories": [ + "external-ffi-bindings", + "os::macos-apis" + ], + "keywords": [ + "macos", + "system", + "configuration", + "bindings" + ], + "readme": null, + "repository": "https://github.com/mullvad/system-configuration-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "system-sc-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "system_sc_interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/src/system_sc_interact.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "system-sc-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/src/system_sc_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chain_simulator_token_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/tests/chain_simulator_token_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tar", + "version": "0.4.44", + "id": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust implementation of a TAR file reader and writer. This library does not\ncurrently handle compression, but it is abstract over all I/O readers and\nwriters. Additionally, great lengths are taken to ensure that the entire\ncontents are never required to be entirely resident in memory all at once.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "filetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "xattr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tar", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "extract_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/extract_file.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "list", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/list.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "raw_list", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/raw_list.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/write.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/tests/all.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "entry", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/tests/entry.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "xattr" + ], + "xattr": [ + "dep:xattr" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "tar", + "tarfile", + "encoding" + ], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/tar-rs", + "homepage": "https://github.com/alexcrichton/tar-rs", + "documentation": "https://docs.rs/tar", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "target-lexicon", + "version": "0.12.16", + "id": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "license": "Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "Targeting utilities for compilers and related tools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "target_lexicon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "host", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/examples/host.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "misc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/examples/misc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arch_zkasm": [], + "default": [], + "serde": [ + "dep:serde" + ], + "serde_support": [ + "serde", + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dan Gohman " + ], + "categories": [ + "no-std" + ], + "keywords": [ + "target", + "host", + "triple", + "compiler", + "jit" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/target-lexicon", + "homepage": null, + "documentation": "https://docs.rs/target-lexicon/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tempfile", + "version": "3.19.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library for managing temporary files and directories.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "fastrand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fs" + ], + "target": "cfg(any(unix, target_os = \"wasi\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(any(unix, windows, target_os = \"wasi\"))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Storage_FileSystem", + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tempfile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "env", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/env.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "namedtempfile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/namedtempfile.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spooled", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/spooled.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tempdir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/tempdir.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tempfile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/tempfile.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "getrandom" + ], + "getrandom": [ + "dep:getrandom" + ], + "nightly": [], + "unstable-windows-keep-open-tempfile": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Allen ", + "The Rust Project Developers", + "Ashley Mannix ", + "Jason White " + ], + "categories": [], + "keywords": [ + "tempfile", + "tmpfile", + "filesystem" + ], + "readme": "README.md", + "repository": "https://github.com/Stebalien/tempfile", + "homepage": "https://stebalien.com/projects/tempfile-rs/", + "documentation": "https://docs.rs/tempfile", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "termcolor", + "version": "1.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "A simple cross platform library for writing colored text to a terminal.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "termcolor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "windows", + "win", + "color", + "ansi", + "console" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/termcolor", + "homepage": "https://github.com/BurntSushi/termcolor", + "documentation": "https://docs.rs/termcolor", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "thiserror", + "version": "1.0.69", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "derive(Error)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "thiserror-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.73", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "thiserror", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_backtrace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_deprecated", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_deprecated.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_display", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_display.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_expr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_from.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lints", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_lints.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_option", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_option.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_source", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_source.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_transparent", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_transparent.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "error", + "error-handling", + "derive" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": "https://docs.rs/thiserror", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thiserror", + "version": "2.0.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "derive(Error)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "thiserror-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.73", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "thiserror", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_backtrace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_display", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_display.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_expr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_from.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lints", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_lints.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_option", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_option.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_source", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_source.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_transparent", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_transparent.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "error", + "error-handling", + "derive" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": "https://docs.rs/thiserror", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thiserror-impl", + "version": "1.0.69", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Implementation detail of the `thiserror` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.87", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "thiserror_impl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thiserror-impl", + "version": "2.0.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Implementation detail of the `thiserror` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.87", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "thiserror_impl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.12/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "tinystr", + "version": "0.7.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "license": "Unicode-3.0", + "license_file": null, + "description": "A small ASCII-only bounded length string representation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinystr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/tests/serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "construct", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/construct.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "overview", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/overview.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/read.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/serde.rs", + "edition": "2021", + "required-features": [ + "bench", + "serde" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "bench": [], + "databake": [ + "dep:databake" + ], + "default": [ + "alloc" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "zerovec": [ + "dep:zerovec" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "string", + "str", + "small", + "tiny", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "tinyvec", + "version": "1.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "license": "Zlib OR Apache-2.0 OR MIT", + "license_file": null, + "description": "`tinyvec` provides 100% safe vec-like data structures.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinyvec_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test_parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinyvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arrayvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/arrayvec.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debugger_visualizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/debugger_visualizer.rs", + "edition": "2018", + "required-features": [ + "debugger_visualizer" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tinyvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/tinyvec.rs", + "edition": "2018", + "required-features": [ + "alloc", + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/benches/macros.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "smallvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/benches/smallvec.rs", + "edition": "2018", + "required-features": [ + "alloc", + "real_blackbox" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "tinyvec_macros" + ], + "arbitrary": [ + "dep:arbitrary" + ], + "borsh": [ + "dep:borsh" + ], + "debugger_visualizer": [], + "default": [], + "experimental_write_impl": [], + "generic-array": [ + "dep:generic-array" + ], + "grab_spare_slice": [], + "latest_stable_rust": [ + "rustc_1_61" + ], + "nightly_slice_partition_dedup": [], + "real_blackbox": [ + "criterion/real_blackbox" + ], + "rustc_1_40": [], + "rustc_1_55": [ + "rustc_1_40" + ], + "rustc_1_57": [ + "rustc_1_55" + ], + "rustc_1_61": [ + "rustc_1_57" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ], + "tinyvec_macros": [ + "dep:tinyvec_macros" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "alloc", + "std", + "grab_spare_slice", + "latest_stable_rust", + "serde", + "borsh" + ], + "rustdoc-args": [ + "--cfg", + "docs_rs" + ] + } + }, + "playground": { + "features": [ + "alloc", + "std", + "grab_spare_slice", + "latest_stable_rust", + "serde", + "borsh" + ] + } + }, + "publish": null, + "authors": [ + "Lokathor " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "vec", + "no_std", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/Lokathor/tinyvec", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tinyvec_macros", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", + "license": "MIT OR Apache-2.0 OR Zlib", + "license_file": null, + "description": "Some macros for tiny containers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinyvec_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Soveu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/Soveu/tinyvec_macros", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "token-release", + "version": "0.0.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "token_release", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/src/token_release.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_release_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/tests/token_release_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_release_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/tests/token_release_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "token-release-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "token-release", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "token-release-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tokio", + "version": "1.44.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "license": "MIT", + "license_file": null, + "description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O\nbacked applications.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~2.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "async-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "async-await" + ], + "target": null, + "registry": null + }, + { + "name": "futures-concurrency", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.6.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mockall", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_family = \"wasm\", not(target_os = \"wasi\")))", + "registry": null + }, + { + "name": "tracing-mock", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.1.0-beta.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(tokio_unstable, target_has_atomic = \"64\"))", + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures", + "checkpoint" + ], + "target": "cfg(loom)", + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))", + "registry": null + }, + { + "name": "socket2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "all" + ], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "socket2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "mio-aio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "tokio" + ], + "target": "cfg(target_os = \"freebsd\")", + "registry": null + }, + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.58", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(tokio_taskdump)", + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.29", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": "cfg(tokio_unstable)", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "signal-hook-registry", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "nix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.29.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "aio", + "fs", + "socket" + ], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Security_Authorization" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "_require_full", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/_require_full.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async_send_sync", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/async_send_sync.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "buffered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/buffered.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "coop_budget", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/coop_budget.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dump", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/dump.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "duplex_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/duplex_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_canonicalize_dir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_canonicalize_dir.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_copy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_copy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_dir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_dir.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_file.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_link", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_link.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_open_options", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_open_options.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_open_options_windows", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_open_options_windows.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_remove_dir_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_remove_dir_all.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_remove_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_remove_file.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_rename", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_rename.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_symlink_dir_windows", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_symlink_dir_windows.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_symlink_file_windows", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_symlink_file_windows.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_try_exists", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_try_exists.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_async_fd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_async_fd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_async_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_async_read.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_buf_reader", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_buf_reader.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_buf_writer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_buf_writer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_chain", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_chain.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_copy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_copy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_copy_bidirectional", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_copy_bidirectional.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_driver", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_driver.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_driver_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_driver_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_fill_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_fill_buf.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_join.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_lines", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_lines.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_mem_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_mem_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_poll_aio", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_poll_aio.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_buf.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_exact", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_exact.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_line", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_line.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_to_end", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_to_end.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_to_string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_to_string.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_until", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_until.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_repeat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_repeat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_sink", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_sink.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_split.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_take", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_take.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_util_empty", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_util_empty.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_all.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write_all_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_all_buf.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_buf.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write_int", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_int.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "join_handle_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/join_handle_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_join.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_pin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_pin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_rename_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_rename_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_select", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_select.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_try_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_try_join.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_bind_resource", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_bind_resource.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_lookup_host", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_lookup_host.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_named_pipe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_named_pipe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_unix_pipe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_unix_pipe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/no_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_arg0", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_arg0.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_change_of_runtime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_change_of_runtime.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_issue_2174", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_issue_2174.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_issue_42", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_issue_42.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_kill_after_wait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_kill_after_wait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_kill_on_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_kill_on_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_raw_handle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_raw_handle.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_smoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_smoke.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_common", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_common.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_handle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_handle.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_handle_block_on", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_handle_block_on.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_local", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_local.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_metrics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_metrics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_poll_callbacks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_poll_callbacks.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_threaded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_threaded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_threaded_alt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_threaded_alt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_time_start_paused", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_time_start_paused.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_unstable_metrics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_unstable_metrics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_ctrl_c", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_ctrl_c.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_drop_recv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_recv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_drop_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_drop_signal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_signal.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_info", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_info.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_multi_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_multi_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_no_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_no_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_notify_both", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_notify_both.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_realtime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_realtime.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_twice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_twice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_usr1", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_usr1.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_barrier", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_barrier.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_broadcast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_broadcast.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_broadcast_weak", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_broadcast_weak.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_errors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mpsc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mpsc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mpsc_weak", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mpsc_weak.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mutex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mutex.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mutex_owned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mutex_owned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_notify", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_notify.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_once_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_once_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_oneshot", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_oneshot.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_rwlock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_rwlock.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_semaphore", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_semaphore.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_semaphore_owned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_semaphore_owned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_watch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_watch.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_abort", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_abort.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_blocking", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_blocking.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_builder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_builder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_hooks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_hooks.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_id", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_id.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_join_set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_join_set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_local", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_local.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_local_set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_local_set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_trace_self", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_trace_self.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_yield_now", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_yield_now.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_accept", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_accept.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_connect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_connect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_echo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_echo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_into_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_into_split.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_into_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_into_std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_peek", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_peek.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_shutdown", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_shutdown.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_socket", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_socket.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_split.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_clock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/test_clock.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_interval", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_interval.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_pause", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_pause.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_sleep", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_sleep.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_timeout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_timeout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracing_sync", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_sync.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracing_task", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_task.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracing_time", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_time.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "udp", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/udp.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_cred", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_cred.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_datagram", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_datagram.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_socket", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_socket.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_split.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unwindsafe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/unwindsafe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "bytes": [ + "dep:bytes" + ], + "default": [], + "fs": [], + "full": [ + "fs", + "io-util", + "io-std", + "macros", + "net", + "parking_lot", + "process", + "rt", + "rt-multi-thread", + "signal", + "sync", + "time" + ], + "io-std": [], + "io-util": [ + "bytes" + ], + "libc": [ + "dep:libc" + ], + "macros": [ + "tokio-macros" + ], + "mio": [ + "dep:mio" + ], + "net": [ + "libc", + "mio/os-poll", + "mio/os-ext", + "mio/net", + "socket2", + "windows-sys/Win32_Foundation", + "windows-sys/Win32_Security", + "windows-sys/Win32_Storage_FileSystem", + "windows-sys/Win32_System_Pipes", + "windows-sys/Win32_System_SystemServices" + ], + "parking_lot": [ + "dep:parking_lot" + ], + "process": [ + "bytes", + "libc", + "mio/os-poll", + "mio/os-ext", + "mio/net", + "signal-hook-registry", + "windows-sys/Win32_Foundation", + "windows-sys/Win32_System_Threading", + "windows-sys/Win32_System_WindowsProgramming" + ], + "rt": [], + "rt-multi-thread": [ + "rt" + ], + "signal": [ + "libc", + "mio/os-poll", + "mio/net", + "mio/os-ext", + "signal-hook-registry", + "windows-sys/Win32_Foundation", + "windows-sys/Win32_System_Console" + ], + "signal-hook-registry": [ + "dep:signal-hook-registry" + ], + "socket2": [ + "dep:socket2" + ], + "sync": [], + "test-util": [ + "rt", + "sync", + "time" + ], + "time": [], + "tokio-macros": [ + "dep:tokio-macros" + ], + "tracing": [ + "dep:tracing" + ], + "windows-sys": [ + "dep:windows-sys" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "bytes::buf::buf_impl::Buf", + "bytes::buf::buf_mut::BufMut", + "tokio_macros::*" + ] + }, + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "tokio_unstable", + "--cfg", + "tokio_taskdump" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tokio_unstable", + "--cfg", + "tokio_taskdump" + ] + } + }, + "playground": { + "features": [ + "full", + "test-util" + ] + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [ + "io", + "async", + "non-blocking", + "futures" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tokio", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "tokio-macros", + "version": "2.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", + "license": "MIT", + "license_file": null, + "description": "Tokio's proc macros.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "tokio_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.5.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tokio", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "tokio-native-tls", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "license": "MIT", + "license_file": null, + "description": "An implementation of TLS/SSL streams for Tokio using native-tls giving an implementation of TLS\nfor nonblocking I/O streams.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "async-await" + ], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "rt", + "rt-multi-thread", + "io-util", + "net" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "openssl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(not(target_os = \"macos\"), not(windows), not(target_os = \"ios\")))", + "registry": null + }, + { + "name": "security-framework", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", + "registry": null + }, + { + "name": "schannel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "lmcons", + "basetsd", + "minwinbase", + "minwindef", + "ntdef", + "sysinfoapi", + "timezoneapi", + "wincrypt", + "winerror" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio_native_tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "download-rust-lang", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/examples/download-rust-lang.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "echo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/examples/echo.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bad", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/bad.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "google", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/google.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/smoke.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "vendored": [ + "native-tls/vendored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tls", + "homepage": "https://tokio.rs", + "documentation": "https://docs.rs/tokio-native-tls", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tokio-rustls", + "version": "0.26.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Asynchronous TLS/SSL streams for Tokio using Rustls.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "argh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "pem" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio_rustls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "badssl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/badssl.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "certs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/certs/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "early-data", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/early-data.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/utils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "aws-lc-rs": [ + "aws_lc_rs" + ], + "aws_lc_rs": [ + "rustls/aws_lc_rs" + ], + "default": [ + "logging", + "tls12", + "aws_lc_rs" + ], + "early-data": [], + "fips": [ + "rustls/fips" + ], + "logging": [ + "rustls/logging" + ], + "ring": [ + "rustls/ring" + ], + "tls12": [ + "rustls/tls12" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "asynchronous", + "cryptography", + "network-programming" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/tokio-rustls", + "homepage": "https://github.com/rustls/tokio-rustls", + "documentation": "https://docs.rs/tokio-rustls", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "tokio-stream", + "version": "0.1.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", + "license": "MIT", + "license_file": null, + "description": "Utilities to work with `Stream` and `tokio`.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.15.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "async-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "test-util" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async_send_sync", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/async_send_sync.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chunks_timeout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/chunks_timeout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_chain", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_chain.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_close", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_close.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_collect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_collect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_empty", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_empty.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_fuse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_fuse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_iter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_merge", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_merge.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_once", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_once.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_pending", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_pending.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_stream_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_stream_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_timeout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_timeout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_throttle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/time_throttle.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "watch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/watch.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "time" + ], + "fs": [ + "tokio/fs" + ], + "full": [ + "time", + "net", + "io-util", + "fs", + "sync", + "signal" + ], + "io-util": [ + "tokio/io-util" + ], + "net": [ + "tokio/net" + ], + "signal": [ + "tokio/signal" + ], + "sync": [ + "tokio/sync", + "tokio-util" + ], + "time": [ + "tokio/time" + ], + "tokio-util": [ + "dep:tokio-util" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "docsrs" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tokio", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "tokio-util", + "version": "0.7.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", + "license": "MIT", + "license_file": null, + "description": "Additional utilities for working with Tokio.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.28.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.29", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "async-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "raw-entry" + ], + "target": "cfg(tokio_unstable)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "_require_full", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/_require_full.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "abort_on_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/abort_on_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "codecs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/codecs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/compat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "context", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/context.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "framed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "framed_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_read.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "framed_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "framed_write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_write.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_inspect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_inspect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_reader_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_reader_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_sink_writer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_sink_writer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_stream_reader", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_stream_reader.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_sync_bridge", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_sync_bridge.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "length_delimited", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/length_delimited.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mpsc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/mpsc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "poll_semaphore", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/poll_semaphore.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reusable_box", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/reusable_box.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spawn_pinned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/spawn_pinned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_cancellation_token", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/sync_cancellation_token.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_join_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/task_join_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_tracker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/task_tracker.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_delay_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/time_delay_queue.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "udp", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/udp.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__docs_rs": [ + "futures-util" + ], + "codec": [], + "compat": [ + "futures-io" + ], + "default": [], + "full": [ + "codec", + "compat", + "io-util", + "time", + "net", + "rt" + ], + "futures-io": [ + "dep:futures-io" + ], + "futures-util": [ + "dep:futures-util" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "io": [], + "io-util": [ + "io", + "tokio/rt", + "tokio/io-util" + ], + "net": [ + "tokio/net" + ], + "rt": [ + "tokio/rt", + "tokio/sync", + "futures-util", + "hashbrown" + ], + "slab": [ + "dep:slab" + ], + "time": [ + "tokio/time", + "slab" + ], + "tracing": [ + "dep:tracing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tokio_unstable" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tokio_unstable" + ] + } + }, + "playground": { + "features": [ + "full" + ] + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tokio", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "toml", + "version": "0.7.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_edit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.19.15", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.160", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.96", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/decode.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum_external", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/enum_external.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "toml2json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/toml2json.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/decoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/decoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/encoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/encoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/testsuite/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "parse", + "display" + ], + "display": [ + "dep:toml_edit" + ], + "indexmap": [ + "dep:indexmap" + ], + "parse": [ + "dep:toml_edit" + ], + "preserve_order": [ + "indexmap" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "toml", + "version": "0.8.22", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_edit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.199", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.116", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "snapshot" + ], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/decode.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum_external", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/enum_external.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "toml2json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/toml2json.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/compliance/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/decoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/decoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/encoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/encoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/serde/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/testsuite/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "parse", + "display" + ], + "display": [ + "dep:toml_edit", + "toml_edit?/display" + ], + "indexmap": [ + "dep:indexmap" + ], + "parse": [ + "dep:toml_edit", + "toml_edit?/parse" + ], + "preserve_order": [ + "indexmap" + ], + "unbounded": [ + "toml_edit?/unbounded" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66" + }, + { + "name": "toml_datetime", + "version": "0.6.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A TOML-compatible datetime type", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_datetime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66" + }, + { + "name": "toml_edit", + "version": "0.19.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Yet another format-preserving TOML parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "kstring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "max_inline" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winnow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libtest-mimic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.96", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "harness" + ], + "target": null, + "registry": null + }, + { + "name": "toml-test-data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_edit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "visit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/examples/visit.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/decoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/decoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/encoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/encoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "invalid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/invalid.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/testsuite/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "perf": [ + "dep:kstring" + ], + "serde": [ + "dep:serde", + "toml_datetime/serde", + "dep:serde_spanned" + ], + "unbounded": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "tag-name": "v{{version}}", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Andronik Ordian ", + "Ed Page " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "toml_edit", + "version": "0.22.26", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Yet another format-preserving TOML parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "kstring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "max_inline" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml_write", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winnow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.199", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.116", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "snapshot" + ], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_edit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "visit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/examples/visit.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/compliance/main.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/decoder_compliance.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/encoder_compliance.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/serde/main.rs", + "edition": "2021", + "required-features": [ + "parse", + "display", + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/testsuite/main.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "parse", + "display" + ], + "display": [ + "dep:toml_write" + ], + "parse": [ + "dep:winnow" + ], + "perf": [ + "dep:kstring" + ], + "serde": [ + "dep:serde", + "toml_datetime/serde", + "dep:serde_spanned" + ], + "unbounded": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "tag-name": "v{{version}}", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Andronik Ordian ", + "Ed Page " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66" + }, + { + "name": "toml_write", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A low-level interface for writing out TOML\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.10", + "kind": "dev", + "rename": "toml_old", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "float", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/tests/float.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/tests/string.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "encoding" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66" + }, + { + "name": "tower", + "version": "0.5.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", + "license": "MIT", + "license_file": null, + "description": "Tower is a library of modular and reusable components for building robust\nclients and servers.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "hdrhistogram", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sync_wrapper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-layer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hdrhistogram", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "sync", + "test-util", + "rt-multi-thread" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "fmt", + "ansi" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tower", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tower-balance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/examples/tower-balance.rs", + "edition": "2018", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "balance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/balance/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/buffer/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "builder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/builder.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hedge", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/hedge/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "limit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/limit/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "load_shed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/load_shed/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ready_cache", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/ready_cache/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "retry", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/retry/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spawn_ready", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/spawn_ready/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "steer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/steer/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "support", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/support.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/util/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__common": [ + "futures-core", + "pin-project-lite" + ], + "balance": [ + "discover", + "load", + "ready-cache", + "make", + "slab", + "util" + ], + "buffer": [ + "__common", + "tokio/sync", + "tokio/rt", + "tokio-util", + "tracing" + ], + "discover": [ + "__common" + ], + "filter": [ + "__common", + "futures-util" + ], + "full": [ + "balance", + "buffer", + "discover", + "filter", + "hedge", + "limit", + "load", + "load-shed", + "make", + "ready-cache", + "reconnect", + "retry", + "spawn-ready", + "steer", + "timeout", + "util" + ], + "futures-core": [ + "dep:futures-core" + ], + "futures-util": [ + "dep:futures-util" + ], + "hdrhistogram": [ + "dep:hdrhistogram" + ], + "hedge": [ + "util", + "filter", + "futures-util", + "hdrhistogram", + "tokio/time", + "tracing" + ], + "indexmap": [ + "dep:indexmap" + ], + "limit": [ + "__common", + "tokio/time", + "tokio/sync", + "tokio-util", + "tracing" + ], + "load": [ + "__common", + "tokio/time", + "tracing" + ], + "load-shed": [ + "__common" + ], + "log": [ + "tracing/log" + ], + "make": [ + "futures-util", + "pin-project-lite", + "tokio/io-std" + ], + "pin-project-lite": [ + "dep:pin-project-lite" + ], + "ready-cache": [ + "futures-core", + "futures-util", + "indexmap", + "tokio/sync", + "tracing", + "pin-project-lite" + ], + "reconnect": [ + "make", + "tokio/io-std", + "tracing" + ], + "retry": [ + "__common", + "tokio/time", + "util" + ], + "slab": [ + "dep:slab" + ], + "spawn-ready": [ + "__common", + "futures-util", + "tokio/sync", + "tokio/rt", + "util", + "tracing" + ], + "steer": [], + "sync_wrapper": [ + "dep:sync_wrapper" + ], + "timeout": [ + "pin-project-lite", + "tokio/time" + ], + "tokio": [ + "dep:tokio" + ], + "tokio-stream": [ + "dep:tokio-stream" + ], + "tokio-util": [ + "dep:tokio-util" + ], + "tracing": [ + "dep:tracing" + ], + "util": [ + "__common", + "futures-util", + "pin-project-lite", + "sync_wrapper" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "full" + ] + } + }, + "publish": null, + "authors": [ + "Tower Maintainers " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [ + "io", + "async", + "non-blocking", + "futures", + "service" + ], + "readme": "README.md", + "repository": "https://github.com/tower-rs/tower", + "homepage": "https://github.com/tower-rs/tower", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "tower-layer", + "version": "0.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", + "license": "MIT", + "license_file": null, + "description": "Decorates a `Service` to allow easy composition between `Service`s.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tower_layer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Tower Maintainers " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tower-rs/tower", + "homepage": "https://github.com/tower-rs/tower", + "documentation": "https://docs.rs/tower-layer/0.3.3", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tower-service", + "version": "0.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "license": "MIT", + "license_file": null, + "description": "Trait representing an asynchronous, request / response based, client or server.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "time" + ], + "target": null, + "registry": null + }, + { + "name": "tower-layer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tower_service", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Tower Maintainers " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tower-rs/tower", + "homepage": "https://github.com/tower-rs/tower", + "documentation": "https://docs.rs/tower-service/0.3.3", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tracing", + "version": "0.1.41", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "license": "MIT", + "license_file": null, + "description": "Application-level tracing for Rust.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-attributes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.28", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.33", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.21", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.38", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enabled", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/enabled.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "event", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/event.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filter_caching_is_lexically_scoped", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filter_caching_is_lexically_scoped.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filters_are_not_reevaluated_for_the_same_span", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_are_not_reevaluated_for_the_same_span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filters_are_reevaluated_for_different_call_sites", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_are_reevaluated_for_different_call_sites.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filters_dont_leak", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_dont_leak.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_send", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/future_send.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "instrument", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/instrument.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro_imports", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macro_imports.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_incompatible_concat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macros_incompatible_concat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "max_level_hint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/max_level_hint.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "missed_register_callsite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/missed_register_callsite.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiple_max_level_hints", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/multiple_max_level_hints.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_subscriber", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/no_subscriber.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "register_callsite_deadlock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/register_callsite_deadlock.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scoped_clobbers_default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/scoped_clobbers_default.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "span", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "subscriber", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/subscriber.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "baseline", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/baseline.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "dispatch_get_clone", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/dispatch_get_clone.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "dispatch_get_ref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/dispatch_get_ref.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "empty_span", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/empty_span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "enter_span", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/enter_span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "event", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/event.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "shared", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/shared.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "span_fields", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "span_no_fields", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_no_fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "span_repeated", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_repeated.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "async-await": [], + "attributes": [ + "tracing-attributes" + ], + "default": [ + "std", + "attributes" + ], + "log": [ + "dep:log" + ], + "log-always": [ + "log" + ], + "max_level_debug": [], + "max_level_error": [], + "max_level_info": [], + "max_level_off": [], + "max_level_trace": [], + "max_level_warn": [], + "release_max_level_debug": [], + "release_max_level_error": [], + "release_max_level_info": [], + "release_max_level_off": [], + "release_max_level_trace": [], + "release_max_level_warn": [], + "std": [ + "tracing-core/std" + ], + "tracing-attributes": [ + "dep:tracing-attributes" + ], + "valuable": [ + "tracing-core/valuable" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "tracing_unstable" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tracing_unstable" + ] + } + } + }, + "publish": null, + "authors": [ + "Eliza Weisman ", + "Tokio Contributors " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous", + "no-std" + ], + "keywords": [ + "logging", + "tracing", + "metrics", + "async" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "tracing-attributes", + "version": "0.1.28", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", + "license": "MIT", + "license_file": null, + "description": "Procedural macro attributes for automatically instrumenting functions.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "full", + "parsing", + "printing", + "visit-mut", + "clone-impls", + "extra-traits", + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "async-trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.67", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.35", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "env-filter" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.64", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "tracing_attributes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async_fn", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/async_fn.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "destructuring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/destructuring.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "err", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/err.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fields", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "follows_from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/follows_from.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "instrument", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/instrument.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "levels", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/levels.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "names", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/names.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parents", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/parents.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ret", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/ret.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "targets", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/targets.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ui", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/ui.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "async-await": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Tokio Contributors ", + "Eliza Weisman ", + "David Barsky " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous" + ], + "keywords": [ + "logging", + "tracing", + "macro", + "instrument", + "log" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "tracing-core", + "version": "0.1.33", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", + "license": "MIT", + "license_file": null, + "description": "Core primitives for application-level tracing.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "valuable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(tracing_unstable)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dispatch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/dispatch.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "global_dispatch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/global_dispatch.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "local_dispatch_before_init", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/local_dispatch_before_init.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "missed_register_callsite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/missed_register_callsite.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std", + "valuable?/std" + ], + "once_cell": [ + "dep:once_cell" + ], + "std": [ + "once_cell" + ], + "valuable": [ + "dep:valuable" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "tracing_unstable" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tracing_unstable" + ] + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous" + ], + "keywords": [ + "logging", + "tracing", + "profiling" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "transfer-role-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "transfer_role_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "transfer_role_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/tests/transfer_role_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "transfer_role_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/tests/transfer_role_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "transfer-role-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "transfer-role-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "transfer-role-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "try-lock", + "version": "0.2.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", + "license": "MIT", + "license_file": null, + "description": "A lightweight atomic lock.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "try_lock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "concurrency", + "no-std" + ], + "keywords": [ + "lock", + "atomic" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/try-lock", + "homepage": "https://github.com/seanmonstar/try-lock", + "documentation": "https://docs.rs/try-lock", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "twox-hash", + "version": "1.6.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", + "license": "MIT", + "license_file": null, + "description": "A Rust implementation of the XXHash and XXH3 algorithms", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.1, <2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": "digest", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": "digest_0_10", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": "digest_0_9", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.3.10, <0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "twox_hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "hash_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/src/bin/hash_file.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "digest": [ + "dep:digest" + ], + "digest_0_10": [ + "dep:digest_0_10" + ], + "digest_0_9": [ + "dep:digest_0_9" + ], + "rand": [ + "dep:rand" + ], + "serde": [ + "dep:serde" + ], + "serialize": [ + "serde" + ], + "std": [ + "rand" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jake Goulding " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "hash", + "hasher", + "xxhash", + "xxh3" + ], + "readme": "README.md", + "repository": "https://github.com/shepmaster/twox-hash", + "homepage": null, + "documentation": "https://docs.rs/twox-hash/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "typenum", + "version": "1.18.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Typenum is a Rust library for type-level numbers evaluated at\n compile time. It currently supports bits, unsigned integers, and signed\n integers. It also provides a type-level array of type-level numbers, but its\n implementation is incomplete.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "scale-info", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "typenum", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "const-generics": [], + "force_unix_path_separator": [], + "i128": [], + "no_std": [], + "scale-info": [ + "dep:scale-info" + ], + "scale_info": [ + "scale-info/derive" + ], + "strict": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "i128", + "const-generics" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "i128", + "const-generics" + ] + } + }, + "publish": null, + "authors": [ + "Paho Lurie-Gregg ", + "Andre Bogus " + ], + "categories": [ + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/paholg/typenum", + "homepage": null, + "documentation": "https://docs.rs/typenum", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.37.0" + }, + { + "name": "unicode-ident", + "version": "1.0.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "license": "(MIT OR Apache-2.0) AND Unicode-3.0", + "license_file": null, + "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fst", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "roaring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ucd-trie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-xid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_ident", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compare", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/tests/compare.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "static_size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/tests/static_size.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "xid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/benches/xid.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "unicode", + "xid" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/unicode-ident", + "homepage": null, + "documentation": "https://docs.rs/unicode-ident", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "unicode-normalization", + "version": "0.1.22", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "This crate provides functions for normalization of\nUnicode strings, including Canonical and Compatible\nDecomposition and Recomposition, as described in\nUnicode Standard Annex #15.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tinyvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_normalization", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kwantam ", + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "text", + "unicode", + "normalization", + "decomposition", + "recomposition" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-normalization", + "homepage": "https://github.com/unicode-rs/unicode-normalization", + "documentation": "https://docs.rs/unicode-normalization/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unicode-segmentation", + "version": "1.12.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "This crate provides Grapheme Cluster, Word and Sentence boundaries\naccording to Unicode Standard Annex #29 rules.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_segmentation", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "chars", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/chars.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "word_bounds", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/word_bounds.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "words", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/words.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "no_std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kwantam ", + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "text", + "unicode", + "grapheme", + "word", + "boundary" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-segmentation", + "homepage": "https://github.com/unicode-rs/unicode-segmentation", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unicode-width", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-std", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "std", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_width", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/benches/benches.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "cjk": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "cjk" + ], + "no_std": [], + "rustc-dep-of-std": [ + "std", + "core", + "compiler_builtins" + ], + "std": [ + "dep:std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kwantam ", + "Manish Goregaokar " + ], + "categories": [ + "command-line-interface", + "internationalization", + "no-std::no-alloc", + "text-processing" + ], + "keywords": [ + "text", + "width", + "unicode" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-width", + "homepage": "https://github.com/unicode-rs/unicode-width", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unicode-xid", + "version": "0.2.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_xid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "exhaustive_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/tests/exhaustive_tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "xid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/benches/xid.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "default": [], + "no_std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "erick.tryzelaar ", + "kwantam ", + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "text", + "unicode", + "xid" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-xid", + "homepage": "https://github.com/unicode-rs/unicode-xid", + "documentation": "https://unicode-rs.github.io/unicode-xid", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.17" + }, + { + "name": "untrusted", + "version": "0.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "license": "ISC", + "license_file": null, + "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "untrusted", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Brian Smith " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/briansmith/untrusted", + "homepage": null, + "documentation": "https://briansmith.org/rustdoc/untrusted/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unwrap-infallible", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Unwrapping Result values with compile-time guarantee of infallibility", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unwrap_infallible", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "blanket_impl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/tests/blanket_impl.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "blanket_impl": [ + "never_type" + ], + "default": [], + "never_type": [], + "unstable": [ + "never_type", + "blanket_impl" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Mikhail Zabaluev " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "infallible", + "never-type", + "conversion", + "maintainability", + "refactoring" + ], + "readme": "README.md", + "repository": "https://github.com/mzabaluev/unwrap-infallible", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ureq", + "version": "2.12.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Simple, safe HTTP client", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "brotli-decompressor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cookie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.18", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cookie_store", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.21.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "preserve_order", + "serde_json" + ], + "target": null, + "registry": null + }, + { + "name": "encoding_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hootbin", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": "http-02", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.19", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "ring", + "logging", + "std", + "tls12" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-native-certs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.97", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "socks", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "<=0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "humantime" + ], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "ring" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pemfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ureq", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "count-bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/count-bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cureq", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/cureq/main.rs", + "edition": "2018", + "required-features": [ + "charset", + "cookies", + "socks-proxy", + "native-tls" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom-tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/custom-tls.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ipv6", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/ipv6.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "smoke-test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/smoke-test/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tls_config", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/tls_config.rs", + "edition": "2018", + "required-features": [ + "tls", + "native-tls" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "https-agent", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/tests/https-agent.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "brotli": [ + "dep:brotli-decompressor" + ], + "charset": [ + "dep:encoding_rs" + ], + "cookies": [ + "dep:cookie", + "dep:cookie_store" + ], + "default": [ + "tls", + "gzip" + ], + "gzip": [ + "dep:flate2" + ], + "http-crate": [ + "dep:http" + ], + "http-interop": [ + "dep:http-02" + ], + "json": [ + "dep:serde", + "dep:serde_json" + ], + "native-certs": [ + "dep:rustls-native-certs" + ], + "native-tls": [ + "dep:native-tls" + ], + "proxy-from-env": [], + "socks-proxy": [ + "dep:socks" + ], + "testdeps": [ + "dep:hootbin" + ], + "tls": [ + "dep:webpki-roots", + "dep:rustls", + "dep:rustls-pki-types" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "tls", + "native-tls", + "json", + "charset", + "cookies", + "socks-proxy", + "gzip", + "brotli", + "http-interop", + "http-crate" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Martin Algesten ", + "Jacob Hoffman-Andrews " + ], + "categories": [ + "web-programming::http-client" + ], + "keywords": [ + "web", + "request", + "https", + "http", + "client" + ], + "readme": "README.md", + "repository": "https://github.com/algesten/ureq", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "url", + "version": "2.5.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "URL library for Rust, based on the WHATWG URL Standard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "form_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "idna", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "compiled_data" + ], + "target": null, + "registry": null + }, + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "url", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/tests/unit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "url_wpt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/tests/wpt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "debugger_visualizer": [], + "default": [ + "std" + ], + "expose_internals": [], + "serde": [ + "dep:serde" + ], + "std": [ + "idna/std", + "percent-encoding/std", + "form_urlencoded/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "parser-implementations", + "web-programming", + "encoding", + "no-std" + ], + "keywords": [ + "url", + "parser" + ], + "readme": "README.md", + "repository": "https://github.com/servo/rust-url", + "homepage": null, + "documentation": "https://docs.rs/url", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "use-module", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "use_module", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/src/use_module.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gov_module_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/gov_module_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "staking_module_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/staking_module_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_merge_module_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/token_merge_module_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_module_abi_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_abi_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_module_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_module_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_module_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "use-module-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "use-module", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "use-module-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "utf16_iter", + "version": "1.0.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Iterator by char over potentially-invalid UTF-16 in &[u16]", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "utf16_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf16_iter-1.0.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf16_iter-1.0.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Henri Sivonen " + ], + "categories": [ + "text-processing", + "encoding", + "internationalization" + ], + "keywords": [ + "encoding", + "UTF-16", + "unicode", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/utf16_iter", + "homepage": "https://docs.rs/utf16_iter/", + "documentation": "https://docs.rs/utf16_iter/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "utf8_iter", + "version": "1.0.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "utf8_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Henri Sivonen " + ], + "categories": [ + "text-processing", + "encoding", + "internationalization" + ], + "keywords": [ + "encoding", + "UTF-8", + "unicode", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/utf8_iter", + "homepage": "https://docs.rs/utf8_iter/", + "documentation": "https://docs.rs/utf8_iter/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "utf8parse", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Table-driven UTF-8 parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "utf8parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utf-8-demo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/tests/utf-8-demo.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "nightly": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Joe Wilm ", + "Christian Duerr " + ], + "categories": [ + "parsing", + "no-std" + ], + "keywords": [ + "utf8", + "parse", + "table" + ], + "readme": null, + "repository": "https://github.com/alacritty/vte", + "homepage": null, + "documentation": "https://docs.rs/utf8parse/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "uuid", + "version": "1.16.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A library to generate and parse UUIDs.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.16.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "md-5", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.56", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1_smol", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid-macro-internal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.16.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.79", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.56", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.52", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid-rng-internal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.16.0", + "kind": null, + "rename": "uuid-rng-internal-lib", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_feature = \"atomics\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))", + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "uuid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.16.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "atomic": [ + "dep:atomic" + ], + "borsh": [ + "dep:borsh", + "dep:borsh-derive" + ], + "bytemuck": [ + "dep:bytemuck" + ], + "default": [ + "std" + ], + "fast-rng": [ + "rng", + "dep:rand" + ], + "js": [ + "dep:wasm-bindgen", + "dep:js-sys" + ], + "macro-diagnostics": [ + "dep:uuid-macro-internal" + ], + "md5": [ + "dep:md-5" + ], + "rng": [ + "dep:getrandom" + ], + "rng-getrandom": [ + "rng", + "dep:getrandom", + "uuid-rng-internal-lib", + "uuid-rng-internal-lib/getrandom" + ], + "rng-rand": [ + "rng", + "dep:rand", + "uuid-rng-internal-lib", + "uuid-rng-internal-lib/rand" + ], + "serde": [ + "dep:serde" + ], + "sha1": [ + "dep:sha1_smol" + ], + "slog": [ + "dep:slog" + ], + "std": [], + "uuid-rng-internal-lib": [ + "dep:uuid-rng-internal-lib" + ], + "v1": [ + "atomic" + ], + "v3": [ + "md5" + ], + "v4": [ + "rng" + ], + "v5": [ + "sha1" + ], + "v6": [ + "atomic" + ], + "v7": [ + "rng" + ], + "v8": [], + "zerocopy": [ + "dep:zerocopy" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.16.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "arbitrary", + "slog", + "borsh", + "v1", + "v3", + "v4", + "v5", + "v6", + "v7", + "v8" + ], + "rustc-args": [ + "--cfg", + "uuid_unstable" + ], + "rustdoc-args": [ + "--cfg", + "uuid_unstable" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "serde", + "v1", + "v3", + "v4", + "v5", + "v6", + "v7", + "v8" + ] + } + }, + "publish": null, + "authors": [ + "Ashley Mannix", + "Dylan DPC", + "Hunar Roop Kahlon" + ], + "categories": [ + "data-structures", + "no-std", + "parser-implementations", + "wasm" + ], + "keywords": [ + "guid", + "unique", + "uuid" + ], + "readme": "README.md", + "repository": "https://github.com/uuid-rs/uuid", + "homepage": "https://github.com/uuid-rs/uuid", + "documentation": "https://docs.rs/uuid", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "vault", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "vault", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/src/vault.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vault-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "vault-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vcpkg", + "version": "0.2.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A library to find native dependencies in a vcpkg tree at build\ntime in order to be used in Cargo build scripts.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "vcpkg", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jim McGrath " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "build-dependencies", + "windows", + "macos", + "linux" + ], + "readme": "README.md", + "repository": "https://github.com/mcgoo/vcpkg-rs", + "homepage": null, + "documentation": "https://docs.rs/vcpkg", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vec-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "vec_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/src/vec_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vec-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "vec-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "vec-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "version_check", + "version": "0.9.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Tiny crate to check the version of the installed/running rustc.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "version_check", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sergio Benitez " + ], + "categories": [], + "keywords": [ + "version", + "rustc", + "minimum", + "check" + ], + "readme": "README.md", + "repository": "https://github.com/SergioBenitez/version_check", + "homepage": null, + "documentation": "https://docs.rs/version_check/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "walkdir", + "version": "2.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "license": "Unlicense/MIT", + "license_file": null, + "description": "Recursively walk a directory.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "same-file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "walkdir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "filesystem" + ], + "keywords": [ + "directory", + "recursive", + "walk", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/walkdir", + "homepage": "https://github.com/BurntSushi/walkdir", + "documentation": "https://docs.rs/walkdir/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "want", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", + "license": "MIT", + "license_file": null, + "description": "Detect when another Future wants a result.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "try-lock", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-executor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0-alpha.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0-alpha.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "want", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "throughput", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/benches/throughput.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [], + "keywords": [ + "futures", + "channel", + "async" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/want", + "homepage": null, + "documentation": "https://docs.rs/want", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasi", + "version": "0.11.0+wasi-snapshot-preview1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Experimental WASI API bindings for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasi", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.11.0+wasi-snapshot-preview1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "rustc-dep-of-std": [ + "compiler_builtins", + "core", + "rustc-std-workspace-alloc" + ], + "rustc-std-workspace-alloc": [ + "dep:rustc-std-workspace-alloc" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.11.0+wasi-snapshot-preview1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Cranelift Project Developers" + ], + "categories": [ + "no-std", + "wasm" + ], + "keywords": [ + "webassembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasi", + "homepage": null, + "documentation": "https://docs.rs/wasi", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasi", + "version": "0.14.2+wasi-0.2.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.14.2+wasi-0.2.4", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "WASI API bindings for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wit-bindgen-rt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.39.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "bitflags" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasi", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "cdylib" + ], + "name": "cli-command", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/cli-command.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "cdylib" + ], + "name": "cli-command-no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/cli-command-no_std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hello-world", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/hello-world.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hello-world-no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/hello-world-no_std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "cdylib" + ], + "name": "http-proxy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/http-proxy.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "cdylib" + ], + "name": "http-proxy-no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/http-proxy-no_std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "rustc-dep-of-std": [ + "compiler_builtins", + "core", + "rustc-std-workspace-alloc" + ], + "rustc-std-workspace-alloc": [ + "dep:rustc-std-workspace-alloc" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Cranelift Project Developers" + ], + "categories": [ + "no-std", + "wasm" + ], + "keywords": [ + "webassembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasi-rs", + "homepage": null, + "documentation": "https://docs.rs/wasi", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasm-bindgen", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Easy support for interacting between JS and Rust.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std", + "msrv" + ], + "enable-interning": [ + "std" + ], + "gg-alloc": [], + "msrv": [ + "rustversion" + ], + "rustversion": [ + "dep:rustversion" + ], + "serde": [ + "dep:serde" + ], + "serde-serialize": [ + "serde", + "serde_json", + "std" + ], + "serde_json": [ + "dep:serde_json" + ], + "spans": [], + "std": [], + "strict-macro": [ + "wasm-bindgen-macro/strict-macro" + ], + "xxx_debug_only_print_generated_code": [ + "wasm-bindgen-macro/xxx_debug_only_print_generated_code" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde-serialize" + ] + } + } + }, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [ + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen", + "homepage": "https://rustwasm.github.io/", + "documentation": "https://docs.rs/wasm-bindgen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-backend", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Backend code generation of the wasm-bindgen tool\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_backend", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-backend-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "extra-traits": [ + "syn/extra-traits" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-backend-0.2.100/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen-backend", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-futures", + "version": "0.4.50", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bridging the gap between Rust Futures and JavaScript Promises", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "futures-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "MessageEvent", + "Worker" + ], + "target": "cfg(target_feature = \"atomics\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_futures", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.50/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "futures-core": [ + "dep:futures-core" + ], + "futures-core-03-stream": [ + "futures-core" + ], + "std": [ + "wasm-bindgen/std", + "js-sys/std", + "web-sys/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.50/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen-futures", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-macro", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-macro-support", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "wasm_bindgen_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "strict-macro": [ + "wasm-bindgen-macro-support/strict-macro" + ], + "xxx_debug_only_print_generated_code": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.100/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-macro-support", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "visit", + "visit-mut", + "full" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-backend", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_macro_support", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "extra-traits": [ + "syn/extra-traits" + ], + "strict-macro": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.100/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-shared", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_shared", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen-shared", + "edition": "2021", + "links": "wasm_bindgen", + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-encoder", + "version": "0.229.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "A low-level WebAssembly encoder.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "leb128fmt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.229.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "simd", + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmprinter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.229.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_encoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "component-model": [ + "wasmparser?/component-model" + ], + "default": [ + "std", + "component-model" + ], + "std": [ + "wasmparser?/std" + ], + "wasmparser": [ + "dep:wasmparser" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Nick Fitzgerald " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", + "documentation": "https://docs.rs/wasm-encoder", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wasmer", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", + "license": "MIT", + "license_file": null, + "description": "High-performance WebAssembly runtime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "derive_more", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "from", + "debug" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "indexmap", + "enable-indexmap" + ], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shared-buffer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmi_c_api_impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.40.0", + "kind": null, + "rename": "wasmi_c_api", + "optional": true, + "uses_default_features": true, + "features": [ + "prefix-symbols" + ], + "target": null, + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.216.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cmake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.50", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.42", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ureq", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.10.1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "which", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.0.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "xz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(not(target_arch = \"wasm32\"), target_os = \"windows\"))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.51", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rusty_jsc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.74", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler-cranelift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler-llvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler-singlepass", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-vm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.224.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "validate", + "features", + "simd" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "macro-wasmer-universal-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.70.1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_env = \"musl\"))", + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "serde-wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmer-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.224.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "validate", + "features", + "simd" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "macro-wasmer-universal-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.70.1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "static", + "logging", + "prettyplease" + ], + "target": "cfg(target_env = \"musl\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "externals", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/externals.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "function_env", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/function_env.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "import_function", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/import_function.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "instance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/instance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "memory", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/memory.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "module", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/module.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reference_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/reference_types.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "typed_functions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/typed_functions.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "artifact-size": [ + "dep:loupe", + "wasmer-vm/artifact-size", + "wasmer-compiler/artifact-size" + ], + "compiler": [ + "sys", + "dep:wasmer-compiler", + "wasmer-compiler/translator", + "wasmer-compiler/compiler" + ], + "core": [ + "hashbrown" + ], + "cranelift": [ + "compiler", + "wasmer-compiler-cranelift" + ], + "default": [ + "sys-default" + ], + "enable-serde": [ + "wasmer-vm/enable-serde", + "wasmer-compiler/enable-serde", + "wasmer-types/enable-serde" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "js": [ + "wasm-bindgen", + "js-sys" + ], + "js-default": [ + "js", + "std", + "wasm-types-polyfill" + ], + "js-serializable-module": [], + "js-sys": [ + "dep:js-sys" + ], + "jsc": [ + "rusty_jsc", + "wasm-types-polyfill", + "wasmparser" + ], + "jsc-default": [ + "jsc" + ], + "llvm": [ + "compiler", + "wasmer-compiler-llvm" + ], + "rusty_jsc": [ + "dep:rusty_jsc" + ], + "singlepass": [ + "compiler", + "wasmer-compiler-singlepass" + ], + "static-artifact-create": [ + "wasmer-compiler/static-artifact-create" + ], + "static-artifact-load": [ + "wasmer-compiler/static-artifact-load" + ], + "std": [], + "sys": [ + "std", + "dep:wasmer-vm", + "dep:wasmer-compiler" + ], + "sys-default": [ + "sys", + "wat", + "cranelift" + ], + "v8": [ + "wasm-c-api", + "std", + "dep:which", + "dep:xz" + ], + "v8-default": [ + "v8", + "wat" + ], + "wamr": [ + "wasm-c-api", + "std", + "dep:which", + "dep:zip" + ], + "wamr-default": [ + "wamr", + "wat" + ], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ], + "wasm-c-api": [ + "wasm-types-polyfill" + ], + "wasm-types-polyfill": [ + "wasmparser" + ], + "wasmer-artifact-create": [ + "wasmer-compiler/wasmer-artifact-create" + ], + "wasmer-artifact-load": [ + "wasmer-compiler/wasmer-artifact-load" + ], + "wasmer-compiler-cranelift": [ + "dep:wasmer-compiler-cranelift" + ], + "wasmer-compiler-llvm": [ + "dep:wasmer-compiler-llvm" + ], + "wasmer-compiler-singlepass": [ + "dep:wasmer-compiler-singlepass" + ], + "wasmi": [ + "wasm-c-api", + "std", + "dep:wasmi_c_api" + ], + "wasmi-default": [ + "wasmi", + "wat" + ], + "wasmparser": [ + "dep:wasmparser" + ], + "wat": [ + "dep:wat", + "wasmparser" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "compiler", + "core", + "cranelift", + "singlepass", + "static-artifact-create", + "static-artifact-load", + "sys", + "sys-default", + "wasmer-artifact-create", + "wasmer-artifact-load" + ], + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "wasm-pack": { + "profile": { + "release": { + "wasm-opt": false + } + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly", + "runtime", + "vm" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-compiler", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "license": "MIT", + "license_file": null, + "description": "Base compiler abstraction for Wasmer WebAssembly runtime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "leb128", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "indexmap", + "enable-indexmap" + ], + "target": null, + "registry": null + }, + { + "name": "memmap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "object", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.32.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "write" + ], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "indexmap-2", + "bytes-1" + ], + "target": null, + "registry": null + }, + { + "name": "self_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shared-buffer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.224.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "validate", + "features", + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "xxhash-rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "xxh64" + ], + "target": null, + "registry": null + }, + { + "name": "macho-unwind-info", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_os = \"macos\", target_arch = \"aarch64\"))", + "registry": null + }, + { + "name": "region", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-vm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Diagnostics_Debug" + ], + "target": "cfg(target_os = \"windows\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_compiler", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "artifact-size": [ + "dep:loupe" + ], + "compiler": [ + "translator" + ], + "core": [ + "hashbrown", + "wasmer-types/core" + ], + "default": [ + "std" + ], + "enable-serde": [ + "serde", + "serde_bytes", + "wasmer-types/enable-serde" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "serde": [ + "dep:serde" + ], + "serde_bytes": [ + "dep:serde_bytes" + ], + "static-artifact-create": [ + "translator", + "compiler" + ], + "static-artifact-load": [], + "std": [ + "wasmer-types/std" + ], + "translator": [ + "wasmparser" + ], + "wasmer-artifact-create": [], + "wasmer-artifact-load": [], + "wasmparser": [ + "dep:wasmparser" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "static-artifact-create", + "static-artifact-load", + "wasmer-artifact-create", + "wasmer-artifact-load" + ], + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm", + "no-std" + ], + "keywords": [ + "wasm", + "webassembly", + "compiler" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-compiler-singlepass", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", + "license": null, + "license_file": "LICENSE", + "description": "Singlepass compiler for Wasmer WebAssembly runtime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dynasm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dynasmrt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gimli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.28.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "translator", + "compiler" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_compiler_singlepass", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-singlepass-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "avx": [], + "core": [ + "hashbrown", + "wasmer-types/core" + ], + "default": [ + "std", + "rayon", + "unwind", + "avx" + ], + "enable-serde": [], + "gimli": [ + "dep:gimli" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "rayon": [ + "dep:rayon" + ], + "sse": [], + "std": [ + "wasmer-compiler/std", + "wasmer-types/std" + ], + "unwind": [ + "gimli" + ], + "wasm": [ + "std", + "unwind", + "avx" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-singlepass-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly", + "compiler", + "singlepass" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": "https://docs.rs/wasmer-compiler-singlepass/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-derive", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", + "license": "MIT", + "license_file": null, + "description": "Wasmer derive macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro-error2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.72", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "compiletest_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "wasmer_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-types", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "license": "MIT OR Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "Wasmer Common Types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "indexmap-2", + "bytes-1" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.224.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "validate", + "features", + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "xxhash-rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "xxh64" + ], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-types-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "artifact-size": [ + "dep:loupe" + ], + "core": [], + "default": [ + "std" + ], + "detect-wasm-features": [ + "dep:wasmparser" + ], + "enable-serde": [ + "serde", + "serde/std", + "serde_bytes", + "indexmap/serde" + ], + "serde": [ + "dep:serde" + ], + "serde_bytes": [ + "dep:serde_bytes" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-types-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm", + "no-std", + "data-structures" + ], + "keywords": [ + "wasm", + "webassembly", + "types" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-vm", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "license": "MIT OR Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "Runtime library support for Wasmer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "corosensei", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-queue", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dashmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "region", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scopeguard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive", + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libunwind", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_family = \"unix\", all(target_family = \"windows\", target_env = \"gnu\")))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Diagnostics_Debug", + "Win32_System_Threading", + "Win32_System_Kernel", + "Win32_System_Memory" + ], + "target": "cfg(target_os = \"windows\")", + "registry": null + }, + { + "name": "mach2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_vm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-vm-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "artifact-size": [ + "dep:loupe", + "wasmer-types/artifact-size" + ], + "default": [], + "enable-serde": [ + "serde", + "indexmap/serde", + "wasmer-types/enable-serde" + ], + "serde": [ + "dep:serde" + ], + "tracing": [ + "dep:tracing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-vm-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmparser", + "version": "0.224.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple event-driven library for parsing WebAssembly binary files.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmparser", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big-module", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/tests/big-module.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/benches/benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "component-model": [ + "dep:semver" + ], + "default": [ + "std", + "validate", + "serde", + "features", + "component-model", + "hash-collections", + "simd" + ], + "features": [], + "hash-collections": [ + "dep:hashbrown", + "dep:indexmap" + ], + "prefer-btree-collections": [], + "serde": [ + "dep:serde", + "indexmap?/serde", + "hashbrown?/serde" + ], + "simd": [], + "std": [ + "indexmap?/std" + ], + "validate": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Yury Delendik " + ], + "categories": [], + "keywords": [ + "parser", + "WebAssembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wasmparser", + "version": "0.227.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple event-driven library for parsing WebAssembly binary files.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmparser", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big-module", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/tests/big-module.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/benches/benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "component-model": [ + "dep:semver" + ], + "default": [ + "std", + "validate", + "serde", + "features", + "component-model", + "hash-collections", + "simd" + ], + "features": [], + "hash-collections": [ + "dep:hashbrown", + "dep:indexmap" + ], + "prefer-btree-collections": [], + "serde": [ + "dep:serde", + "indexmap?/serde", + "hashbrown?/serde" + ], + "simd": [], + "std": [ + "indexmap?/std" + ], + "validate": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Yury Delendik " + ], + "categories": [], + "keywords": [ + "parser", + "WebAssembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wasmparser", + "version": "0.229.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple event-driven library for parsing WebAssembly binary files.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmparser", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big-module", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/tests/big-module.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/benches/benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "component-model": [ + "dep:semver" + ], + "default": [ + "std", + "validate", + "serde", + "features", + "component-model", + "hash-collections", + "simd" + ], + "features": [], + "hash-collections": [ + "dep:hashbrown", + "dep:indexmap" + ], + "prefer-btree-collections": [], + "serde": [ + "dep:serde", + "indexmap?/serde", + "hashbrown?/serde" + ], + "simd": [], + "std": [ + "indexmap?/std" + ], + "validate": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Yury Delendik " + ], + "categories": [], + "keywords": [ + "parser", + "WebAssembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wasmprinter", + "version": "0.227.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Rust converter from the WebAssembly binary format to the text format.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "termcolor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.227.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "simd", + "std", + "simd" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmprinter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/tests/all.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "component-model": [ + "wasmparser/component-model" + ], + "default": [ + "component-model" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter", + "documentation": "https://docs.rs/wasmprinter", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wast", + "version": "229.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Customizable Rust parsers for the WebAssembly Text formats WAT and WAST\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gimli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.31.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "leb128fmt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-encoder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.229.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libtest-mimic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "annotations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/annotations.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "comments", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/comments.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse-fail", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/parse-fail.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "recursive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/recursive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "component-model": [ + "wasm-module", + "wasm-encoder/component-model" + ], + "default": [ + "wasm-module", + "component-model" + ], + "dwarf": [ + "dep:gimli" + ], + "wasm-module": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", + "documentation": "https://docs.rs/wast", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wat", + "version": "1.229.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Rust parser for the WebAssembly Text format, WAT\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "wast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^229.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "wasm-module" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wat-1.229.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "component-model": [ + "wast/component-model" + ], + "default": [ + "component-model" + ], + "dwarf": [ + "wast/dwarf" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wat-1.229.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", + "documentation": "https://docs.rs/wat", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "web-sys", + "version": "0.3.77", + "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bindings for all Web APIs, a procedurally generated crate from WebIDL\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "web_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.77/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": false + } + ], + "features": { + "AbortController": [], + "AbortSignal": [ + "EventTarget" + ], + "AddEventListenerOptions": [], + "AesCbcParams": [], + "AesCtrParams": [], + "AesDerivedKeyParams": [], + "AesGcmParams": [], + "AesKeyAlgorithm": [], + "AesKeyGenParams": [], + "Algorithm": [], + "AlignSetting": [], + "AllowedBluetoothDevice": [], + "AllowedUsbDevice": [], + "AlphaOption": [], + "AnalyserNode": [ + "AudioNode", + "EventTarget" + ], + "AnalyserOptions": [], + "AngleInstancedArrays": [], + "Animation": [ + "EventTarget" + ], + "AnimationEffect": [], + "AnimationEvent": [ + "Event" + ], + "AnimationEventInit": [], + "AnimationPlayState": [], + "AnimationPlaybackEvent": [ + "Event" + ], + "AnimationPlaybackEventInit": [], + "AnimationPropertyDetails": [], + "AnimationPropertyValueDetails": [], + "AnimationTimeline": [], + "AssignedNodesOptions": [], + "AttestationConveyancePreference": [], + "Attr": [ + "EventTarget", + "Node" + ], + "AttributeNameValue": [], + "AudioBuffer": [], + "AudioBufferOptions": [], + "AudioBufferSourceNode": [ + "AudioNode", + "AudioScheduledSourceNode", + "EventTarget" + ], + "AudioBufferSourceOptions": [], + "AudioConfiguration": [], + "AudioContext": [ + "BaseAudioContext", + "EventTarget" + ], + "AudioContextLatencyCategory": [], + "AudioContextOptions": [], + "AudioContextState": [], + "AudioData": [], + "AudioDataCopyToOptions": [], + "AudioDataInit": [], + "AudioDecoder": [], + "AudioDecoderConfig": [], + "AudioDecoderInit": [], + "AudioDecoderSupport": [], + "AudioDestinationNode": [ + "AudioNode", + "EventTarget" + ], + "AudioEncoder": [], + "AudioEncoderConfig": [], + "AudioEncoderInit": [], + "AudioEncoderSupport": [], + "AudioListener": [], + "AudioNode": [ + "EventTarget" + ], + "AudioNodeOptions": [], + "AudioParam": [], + "AudioParamMap": [], + "AudioProcessingEvent": [ + "Event" + ], + "AudioSampleFormat": [], + "AudioScheduledSourceNode": [ + "AudioNode", + "EventTarget" + ], + "AudioSinkInfo": [], + "AudioSinkOptions": [], + "AudioSinkType": [], + "AudioStreamTrack": [ + "EventTarget", + "MediaStreamTrack" + ], + "AudioTrack": [], + "AudioTrackList": [ + "EventTarget" + ], + "AudioWorklet": [ + "Worklet" + ], + "AudioWorkletGlobalScope": [ + "WorkletGlobalScope" + ], + "AudioWorkletNode": [ + "AudioNode", + "EventTarget" + ], + "AudioWorkletNodeOptions": [], + "AudioWorkletProcessor": [], + "AuthenticationExtensionsClientInputs": [], + "AuthenticationExtensionsClientInputsJson": [], + "AuthenticationExtensionsClientOutputs": [], + "AuthenticationExtensionsClientOutputsJson": [], + "AuthenticationExtensionsDevicePublicKeyInputs": [], + "AuthenticationExtensionsDevicePublicKeyOutputs": [], + "AuthenticationExtensionsLargeBlobInputs": [], + "AuthenticationExtensionsLargeBlobOutputs": [], + "AuthenticationExtensionsPrfInputs": [], + "AuthenticationExtensionsPrfOutputs": [], + "AuthenticationExtensionsPrfValues": [], + "AuthenticationResponseJson": [], + "AuthenticatorAssertionResponse": [ + "AuthenticatorResponse" + ], + "AuthenticatorAssertionResponseJson": [], + "AuthenticatorAttachment": [], + "AuthenticatorAttestationResponse": [ + "AuthenticatorResponse" + ], + "AuthenticatorAttestationResponseJson": [], + "AuthenticatorResponse": [], + "AuthenticatorSelectionCriteria": [], + "AuthenticatorTransport": [], + "AutoKeyword": [], + "AutocompleteInfo": [], + "BarProp": [], + "BaseAudioContext": [ + "EventTarget" + ], + "BaseComputedKeyframe": [], + "BaseKeyframe": [], + "BasePropertyIndexedKeyframe": [], + "BasicCardRequest": [], + "BasicCardResponse": [], + "BasicCardType": [], + "BatteryManager": [ + "EventTarget" + ], + "BeforeUnloadEvent": [ + "Event" + ], + "BinaryType": [], + "BiquadFilterNode": [ + "AudioNode", + "EventTarget" + ], + "BiquadFilterOptions": [], + "BiquadFilterType": [], + "Blob": [], + "BlobEvent": [ + "Event" + ], + "BlobEventInit": [], + "BlobPropertyBag": [], + "BlockParsingOptions": [], + "Bluetooth": [ + "EventTarget" + ], + "BluetoothAdvertisingEvent": [ + "Event" + ], + "BluetoothAdvertisingEventInit": [], + "BluetoothCharacteristicProperties": [], + "BluetoothDataFilterInit": [], + "BluetoothDevice": [ + "EventTarget" + ], + "BluetoothLeScanFilterInit": [], + "BluetoothManufacturerDataMap": [], + "BluetoothPermissionDescriptor": [], + "BluetoothPermissionResult": [ + "EventTarget", + "PermissionStatus" + ], + "BluetoothPermissionStorage": [], + "BluetoothRemoteGattCharacteristic": [ + "EventTarget" + ], + "BluetoothRemoteGattDescriptor": [], + "BluetoothRemoteGattServer": [], + "BluetoothRemoteGattService": [ + "EventTarget" + ], + "BluetoothServiceDataMap": [], + "BluetoothUuid": [], + "BoxQuadOptions": [], + "BroadcastChannel": [ + "EventTarget" + ], + "BrowserElementDownloadOptions": [], + "BrowserElementExecuteScriptOptions": [], + "BrowserFeedWriter": [], + "BrowserFindCaseSensitivity": [], + "BrowserFindDirection": [], + "ByteLengthQueuingStrategy": [], + "Cache": [], + "CacheBatchOperation": [], + "CacheQueryOptions": [], + "CacheStorage": [], + "CacheStorageNamespace": [], + "CanvasCaptureMediaStream": [ + "EventTarget", + "MediaStream" + ], + "CanvasCaptureMediaStreamTrack": [ + "EventTarget", + "MediaStreamTrack" + ], + "CanvasGradient": [], + "CanvasPattern": [], + "CanvasRenderingContext2d": [], + "CanvasWindingRule": [], + "CaretChangedReason": [], + "CaretPosition": [], + "CaretStateChangedEventInit": [], + "CdataSection": [ + "CharacterData", + "EventTarget", + "Node", + "Text" + ], + "ChannelCountMode": [], + "ChannelInterpretation": [], + "ChannelMergerNode": [ + "AudioNode", + "EventTarget" + ], + "ChannelMergerOptions": [], + "ChannelSplitterNode": [ + "AudioNode", + "EventTarget" + ], + "ChannelSplitterOptions": [], + "CharacterData": [ + "EventTarget", + "Node" + ], + "CheckerboardReason": [], + "CheckerboardReport": [], + "CheckerboardReportService": [], + "ChromeFilePropertyBag": [], + "ChromeWorker": [ + "EventTarget", + "Worker" + ], + "Client": [], + "ClientQueryOptions": [], + "ClientRectsAndTexts": [], + "ClientType": [], + "Clients": [], + "Clipboard": [ + "EventTarget" + ], + "ClipboardEvent": [ + "Event" + ], + "ClipboardEventInit": [], + "ClipboardItem": [], + "ClipboardItemOptions": [], + "ClipboardPermissionDescriptor": [], + "ClipboardUnsanitizedFormats": [], + "CloseEvent": [ + "Event" + ], + "CloseEventInit": [], + "CodecState": [], + "CollectedClientData": [], + "ColorSpaceConversion": [], + "Comment": [ + "CharacterData", + "EventTarget", + "Node" + ], + "CompositeOperation": [], + "CompositionEvent": [ + "Event", + "UiEvent" + ], + "CompositionEventInit": [], + "CompressionFormat": [], + "CompressionStream": [], + "ComputedEffectTiming": [], + "ConnStatusDict": [], + "ConnectionType": [], + "ConsoleCounter": [], + "ConsoleCounterError": [], + "ConsoleEvent": [], + "ConsoleInstance": [], + "ConsoleInstanceOptions": [], + "ConsoleLevel": [], + "ConsoleLogLevel": [], + "ConsoleProfileEvent": [], + "ConsoleStackEntry": [], + "ConsoleTimerError": [], + "ConsoleTimerLogOrEnd": [], + "ConsoleTimerStart": [], + "ConstantSourceNode": [ + "AudioNode", + "AudioScheduledSourceNode", + "EventTarget" + ], + "ConstantSourceOptions": [], + "ConstrainBooleanParameters": [], + "ConstrainDomStringParameters": [], + "ConstrainDoubleRange": [], + "ConstrainLongRange": [], + "ContextAttributes2d": [], + "ConvertCoordinateOptions": [], + "ConvolverNode": [ + "AudioNode", + "EventTarget" + ], + "ConvolverOptions": [], + "Coordinates": [], + "CountQueuingStrategy": [], + "Credential": [], + "CredentialCreationOptions": [], + "CredentialPropertiesOutput": [], + "CredentialRequestOptions": [], + "CredentialsContainer": [], + "Crypto": [], + "CryptoKey": [], + "CryptoKeyPair": [], + "CssAnimation": [ + "Animation", + "EventTarget" + ], + "CssBoxType": [], + "CssConditionRule": [ + "CssGroupingRule", + "CssRule" + ], + "CssCounterStyleRule": [ + "CssRule" + ], + "CssFontFaceRule": [ + "CssRule" + ], + "CssFontFeatureValuesRule": [ + "CssRule" + ], + "CssGroupingRule": [ + "CssRule" + ], + "CssImportRule": [ + "CssRule" + ], + "CssKeyframeRule": [ + "CssRule" + ], + "CssKeyframesRule": [ + "CssRule" + ], + "CssMediaRule": [ + "CssConditionRule", + "CssGroupingRule", + "CssRule" + ], + "CssNamespaceRule": [ + "CssRule" + ], + "CssPageRule": [ + "CssRule" + ], + "CssPseudoElement": [], + "CssRule": [], + "CssRuleList": [], + "CssStyleDeclaration": [], + "CssStyleRule": [ + "CssRule" + ], + "CssStyleSheet": [ + "StyleSheet" + ], + "CssStyleSheetParsingMode": [], + "CssSupportsRule": [ + "CssConditionRule", + "CssGroupingRule", + "CssRule" + ], + "CssTransition": [ + "Animation", + "EventTarget" + ], + "CustomElementRegistry": [], + "CustomEvent": [ + "Event" + ], + "CustomEventInit": [], + "DataTransfer": [], + "DataTransferItem": [], + "DataTransferItemList": [], + "DateTimeValue": [], + "DecoderDoctorNotification": [], + "DecoderDoctorNotificationType": [], + "DecompressionStream": [], + "DedicatedWorkerGlobalScope": [ + "EventTarget", + "WorkerGlobalScope" + ], + "DelayNode": [ + "AudioNode", + "EventTarget" + ], + "DelayOptions": [], + "DeviceAcceleration": [], + "DeviceAccelerationInit": [], + "DeviceLightEvent": [ + "Event" + ], + "DeviceLightEventInit": [], + "DeviceMotionEvent": [ + "Event" + ], + "DeviceMotionEventInit": [], + "DeviceOrientationEvent": [ + "Event" + ], + "DeviceOrientationEventInit": [], + "DeviceProximityEvent": [ + "Event" + ], + "DeviceProximityEventInit": [], + "DeviceRotationRate": [], + "DeviceRotationRateInit": [], + "DhKeyDeriveParams": [], + "DirectionSetting": [], + "Directory": [], + "DirectoryPickerOptions": [], + "DisplayMediaStreamConstraints": [], + "DisplayNameOptions": [], + "DisplayNameResult": [], + "DistanceModelType": [], + "DnsCacheDict": [], + "DnsCacheEntry": [], + "DnsLookupDict": [], + "Document": [ + "EventTarget", + "Node" + ], + "DocumentFragment": [ + "EventTarget", + "Node" + ], + "DocumentTimeline": [ + "AnimationTimeline" + ], + "DocumentTimelineOptions": [], + "DocumentType": [ + "EventTarget", + "Node" + ], + "DomError": [], + "DomException": [], + "DomImplementation": [], + "DomMatrix": [ + "DomMatrixReadOnly" + ], + "DomMatrix2dInit": [], + "DomMatrixInit": [], + "DomMatrixReadOnly": [], + "DomParser": [], + "DomPoint": [ + "DomPointReadOnly" + ], + "DomPointInit": [], + "DomPointReadOnly": [], + "DomQuad": [], + "DomQuadInit": [], + "DomQuadJson": [], + "DomRect": [ + "DomRectReadOnly" + ], + "DomRectInit": [], + "DomRectList": [], + "DomRectReadOnly": [], + "DomRequest": [ + "EventTarget" + ], + "DomRequestReadyState": [], + "DomStringList": [], + "DomStringMap": [], + "DomTokenList": [], + "DomWindowResizeEventDetail": [], + "DoubleRange": [], + "DragEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "DragEventInit": [], + "DynamicsCompressorNode": [ + "AudioNode", + "EventTarget" + ], + "DynamicsCompressorOptions": [], + "EcKeyAlgorithm": [], + "EcKeyGenParams": [], + "EcKeyImportParams": [], + "EcdhKeyDeriveParams": [], + "EcdsaParams": [], + "EffectTiming": [], + "Element": [ + "EventTarget", + "Node" + ], + "ElementCreationOptions": [], + "ElementDefinitionOptions": [], + "EncodedAudioChunk": [], + "EncodedAudioChunkInit": [], + "EncodedAudioChunkMetadata": [], + "EncodedAudioChunkType": [], + "EncodedVideoChunk": [], + "EncodedVideoChunkInit": [], + "EncodedVideoChunkMetadata": [], + "EncodedVideoChunkType": [], + "EndingTypes": [], + "ErrorCallback": [], + "ErrorEvent": [ + "Event" + ], + "ErrorEventInit": [], + "Event": [], + "EventInit": [], + "EventListener": [], + "EventListenerOptions": [], + "EventModifierInit": [], + "EventSource": [ + "EventTarget" + ], + "EventSourceInit": [], + "EventTarget": [], + "Exception": [], + "ExtBlendMinmax": [], + "ExtColorBufferFloat": [], + "ExtColorBufferHalfFloat": [], + "ExtDisjointTimerQuery": [], + "ExtFragDepth": [], + "ExtSRgb": [], + "ExtShaderTextureLod": [], + "ExtTextureFilterAnisotropic": [], + "ExtTextureNorm16": [], + "ExtendableEvent": [ + "Event" + ], + "ExtendableEventInit": [], + "ExtendableMessageEvent": [ + "Event", + "ExtendableEvent" + ], + "ExtendableMessageEventInit": [], + "External": [], + "FakePluginMimeEntry": [], + "FakePluginTagInit": [], + "FetchEvent": [ + "Event", + "ExtendableEvent" + ], + "FetchEventInit": [], + "FetchObserver": [ + "EventTarget" + ], + "FetchReadableStreamReadDataArray": [], + "FetchReadableStreamReadDataDone": [], + "FetchState": [], + "File": [ + "Blob" + ], + "FileCallback": [], + "FileList": [], + "FilePickerAcceptType": [], + "FilePickerOptions": [], + "FilePropertyBag": [], + "FileReader": [ + "EventTarget" + ], + "FileReaderSync": [], + "FileSystem": [], + "FileSystemCreateWritableOptions": [], + "FileSystemDirectoryEntry": [ + "FileSystemEntry" + ], + "FileSystemDirectoryHandle": [ + "FileSystemHandle" + ], + "FileSystemDirectoryReader": [], + "FileSystemEntriesCallback": [], + "FileSystemEntry": [], + "FileSystemEntryCallback": [], + "FileSystemFileEntry": [ + "FileSystemEntry" + ], + "FileSystemFileHandle": [ + "FileSystemHandle" + ], + "FileSystemFlags": [], + "FileSystemGetDirectoryOptions": [], + "FileSystemGetFileOptions": [], + "FileSystemHandle": [], + "FileSystemHandleKind": [], + "FileSystemHandlePermissionDescriptor": [], + "FileSystemPermissionDescriptor": [], + "FileSystemPermissionMode": [], + "FileSystemReadWriteOptions": [], + "FileSystemRemoveOptions": [], + "FileSystemSyncAccessHandle": [], + "FileSystemWritableFileStream": [ + "WritableStream" + ], + "FillMode": [], + "FlashClassification": [], + "FlowControlType": [], + "FocusEvent": [ + "Event", + "UiEvent" + ], + "FocusEventInit": [], + "FocusOptions": [], + "FontData": [], + "FontFace": [], + "FontFaceDescriptors": [], + "FontFaceLoadStatus": [], + "FontFaceSet": [ + "EventTarget" + ], + "FontFaceSetIterator": [], + "FontFaceSetIteratorResult": [], + "FontFaceSetLoadEvent": [ + "Event" + ], + "FontFaceSetLoadEventInit": [], + "FontFaceSetLoadStatus": [], + "FormData": [], + "FrameType": [], + "FuzzingFunctions": [], + "GainNode": [ + "AudioNode", + "EventTarget" + ], + "GainOptions": [], + "Gamepad": [], + "GamepadButton": [], + "GamepadEffectParameters": [], + "GamepadEvent": [ + "Event" + ], + "GamepadEventInit": [], + "GamepadHand": [], + "GamepadHapticActuator": [], + "GamepadHapticActuatorType": [], + "GamepadHapticEffectType": [], + "GamepadHapticsResult": [], + "GamepadMappingType": [], + "GamepadPose": [], + "GamepadTouch": [], + "Geolocation": [], + "GetAnimationsOptions": [], + "GetRootNodeOptions": [], + "GetUserMediaRequest": [], + "Gpu": [], + "GpuAdapter": [], + "GpuAdapterInfo": [], + "GpuAddressMode": [], + "GpuAutoLayoutMode": [], + "GpuBindGroup": [], + "GpuBindGroupDescriptor": [], + "GpuBindGroupEntry": [], + "GpuBindGroupLayout": [], + "GpuBindGroupLayoutDescriptor": [], + "GpuBindGroupLayoutEntry": [], + "GpuBlendComponent": [], + "GpuBlendFactor": [], + "GpuBlendOperation": [], + "GpuBlendState": [], + "GpuBuffer": [], + "GpuBufferBinding": [], + "GpuBufferBindingLayout": [], + "GpuBufferBindingType": [], + "GpuBufferDescriptor": [], + "GpuBufferMapState": [], + "GpuCanvasAlphaMode": [], + "GpuCanvasConfiguration": [], + "GpuCanvasContext": [], + "GpuCanvasToneMapping": [], + "GpuCanvasToneMappingMode": [], + "GpuColorDict": [], + "GpuColorTargetState": [], + "GpuCommandBuffer": [], + "GpuCommandBufferDescriptor": [], + "GpuCommandEncoder": [], + "GpuCommandEncoderDescriptor": [], + "GpuCompareFunction": [], + "GpuCompilationInfo": [], + "GpuCompilationMessage": [], + "GpuCompilationMessageType": [], + "GpuComputePassDescriptor": [], + "GpuComputePassEncoder": [], + "GpuComputePassTimestampWrites": [], + "GpuComputePipeline": [], + "GpuComputePipelineDescriptor": [], + "GpuCopyExternalImageDestInfo": [], + "GpuCopyExternalImageSourceInfo": [], + "GpuCullMode": [], + "GpuDepthStencilState": [], + "GpuDevice": [ + "EventTarget" + ], + "GpuDeviceDescriptor": [], + "GpuDeviceLostInfo": [], + "GpuDeviceLostReason": [], + "GpuError": [], + "GpuErrorFilter": [], + "GpuExtent3dDict": [], + "GpuExternalTexture": [], + "GpuExternalTextureBindingLayout": [], + "GpuExternalTextureDescriptor": [], + "GpuFeatureName": [], + "GpuFilterMode": [], + "GpuFragmentState": [], + "GpuFrontFace": [], + "GpuIndexFormat": [], + "GpuInternalError": [ + "GpuError" + ], + "GpuLoadOp": [], + "GpuMipmapFilterMode": [], + "GpuMultisampleState": [], + "GpuObjectDescriptorBase": [], + "GpuOrigin2dDict": [], + "GpuOrigin3dDict": [], + "GpuOutOfMemoryError": [ + "GpuError" + ], + "GpuPipelineDescriptorBase": [], + "GpuPipelineError": [ + "DomException" + ], + "GpuPipelineErrorInit": [], + "GpuPipelineErrorReason": [], + "GpuPipelineLayout": [], + "GpuPipelineLayoutDescriptor": [], + "GpuPowerPreference": [], + "GpuPrimitiveState": [], + "GpuPrimitiveTopology": [], + "GpuProgrammableStage": [], + "GpuQuerySet": [], + "GpuQuerySetDescriptor": [], + "GpuQueryType": [], + "GpuQueue": [], + "GpuQueueDescriptor": [], + "GpuRenderBundle": [], + "GpuRenderBundleDescriptor": [], + "GpuRenderBundleEncoder": [], + "GpuRenderBundleEncoderDescriptor": [], + "GpuRenderPassColorAttachment": [], + "GpuRenderPassDepthStencilAttachment": [], + "GpuRenderPassDescriptor": [], + "GpuRenderPassEncoder": [], + "GpuRenderPassLayout": [], + "GpuRenderPassTimestampWrites": [], + "GpuRenderPipeline": [], + "GpuRenderPipelineDescriptor": [], + "GpuRequestAdapterOptions": [], + "GpuSampler": [], + "GpuSamplerBindingLayout": [], + "GpuSamplerBindingType": [], + "GpuSamplerDescriptor": [], + "GpuShaderModule": [], + "GpuShaderModuleCompilationHint": [], + "GpuShaderModuleDescriptor": [], + "GpuStencilFaceState": [], + "GpuStencilOperation": [], + "GpuStorageTextureAccess": [], + "GpuStorageTextureBindingLayout": [], + "GpuStoreOp": [], + "GpuSupportedFeatures": [], + "GpuSupportedLimits": [], + "GpuTexelCopyBufferInfo": [], + "GpuTexelCopyBufferLayout": [], + "GpuTexelCopyTextureInfo": [], + "GpuTexture": [], + "GpuTextureAspect": [], + "GpuTextureBindingLayout": [], + "GpuTextureDescriptor": [], + "GpuTextureDimension": [], + "GpuTextureFormat": [], + "GpuTextureSampleType": [], + "GpuTextureView": [], + "GpuTextureViewDescriptor": [], + "GpuTextureViewDimension": [], + "GpuUncapturedErrorEvent": [ + "Event" + ], + "GpuUncapturedErrorEventInit": [], + "GpuValidationError": [ + "GpuError" + ], + "GpuVertexAttribute": [], + "GpuVertexBufferLayout": [], + "GpuVertexFormat": [], + "GpuVertexState": [], + "GpuVertexStepMode": [], + "GroupedHistoryEventInit": [], + "HalfOpenInfoDict": [], + "HardwareAcceleration": [], + "HashChangeEvent": [ + "Event" + ], + "HashChangeEventInit": [], + "Headers": [], + "HeadersGuardEnum": [], + "Hid": [ + "EventTarget" + ], + "HidCollectionInfo": [], + "HidConnectionEvent": [ + "Event" + ], + "HidConnectionEventInit": [], + "HidDevice": [ + "EventTarget" + ], + "HidDeviceFilter": [], + "HidDeviceRequestOptions": [], + "HidInputReportEvent": [ + "Event" + ], + "HidInputReportEventInit": [], + "HidReportInfo": [], + "HidReportItem": [], + "HidUnitSystem": [], + "HiddenPluginEventInit": [], + "History": [], + "HitRegionOptions": [], + "HkdfParams": [], + "HmacDerivedKeyParams": [], + "HmacImportParams": [], + "HmacKeyAlgorithm": [], + "HmacKeyGenParams": [], + "HtmlAllCollection": [], + "HtmlAnchorElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlAreaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlAudioElement": [ + "Element", + "EventTarget", + "HtmlElement", + "HtmlMediaElement", + "Node" + ], + "HtmlBaseElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlBodyElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlBrElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlButtonElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlCanvasElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlCollection": [], + "HtmlDListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDataElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDataListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDetailsElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDialogElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDirectoryElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDivElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDocument": [ + "Document", + "EventTarget", + "Node" + ], + "HtmlElement": [ + "Element", + "EventTarget", + "Node" + ], + "HtmlEmbedElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFieldSetElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFontElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFormControlsCollection": [ + "HtmlCollection" + ], + "HtmlFormElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFrameElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFrameSetElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHeadElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHeadingElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHrElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHtmlElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlIFrameElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlImageElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlInputElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLabelElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLegendElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLiElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLinkElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMapElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMediaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMenuElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMenuItemElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMetaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMeterElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlModElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlObjectElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOptGroupElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOptionElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOptionsCollection": [ + "HtmlCollection" + ], + "HtmlOutputElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlParagraphElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlParamElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlPictureElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlPreElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlProgressElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlQuoteElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlScriptElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSelectElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSlotElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSourceElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSpanElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlStyleElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableCaptionElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableCellElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableColElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableRowElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableSectionElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTemplateElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTextAreaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTimeElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTitleElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTrackElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlUListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlUnknownElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlVideoElement": [ + "Element", + "EventTarget", + "HtmlElement", + "HtmlMediaElement", + "Node" + ], + "HttpConnDict": [], + "HttpConnInfo": [], + "HttpConnectionElement": [], + "IdbCursor": [], + "IdbCursorDirection": [], + "IdbCursorWithValue": [ + "IdbCursor" + ], + "IdbDatabase": [ + "EventTarget" + ], + "IdbFactory": [], + "IdbFileHandle": [ + "EventTarget" + ], + "IdbFileMetadataParameters": [], + "IdbFileRequest": [ + "DomRequest", + "EventTarget" + ], + "IdbIndex": [], + "IdbIndexParameters": [], + "IdbKeyRange": [], + "IdbLocaleAwareKeyRange": [ + "IdbKeyRange" + ], + "IdbMutableFile": [ + "EventTarget" + ], + "IdbObjectStore": [], + "IdbObjectStoreParameters": [], + "IdbOpenDbOptions": [], + "IdbOpenDbRequest": [ + "EventTarget", + "IdbRequest" + ], + "IdbRequest": [ + "EventTarget" + ], + "IdbRequestReadyState": [], + "IdbTransaction": [ + "EventTarget" + ], + "IdbTransactionDurability": [], + "IdbTransactionMode": [], + "IdbTransactionOptions": [], + "IdbVersionChangeEvent": [ + "Event" + ], + "IdbVersionChangeEventInit": [], + "IdleDeadline": [], + "IdleRequestOptions": [], + "IirFilterNode": [ + "AudioNode", + "EventTarget" + ], + "IirFilterOptions": [], + "ImageBitmap": [], + "ImageBitmapOptions": [], + "ImageBitmapRenderingContext": [], + "ImageCapture": [], + "ImageCaptureError": [], + "ImageCaptureErrorEvent": [ + "Event" + ], + "ImageCaptureErrorEventInit": [], + "ImageData": [], + "ImageDecodeOptions": [], + "ImageDecodeResult": [], + "ImageDecoder": [], + "ImageDecoderInit": [], + "ImageEncodeOptions": [], + "ImageOrientation": [], + "ImageTrack": [ + "EventTarget" + ], + "ImageTrackList": [], + "InputDeviceInfo": [ + "MediaDeviceInfo" + ], + "InputEvent": [ + "Event", + "UiEvent" + ], + "InputEventInit": [], + "IntersectionObserver": [], + "IntersectionObserverEntry": [], + "IntersectionObserverEntryInit": [], + "IntersectionObserverInit": [], + "IntlUtils": [], + "IsInputPendingOptions": [], + "IterableKeyAndValueResult": [], + "IterableKeyOrValueResult": [], + "IterationCompositeOperation": [], + "JsonWebKey": [], + "KeyAlgorithm": [], + "KeyEvent": [], + "KeyFrameRequestEvent": [ + "Event" + ], + "KeyIdsInitData": [], + "KeyboardEvent": [ + "Event", + "UiEvent" + ], + "KeyboardEventInit": [], + "KeyframeAnimationOptions": [], + "KeyframeEffect": [ + "AnimationEffect" + ], + "KeyframeEffectOptions": [], + "L10nElement": [], + "L10nValue": [], + "LargeBlobSupport": [], + "LatencyMode": [], + "LifecycleCallbacks": [], + "LineAlignSetting": [], + "ListBoxObject": [], + "LocalMediaStream": [ + "EventTarget", + "MediaStream" + ], + "LocaleInfo": [], + "Location": [], + "Lock": [], + "LockInfo": [], + "LockManager": [], + "LockManagerSnapshot": [], + "LockMode": [], + "LockOptions": [], + "MathMlElement": [ + "Element", + "EventTarget", + "Node" + ], + "MediaCapabilities": [], + "MediaCapabilitiesInfo": [], + "MediaConfiguration": [], + "MediaDecodingConfiguration": [], + "MediaDecodingType": [], + "MediaDeviceInfo": [], + "MediaDeviceKind": [], + "MediaDevices": [ + "EventTarget" + ], + "MediaElementAudioSourceNode": [ + "AudioNode", + "EventTarget" + ], + "MediaElementAudioSourceOptions": [], + "MediaEncodingConfiguration": [], + "MediaEncodingType": [], + "MediaEncryptedEvent": [ + "Event" + ], + "MediaError": [], + "MediaImage": [], + "MediaKeyError": [ + "Event" + ], + "MediaKeyMessageEvent": [ + "Event" + ], + "MediaKeyMessageEventInit": [], + "MediaKeyMessageType": [], + "MediaKeyNeededEventInit": [], + "MediaKeySession": [ + "EventTarget" + ], + "MediaKeySessionType": [], + "MediaKeyStatus": [], + "MediaKeyStatusMap": [], + "MediaKeySystemAccess": [], + "MediaKeySystemConfiguration": [], + "MediaKeySystemMediaCapability": [], + "MediaKeySystemStatus": [], + "MediaKeys": [], + "MediaKeysPolicy": [], + "MediaKeysRequirement": [], + "MediaList": [], + "MediaMetadata": [], + "MediaMetadataInit": [], + "MediaPositionState": [], + "MediaQueryList": [ + "EventTarget" + ], + "MediaQueryListEvent": [ + "Event" + ], + "MediaQueryListEventInit": [], + "MediaRecorder": [ + "EventTarget" + ], + "MediaRecorderErrorEvent": [ + "Event" + ], + "MediaRecorderErrorEventInit": [], + "MediaRecorderOptions": [], + "MediaSession": [], + "MediaSessionAction": [], + "MediaSessionActionDetails": [], + "MediaSessionPlaybackState": [], + "MediaSource": [ + "EventTarget" + ], + "MediaSourceEndOfStreamError": [], + "MediaSourceEnum": [], + "MediaSourceReadyState": [], + "MediaStream": [ + "EventTarget" + ], + "MediaStreamAudioDestinationNode": [ + "AudioNode", + "EventTarget" + ], + "MediaStreamAudioSourceNode": [ + "AudioNode", + "EventTarget" + ], + "MediaStreamAudioSourceOptions": [], + "MediaStreamConstraints": [], + "MediaStreamError": [], + "MediaStreamEvent": [ + "Event" + ], + "MediaStreamEventInit": [], + "MediaStreamTrack": [ + "EventTarget" + ], + "MediaStreamTrackEvent": [ + "Event" + ], + "MediaStreamTrackEventInit": [], + "MediaStreamTrackGenerator": [ + "EventTarget", + "MediaStreamTrack" + ], + "MediaStreamTrackGeneratorInit": [], + "MediaStreamTrackProcessor": [], + "MediaStreamTrackProcessorInit": [], + "MediaStreamTrackState": [], + "MediaTrackCapabilities": [], + "MediaTrackConstraintSet": [], + "MediaTrackConstraints": [], + "MediaTrackSettings": [], + "MediaTrackSupportedConstraints": [], + "MemoryAttribution": [], + "MemoryAttributionContainer": [], + "MemoryBreakdownEntry": [], + "MemoryMeasurement": [], + "MessageChannel": [], + "MessageEvent": [ + "Event" + ], + "MessageEventInit": [], + "MessagePort": [ + "EventTarget" + ], + "MidiAccess": [ + "EventTarget" + ], + "MidiConnectionEvent": [ + "Event" + ], + "MidiConnectionEventInit": [], + "MidiInput": [ + "EventTarget", + "MidiPort" + ], + "MidiInputMap": [], + "MidiMessageEvent": [ + "Event" + ], + "MidiMessageEventInit": [], + "MidiOptions": [], + "MidiOutput": [ + "EventTarget", + "MidiPort" + ], + "MidiOutputMap": [], + "MidiPort": [ + "EventTarget" + ], + "MidiPortConnectionState": [], + "MidiPortDeviceState": [], + "MidiPortType": [], + "MimeType": [], + "MimeTypeArray": [], + "MouseEvent": [ + "Event", + "UiEvent" + ], + "MouseEventInit": [], + "MouseScrollEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "MozDebug": [], + "MutationEvent": [ + "Event" + ], + "MutationObserver": [], + "MutationObserverInit": [], + "MutationObservingInfo": [], + "MutationRecord": [], + "NamedNodeMap": [], + "NativeOsFileReadOptions": [], + "NativeOsFileWriteAtomicOptions": [], + "NavigationType": [], + "Navigator": [], + "NavigatorAutomationInformation": [], + "NavigatorUaBrandVersion": [], + "NavigatorUaData": [], + "NetworkCommandOptions": [], + "NetworkInformation": [ + "EventTarget" + ], + "NetworkResultOptions": [], + "Node": [ + "EventTarget" + ], + "NodeFilter": [], + "NodeIterator": [], + "NodeList": [], + "Notification": [ + "EventTarget" + ], + "NotificationAction": [], + "NotificationDirection": [], + "NotificationEvent": [ + "Event", + "ExtendableEvent" + ], + "NotificationEventInit": [], + "NotificationOptions": [], + "NotificationPermission": [], + "ObserverCallback": [], + "OesElementIndexUint": [], + "OesStandardDerivatives": [], + "OesTextureFloat": [], + "OesTextureFloatLinear": [], + "OesTextureHalfFloat": [], + "OesTextureHalfFloatLinear": [], + "OesVertexArrayObject": [], + "OfflineAudioCompletionEvent": [ + "Event" + ], + "OfflineAudioCompletionEventInit": [], + "OfflineAudioContext": [ + "BaseAudioContext", + "EventTarget" + ], + "OfflineAudioContextOptions": [], + "OfflineResourceList": [ + "EventTarget" + ], + "OffscreenCanvas": [ + "EventTarget" + ], + "OffscreenCanvasRenderingContext2d": [], + "OpenFilePickerOptions": [], + "OpenWindowEventDetail": [], + "OptionalEffectTiming": [], + "OrientationLockType": [], + "OrientationType": [], + "OscillatorNode": [ + "AudioNode", + "AudioScheduledSourceNode", + "EventTarget" + ], + "OscillatorOptions": [], + "OscillatorType": [], + "OverSampleType": [], + "OvrMultiview2": [], + "PageTransitionEvent": [ + "Event" + ], + "PageTransitionEventInit": [], + "PaintRequest": [], + "PaintRequestList": [], + "PaintWorkletGlobalScope": [ + "WorkletGlobalScope" + ], + "PannerNode": [ + "AudioNode", + "EventTarget" + ], + "PannerOptions": [], + "PanningModelType": [], + "ParityType": [], + "Path2d": [], + "PaymentAddress": [], + "PaymentComplete": [], + "PaymentMethodChangeEvent": [ + "Event", + "PaymentRequestUpdateEvent" + ], + "PaymentMethodChangeEventInit": [], + "PaymentRequestUpdateEvent": [ + "Event" + ], + "PaymentRequestUpdateEventInit": [], + "PaymentResponse": [], + "Pbkdf2Params": [], + "PcImplIceConnectionState": [], + "PcImplIceGatheringState": [], + "PcImplSignalingState": [], + "PcObserverStateType": [], + "Performance": [ + "EventTarget" + ], + "PerformanceEntry": [], + "PerformanceEntryEventInit": [], + "PerformanceEntryFilterOptions": [], + "PerformanceMark": [ + "PerformanceEntry" + ], + "PerformanceMeasure": [ + "PerformanceEntry" + ], + "PerformanceNavigation": [], + "PerformanceNavigationTiming": [ + "PerformanceEntry", + "PerformanceResourceTiming" + ], + "PerformanceObserver": [], + "PerformanceObserverEntryList": [], + "PerformanceObserverInit": [], + "PerformanceResourceTiming": [ + "PerformanceEntry" + ], + "PerformanceServerTiming": [], + "PerformanceTiming": [], + "PeriodicWave": [], + "PeriodicWaveConstraints": [], + "PeriodicWaveOptions": [], + "PermissionDescriptor": [], + "PermissionName": [], + "PermissionState": [], + "PermissionStatus": [ + "EventTarget" + ], + "Permissions": [], + "PlaneLayout": [], + "PlaybackDirection": [], + "Plugin": [], + "PluginArray": [], + "PluginCrashedEventInit": [], + "PointerEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "PointerEventInit": [], + "PopStateEvent": [ + "Event" + ], + "PopStateEventInit": [], + "PopupBlockedEvent": [ + "Event" + ], + "PopupBlockedEventInit": [], + "Position": [], + "PositionAlignSetting": [], + "PositionError": [], + "PositionOptions": [], + "PremultiplyAlpha": [], + "Presentation": [], + "PresentationAvailability": [ + "EventTarget" + ], + "PresentationConnection": [ + "EventTarget" + ], + "PresentationConnectionAvailableEvent": [ + "Event" + ], + "PresentationConnectionAvailableEventInit": [], + "PresentationConnectionBinaryType": [], + "PresentationConnectionCloseEvent": [ + "Event" + ], + "PresentationConnectionCloseEventInit": [], + "PresentationConnectionClosedReason": [], + "PresentationConnectionList": [ + "EventTarget" + ], + "PresentationConnectionState": [], + "PresentationReceiver": [], + "PresentationRequest": [ + "EventTarget" + ], + "PresentationStyle": [], + "ProcessingInstruction": [ + "CharacterData", + "EventTarget", + "Node" + ], + "ProfileTimelineLayerRect": [], + "ProfileTimelineMarker": [], + "ProfileTimelineMessagePortOperationType": [], + "ProfileTimelineStackFrame": [], + "ProfileTimelineWorkerOperationType": [], + "ProgressEvent": [ + "Event" + ], + "ProgressEventInit": [], + "PromiseNativeHandler": [], + "PromiseRejectionEvent": [ + "Event" + ], + "PromiseRejectionEventInit": [], + "PublicKeyCredential": [ + "Credential" + ], + "PublicKeyCredentialCreationOptions": [], + "PublicKeyCredentialCreationOptionsJson": [], + "PublicKeyCredentialDescriptor": [], + "PublicKeyCredentialDescriptorJson": [], + "PublicKeyCredentialEntity": [], + "PublicKeyCredentialHints": [], + "PublicKeyCredentialParameters": [], + "PublicKeyCredentialRequestOptions": [], + "PublicKeyCredentialRequestOptionsJson": [], + "PublicKeyCredentialRpEntity": [], + "PublicKeyCredentialType": [], + "PublicKeyCredentialUserEntity": [], + "PublicKeyCredentialUserEntityJson": [], + "PushEncryptionKeyName": [], + "PushEvent": [ + "Event", + "ExtendableEvent" + ], + "PushEventInit": [], + "PushManager": [], + "PushMessageData": [], + "PushPermissionState": [], + "PushSubscription": [], + "PushSubscriptionInit": [], + "PushSubscriptionJson": [], + "PushSubscriptionKeys": [], + "PushSubscriptionOptions": [], + "PushSubscriptionOptionsInit": [], + "QueryOptions": [], + "QueuingStrategy": [], + "QueuingStrategyInit": [], + "RadioNodeList": [ + "NodeList" + ], + "Range": [], + "RcwnPerfStats": [], + "RcwnStatus": [], + "ReadableByteStreamController": [], + "ReadableStream": [], + "ReadableStreamByobReader": [], + "ReadableStreamByobRequest": [], + "ReadableStreamDefaultController": [], + "ReadableStreamDefaultReader": [], + "ReadableStreamGetReaderOptions": [], + "ReadableStreamIteratorOptions": [], + "ReadableStreamReadResult": [], + "ReadableStreamReaderMode": [], + "ReadableStreamType": [], + "ReadableWritablePair": [], + "RecordingState": [], + "ReferrerPolicy": [], + "RegisterRequest": [], + "RegisterResponse": [], + "RegisteredKey": [], + "RegistrationOptions": [], + "RegistrationResponseJson": [], + "Request": [], + "RequestCache": [], + "RequestCredentials": [], + "RequestDestination": [], + "RequestDeviceOptions": [], + "RequestInit": [], + "RequestMediaKeySystemAccessNotification": [], + "RequestMode": [], + "RequestRedirect": [], + "ResidentKeyRequirement": [], + "ResizeObserver": [], + "ResizeObserverBoxOptions": [], + "ResizeObserverEntry": [], + "ResizeObserverOptions": [], + "ResizeObserverSize": [], + "ResizeQuality": [], + "Response": [], + "ResponseInit": [], + "ResponseType": [], + "RsaHashedImportParams": [], + "RsaOaepParams": [], + "RsaOtherPrimesInfo": [], + "RsaPssParams": [], + "RtcAnswerOptions": [], + "RtcBundlePolicy": [], + "RtcCertificate": [], + "RtcCertificateExpiration": [], + "RtcCodecStats": [], + "RtcConfiguration": [], + "RtcDataChannel": [ + "EventTarget" + ], + "RtcDataChannelEvent": [ + "Event" + ], + "RtcDataChannelEventInit": [], + "RtcDataChannelInit": [], + "RtcDataChannelState": [], + "RtcDataChannelType": [], + "RtcDegradationPreference": [], + "RtcEncodedAudioFrame": [], + "RtcEncodedAudioFrameMetadata": [], + "RtcEncodedAudioFrameOptions": [], + "RtcEncodedVideoFrame": [], + "RtcEncodedVideoFrameMetadata": [], + "RtcEncodedVideoFrameOptions": [], + "RtcEncodedVideoFrameType": [], + "RtcFecParameters": [], + "RtcIceCandidate": [], + "RtcIceCandidateInit": [], + "RtcIceCandidatePairStats": [], + "RtcIceCandidateStats": [], + "RtcIceComponentStats": [], + "RtcIceConnectionState": [], + "RtcIceCredentialType": [], + "RtcIceGatheringState": [], + "RtcIceServer": [], + "RtcIceTransportPolicy": [], + "RtcIdentityAssertion": [], + "RtcIdentityAssertionResult": [], + "RtcIdentityProvider": [], + "RtcIdentityProviderDetails": [], + "RtcIdentityProviderOptions": [], + "RtcIdentityProviderRegistrar": [], + "RtcIdentityValidationResult": [], + "RtcInboundRtpStreamStats": [], + "RtcMediaStreamStats": [], + "RtcMediaStreamTrackStats": [], + "RtcOfferAnswerOptions": [], + "RtcOfferOptions": [], + "RtcOutboundRtpStreamStats": [], + "RtcPeerConnection": [ + "EventTarget" + ], + "RtcPeerConnectionIceErrorEvent": [ + "Event" + ], + "RtcPeerConnectionIceEvent": [ + "Event" + ], + "RtcPeerConnectionIceEventInit": [], + "RtcPeerConnectionState": [], + "RtcPriorityType": [], + "RtcRtcpParameters": [], + "RtcRtpCapabilities": [], + "RtcRtpCodecCapability": [], + "RtcRtpCodecParameters": [], + "RtcRtpContributingSource": [], + "RtcRtpEncodingParameters": [], + "RtcRtpHeaderExtensionCapability": [], + "RtcRtpHeaderExtensionParameters": [], + "RtcRtpParameters": [], + "RtcRtpReceiver": [], + "RtcRtpScriptTransform": [], + "RtcRtpScriptTransformer": [ + "EventTarget" + ], + "RtcRtpSender": [], + "RtcRtpSourceEntry": [], + "RtcRtpSourceEntryType": [], + "RtcRtpSynchronizationSource": [], + "RtcRtpTransceiver": [], + "RtcRtpTransceiverDirection": [], + "RtcRtpTransceiverInit": [], + "RtcRtxParameters": [], + "RtcSdpType": [], + "RtcSessionDescription": [], + "RtcSessionDescriptionInit": [], + "RtcSignalingState": [], + "RtcStats": [], + "RtcStatsIceCandidatePairState": [], + "RtcStatsIceCandidateType": [], + "RtcStatsReport": [], + "RtcStatsReportInternal": [], + "RtcStatsType": [], + "RtcTrackEvent": [ + "Event" + ], + "RtcTrackEventInit": [], + "RtcTransformEvent": [ + "Event" + ], + "RtcTransportStats": [], + "RtcdtmfSender": [ + "EventTarget" + ], + "RtcdtmfToneChangeEvent": [ + "Event" + ], + "RtcdtmfToneChangeEventInit": [], + "RtcrtpContributingSourceStats": [], + "RtcrtpStreamStats": [], + "SFrameTransform": [ + "EventTarget" + ], + "SFrameTransformErrorEvent": [ + "Event" + ], + "SFrameTransformErrorEventInit": [], + "SFrameTransformErrorEventType": [], + "SFrameTransformOptions": [], + "SFrameTransformRole": [], + "SaveFilePickerOptions": [], + "Scheduler": [], + "SchedulerPostTaskOptions": [], + "Scheduling": [], + "Screen": [ + "EventTarget" + ], + "ScreenColorGamut": [], + "ScreenLuminance": [], + "ScreenOrientation": [ + "EventTarget" + ], + "ScriptProcessorNode": [ + "AudioNode", + "EventTarget" + ], + "ScrollAreaEvent": [ + "Event", + "UiEvent" + ], + "ScrollBehavior": [], + "ScrollBoxObject": [], + "ScrollIntoViewOptions": [], + "ScrollLogicalPosition": [], + "ScrollOptions": [], + "ScrollRestoration": [], + "ScrollSetting": [], + "ScrollState": [], + "ScrollToOptions": [], + "ScrollViewChangeEventInit": [], + "SecurityPolicyViolationEvent": [ + "Event" + ], + "SecurityPolicyViolationEventDisposition": [], + "SecurityPolicyViolationEventInit": [], + "Selection": [], + "SelectionMode": [], + "Serial": [ + "EventTarget" + ], + "SerialInputSignals": [], + "SerialOptions": [], + "SerialOutputSignals": [], + "SerialPort": [ + "EventTarget" + ], + "SerialPortFilter": [], + "SerialPortInfo": [], + "SerialPortRequestOptions": [], + "ServerSocketOptions": [], + "ServiceWorker": [ + "EventTarget" + ], + "ServiceWorkerContainer": [ + "EventTarget" + ], + "ServiceWorkerGlobalScope": [ + "EventTarget", + "WorkerGlobalScope" + ], + "ServiceWorkerRegistration": [ + "EventTarget" + ], + "ServiceWorkerState": [], + "ServiceWorkerUpdateViaCache": [], + "ShadowRoot": [ + "DocumentFragment", + "EventTarget", + "Node" + ], + "ShadowRootInit": [], + "ShadowRootMode": [], + "ShareData": [], + "SharedWorker": [ + "EventTarget" + ], + "SharedWorkerGlobalScope": [ + "EventTarget", + "WorkerGlobalScope" + ], + "SignResponse": [], + "SocketElement": [], + "SocketOptions": [], + "SocketReadyState": [], + "SocketsDict": [], + "SourceBuffer": [ + "EventTarget" + ], + "SourceBufferAppendMode": [], + "SourceBufferList": [ + "EventTarget" + ], + "SpeechGrammar": [], + "SpeechGrammarList": [], + "SpeechRecognition": [ + "EventTarget" + ], + "SpeechRecognitionAlternative": [], + "SpeechRecognitionError": [ + "Event" + ], + "SpeechRecognitionErrorCode": [], + "SpeechRecognitionErrorInit": [], + "SpeechRecognitionEvent": [ + "Event" + ], + "SpeechRecognitionEventInit": [], + "SpeechRecognitionResult": [], + "SpeechRecognitionResultList": [], + "SpeechSynthesis": [ + "EventTarget" + ], + "SpeechSynthesisErrorCode": [], + "SpeechSynthesisErrorEvent": [ + "Event", + "SpeechSynthesisEvent" + ], + "SpeechSynthesisErrorEventInit": [], + "SpeechSynthesisEvent": [ + "Event" + ], + "SpeechSynthesisEventInit": [], + "SpeechSynthesisUtterance": [ + "EventTarget" + ], + "SpeechSynthesisVoice": [], + "StereoPannerNode": [ + "AudioNode", + "EventTarget" + ], + "StereoPannerOptions": [], + "Storage": [], + "StorageEstimate": [], + "StorageEvent": [ + "Event" + ], + "StorageEventInit": [], + "StorageManager": [], + "StorageType": [], + "StreamPipeOptions": [], + "StyleRuleChangeEventInit": [], + "StyleSheet": [], + "StyleSheetApplicableStateChangeEventInit": [], + "StyleSheetChangeEventInit": [], + "StyleSheetList": [], + "SubmitEvent": [ + "Event" + ], + "SubmitEventInit": [], + "SubtleCrypto": [], + "SupportedType": [], + "SvcOutputMetadata": [], + "SvgAngle": [], + "SvgAnimateElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgAnimateMotionElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgAnimateTransformElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgAnimatedAngle": [], + "SvgAnimatedBoolean": [], + "SvgAnimatedEnumeration": [], + "SvgAnimatedInteger": [], + "SvgAnimatedLength": [], + "SvgAnimatedLengthList": [], + "SvgAnimatedNumber": [], + "SvgAnimatedNumberList": [], + "SvgAnimatedPreserveAspectRatio": [], + "SvgAnimatedRect": [], + "SvgAnimatedString": [], + "SvgAnimatedTransformList": [], + "SvgAnimationElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgBoundingBoxOptions": [], + "SvgCircleElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgClipPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgComponentTransferFunctionElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgDefsElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgDescElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgElement": [ + "Element", + "EventTarget", + "Node" + ], + "SvgEllipseElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgFilterElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgForeignObjectElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgGeometryElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgGradientElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgGraphicsElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgImageElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgLength": [], + "SvgLengthList": [], + "SvgLineElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgLinearGradientElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGradientElement" + ], + "SvgMarkerElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgMaskElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgMatrix": [], + "SvgMetadataElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgNumber": [], + "SvgNumberList": [], + "SvgPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgPathSeg": [], + "SvgPathSegArcAbs": [ + "SvgPathSeg" + ], + "SvgPathSegArcRel": [ + "SvgPathSeg" + ], + "SvgPathSegClosePath": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicRel": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicSmoothAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicSmoothRel": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticRel": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticSmoothAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticSmoothRel": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoAbs": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoHorizontalAbs": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoHorizontalRel": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoRel": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoVerticalAbs": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoVerticalRel": [ + "SvgPathSeg" + ], + "SvgPathSegList": [], + "SvgPathSegMovetoAbs": [ + "SvgPathSeg" + ], + "SvgPathSegMovetoRel": [ + "SvgPathSeg" + ], + "SvgPatternElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgPoint": [], + "SvgPointList": [], + "SvgPolygonElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgPolylineElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgPreserveAspectRatio": [], + "SvgRadialGradientElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGradientElement" + ], + "SvgRect": [], + "SvgRectElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgScriptElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgSetElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgStopElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgStringList": [], + "SvgStyleElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgSwitchElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgSymbolElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgTextContentElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgTextElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement", + "SvgTextPositioningElement" + ], + "SvgTextPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement" + ], + "SvgTextPositioningElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement" + ], + "SvgTitleElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgTransform": [], + "SvgTransformList": [], + "SvgUnitTypes": [], + "SvgUseElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgViewElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgZoomAndPan": [], + "SvgaElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgfeBlendElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeColorMatrixElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeComponentTransferElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeCompositeElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeConvolveMatrixElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDiffuseLightingElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDisplacementMapElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDistantLightElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDropShadowElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeFloodElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeFuncAElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeFuncBElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeFuncGElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeFuncRElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeGaussianBlurElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeImageElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeMergeElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeMergeNodeElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeMorphologyElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeOffsetElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfePointLightElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeSpecularLightingElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeSpotLightElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeTileElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeTurbulenceElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvggElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgmPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgsvgElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgtSpanElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement", + "SvgTextPositioningElement" + ], + "TaskController": [ + "AbortController" + ], + "TaskControllerInit": [], + "TaskPriority": [], + "TaskPriorityChangeEvent": [ + "Event" + ], + "TaskPriorityChangeEventInit": [], + "TaskSignal": [ + "AbortSignal", + "EventTarget" + ], + "TaskSignalAnyInit": [], + "TcpReadyState": [], + "TcpServerSocket": [ + "EventTarget" + ], + "TcpServerSocketEvent": [ + "Event" + ], + "TcpServerSocketEventInit": [], + "TcpSocket": [ + "EventTarget" + ], + "TcpSocketBinaryType": [], + "TcpSocketErrorEvent": [ + "Event" + ], + "TcpSocketErrorEventInit": [], + "TcpSocketEvent": [ + "Event" + ], + "TcpSocketEventInit": [], + "Text": [ + "CharacterData", + "EventTarget", + "Node" + ], + "TextDecodeOptions": [], + "TextDecoder": [], + "TextDecoderOptions": [], + "TextEncoder": [], + "TextMetrics": [], + "TextTrack": [ + "EventTarget" + ], + "TextTrackCue": [ + "EventTarget" + ], + "TextTrackCueList": [], + "TextTrackKind": [], + "TextTrackList": [ + "EventTarget" + ], + "TextTrackMode": [], + "TimeEvent": [ + "Event" + ], + "TimeRanges": [], + "ToggleEvent": [ + "Event" + ], + "ToggleEventInit": [], + "TokenBinding": [], + "TokenBindingStatus": [], + "Touch": [], + "TouchEvent": [ + "Event", + "UiEvent" + ], + "TouchEventInit": [], + "TouchInit": [], + "TouchList": [], + "TrackEvent": [ + "Event" + ], + "TrackEventInit": [], + "TransformStream": [], + "TransformStreamDefaultController": [], + "Transformer": [], + "TransitionEvent": [ + "Event" + ], + "TransitionEventInit": [], + "Transport": [], + "TreeBoxObject": [], + "TreeCellInfo": [], + "TreeView": [], + "TreeWalker": [], + "U2f": [], + "U2fClientData": [], + "ULongRange": [], + "UaDataValues": [], + "UaLowEntropyJson": [], + "UdpMessageEventInit": [], + "UdpOptions": [], + "UiEvent": [ + "Event" + ], + "UiEventInit": [], + "UnderlyingSink": [], + "UnderlyingSource": [], + "Url": [], + "UrlSearchParams": [], + "Usb": [ + "EventTarget" + ], + "UsbAlternateInterface": [], + "UsbConfiguration": [], + "UsbConnectionEvent": [ + "Event" + ], + "UsbConnectionEventInit": [], + "UsbControlTransferParameters": [], + "UsbDevice": [], + "UsbDeviceFilter": [], + "UsbDeviceRequestOptions": [], + "UsbDirection": [], + "UsbEndpoint": [], + "UsbEndpointType": [], + "UsbInTransferResult": [], + "UsbInterface": [], + "UsbIsochronousInTransferPacket": [], + "UsbIsochronousInTransferResult": [], + "UsbIsochronousOutTransferPacket": [], + "UsbIsochronousOutTransferResult": [], + "UsbOutTransferResult": [], + "UsbPermissionDescriptor": [], + "UsbPermissionResult": [ + "EventTarget", + "PermissionStatus" + ], + "UsbPermissionStorage": [], + "UsbRecipient": [], + "UsbRequestType": [], + "UsbTransferStatus": [], + "UserActivation": [], + "UserProximityEvent": [ + "Event" + ], + "UserProximityEventInit": [], + "UserVerificationRequirement": [], + "ValidityState": [], + "ValueEvent": [ + "Event" + ], + "ValueEventInit": [], + "VideoColorPrimaries": [], + "VideoColorSpace": [], + "VideoColorSpaceInit": [], + "VideoConfiguration": [], + "VideoDecoder": [], + "VideoDecoderConfig": [], + "VideoDecoderInit": [], + "VideoDecoderSupport": [], + "VideoEncoder": [], + "VideoEncoderConfig": [], + "VideoEncoderEncodeOptions": [], + "VideoEncoderInit": [], + "VideoEncoderSupport": [], + "VideoFacingModeEnum": [], + "VideoFrame": [], + "VideoFrameBufferInit": [], + "VideoFrameCopyToOptions": [], + "VideoFrameInit": [], + "VideoMatrixCoefficients": [], + "VideoPixelFormat": [], + "VideoPlaybackQuality": [], + "VideoStreamTrack": [ + "EventTarget", + "MediaStreamTrack" + ], + "VideoTrack": [], + "VideoTrackList": [ + "EventTarget" + ], + "VideoTransferCharacteristics": [], + "ViewTransition": [], + "VisibilityState": [], + "VisualViewport": [ + "EventTarget" + ], + "VoidCallback": [], + "VrDisplay": [ + "EventTarget" + ], + "VrDisplayCapabilities": [], + "VrEye": [], + "VrEyeParameters": [], + "VrFieldOfView": [], + "VrFrameData": [], + "VrLayer": [], + "VrMockController": [], + "VrMockDisplay": [], + "VrPose": [], + "VrServiceTest": [], + "VrStageParameters": [], + "VrSubmitFrameResult": [], + "VttCue": [ + "EventTarget", + "TextTrackCue" + ], + "VttRegion": [], + "WakeLock": [], + "WakeLockSentinel": [ + "EventTarget" + ], + "WakeLockType": [], + "WatchAdvertisementsOptions": [], + "WaveShaperNode": [ + "AudioNode", + "EventTarget" + ], + "WaveShaperOptions": [], + "WebGl2RenderingContext": [], + "WebGlActiveInfo": [], + "WebGlBuffer": [], + "WebGlContextAttributes": [], + "WebGlContextEvent": [ + "Event" + ], + "WebGlContextEventInit": [], + "WebGlFramebuffer": [], + "WebGlPowerPreference": [], + "WebGlProgram": [], + "WebGlQuery": [], + "WebGlRenderbuffer": [], + "WebGlRenderingContext": [], + "WebGlSampler": [], + "WebGlShader": [], + "WebGlShaderPrecisionFormat": [], + "WebGlSync": [], + "WebGlTexture": [], + "WebGlTransformFeedback": [], + "WebGlUniformLocation": [], + "WebGlVertexArrayObject": [], + "WebKitCssMatrix": [ + "DomMatrix", + "DomMatrixReadOnly" + ], + "WebSocket": [ + "EventTarget" + ], + "WebSocketDict": [], + "WebSocketElement": [], + "WebTransport": [], + "WebTransportBidirectionalStream": [], + "WebTransportCloseInfo": [], + "WebTransportCongestionControl": [], + "WebTransportDatagramDuplexStream": [], + "WebTransportDatagramStats": [], + "WebTransportError": [ + "DomException" + ], + "WebTransportErrorOptions": [], + "WebTransportErrorSource": [], + "WebTransportHash": [], + "WebTransportOptions": [], + "WebTransportReceiveStream": [ + "ReadableStream" + ], + "WebTransportReceiveStreamStats": [], + "WebTransportReliabilityMode": [], + "WebTransportSendStream": [ + "WritableStream" + ], + "WebTransportSendStreamOptions": [], + "WebTransportSendStreamStats": [], + "WebTransportStats": [], + "WebglColorBufferFloat": [], + "WebglCompressedTextureAstc": [], + "WebglCompressedTextureAtc": [], + "WebglCompressedTextureEtc": [], + "WebglCompressedTextureEtc1": [], + "WebglCompressedTexturePvrtc": [], + "WebglCompressedTextureS3tc": [], + "WebglCompressedTextureS3tcSrgb": [], + "WebglDebugRendererInfo": [], + "WebglDebugShaders": [], + "WebglDepthTexture": [], + "WebglDrawBuffers": [], + "WebglLoseContext": [], + "WebglMultiDraw": [], + "WellKnownDirectory": [], + "WgslLanguageFeatures": [], + "WheelEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "WheelEventInit": [], + "WidevineCdmManifest": [], + "Window": [ + "EventTarget" + ], + "WindowClient": [ + "Client" + ], + "Worker": [ + "EventTarget" + ], + "WorkerDebuggerGlobalScope": [ + "EventTarget" + ], + "WorkerGlobalScope": [ + "EventTarget" + ], + "WorkerLocation": [], + "WorkerNavigator": [], + "WorkerOptions": [], + "WorkerType": [], + "Worklet": [], + "WorkletGlobalScope": [], + "WorkletOptions": [], + "WritableStream": [], + "WritableStreamDefaultController": [], + "WritableStreamDefaultWriter": [], + "WriteCommandType": [], + "WriteParams": [], + "XPathExpression": [], + "XPathNsResolver": [], + "XPathResult": [], + "XmlDocument": [ + "Document", + "EventTarget", + "Node" + ], + "XmlHttpRequest": [ + "EventTarget", + "XmlHttpRequestEventTarget" + ], + "XmlHttpRequestEventTarget": [ + "EventTarget" + ], + "XmlHttpRequestResponseType": [], + "XmlHttpRequestUpload": [ + "EventTarget", + "XmlHttpRequestEventTarget" + ], + "XmlSerializer": [], + "XrBoundedReferenceSpace": [ + "EventTarget", + "XrReferenceSpace", + "XrSpace" + ], + "XrEye": [], + "XrFrame": [], + "XrHand": [], + "XrHandJoint": [], + "XrHandedness": [], + "XrInputSource": [], + "XrInputSourceArray": [], + "XrInputSourceEvent": [ + "Event" + ], + "XrInputSourceEventInit": [], + "XrInputSourcesChangeEvent": [ + "Event" + ], + "XrInputSourcesChangeEventInit": [], + "XrJointPose": [ + "XrPose" + ], + "XrJointSpace": [ + "EventTarget", + "XrSpace" + ], + "XrLayer": [ + "EventTarget" + ], + "XrPermissionDescriptor": [], + "XrPermissionStatus": [ + "EventTarget", + "PermissionStatus" + ], + "XrPose": [], + "XrReferenceSpace": [ + "EventTarget", + "XrSpace" + ], + "XrReferenceSpaceEvent": [ + "Event" + ], + "XrReferenceSpaceEventInit": [], + "XrReferenceSpaceType": [], + "XrRenderState": [], + "XrRenderStateInit": [], + "XrRigidTransform": [], + "XrSession": [ + "EventTarget" + ], + "XrSessionEvent": [ + "Event" + ], + "XrSessionEventInit": [], + "XrSessionInit": [], + "XrSessionMode": [], + "XrSessionSupportedPermissionDescriptor": [], + "XrSpace": [ + "EventTarget" + ], + "XrSystem": [ + "EventTarget" + ], + "XrTargetRayMode": [], + "XrView": [], + "XrViewerPose": [ + "XrPose" + ], + "XrViewport": [], + "XrVisibilityState": [], + "XrWebGlLayer": [ + "EventTarget", + "XrLayer" + ], + "XrWebGlLayerInit": [], + "XsltProcessor": [], + "console": [], + "css": [], + "default": [ + "std" + ], + "gpu_buffer_usage": [], + "gpu_color_write": [], + "gpu_map_mode": [], + "gpu_shader_stage": [], + "gpu_texture_usage": [], + "std": [ + "wasm-bindgen/std", + "js-sys/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.77/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg=web_sys_unstable_apis" + ] + } + } + }, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", + "homepage": "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html", + "documentation": "https://rustwasm.github.io/wasm-bindgen/api/web_sys/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "webpki-roots", + "version": "0.26.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", + "license": "CDLA-Permissive-2.0", + "license_file": null, + "description": "Mozilla's CA root certificates for use with webpki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "rt-multi-thread" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-webpki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.102", + "kind": "dev", + "rename": "webpki", + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "x509-parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yasna", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "webpki_roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "codegen", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/tests/codegen.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "verify", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/tests/verify.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/webpki-roots", + "homepage": "https://github.com/rustls/webpki-roots", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "winapi-util", + "version": "0.1.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "A dumping ground for high level safe wrappers over windows-sys.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.48.0, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Storage_FileSystem", + "Win32_System_Console", + "Win32_System_SystemInformation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winapi_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winapi-util-0.1.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winapi-util-0.1.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-pc-windows-msvc" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "os::windows-apis", + "external-ffi-bindings" + ], + "keywords": [ + "windows", + "windows-sys", + "util", + "win" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/winapi-util", + "homepage": "https://github.com/BurntSushi/winapi-util", + "documentation": "https://docs.rs/winapi-util", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows-core", + "version": "0.61.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Core type support for COM and Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-implement", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.60.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-interface", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-link", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-result", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-strings", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-core-0.61.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "windows-result/std", + "windows-strings/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-core-0.61.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "windows-implement", + "version": "0.60.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The implement macro for the windows crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "parsing", + "proc-macro", + "printing", + "full", + "clone-impls" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "windows_implement", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-implement-0.60.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-implement-0.60.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "windows-interface", + "version": "0.59.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The interface macro for the windows crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "parsing", + "proc-macro", + "printing", + "full", + "clone-impls" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "windows_interface", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-interface-0.59.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-interface-0.59.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "windows-link", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Linking for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_link", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-link-0.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-link-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "windows-registry", + "version": "0.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.4.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Windows registry", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-result", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-strings", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.53.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_registry", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-registry-0.4.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "windows-result/std", + "windows-strings/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-registry-0.4.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "windows-result", + "version": "0.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Windows error handling", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-link", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_result", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-result-0.3.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-result-0.3.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "windows-strings", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Windows string types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-link", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_strings", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-strings-0.3.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-strings-0.3.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "windows-strings", + "version": "0.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Windows string types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-link", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_strings", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-strings-0.4.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-strings-0.4.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "windows-sys", + "version": "0.52.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Rust for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-sys-0.52.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "Wdk": [], + "Wdk_Foundation": [ + "Wdk" + ], + "Wdk_Graphics": [ + "Wdk" + ], + "Wdk_Graphics_Direct3D": [ + "Wdk_Graphics" + ], + "Wdk_Storage": [ + "Wdk" + ], + "Wdk_Storage_FileSystem": [ + "Wdk_Storage" + ], + "Wdk_Storage_FileSystem_Minifilters": [ + "Wdk_Storage_FileSystem" + ], + "Wdk_System": [ + "Wdk" + ], + "Wdk_System_IO": [ + "Wdk_System" + ], + "Wdk_System_OfflineRegistry": [ + "Wdk_System" + ], + "Wdk_System_Registry": [ + "Wdk_System" + ], + "Wdk_System_SystemInformation": [ + "Wdk_System" + ], + "Wdk_System_SystemServices": [ + "Wdk_System" + ], + "Wdk_System_Threading": [ + "Wdk_System" + ], + "Win32": [], + "Win32_Data": [ + "Win32" + ], + "Win32_Data_HtmlHelp": [ + "Win32_Data" + ], + "Win32_Data_RightsManagement": [ + "Win32_Data" + ], + "Win32_Devices": [ + "Win32" + ], + "Win32_Devices_AllJoyn": [ + "Win32_Devices" + ], + "Win32_Devices_BiometricFramework": [ + "Win32_Devices" + ], + "Win32_Devices_Bluetooth": [ + "Win32_Devices" + ], + "Win32_Devices_Communication": [ + "Win32_Devices" + ], + "Win32_Devices_DeviceAndDriverInstallation": [ + "Win32_Devices" + ], + "Win32_Devices_DeviceQuery": [ + "Win32_Devices" + ], + "Win32_Devices_Display": [ + "Win32_Devices" + ], + "Win32_Devices_Enumeration": [ + "Win32_Devices" + ], + "Win32_Devices_Enumeration_Pnp": [ + "Win32_Devices_Enumeration" + ], + "Win32_Devices_Fax": [ + "Win32_Devices" + ], + "Win32_Devices_HumanInterfaceDevice": [ + "Win32_Devices" + ], + "Win32_Devices_PortableDevices": [ + "Win32_Devices" + ], + "Win32_Devices_Properties": [ + "Win32_Devices" + ], + "Win32_Devices_Pwm": [ + "Win32_Devices" + ], + "Win32_Devices_Sensors": [ + "Win32_Devices" + ], + "Win32_Devices_SerialCommunication": [ + "Win32_Devices" + ], + "Win32_Devices_Tapi": [ + "Win32_Devices" + ], + "Win32_Devices_Usb": [ + "Win32_Devices" + ], + "Win32_Devices_WebServicesOnDevices": [ + "Win32_Devices" + ], + "Win32_Foundation": [ + "Win32" + ], + "Win32_Gaming": [ + "Win32" + ], + "Win32_Globalization": [ + "Win32" + ], + "Win32_Graphics": [ + "Win32" + ], + "Win32_Graphics_Dwm": [ + "Win32_Graphics" + ], + "Win32_Graphics_Gdi": [ + "Win32_Graphics" + ], + "Win32_Graphics_GdiPlus": [ + "Win32_Graphics" + ], + "Win32_Graphics_Hlsl": [ + "Win32_Graphics" + ], + "Win32_Graphics_OpenGL": [ + "Win32_Graphics" + ], + "Win32_Graphics_Printing": [ + "Win32_Graphics" + ], + "Win32_Graphics_Printing_PrintTicket": [ + "Win32_Graphics_Printing" + ], + "Win32_Management": [ + "Win32" + ], + "Win32_Management_MobileDeviceManagementRegistration": [ + "Win32_Management" + ], + "Win32_Media": [ + "Win32" + ], + "Win32_Media_Audio": [ + "Win32_Media" + ], + "Win32_Media_DxMediaObjects": [ + "Win32_Media" + ], + "Win32_Media_KernelStreaming": [ + "Win32_Media" + ], + "Win32_Media_Multimedia": [ + "Win32_Media" + ], + "Win32_Media_Streaming": [ + "Win32_Media" + ], + "Win32_Media_WindowsMediaFormat": [ + "Win32_Media" + ], + "Win32_NetworkManagement": [ + "Win32" + ], + "Win32_NetworkManagement_Dhcp": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Dns": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_InternetConnectionWizard": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_IpHelper": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Multicast": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Ndis": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_NetBios": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_NetManagement": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_NetShell": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_P2P": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_QoS": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Rras": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Snmp": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WNet": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WebDav": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WiFi": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WindowsConnectionManager": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WindowsFilteringPlatform": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WindowsFirewall": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WindowsNetworkVirtualization": [ + "Win32_NetworkManagement" + ], + "Win32_Networking": [ + "Win32" + ], + "Win32_Networking_ActiveDirectory": [ + "Win32_Networking" + ], + "Win32_Networking_Clustering": [ + "Win32_Networking" + ], + "Win32_Networking_HttpServer": [ + "Win32_Networking" + ], + "Win32_Networking_Ldap": [ + "Win32_Networking" + ], + "Win32_Networking_WebSocket": [ + "Win32_Networking" + ], + "Win32_Networking_WinHttp": [ + "Win32_Networking" + ], + "Win32_Networking_WinInet": [ + "Win32_Networking" + ], + "Win32_Networking_WinSock": [ + "Win32_Networking" + ], + "Win32_Networking_WindowsWebServices": [ + "Win32_Networking" + ], + "Win32_Security": [ + "Win32" + ], + "Win32_Security_AppLocker": [ + "Win32_Security" + ], + "Win32_Security_Authentication": [ + "Win32_Security" + ], + "Win32_Security_Authentication_Identity": [ + "Win32_Security_Authentication" + ], + "Win32_Security_Authorization": [ + "Win32_Security" + ], + "Win32_Security_Credentials": [ + "Win32_Security" + ], + "Win32_Security_Cryptography": [ + "Win32_Security" + ], + "Win32_Security_Cryptography_Catalog": [ + "Win32_Security_Cryptography" + ], + "Win32_Security_Cryptography_Certificates": [ + "Win32_Security_Cryptography" + ], + "Win32_Security_Cryptography_Sip": [ + "Win32_Security_Cryptography" + ], + "Win32_Security_Cryptography_UI": [ + "Win32_Security_Cryptography" + ], + "Win32_Security_DiagnosticDataQuery": [ + "Win32_Security" + ], + "Win32_Security_DirectoryServices": [ + "Win32_Security" + ], + "Win32_Security_EnterpriseData": [ + "Win32_Security" + ], + "Win32_Security_ExtensibleAuthenticationProtocol": [ + "Win32_Security" + ], + "Win32_Security_Isolation": [ + "Win32_Security" + ], + "Win32_Security_LicenseProtection": [ + "Win32_Security" + ], + "Win32_Security_NetworkAccessProtection": [ + "Win32_Security" + ], + "Win32_Security_WinTrust": [ + "Win32_Security" + ], + "Win32_Security_WinWlx": [ + "Win32_Security" + ], + "Win32_Storage": [ + "Win32" + ], + "Win32_Storage_Cabinets": [ + "Win32_Storage" + ], + "Win32_Storage_CloudFilters": [ + "Win32_Storage" + ], + "Win32_Storage_Compression": [ + "Win32_Storage" + ], + "Win32_Storage_DistributedFileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_FileHistory": [ + "Win32_Storage" + ], + "Win32_Storage_FileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_Imapi": [ + "Win32_Storage" + ], + "Win32_Storage_IndexServer": [ + "Win32_Storage" + ], + "Win32_Storage_InstallableFileSystems": [ + "Win32_Storage" + ], + "Win32_Storage_IscsiDisc": [ + "Win32_Storage" + ], + "Win32_Storage_Jet": [ + "Win32_Storage" + ], + "Win32_Storage_Nvme": [ + "Win32_Storage" + ], + "Win32_Storage_OfflineFiles": [ + "Win32_Storage" + ], + "Win32_Storage_OperationRecorder": [ + "Win32_Storage" + ], + "Win32_Storage_Packaging": [ + "Win32_Storage" + ], + "Win32_Storage_Packaging_Appx": [ + "Win32_Storage_Packaging" + ], + "Win32_Storage_ProjectedFileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_StructuredStorage": [ + "Win32_Storage" + ], + "Win32_Storage_Vhd": [ + "Win32_Storage" + ], + "Win32_Storage_Xps": [ + "Win32_Storage" + ], + "Win32_System": [ + "Win32" + ], + "Win32_System_AddressBook": [ + "Win32_System" + ], + "Win32_System_Antimalware": [ + "Win32_System" + ], + "Win32_System_ApplicationInstallationAndServicing": [ + "Win32_System" + ], + "Win32_System_ApplicationVerifier": [ + "Win32_System" + ], + "Win32_System_ClrHosting": [ + "Win32_System" + ], + "Win32_System_Com": [ + "Win32_System" + ], + "Win32_System_Com_Marshal": [ + "Win32_System_Com" + ], + "Win32_System_Com_StructuredStorage": [ + "Win32_System_Com" + ], + "Win32_System_Com_Urlmon": [ + "Win32_System_Com" + ], + "Win32_System_ComponentServices": [ + "Win32_System" + ], + "Win32_System_Console": [ + "Win32_System" + ], + "Win32_System_CorrelationVector": [ + "Win32_System" + ], + "Win32_System_DataExchange": [ + "Win32_System" + ], + "Win32_System_DeploymentServices": [ + "Win32_System" + ], + "Win32_System_DeveloperLicensing": [ + "Win32_System" + ], + "Win32_System_Diagnostics": [ + "Win32_System" + ], + "Win32_System_Diagnostics_Ceip": [ + "Win32_System_Diagnostics" + ], + "Win32_System_Diagnostics_Debug": [ + "Win32_System_Diagnostics" + ], + "Win32_System_Diagnostics_Debug_Extensions": [ + "Win32_System_Diagnostics_Debug" + ], + "Win32_System_Diagnostics_Etw": [ + "Win32_System_Diagnostics" + ], + "Win32_System_Diagnostics_ProcessSnapshotting": [ + "Win32_System_Diagnostics" + ], + "Win32_System_Diagnostics_ToolHelp": [ + "Win32_System_Diagnostics" + ], + "Win32_System_DistributedTransactionCoordinator": [ + "Win32_System" + ], + "Win32_System_Environment": [ + "Win32_System" + ], + "Win32_System_ErrorReporting": [ + "Win32_System" + ], + "Win32_System_EventCollector": [ + "Win32_System" + ], + "Win32_System_EventLog": [ + "Win32_System" + ], + "Win32_System_EventNotificationService": [ + "Win32_System" + ], + "Win32_System_GroupPolicy": [ + "Win32_System" + ], + "Win32_System_HostCompute": [ + "Win32_System" + ], + "Win32_System_HostComputeNetwork": [ + "Win32_System" + ], + "Win32_System_HostComputeSystem": [ + "Win32_System" + ], + "Win32_System_Hypervisor": [ + "Win32_System" + ], + "Win32_System_IO": [ + "Win32_System" + ], + "Win32_System_Iis": [ + "Win32_System" + ], + "Win32_System_Ioctl": [ + "Win32_System" + ], + "Win32_System_JobObjects": [ + "Win32_System" + ], + "Win32_System_Js": [ + "Win32_System" + ], + "Win32_System_Kernel": [ + "Win32_System" + ], + "Win32_System_LibraryLoader": [ + "Win32_System" + ], + "Win32_System_Mailslots": [ + "Win32_System" + ], + "Win32_System_Mapi": [ + "Win32_System" + ], + "Win32_System_Memory": [ + "Win32_System" + ], + "Win32_System_Memory_NonVolatile": [ + "Win32_System_Memory" + ], + "Win32_System_MessageQueuing": [ + "Win32_System" + ], + "Win32_System_MixedReality": [ + "Win32_System" + ], + "Win32_System_Ole": [ + "Win32_System" + ], + "Win32_System_PasswordManagement": [ + "Win32_System" + ], + "Win32_System_Performance": [ + "Win32_System" + ], + "Win32_System_Performance_HardwareCounterProfiling": [ + "Win32_System_Performance" + ], + "Win32_System_Pipes": [ + "Win32_System" + ], + "Win32_System_Power": [ + "Win32_System" + ], + "Win32_System_ProcessStatus": [ + "Win32_System" + ], + "Win32_System_Recovery": [ + "Win32_System" + ], + "Win32_System_Registry": [ + "Win32_System" + ], + "Win32_System_RemoteDesktop": [ + "Win32_System" + ], + "Win32_System_RemoteManagement": [ + "Win32_System" + ], + "Win32_System_RestartManager": [ + "Win32_System" + ], + "Win32_System_Restore": [ + "Win32_System" + ], + "Win32_System_Rpc": [ + "Win32_System" + ], + "Win32_System_Search": [ + "Win32_System" + ], + "Win32_System_Search_Common": [ + "Win32_System_Search" + ], + "Win32_System_SecurityCenter": [ + "Win32_System" + ], + "Win32_System_Services": [ + "Win32_System" + ], + "Win32_System_SetupAndMigration": [ + "Win32_System" + ], + "Win32_System_Shutdown": [ + "Win32_System" + ], + "Win32_System_StationsAndDesktops": [ + "Win32_System" + ], + "Win32_System_SubsystemForLinux": [ + "Win32_System" + ], + "Win32_System_SystemInformation": [ + "Win32_System" + ], + "Win32_System_SystemServices": [ + "Win32_System" + ], + "Win32_System_Threading": [ + "Win32_System" + ], + "Win32_System_Time": [ + "Win32_System" + ], + "Win32_System_TpmBaseServices": [ + "Win32_System" + ], + "Win32_System_UserAccessLogging": [ + "Win32_System" + ], + "Win32_System_Variant": [ + "Win32_System" + ], + "Win32_System_VirtualDosMachines": [ + "Win32_System" + ], + "Win32_System_WindowsProgramming": [ + "Win32_System" + ], + "Win32_System_Wmi": [ + "Win32_System" + ], + "Win32_UI": [ + "Win32" + ], + "Win32_UI_Accessibility": [ + "Win32_UI" + ], + "Win32_UI_ColorSystem": [ + "Win32_UI" + ], + "Win32_UI_Controls": [ + "Win32_UI" + ], + "Win32_UI_Controls_Dialogs": [ + "Win32_UI_Controls" + ], + "Win32_UI_HiDpi": [ + "Win32_UI" + ], + "Win32_UI_Input": [ + "Win32_UI" + ], + "Win32_UI_Input_Ime": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_KeyboardAndMouse": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_Pointer": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_Touch": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_XboxController": [ + "Win32_UI_Input" + ], + "Win32_UI_InteractionContext": [ + "Win32_UI" + ], + "Win32_UI_Magnification": [ + "Win32_UI" + ], + "Win32_UI_Shell": [ + "Win32_UI" + ], + "Win32_UI_Shell_PropertiesSystem": [ + "Win32_UI_Shell" + ], + "Win32_UI_TabletPC": [ + "Win32_UI" + ], + "Win32_UI_TextServices": [ + "Win32_UI" + ], + "Win32_UI_WindowsAndMessaging": [ + "Win32_UI" + ], + "Win32_Web": [ + "Win32" + ], + "Win32_Web_InternetExplorer": [ + "Win32_Web" + ], + "default": [], + "docs": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-sys-0.52.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows-sys", + "version": "0.59.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Rust for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-sys-0.59.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": false + } + ], + "features": { + "Wdk": [ + "Win32_Foundation" + ], + "Wdk_Devices": [ + "Wdk" + ], + "Wdk_Devices_Bluetooth": [ + "Wdk_Devices" + ], + "Wdk_Devices_HumanInterfaceDevice": [ + "Wdk_Devices" + ], + "Wdk_Foundation": [ + "Wdk" + ], + "Wdk_Graphics": [ + "Wdk" + ], + "Wdk_Graphics_Direct3D": [ + "Wdk_Graphics" + ], + "Wdk_NetworkManagement": [ + "Wdk" + ], + "Wdk_NetworkManagement_Ndis": [ + "Wdk_NetworkManagement" + ], + "Wdk_NetworkManagement_WindowsFilteringPlatform": [ + "Wdk_NetworkManagement" + ], + "Wdk_Storage": [ + "Wdk" + ], + "Wdk_Storage_FileSystem": [ + "Wdk_Storage" + ], + "Wdk_Storage_FileSystem_Minifilters": [ + "Wdk_Storage_FileSystem" + ], + "Wdk_System": [ + "Wdk" + ], + "Wdk_System_IO": [ + "Wdk_System" + ], + "Wdk_System_Memory": [ + "Wdk_System" + ], + "Wdk_System_OfflineRegistry": [ + "Wdk_System" + ], + "Wdk_System_Registry": [ + "Wdk_System" + ], + "Wdk_System_SystemInformation": [ + "Wdk_System" + ], + "Wdk_System_SystemServices": [ + "Wdk_System" + ], + "Wdk_System_Threading": [ + "Wdk_System" + ], + "Win32": [ + "Win32_Foundation" + ], + "Win32_Data": [ + "Win32" + ], + "Win32_Data_HtmlHelp": [ + "Win32_Data" + ], + "Win32_Data_RightsManagement": [ + "Win32_Data" + ], + "Win32_Devices": [ + "Win32" + ], + "Win32_Devices_AllJoyn": [ + "Win32_Devices" + ], + "Win32_Devices_BiometricFramework": [ + "Win32_Devices" + ], + "Win32_Devices_Bluetooth": [ + "Win32_Devices" + ], + "Win32_Devices_Communication": [ + "Win32_Devices" + ], + "Win32_Devices_DeviceAndDriverInstallation": [ + "Win32_Devices" + ], + "Win32_Devices_DeviceQuery": [ + "Win32_Devices" + ], + "Win32_Devices_Display": [ + "Win32_Devices" + ], + "Win32_Devices_Enumeration": [ + "Win32_Devices" + ], + "Win32_Devices_Enumeration_Pnp": [ + "Win32_Devices_Enumeration" + ], + "Win32_Devices_Fax": [ + "Win32_Devices" + ], + "Win32_Devices_HumanInterfaceDevice": [ + "Win32_Devices" + ], + "Win32_Devices_PortableDevices": [ + "Win32_Devices" + ], + "Win32_Devices_Properties": [ + "Win32_Devices" + ], + "Win32_Devices_Pwm": [ + "Win32_Devices" + ], + "Win32_Devices_Sensors": [ + "Win32_Devices" + ], + "Win32_Devices_SerialCommunication": [ + "Win32_Devices" + ], + "Win32_Devices_Tapi": [ + "Win32_Devices" + ], + "Win32_Devices_Usb": [ + "Win32_Devices" + ], + "Win32_Devices_WebServicesOnDevices": [ + "Win32_Devices" + ], + "Win32_Foundation": [ + "Win32" + ], + "Win32_Gaming": [ + "Win32" + ], + "Win32_Globalization": [ + "Win32" + ], + "Win32_Graphics": [ + "Win32" + ], + "Win32_Graphics_Dwm": [ + "Win32_Graphics" + ], + "Win32_Graphics_Gdi": [ + "Win32_Graphics" + ], + "Win32_Graphics_GdiPlus": [ + "Win32_Graphics" + ], + "Win32_Graphics_Hlsl": [ + "Win32_Graphics" + ], + "Win32_Graphics_OpenGL": [ + "Win32_Graphics" + ], + "Win32_Graphics_Printing": [ + "Win32_Graphics" + ], + "Win32_Graphics_Printing_PrintTicket": [ + "Win32_Graphics_Printing" + ], + "Win32_Management": [ + "Win32" + ], + "Win32_Management_MobileDeviceManagementRegistration": [ + "Win32_Management" + ], + "Win32_Media": [ + "Win32" + ], + "Win32_Media_Audio": [ + "Win32_Media" + ], + "Win32_Media_DxMediaObjects": [ + "Win32_Media" + ], + "Win32_Media_KernelStreaming": [ + "Win32_Media" + ], + "Win32_Media_Multimedia": [ + "Win32_Media" + ], + "Win32_Media_Streaming": [ + "Win32_Media" + ], + "Win32_Media_WindowsMediaFormat": [ + "Win32_Media" + ], + "Win32_NetworkManagement": [ + "Win32" + ], + "Win32_NetworkManagement_Dhcp": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Dns": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_InternetConnectionWizard": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_IpHelper": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Multicast": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Ndis": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_NetBios": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_NetManagement": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_NetShell": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_P2P": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_QoS": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Rras": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_Snmp": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WNet": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WebDav": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WiFi": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WindowsConnectionManager": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WindowsFilteringPlatform": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WindowsFirewall": [ + "Win32_NetworkManagement" + ], + "Win32_NetworkManagement_WindowsNetworkVirtualization": [ + "Win32_NetworkManagement" + ], + "Win32_Networking": [ + "Win32" + ], + "Win32_Networking_ActiveDirectory": [ + "Win32_Networking" + ], + "Win32_Networking_Clustering": [ + "Win32_Networking" + ], + "Win32_Networking_HttpServer": [ + "Win32_Networking" + ], + "Win32_Networking_Ldap": [ + "Win32_Networking" + ], + "Win32_Networking_WebSocket": [ + "Win32_Networking" + ], + "Win32_Networking_WinHttp": [ + "Win32_Networking" + ], + "Win32_Networking_WinInet": [ + "Win32_Networking" + ], + "Win32_Networking_WinSock": [ + "Win32_Networking" + ], + "Win32_Networking_WindowsWebServices": [ + "Win32_Networking" + ], + "Win32_Security": [ + "Win32" + ], + "Win32_Security_AppLocker": [ + "Win32_Security" + ], + "Win32_Security_Authentication": [ + "Win32_Security" + ], + "Win32_Security_Authentication_Identity": [ + "Win32_Security_Authentication" + ], + "Win32_Security_Authorization": [ + "Win32_Security" + ], + "Win32_Security_Credentials": [ + "Win32_Security" + ], + "Win32_Security_Cryptography": [ + "Win32_Security" + ], + "Win32_Security_Cryptography_Catalog": [ + "Win32_Security_Cryptography" + ], + "Win32_Security_Cryptography_Certificates": [ + "Win32_Security_Cryptography" + ], + "Win32_Security_Cryptography_Sip": [ + "Win32_Security_Cryptography" + ], + "Win32_Security_Cryptography_UI": [ + "Win32_Security_Cryptography" + ], + "Win32_Security_DiagnosticDataQuery": [ + "Win32_Security" + ], + "Win32_Security_DirectoryServices": [ + "Win32_Security" + ], + "Win32_Security_EnterpriseData": [ + "Win32_Security" + ], + "Win32_Security_ExtensibleAuthenticationProtocol": [ + "Win32_Security" + ], + "Win32_Security_Isolation": [ + "Win32_Security" + ], + "Win32_Security_LicenseProtection": [ + "Win32_Security" + ], + "Win32_Security_NetworkAccessProtection": [ + "Win32_Security" + ], + "Win32_Security_WinTrust": [ + "Win32_Security" + ], + "Win32_Security_WinWlx": [ + "Win32_Security" + ], + "Win32_Storage": [ + "Win32" + ], + "Win32_Storage_Cabinets": [ + "Win32_Storage" + ], + "Win32_Storage_CloudFilters": [ + "Win32_Storage" + ], + "Win32_Storage_Compression": [ + "Win32_Storage" + ], + "Win32_Storage_DistributedFileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_FileHistory": [ + "Win32_Storage" + ], + "Win32_Storage_FileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_Imapi": [ + "Win32_Storage" + ], + "Win32_Storage_IndexServer": [ + "Win32_Storage" + ], + "Win32_Storage_InstallableFileSystems": [ + "Win32_Storage" + ], + "Win32_Storage_IscsiDisc": [ + "Win32_Storage" + ], + "Win32_Storage_Jet": [ + "Win32_Storage" + ], + "Win32_Storage_Nvme": [ + "Win32_Storage" + ], + "Win32_Storage_OfflineFiles": [ + "Win32_Storage" + ], + "Win32_Storage_OperationRecorder": [ + "Win32_Storage" + ], + "Win32_Storage_Packaging": [ + "Win32_Storage" + ], + "Win32_Storage_Packaging_Appx": [ + "Win32_Storage_Packaging" + ], + "Win32_Storage_ProjectedFileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_StructuredStorage": [ + "Win32_Storage" + ], + "Win32_Storage_Vhd": [ + "Win32_Storage" + ], + "Win32_Storage_Xps": [ + "Win32_Storage" + ], + "Win32_System": [ + "Win32" + ], + "Win32_System_AddressBook": [ + "Win32_System" + ], + "Win32_System_Antimalware": [ + "Win32_System" + ], + "Win32_System_ApplicationInstallationAndServicing": [ + "Win32_System" + ], + "Win32_System_ApplicationVerifier": [ + "Win32_System" + ], + "Win32_System_ClrHosting": [ + "Win32_System" + ], + "Win32_System_Com": [ + "Win32_System" + ], + "Win32_System_Com_Marshal": [ + "Win32_System_Com" + ], + "Win32_System_Com_StructuredStorage": [ + "Win32_System_Com" + ], + "Win32_System_Com_Urlmon": [ + "Win32_System_Com" + ], + "Win32_System_ComponentServices": [ + "Win32_System" + ], + "Win32_System_Console": [ + "Win32_System" + ], + "Win32_System_CorrelationVector": [ + "Win32_System" + ], + "Win32_System_DataExchange": [ + "Win32_System" + ], + "Win32_System_DeploymentServices": [ + "Win32_System" + ], + "Win32_System_DeveloperLicensing": [ + "Win32_System" + ], + "Win32_System_Diagnostics": [ + "Win32_System" + ], + "Win32_System_Diagnostics_Ceip": [ + "Win32_System_Diagnostics" + ], + "Win32_System_Diagnostics_Debug": [ + "Win32_System_Diagnostics" + ], + "Win32_System_Diagnostics_Debug_Extensions": [ + "Win32_System_Diagnostics_Debug" + ], + "Win32_System_Diagnostics_Etw": [ + "Win32_System_Diagnostics" + ], + "Win32_System_Diagnostics_ProcessSnapshotting": [ + "Win32_System_Diagnostics" + ], + "Win32_System_Diagnostics_ToolHelp": [ + "Win32_System_Diagnostics" + ], + "Win32_System_Diagnostics_TraceLogging": [ + "Win32_System_Diagnostics" + ], + "Win32_System_DistributedTransactionCoordinator": [ + "Win32_System" + ], + "Win32_System_Environment": [ + "Win32_System" + ], + "Win32_System_ErrorReporting": [ + "Win32_System" + ], + "Win32_System_EventCollector": [ + "Win32_System" + ], + "Win32_System_EventLog": [ + "Win32_System" + ], + "Win32_System_EventNotificationService": [ + "Win32_System" + ], + "Win32_System_GroupPolicy": [ + "Win32_System" + ], + "Win32_System_HostCompute": [ + "Win32_System" + ], + "Win32_System_HostComputeNetwork": [ + "Win32_System" + ], + "Win32_System_HostComputeSystem": [ + "Win32_System" + ], + "Win32_System_Hypervisor": [ + "Win32_System" + ], + "Win32_System_IO": [ + "Win32_System" + ], + "Win32_System_Iis": [ + "Win32_System" + ], + "Win32_System_Ioctl": [ + "Win32_System" + ], + "Win32_System_JobObjects": [ + "Win32_System" + ], + "Win32_System_Js": [ + "Win32_System" + ], + "Win32_System_Kernel": [ + "Win32_System" + ], + "Win32_System_LibraryLoader": [ + "Win32_System" + ], + "Win32_System_Mailslots": [ + "Win32_System" + ], + "Win32_System_Mapi": [ + "Win32_System" + ], + "Win32_System_Memory": [ + "Win32_System" + ], + "Win32_System_Memory_NonVolatile": [ + "Win32_System_Memory" + ], + "Win32_System_MessageQueuing": [ + "Win32_System" + ], + "Win32_System_MixedReality": [ + "Win32_System" + ], + "Win32_System_Ole": [ + "Win32_System" + ], + "Win32_System_PasswordManagement": [ + "Win32_System" + ], + "Win32_System_Performance": [ + "Win32_System" + ], + "Win32_System_Performance_HardwareCounterProfiling": [ + "Win32_System_Performance" + ], + "Win32_System_Pipes": [ + "Win32_System" + ], + "Win32_System_Power": [ + "Win32_System" + ], + "Win32_System_ProcessStatus": [ + "Win32_System" + ], + "Win32_System_Recovery": [ + "Win32_System" + ], + "Win32_System_Registry": [ + "Win32_System" + ], + "Win32_System_RemoteDesktop": [ + "Win32_System" + ], + "Win32_System_RemoteManagement": [ + "Win32_System" + ], + "Win32_System_RestartManager": [ + "Win32_System" + ], + "Win32_System_Restore": [ + "Win32_System" + ], + "Win32_System_Rpc": [ + "Win32_System" + ], + "Win32_System_Search": [ + "Win32_System" + ], + "Win32_System_Search_Common": [ + "Win32_System_Search" + ], + "Win32_System_SecurityCenter": [ + "Win32_System" + ], + "Win32_System_Services": [ + "Win32_System" + ], + "Win32_System_SetupAndMigration": [ + "Win32_System" + ], + "Win32_System_Shutdown": [ + "Win32_System" + ], + "Win32_System_StationsAndDesktops": [ + "Win32_System" + ], + "Win32_System_SubsystemForLinux": [ + "Win32_System" + ], + "Win32_System_SystemInformation": [ + "Win32_System" + ], + "Win32_System_SystemServices": [ + "Win32_System" + ], + "Win32_System_Threading": [ + "Win32_System" + ], + "Win32_System_Time": [ + "Win32_System" + ], + "Win32_System_TpmBaseServices": [ + "Win32_System" + ], + "Win32_System_UserAccessLogging": [ + "Win32_System" + ], + "Win32_System_Variant": [ + "Win32_System" + ], + "Win32_System_VirtualDosMachines": [ + "Win32_System" + ], + "Win32_System_WindowsProgramming": [ + "Win32_System" + ], + "Win32_System_Wmi": [ + "Win32_System" + ], + "Win32_UI": [ + "Win32" + ], + "Win32_UI_Accessibility": [ + "Win32_UI" + ], + "Win32_UI_ColorSystem": [ + "Win32_UI" + ], + "Win32_UI_Controls": [ + "Win32_UI" + ], + "Win32_UI_Controls_Dialogs": [ + "Win32_UI_Controls" + ], + "Win32_UI_HiDpi": [ + "Win32_UI" + ], + "Win32_UI_Input": [ + "Win32_UI" + ], + "Win32_UI_Input_Ime": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_KeyboardAndMouse": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_Pointer": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_Touch": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_XboxController": [ + "Win32_UI_Input" + ], + "Win32_UI_InteractionContext": [ + "Win32_UI" + ], + "Win32_UI_Magnification": [ + "Win32_UI" + ], + "Win32_UI_Shell": [ + "Win32_UI" + ], + "Win32_UI_Shell_Common": [ + "Win32_UI_Shell" + ], + "Win32_UI_Shell_PropertiesSystem": [ + "Win32_UI_Shell" + ], + "Win32_UI_TabletPC": [ + "Win32_UI" + ], + "Win32_UI_TextServices": [ + "Win32_UI" + ], + "Win32_UI_WindowsAndMessaging": [ + "Win32_UI" + ], + "Win32_Web": [ + "Win32" + ], + "Win32_Web_InternetExplorer": [ + "Win32_Web" + ], + "default": [], + "docs": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-sys-0.59.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows-targets", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import libs for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows_aarch64_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "aarch64-pc-windows-gnullvm", + "registry": null + }, + { + "name": "windows_x86_64_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_aarch64_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_x86_64_gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "i686-pc-windows-gnullvm", + "registry": null + }, + { + "name": "windows_x86_64_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "x86_64-pc-windows-gnullvm", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_targets", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-targets-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-targets-0.52.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows-targets", + "version": "0.53.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import libs for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows_aarch64_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.53.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "aarch64-pc-windows-gnullvm", + "registry": null + }, + { + "name": "windows_x86_64_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.53.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_aarch64_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.53.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.53.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.53.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_x86_64_gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.53.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.53.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "i686-pc-windows-gnullvm", + "registry": null + }, + { + "name": "windows_x86_64_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.53.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "x86_64-pc-windows-gnullvm", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_targets", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-targets-0.53.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-targets-0.53.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows_aarch64_gnullvm", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_aarch64_gnullvm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_aarch64_gnullvm", + "version": "0.53.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.53.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_aarch64_gnullvm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.53.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.53.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.53.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows_aarch64_msvc", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_aarch64_msvc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_aarch64_msvc", + "version": "0.53.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.53.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_aarch64_msvc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.53.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.53.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.53.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows_i686_gnu", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_gnu", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_i686_gnu", + "version": "0.53.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.53.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_gnu", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.53.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.53.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.53.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows_i686_gnullvm", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_gnullvm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_i686_gnullvm", + "version": "0.53.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.53.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_gnullvm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.53.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.53.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.53.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows_i686_msvc", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_msvc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_i686_msvc", + "version": "0.53.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.53.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_msvc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.53.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.53.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.53.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows_x86_64_gnu", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_gnu", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_x86_64_gnu", + "version": "0.53.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.53.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_gnu", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.53.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.53.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.53.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows_x86_64_gnullvm", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_gnullvm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_x86_64_gnullvm", + "version": "0.53.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.53.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_gnullvm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.53.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.53.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.53.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows_x86_64_msvc", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_msvc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_x86_64_msvc", + "version": "0.53.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_msvc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.53.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.53.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.53.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "winnow", + "version": "0.5.40", + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", + "license": "MIT", + "license_file": null, + "description": "A byte-oriented, zero-copy, parser combinators library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "terminal_size", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "circular", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "escargot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "examples" + ], + "target": null, + "registry": null + }, + { + "name": "term-transcript", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winnow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/arithmetic/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "css", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/css/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/custom_error.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/http/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ini/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/iterator.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json_iterator.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ndjson", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ndjson/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "s_expression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/s_expression/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/string/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/arithmetic/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "contains_token", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/contains_token.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "find_slice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/find_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/http/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ini/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/iter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "next_slice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/next_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "number", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/number.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "debug": [ + "dep:anstream", + "dep:anstyle", + "dep:is-terminal", + "dep:terminal_size" + ], + "default": [ + "std" + ], + "simd": [ + "dep:memchr" + ], + "std": [ + "alloc", + "memchr?/std" + ], + "unstable-doc": [ + "alloc", + "std", + "simd", + "unstable-recover" + ], + "unstable-recover": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "-Zunstable-options", + "-Zrustdoc-scrape-examples" + ], + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", + "search": "" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "blob/v{{version}}/CHANGELOG.md", + "search": "blob/v.+\\..+\\..+/CHANGELOG.md" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "parsing" + ], + "keywords": [ + "parser", + "parser-combinators", + "parsing", + "streaming", + "bit" + ], + "readme": "README.md", + "repository": "https://github.com/winnow-rs/winnow", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "winnow", + "version": "0.7.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", + "license": "MIT", + "license_file": null, + "description": "A byte-oriented, zero-copy, parser combinators library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "terminal_size", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "annotate-snippets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.86", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "circular", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.21", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "examples" + ], + "target": null, + "registry": null + }, + { + "name": "term-transcript", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winnow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/arithmetic/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "css", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/css/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/custom_error.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/http/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ini/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/iterator.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json_iterator.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ndjson", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ndjson/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "s_expression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/s_expression/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/string/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/arithmetic/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "contains_token", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/contains_token.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "find_slice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/find_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/http/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ini/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/iter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "next_slice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/next_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "number", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/number.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "debug": [ + "std", + "dep:anstream", + "dep:anstyle", + "dep:is-terminal", + "dep:terminal_size" + ], + "default": [ + "std" + ], + "simd": [ + "dep:memchr" + ], + "std": [ + "alloc", + "memchr?/std" + ], + "unstable-doc": [ + "alloc", + "std", + "simd", + "unstable-recover" + ], + "unstable-recover": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", + "search": "" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "blob/v{{version}}/CHANGELOG.md", + "search": "blob/v.+\\..+\\..+/CHANGELOG.md" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "parsing" + ], + "keywords": [ + "parser", + "parser-combinators", + "parsing", + "streaming", + "bit" + ], + "readme": "README.md", + "repository": "https://github.com/winnow-rs/winnow", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "wit-bindgen-rt", + "version": "0.39.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wit-bindgen-rt@0.39.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Runtime support for the `wit-bindgen` crate\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.30", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wit_bindgen_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wit-bindgen-rt-0.39.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wit-bindgen-rt-0.39.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "async": [ + "dep:futures", + "dep:once_cell" + ], + "bitflags": [ + "dep:bitflags" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wit-bindgen-rt-0.39.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/bytecodealliance/wit-bindgen", + "homepage": "https://github.com/bytecodealliance/wit-bindgen", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "write16", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A UTF-16 analog of the Write trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "write16", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/write16-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "arrayvec": [ + "dep:arrayvec" + ], + "smallvec": [ + "dep:smallvec" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/write16-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "text-processing", + "internationalization" + ], + "keywords": [ + "unicode", + "utf-16" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/write16", + "homepage": "https://docs.rs/write16/", + "documentation": "https://docs.rs/write16/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "writeable", + "version": "0.5.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "license": "Unicode-3.0", + "license_file": null, + "description": "A more efficient alternative to fmt::Display", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "writeable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "writeable_message", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/examples/writeable_message.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "writeable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/tests/writeable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "writeable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/benches/writeable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "either": [ + "dep:either" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "xattr", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "unix extended filesystem attributes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "fs", + "std" + ], + "target": "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.150", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "xattr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/tests/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "unsupported" + ], + "unsupported": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Allen " + ], + "categories": [], + "keywords": [ + "xattr", + "filesystem", + "unix" + ], + "readme": "README.md", + "repository": "https://github.com/Stebalien/xattr", + "homepage": null, + "documentation": "https://docs.rs/xattr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "xxhash-rust", + "version": "0.8.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", + "license": "BSL-1.0", + "license_file": null, + "description": "Implementation of xxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "xxhash-c-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "xxhash_rust", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "assert_correctness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/assert_correctness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "assert_correctness_miri", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/assert_correctness_miri.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/size.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test-vectors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/test-vectors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "const_xxh3": [], + "const_xxh32": [], + "const_xxh64": [], + "std": [], + "xxh3": [], + "xxh32": [], + "xxh64": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "xxh32", + "const_xxh32", + "xxh64", + "const_xxh64", + "xxh3", + "const_xxh3" + ] + } + } + }, + "publish": null, + "authors": [ + "Douman " + ], + "categories": [ + "algorithms", + "no-std::no-alloc" + ], + "keywords": [ + "hash", + "xxhash", + "xxh3", + "hasher", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/DoumanAsh/xxhash-rust", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "yew", + "version": "0.20.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A framework for creating reliable and efficient web applications", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64ct", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "console_error_panic_hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "gloo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "html-escape", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "implicit-clone", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "map" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "prokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.36", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "AnimationEvent", + "Document", + "DragEvent", + "Element", + "ErrorEvent", + "Event", + "EventInit", + "EventTarget", + "FocusEvent", + "HtmlElement", + "HtmlInputElement", + "HtmlCollection", + "HtmlTextAreaElement", + "InputEvent", + "InputEventInit", + "KeyboardEvent", + "Location", + "MouseEvent", + "Node", + "NodeList", + "PointerEvent", + "ProgressEvent", + "ShadowRoot", + "Text", + "TouchEvent", + "TransitionEvent", + "UiEvent", + "WheelEvent", + "Window", + "HtmlScriptElement", + "SubmitEvent" + ], + "target": null, + "registry": null + }, + { + "name": "yew-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "ShadowRootInit", + "ShadowRootMode", + "HtmlButtonElement" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rt" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yew", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hydration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/hydration.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "layout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/layout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "raw_html", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/raw_html.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "suspense", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/suspense.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_callback", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_callback.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_context", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_context.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_effect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_effect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_memo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_memo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_prepared_state", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_prepared_state.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_reducer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_reducer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_ref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_ref.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_state", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_state.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_transitive_state", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_transitive_state.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "csr": [], + "default": [], + "hydration": [ + "csr", + "dep:bincode" + ], + "ssr": [ + "dep:html-escape", + "dep:base64ct", + "dep:bincode" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "documenting" + ] + } + } + }, + "publish": null, + "authors": [ + "Denis Kolodin ", + "Justin Starry " + ], + "categories": [ + "gui", + "wasm", + "web-programming" + ], + "keywords": [ + "web", + "webasm", + "javascript" + ], + "readme": "README.md", + "repository": "https://github.com/yewstack/yew", + "homepage": "https://yew.rs", + "documentation": "https://docs.rs/yew/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "yew-macro", + "version": "0.20.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A framework for making client-side single-page apps", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "boolinator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "prettyplease", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro-error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits", + "visit-mut" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "yew_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "classes_macro_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/classes_macro_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_props_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/derive_props_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "function_attr_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/function_attr_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hook_attr_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/hook_attr_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hook_macro_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/hook_macro_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "html_lints_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/html_lints_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "html_macro_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/html_macro_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "props_macro_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/props_macro_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Justin Starry " + ], + "categories": [ + "gui", + "web-programming", + "wasm" + ], + "keywords": [ + "web", + "wasm", + "frontend", + "webasm", + "webassembly" + ], + "readme": null, + "repository": "https://github.com/yewstack/yew", + "homepage": "https://github.com/yewstack/yew", + "documentation": "https://docs.rs/yew-macro/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "yew-router", + "version": "0.17.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A router implementation for the Yew framework", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures" + ], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "route-recognizer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.36", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Document", + "HtmlBaseElement", + "Window" + ], + "target": null, + "registry": null + }, + { + "name": "yew", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yew-router-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "HtmlHeadElement" + ], + "target": null, + "registry": null + }, + { + "name": "yew", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "csr" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yew_router", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basename", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/basename.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser_router", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/browser_router.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_router", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/hash_router.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "link", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/link.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "router_unit_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/router_unit_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/utils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Hamza " + ], + "categories": [ + "gui", + "web-programming" + ], + "keywords": [ + "web", + "yew", + "router" + ], + "readme": "README.md", + "repository": "https://github.com/yewstack/yew", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "yew-router-macro", + "version": "0.17.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Contains macros used with yew-router", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "yew_router_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "routable_derive_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/tests/routable_derive_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Hamza " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/yewstack/yew", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "yew_icons", + "version": "0.7.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", + "license": "MIT", + "license_file": null, + "description": "Easily include a variety of SVG icons into your Yew app", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yew", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "csr" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rt", + "macros" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yew_icons", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "generator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/src/generator.rs", + "edition": "2021", + "required-features": [ + "generator" + ], + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "Bootstrap0Circle": [], + "Bootstrap0CircleFill": [], + "Bootstrap0Square": [], + "Bootstrap0SquareFill": [], + "Bootstrap123": [], + "Bootstrap1Circle": [], + "Bootstrap1CircleFill": [], + "Bootstrap1Square": [], + "Bootstrap1SquareFill": [], + "Bootstrap2Circle": [], + "Bootstrap2CircleFill": [], + "Bootstrap2Square": [], + "Bootstrap2SquareFill": [], + "Bootstrap3Circle": [], + "Bootstrap3CircleFill": [], + "Bootstrap3Square": [], + "Bootstrap3SquareFill": [], + "Bootstrap4Circle": [], + "Bootstrap4CircleFill": [], + "Bootstrap4Square": [], + "Bootstrap4SquareFill": [], + "Bootstrap5Circle": [], + "Bootstrap5CircleFill": [], + "Bootstrap5Square": [], + "Bootstrap5SquareFill": [], + "Bootstrap6Circle": [], + "Bootstrap6CircleFill": [], + "Bootstrap6Square": [], + "Bootstrap6SquareFill": [], + "Bootstrap7Circle": [], + "Bootstrap7CircleFill": [], + "Bootstrap7Square": [], + "Bootstrap7SquareFill": [], + "Bootstrap8Circle": [], + "Bootstrap8CircleFill": [], + "Bootstrap8Square": [], + "Bootstrap8SquareFill": [], + "Bootstrap9Circle": [], + "Bootstrap9CircleFill": [], + "Bootstrap9Square": [], + "Bootstrap9SquareFill": [], + "BootstrapActivity": [], + "BootstrapAirplane": [], + "BootstrapAirplaneEngines": [], + "BootstrapAirplaneEnginesFill": [], + "BootstrapAirplaneFill": [], + "BootstrapAlarm": [], + "BootstrapAlarmFill": [], + "BootstrapAlexa": [], + "BootstrapAlignBottom": [], + "BootstrapAlignCenter": [], + "BootstrapAlignEnd": [], + "BootstrapAlignMiddle": [], + "BootstrapAlignStart": [], + "BootstrapAlignTop": [], + "BootstrapAlipay": [], + "BootstrapAlt": [], + "BootstrapAmd": [], + "BootstrapAndroid": [], + "BootstrapAndroid2": [], + "BootstrapApp": [], + "BootstrapAppIndicator": [], + "BootstrapApple": [], + "BootstrapArchive": [], + "BootstrapArchiveFill": [], + "BootstrapArrow90DegDown": [], + "BootstrapArrow90DegLeft": [], + "BootstrapArrow90DegRight": [], + "BootstrapArrow90DegUp": [], + "BootstrapArrowBarDown": [], + "BootstrapArrowBarLeft": [], + "BootstrapArrowBarRight": [], + "BootstrapArrowBarUp": [], + "BootstrapArrowClockwise": [], + "BootstrapArrowCounterclockwise": [], + "BootstrapArrowDown": [], + "BootstrapArrowDownCircle": [], + "BootstrapArrowDownCircleFill": [], + "BootstrapArrowDownLeft": [], + "BootstrapArrowDownLeftCircle": [], + "BootstrapArrowDownLeftCircleFill": [], + "BootstrapArrowDownLeftSquare": [], + "BootstrapArrowDownLeftSquareFill": [], + "BootstrapArrowDownRight": [], + "BootstrapArrowDownRightCircle": [], + "BootstrapArrowDownRightCircleFill": [], + "BootstrapArrowDownRightSquare": [], + "BootstrapArrowDownRightSquareFill": [], + "BootstrapArrowDownShort": [], + "BootstrapArrowDownSquare": [], + "BootstrapArrowDownSquareFill": [], + "BootstrapArrowDownUp": [], + "BootstrapArrowLeft": [], + "BootstrapArrowLeftCircle": [], + "BootstrapArrowLeftCircleFill": [], + "BootstrapArrowLeftRight": [], + "BootstrapArrowLeftShort": [], + "BootstrapArrowLeftSquare": [], + "BootstrapArrowLeftSquareFill": [], + "BootstrapArrowRepeat": [], + "BootstrapArrowReturnLeft": [], + "BootstrapArrowReturnRight": [], + "BootstrapArrowRight": [], + "BootstrapArrowRightCircle": [], + "BootstrapArrowRightCircleFill": [], + "BootstrapArrowRightShort": [], + "BootstrapArrowRightSquare": [], + "BootstrapArrowRightSquareFill": [], + "BootstrapArrowThroughHeart": [], + "BootstrapArrowThroughHeartFill": [], + "BootstrapArrowUp": [], + "BootstrapArrowUpCircle": [], + "BootstrapArrowUpCircleFill": [], + "BootstrapArrowUpLeft": [], + "BootstrapArrowUpLeftCircle": [], + "BootstrapArrowUpLeftCircleFill": [], + "BootstrapArrowUpLeftSquare": [], + "BootstrapArrowUpLeftSquareFill": [], + "BootstrapArrowUpRight": [], + "BootstrapArrowUpRightCircle": [], + "BootstrapArrowUpRightCircleFill": [], + "BootstrapArrowUpRightSquare": [], + "BootstrapArrowUpRightSquareFill": [], + "BootstrapArrowUpShort": [], + "BootstrapArrowUpSquare": [], + "BootstrapArrowUpSquareFill": [], + "BootstrapArrowsAngleContract": [], + "BootstrapArrowsAngleExpand": [], + "BootstrapArrowsCollapse": [], + "BootstrapArrowsExpand": [], + "BootstrapArrowsFullscreen": [], + "BootstrapArrowsMove": [], + "BootstrapAspectRatio": [], + "BootstrapAspectRatioFill": [], + "BootstrapAsterisk": [], + "BootstrapAt": [], + "BootstrapAward": [], + "BootstrapAwardFill": [], + "BootstrapBack": [], + "BootstrapBackspace": [], + "BootstrapBackspaceFill": [], + "BootstrapBackspaceReverse": [], + "BootstrapBackspaceReverseFill": [], + "BootstrapBadge3D": [], + "BootstrapBadge3DFill": [], + "BootstrapBadge4K": [], + "BootstrapBadge4KFill": [], + "BootstrapBadge8K": [], + "BootstrapBadge8KFill": [], + "BootstrapBadgeAd": [], + "BootstrapBadgeAdFill": [], + "BootstrapBadgeAr": [], + "BootstrapBadgeArFill": [], + "BootstrapBadgeCc": [], + "BootstrapBadgeCcFill": [], + "BootstrapBadgeHd": [], + "BootstrapBadgeHdFill": [], + "BootstrapBadgeSd": [], + "BootstrapBadgeSdFill": [], + "BootstrapBadgeTm": [], + "BootstrapBadgeTmFill": [], + "BootstrapBadgeVo": [], + "BootstrapBadgeVoFill": [], + "BootstrapBadgeVr": [], + "BootstrapBadgeVrFill": [], + "BootstrapBadgeWc": [], + "BootstrapBadgeWcFill": [], + "BootstrapBag": [], + "BootstrapBagCheck": [], + "BootstrapBagCheckFill": [], + "BootstrapBagDash": [], + "BootstrapBagDashFill": [], + "BootstrapBagFill": [], + "BootstrapBagHeart": [], + "BootstrapBagHeartFill": [], + "BootstrapBagPlus": [], + "BootstrapBagPlusFill": [], + "BootstrapBagX": [], + "BootstrapBagXFill": [], + "BootstrapBalloon": [], + "BootstrapBalloonFill": [], + "BootstrapBalloonHeart": [], + "BootstrapBalloonHeartFill": [], + "BootstrapBandaid": [], + "BootstrapBandaidFill": [], + "BootstrapBank": [], + "BootstrapBank2": [], + "BootstrapBarChart": [], + "BootstrapBarChartFill": [], + "BootstrapBarChartLine": [], + "BootstrapBarChartLineFill": [], + "BootstrapBarChartSteps": [], + "BootstrapBasket": [], + "BootstrapBasket2": [], + "BootstrapBasket2Fill": [], + "BootstrapBasket3": [], + "BootstrapBasket3Fill": [], + "BootstrapBasketFill": [], + "BootstrapBattery": [], + "BootstrapBatteryCharging": [], + "BootstrapBatteryFull": [], + "BootstrapBatteryHalf": [], + "BootstrapBehance": [], + "BootstrapBell": [], + "BootstrapBellFill": [], + "BootstrapBellSlash": [], + "BootstrapBellSlashFill": [], + "BootstrapBezier": [], + "BootstrapBezier2": [], + "BootstrapBicycle": [], + "BootstrapBinoculars": [], + "BootstrapBinocularsFill": [], + "BootstrapBlockquoteLeft": [], + "BootstrapBlockquoteRight": [], + "BootstrapBluetooth": [], + "BootstrapBodyText": [], + "BootstrapBook": [], + "BootstrapBookFill": [], + "BootstrapBookHalf": [], + "BootstrapBookmark": [], + "BootstrapBookmarkCheck": [], + "BootstrapBookmarkCheckFill": [], + "BootstrapBookmarkDash": [], + "BootstrapBookmarkDashFill": [], + "BootstrapBookmarkFill": [], + "BootstrapBookmarkHeart": [], + "BootstrapBookmarkHeartFill": [], + "BootstrapBookmarkPlus": [], + "BootstrapBookmarkPlusFill": [], + "BootstrapBookmarkStar": [], + "BootstrapBookmarkStarFill": [], + "BootstrapBookmarkX": [], + "BootstrapBookmarkXFill": [], + "BootstrapBookmarks": [], + "BootstrapBookmarksFill": [], + "BootstrapBookshelf": [], + "BootstrapBoombox": [], + "BootstrapBoomboxFill": [], + "BootstrapBootstrap": [], + "BootstrapBootstrapFill": [], + "BootstrapBootstrapReboot": [], + "BootstrapBorder": [], + "BootstrapBorderAll": [], + "BootstrapBorderBottom": [], + "BootstrapBorderCenter": [], + "BootstrapBorderInner": [], + "BootstrapBorderLeft": [], + "BootstrapBorderMiddle": [], + "BootstrapBorderOuter": [], + "BootstrapBorderRight": [], + "BootstrapBorderStyle": [], + "BootstrapBorderTop": [], + "BootstrapBorderWidth": [], + "BootstrapBoundingBox": [], + "BootstrapBoundingBoxCircles": [], + "BootstrapBox": [], + "BootstrapBox2": [], + "BootstrapBox2Fill": [], + "BootstrapBox2Heart": [], + "BootstrapBox2HeartFill": [], + "BootstrapBoxArrowDown": [], + "BootstrapBoxArrowDownLeft": [], + "BootstrapBoxArrowDownRight": [], + "BootstrapBoxArrowInDown": [], + "BootstrapBoxArrowInDownLeft": [], + "BootstrapBoxArrowInDownRight": [], + "BootstrapBoxArrowInLeft": [], + "BootstrapBoxArrowInRight": [], + "BootstrapBoxArrowInUp": [], + "BootstrapBoxArrowInUpLeft": [], + "BootstrapBoxArrowInUpRight": [], + "BootstrapBoxArrowLeft": [], + "BootstrapBoxArrowRight": [], + "BootstrapBoxArrowUp": [], + "BootstrapBoxArrowUpLeft": [], + "BootstrapBoxArrowUpRight": [], + "BootstrapBoxFill": [], + "BootstrapBoxSeam": [], + "BootstrapBoxSeamFill": [], + "BootstrapBoxes": [], + "BootstrapBraces": [], + "BootstrapBracesAsterisk": [], + "BootstrapBricks": [], + "BootstrapBriefcase": [], + "BootstrapBriefcaseFill": [], + "BootstrapBrightnessAltHigh": [], + "BootstrapBrightnessAltHighFill": [], + "BootstrapBrightnessAltLow": [], + "BootstrapBrightnessAltLowFill": [], + "BootstrapBrightnessHigh": [], + "BootstrapBrightnessHighFill": [], + "BootstrapBrightnessLow": [], + "BootstrapBrightnessLowFill": [], + "BootstrapBroadcast": [], + "BootstrapBroadcastPin": [], + "BootstrapBrowserChrome": [], + "BootstrapBrowserEdge": [], + "BootstrapBrowserFirefox": [], + "BootstrapBrowserSafari": [], + "BootstrapBrush": [], + "BootstrapBrushFill": [], + "BootstrapBucket": [], + "BootstrapBucketFill": [], + "BootstrapBug": [], + "BootstrapBugFill": [], + "BootstrapBuilding": [], + "BootstrapBuildingAdd": [], + "BootstrapBuildingCheck": [], + "BootstrapBuildingDash": [], + "BootstrapBuildingDown": [], + "BootstrapBuildingExclamation": [], + "BootstrapBuildingFill": [], + "BootstrapBuildingFillAdd": [], + "BootstrapBuildingFillCheck": [], + "BootstrapBuildingFillDash": [], + "BootstrapBuildingFillDown": [], + "BootstrapBuildingFillExclamation": [], + "BootstrapBuildingFillGear": [], + "BootstrapBuildingFillLock": [], + "BootstrapBuildingFillSlash": [], + "BootstrapBuildingFillUp": [], + "BootstrapBuildingFillX": [], + "BootstrapBuildingGear": [], + "BootstrapBuildingLock": [], + "BootstrapBuildingSlash": [], + "BootstrapBuildingUp": [], + "BootstrapBuildingX": [], + "BootstrapBuildings": [], + "BootstrapBuildingsFill": [], + "BootstrapBullseye": [], + "BootstrapBusFront": [], + "BootstrapBusFrontFill": [], + "BootstrapCCircle": [], + "BootstrapCCircleFill": [], + "BootstrapCSquare": [], + "BootstrapCSquareFill": [], + "BootstrapCalculator": [], + "BootstrapCalculatorFill": [], + "BootstrapCalendar": [], + "BootstrapCalendar2": [], + "BootstrapCalendar2Check": [], + "BootstrapCalendar2CheckFill": [], + "BootstrapCalendar2Date": [], + "BootstrapCalendar2DateFill": [], + "BootstrapCalendar2Day": [], + "BootstrapCalendar2DayFill": [], + "BootstrapCalendar2Event": [], + "BootstrapCalendar2EventFill": [], + "BootstrapCalendar2Fill": [], + "BootstrapCalendar2Heart": [], + "BootstrapCalendar2HeartFill": [], + "BootstrapCalendar2Minus": [], + "BootstrapCalendar2MinusFill": [], + "BootstrapCalendar2Month": [], + "BootstrapCalendar2MonthFill": [], + "BootstrapCalendar2Plus": [], + "BootstrapCalendar2PlusFill": [], + "BootstrapCalendar2Range": [], + "BootstrapCalendar2RangeFill": [], + "BootstrapCalendar2Week": [], + "BootstrapCalendar2WeekFill": [], + "BootstrapCalendar2X": [], + "BootstrapCalendar2XFill": [], + "BootstrapCalendar3": [], + "BootstrapCalendar3Event": [], + "BootstrapCalendar3EventFill": [], + "BootstrapCalendar3Fill": [], + "BootstrapCalendar3Range": [], + "BootstrapCalendar3RangeFill": [], + "BootstrapCalendar3Week": [], + "BootstrapCalendar3WeekFill": [], + "BootstrapCalendar4": [], + "BootstrapCalendar4Event": [], + "BootstrapCalendar4Range": [], + "BootstrapCalendar4Week": [], + "BootstrapCalendarCheck": [], + "BootstrapCalendarCheckFill": [], + "BootstrapCalendarDate": [], + "BootstrapCalendarDateFill": [], + "BootstrapCalendarDay": [], + "BootstrapCalendarDayFill": [], + "BootstrapCalendarEvent": [], + "BootstrapCalendarEventFill": [], + "BootstrapCalendarFill": [], + "BootstrapCalendarHeart": [], + "BootstrapCalendarHeartFill": [], + "BootstrapCalendarMinus": [], + "BootstrapCalendarMinusFill": [], + "BootstrapCalendarMonth": [], + "BootstrapCalendarMonthFill": [], + "BootstrapCalendarPlus": [], + "BootstrapCalendarPlusFill": [], + "BootstrapCalendarRange": [], + "BootstrapCalendarRangeFill": [], + "BootstrapCalendarWeek": [], + "BootstrapCalendarWeekFill": [], + "BootstrapCalendarX": [], + "BootstrapCalendarXFill": [], + "BootstrapCamera": [], + "BootstrapCamera2": [], + "BootstrapCameraFill": [], + "BootstrapCameraReels": [], + "BootstrapCameraReelsFill": [], + "BootstrapCameraVideo": [], + "BootstrapCameraVideoFill": [], + "BootstrapCameraVideoOff": [], + "BootstrapCameraVideoOffFill": [], + "BootstrapCapslock": [], + "BootstrapCapslockFill": [], + "BootstrapCapsule": [], + "BootstrapCapsulePill": [], + "BootstrapCarFront": [], + "BootstrapCarFrontFill": [], + "BootstrapCardChecklist": [], + "BootstrapCardHeading": [], + "BootstrapCardImage": [], + "BootstrapCardList": [], + "BootstrapCardText": [], + "BootstrapCaretDown": [], + "BootstrapCaretDownFill": [], + "BootstrapCaretDownSquare": [], + "BootstrapCaretDownSquareFill": [], + "BootstrapCaretLeft": [], + "BootstrapCaretLeftFill": [], + "BootstrapCaretLeftSquare": [], + "BootstrapCaretLeftSquareFill": [], + "BootstrapCaretRight": [], + "BootstrapCaretRightFill": [], + "BootstrapCaretRightSquare": [], + "BootstrapCaretRightSquareFill": [], + "BootstrapCaretUp": [], + "BootstrapCaretUpFill": [], + "BootstrapCaretUpSquare": [], + "BootstrapCaretUpSquareFill": [], + "BootstrapCart": [], + "BootstrapCart2": [], + "BootstrapCart3": [], + "BootstrapCart4": [], + "BootstrapCartCheck": [], + "BootstrapCartCheckFill": [], + "BootstrapCartDash": [], + "BootstrapCartDashFill": [], + "BootstrapCartFill": [], + "BootstrapCartPlus": [], + "BootstrapCartPlusFill": [], + "BootstrapCartX": [], + "BootstrapCartXFill": [], + "BootstrapCash": [], + "BootstrapCashCoin": [], + "BootstrapCashStack": [], + "BootstrapCassette": [], + "BootstrapCassetteFill": [], + "BootstrapCast": [], + "BootstrapCcCircle": [], + "BootstrapCcCircleFill": [], + "BootstrapCcSquare": [], + "BootstrapCcSquareFill": [], + "BootstrapChat": [], + "BootstrapChatDots": [], + "BootstrapChatDotsFill": [], + "BootstrapChatFill": [], + "BootstrapChatHeart": [], + "BootstrapChatHeartFill": [], + "BootstrapChatLeft": [], + "BootstrapChatLeftDots": [], + "BootstrapChatLeftDotsFill": [], + "BootstrapChatLeftFill": [], + "BootstrapChatLeftHeart": [], + "BootstrapChatLeftHeartFill": [], + "BootstrapChatLeftQuote": [], + "BootstrapChatLeftQuoteFill": [], + "BootstrapChatLeftText": [], + "BootstrapChatLeftTextFill": [], + "BootstrapChatQuote": [], + "BootstrapChatQuoteFill": [], + "BootstrapChatRight": [], + "BootstrapChatRightDots": [], + "BootstrapChatRightDotsFill": [], + "BootstrapChatRightFill": [], + "BootstrapChatRightHeart": [], + "BootstrapChatRightHeartFill": [], + "BootstrapChatRightQuote": [], + "BootstrapChatRightQuoteFill": [], + "BootstrapChatRightText": [], + "BootstrapChatRightTextFill": [], + "BootstrapChatSquare": [], + "BootstrapChatSquareDots": [], + "BootstrapChatSquareDotsFill": [], + "BootstrapChatSquareFill": [], + "BootstrapChatSquareHeart": [], + "BootstrapChatSquareHeartFill": [], + "BootstrapChatSquareQuote": [], + "BootstrapChatSquareQuoteFill": [], + "BootstrapChatSquareText": [], + "BootstrapChatSquareTextFill": [], + "BootstrapChatText": [], + "BootstrapChatTextFill": [], + "BootstrapCheck": [], + "BootstrapCheck2": [], + "BootstrapCheck2All": [], + "BootstrapCheck2Circle": [], + "BootstrapCheck2Square": [], + "BootstrapCheckAll": [], + "BootstrapCheckCircle": [], + "BootstrapCheckCircleFill": [], + "BootstrapCheckLg": [], + "BootstrapCheckSquare": [], + "BootstrapCheckSquareFill": [], + "BootstrapChevronBarContract": [], + "BootstrapChevronBarDown": [], + "BootstrapChevronBarExpand": [], + "BootstrapChevronBarLeft": [], + "BootstrapChevronBarRight": [], + "BootstrapChevronBarUp": [], + "BootstrapChevronCompactDown": [], + "BootstrapChevronCompactLeft": [], + "BootstrapChevronCompactRight": [], + "BootstrapChevronCompactUp": [], + "BootstrapChevronContract": [], + "BootstrapChevronDoubleDown": [], + "BootstrapChevronDoubleLeft": [], + "BootstrapChevronDoubleRight": [], + "BootstrapChevronDoubleUp": [], + "BootstrapChevronDown": [], + "BootstrapChevronExpand": [], + "BootstrapChevronLeft": [], + "BootstrapChevronRight": [], + "BootstrapChevronUp": [], + "BootstrapCircle": [], + "BootstrapCircleFill": [], + "BootstrapCircleHalf": [], + "BootstrapCircleSquare": [], + "BootstrapClipboard": [], + "BootstrapClipboard2": [], + "BootstrapClipboard2Check": [], + "BootstrapClipboard2CheckFill": [], + "BootstrapClipboard2Data": [], + "BootstrapClipboard2DataFill": [], + "BootstrapClipboard2Fill": [], + "BootstrapClipboard2Heart": [], + "BootstrapClipboard2HeartFill": [], + "BootstrapClipboard2Minus": [], + "BootstrapClipboard2MinusFill": [], + "BootstrapClipboard2Plus": [], + "BootstrapClipboard2PlusFill": [], + "BootstrapClipboard2Pulse": [], + "BootstrapClipboard2PulseFill": [], + "BootstrapClipboard2X": [], + "BootstrapClipboard2XFill": [], + "BootstrapClipboardCheck": [], + "BootstrapClipboardCheckFill": [], + "BootstrapClipboardData": [], + "BootstrapClipboardDataFill": [], + "BootstrapClipboardFill": [], + "BootstrapClipboardHeart": [], + "BootstrapClipboardHeartFill": [], + "BootstrapClipboardMinus": [], + "BootstrapClipboardMinusFill": [], + "BootstrapClipboardPlus": [], + "BootstrapClipboardPlusFill": [], + "BootstrapClipboardPulse": [], + "BootstrapClipboardX": [], + "BootstrapClipboardXFill": [], + "BootstrapClock": [], + "BootstrapClockFill": [], + "BootstrapClockHistory": [], + "BootstrapCloud": [], + "BootstrapCloudArrowDown": [], + "BootstrapCloudArrowDownFill": [], + "BootstrapCloudArrowUp": [], + "BootstrapCloudArrowUpFill": [], + "BootstrapCloudCheck": [], + "BootstrapCloudCheckFill": [], + "BootstrapCloudDownload": [], + "BootstrapCloudDownloadFill": [], + "BootstrapCloudDrizzle": [], + "BootstrapCloudDrizzleFill": [], + "BootstrapCloudFill": [], + "BootstrapCloudFog": [], + "BootstrapCloudFog2": [], + "BootstrapCloudFog2Fill": [], + "BootstrapCloudFogFill": [], + "BootstrapCloudHail": [], + "BootstrapCloudHailFill": [], + "BootstrapCloudHaze": [], + "BootstrapCloudHaze2": [], + "BootstrapCloudHaze2Fill": [], + "BootstrapCloudHazeFill": [], + "BootstrapCloudLightning": [], + "BootstrapCloudLightningFill": [], + "BootstrapCloudLightningRain": [], + "BootstrapCloudLightningRainFill": [], + "BootstrapCloudMinus": [], + "BootstrapCloudMinusFill": [], + "BootstrapCloudMoon": [], + "BootstrapCloudMoonFill": [], + "BootstrapCloudPlus": [], + "BootstrapCloudPlusFill": [], + "BootstrapCloudRain": [], + "BootstrapCloudRainFill": [], + "BootstrapCloudRainHeavy": [], + "BootstrapCloudRainHeavyFill": [], + "BootstrapCloudSlash": [], + "BootstrapCloudSlashFill": [], + "BootstrapCloudSleet": [], + "BootstrapCloudSleetFill": [], + "BootstrapCloudSnow": [], + "BootstrapCloudSnowFill": [], + "BootstrapCloudSun": [], + "BootstrapCloudSunFill": [], + "BootstrapCloudUpload": [], + "BootstrapCloudUploadFill": [], + "BootstrapClouds": [], + "BootstrapCloudsFill": [], + "BootstrapCloudy": [], + "BootstrapCloudyFill": [], + "BootstrapCode": [], + "BootstrapCodeSlash": [], + "BootstrapCodeSquare": [], + "BootstrapCoin": [], + "BootstrapCollection": [], + "BootstrapCollectionFill": [], + "BootstrapCollectionPlay": [], + "BootstrapCollectionPlayFill": [], + "BootstrapColumns": [], + "BootstrapColumnsGap": [], + "BootstrapCommand": [], + "BootstrapCompass": [], + "BootstrapCompassFill": [], + "BootstrapCone": [], + "BootstrapConeStriped": [], + "BootstrapController": [], + "BootstrapCpu": [], + "BootstrapCpuFill": [], + "BootstrapCreditCard": [], + "BootstrapCreditCard2Back": [], + "BootstrapCreditCard2BackFill": [], + "BootstrapCreditCard2Front": [], + "BootstrapCreditCard2FrontFill": [], + "BootstrapCreditCardFill": [], + "BootstrapCrop": [], + "BootstrapCup": [], + "BootstrapCupFill": [], + "BootstrapCupHot": [], + "BootstrapCupHotFill": [], + "BootstrapCupStraw": [], + "BootstrapCurrencyBitcoin": [], + "BootstrapCurrencyDollar": [], + "BootstrapCurrencyEuro": [], + "BootstrapCurrencyExchange": [], + "BootstrapCurrencyPound": [], + "BootstrapCurrencyRupee": [], + "BootstrapCurrencyYen": [], + "BootstrapCursor": [], + "BootstrapCursorFill": [], + "BootstrapCursorText": [], + "BootstrapDash": [], + "BootstrapDashCircle": [], + "BootstrapDashCircleDotted": [], + "BootstrapDashCircleFill": [], + "BootstrapDashLg": [], + "BootstrapDashSquare": [], + "BootstrapDashSquareDotted": [], + "BootstrapDashSquareFill": [], + "BootstrapDatabase": [], + "BootstrapDatabaseAdd": [], + "BootstrapDatabaseCheck": [], + "BootstrapDatabaseDash": [], + "BootstrapDatabaseDown": [], + "BootstrapDatabaseExclamation": [], + "BootstrapDatabaseFill": [], + "BootstrapDatabaseFillAdd": [], + "BootstrapDatabaseFillCheck": [], + "BootstrapDatabaseFillDash": [], + "BootstrapDatabaseFillDown": [], + "BootstrapDatabaseFillExclamation": [], + "BootstrapDatabaseFillGear": [], + "BootstrapDatabaseFillLock": [], + "BootstrapDatabaseFillSlash": [], + "BootstrapDatabaseFillUp": [], + "BootstrapDatabaseFillX": [], + "BootstrapDatabaseGear": [], + "BootstrapDatabaseLock": [], + "BootstrapDatabaseSlash": [], + "BootstrapDatabaseUp": [], + "BootstrapDatabaseX": [], + "BootstrapDeviceHdd": [], + "BootstrapDeviceHddFill": [], + "BootstrapDeviceSsd": [], + "BootstrapDeviceSsdFill": [], + "BootstrapDiagram2": [], + "BootstrapDiagram2Fill": [], + "BootstrapDiagram3": [], + "BootstrapDiagram3Fill": [], + "BootstrapDiamond": [], + "BootstrapDiamondFill": [], + "BootstrapDiamondHalf": [], + "BootstrapDice1": [], + "BootstrapDice1Fill": [], + "BootstrapDice2": [], + "BootstrapDice2Fill": [], + "BootstrapDice3": [], + "BootstrapDice3Fill": [], + "BootstrapDice4": [], + "BootstrapDice4Fill": [], + "BootstrapDice5": [], + "BootstrapDice5Fill": [], + "BootstrapDice6": [], + "BootstrapDice6Fill": [], + "BootstrapDisc": [], + "BootstrapDiscFill": [], + "BootstrapDiscord": [], + "BootstrapDisplay": [], + "BootstrapDisplayFill": [], + "BootstrapDisplayport": [], + "BootstrapDisplayportFill": [], + "BootstrapDistributeHorizontal": [], + "BootstrapDistributeVertical": [], + "BootstrapDoorClosed": [], + "BootstrapDoorClosedFill": [], + "BootstrapDoorOpen": [], + "BootstrapDoorOpenFill": [], + "BootstrapDot": [], + "BootstrapDownload": [], + "BootstrapDpad": [], + "BootstrapDpadFill": [], + "BootstrapDribbble": [], + "BootstrapDropbox": [], + "BootstrapDroplet": [], + "BootstrapDropletFill": [], + "BootstrapDropletHalf": [], + "BootstrapEar": [], + "BootstrapEarFill": [], + "BootstrapEarbuds": [], + "BootstrapEasel": [], + "BootstrapEasel2": [], + "BootstrapEasel2Fill": [], + "BootstrapEasel3": [], + "BootstrapEasel3Fill": [], + "BootstrapEaselFill": [], + "BootstrapEgg": [], + "BootstrapEggFill": [], + "BootstrapEggFried": [], + "BootstrapEject": [], + "BootstrapEjectFill": [], + "BootstrapEmojiAngry": [], + "BootstrapEmojiAngryFill": [], + "BootstrapEmojiDizzy": [], + "BootstrapEmojiDizzyFill": [], + "BootstrapEmojiExpressionless": [], + "BootstrapEmojiExpressionlessFill": [], + "BootstrapEmojiFrown": [], + "BootstrapEmojiFrownFill": [], + "BootstrapEmojiHeartEyes": [], + "BootstrapEmojiHeartEyesFill": [], + "BootstrapEmojiKiss": [], + "BootstrapEmojiKissFill": [], + "BootstrapEmojiLaughing": [], + "BootstrapEmojiLaughingFill": [], + "BootstrapEmojiNeutral": [], + "BootstrapEmojiNeutralFill": [], + "BootstrapEmojiSmile": [], + "BootstrapEmojiSmileFill": [], + "BootstrapEmojiSmileUpsideDown": [], + "BootstrapEmojiSmileUpsideDownFill": [], + "BootstrapEmojiSunglasses": [], + "BootstrapEmojiSunglassesFill": [], + "BootstrapEmojiWink": [], + "BootstrapEmojiWinkFill": [], + "BootstrapEnvelope": [], + "BootstrapEnvelopeAt": [], + "BootstrapEnvelopeAtFill": [], + "BootstrapEnvelopeCheck": [], + "BootstrapEnvelopeCheckFill": [], + "BootstrapEnvelopeDash": [], + "BootstrapEnvelopeDashFill": [], + "BootstrapEnvelopeExclamation": [], + "BootstrapEnvelopeExclamationFill": [], + "BootstrapEnvelopeFill": [], + "BootstrapEnvelopeHeart": [], + "BootstrapEnvelopeHeartFill": [], + "BootstrapEnvelopeOpen": [], + "BootstrapEnvelopeOpenFill": [], + "BootstrapEnvelopeOpenHeart": [], + "BootstrapEnvelopeOpenHeartFill": [], + "BootstrapEnvelopePaper": [], + "BootstrapEnvelopePaperFill": [], + "BootstrapEnvelopePaperHeart": [], + "BootstrapEnvelopePaperHeartFill": [], + "BootstrapEnvelopePlus": [], + "BootstrapEnvelopePlusFill": [], + "BootstrapEnvelopeSlash": [], + "BootstrapEnvelopeSlashFill": [], + "BootstrapEnvelopeX": [], + "BootstrapEnvelopeXFill": [], + "BootstrapEraser": [], + "BootstrapEraserFill": [], + "BootstrapEscape": [], + "BootstrapEthernet": [], + "BootstrapEvFront": [], + "BootstrapEvFrontFill": [], + "BootstrapEvStation": [], + "BootstrapEvStationFill": [], + "BootstrapExclamation": [], + "BootstrapExclamationCircle": [], + "BootstrapExclamationCircleFill": [], + "BootstrapExclamationDiamond": [], + "BootstrapExclamationDiamondFill": [], + "BootstrapExclamationLg": [], + "BootstrapExclamationOctagon": [], + "BootstrapExclamationOctagonFill": [], + "BootstrapExclamationSquare": [], + "BootstrapExclamationSquareFill": [], + "BootstrapExclamationTriangle": [], + "BootstrapExclamationTriangleFill": [], + "BootstrapExclude": [], + "BootstrapExplicit": [], + "BootstrapExplicitFill": [], + "BootstrapEye": [], + "BootstrapEyeFill": [], + "BootstrapEyeSlash": [], + "BootstrapEyeSlashFill": [], + "BootstrapEyedropper": [], + "BootstrapEyeglasses": [], + "BootstrapFacebook": [], + "BootstrapFan": [], + "BootstrapFastForward": [], + "BootstrapFastForwardBtn": [], + "BootstrapFastForwardBtnFill": [], + "BootstrapFastForwardCircle": [], + "BootstrapFastForwardCircleFill": [], + "BootstrapFastForwardFill": [], + "BootstrapFile": [], + "BootstrapFileArrowDown": [], + "BootstrapFileArrowDownFill": [], + "BootstrapFileArrowUp": [], + "BootstrapFileArrowUpFill": [], + "BootstrapFileBarGraph": [], + "BootstrapFileBarGraphFill": [], + "BootstrapFileBinary": [], + "BootstrapFileBinaryFill": [], + "BootstrapFileBreak": [], + "BootstrapFileBreakFill": [], + "BootstrapFileCheck": [], + "BootstrapFileCheckFill": [], + "BootstrapFileCode": [], + "BootstrapFileCodeFill": [], + "BootstrapFileDiff": [], + "BootstrapFileDiffFill": [], + "BootstrapFileEarmark": [], + "BootstrapFileEarmarkArrowDown": [], + "BootstrapFileEarmarkArrowDownFill": [], + "BootstrapFileEarmarkArrowUp": [], + "BootstrapFileEarmarkArrowUpFill": [], + "BootstrapFileEarmarkBarGraph": [], + "BootstrapFileEarmarkBarGraphFill": [], + "BootstrapFileEarmarkBinary": [], + "BootstrapFileEarmarkBinaryFill": [], + "BootstrapFileEarmarkBreak": [], + "BootstrapFileEarmarkBreakFill": [], + "BootstrapFileEarmarkCheck": [], + "BootstrapFileEarmarkCheckFill": [], + "BootstrapFileEarmarkCode": [], + "BootstrapFileEarmarkCodeFill": [], + "BootstrapFileEarmarkDiff": [], + "BootstrapFileEarmarkDiffFill": [], + "BootstrapFileEarmarkEasel": [], + "BootstrapFileEarmarkEaselFill": [], + "BootstrapFileEarmarkExcel": [], + "BootstrapFileEarmarkExcelFill": [], + "BootstrapFileEarmarkFill": [], + "BootstrapFileEarmarkFont": [], + "BootstrapFileEarmarkFontFill": [], + "BootstrapFileEarmarkImage": [], + "BootstrapFileEarmarkImageFill": [], + "BootstrapFileEarmarkLock": [], + "BootstrapFileEarmarkLock2": [], + "BootstrapFileEarmarkLock2Fill": [], + "BootstrapFileEarmarkLockFill": [], + "BootstrapFileEarmarkMedical": [], + "BootstrapFileEarmarkMedicalFill": [], + "BootstrapFileEarmarkMinus": [], + "BootstrapFileEarmarkMinusFill": [], + "BootstrapFileEarmarkMusic": [], + "BootstrapFileEarmarkMusicFill": [], + "BootstrapFileEarmarkPdf": [], + "BootstrapFileEarmarkPdfFill": [], + "BootstrapFileEarmarkPerson": [], + "BootstrapFileEarmarkPersonFill": [], + "BootstrapFileEarmarkPlay": [], + "BootstrapFileEarmarkPlayFill": [], + "BootstrapFileEarmarkPlus": [], + "BootstrapFileEarmarkPlusFill": [], + "BootstrapFileEarmarkPost": [], + "BootstrapFileEarmarkPostFill": [], + "BootstrapFileEarmarkPpt": [], + "BootstrapFileEarmarkPptFill": [], + "BootstrapFileEarmarkRichtext": [], + "BootstrapFileEarmarkRichtextFill": [], + "BootstrapFileEarmarkRuled": [], + "BootstrapFileEarmarkRuledFill": [], + "BootstrapFileEarmarkSlides": [], + "BootstrapFileEarmarkSlidesFill": [], + "BootstrapFileEarmarkSpreadsheet": [], + "BootstrapFileEarmarkSpreadsheetFill": [], + "BootstrapFileEarmarkText": [], + "BootstrapFileEarmarkTextFill": [], + "BootstrapFileEarmarkWord": [], + "BootstrapFileEarmarkWordFill": [], + "BootstrapFileEarmarkX": [], + "BootstrapFileEarmarkXFill": [], + "BootstrapFileEarmarkZip": [], + "BootstrapFileEarmarkZipFill": [], + "BootstrapFileEasel": [], + "BootstrapFileEaselFill": [], + "BootstrapFileExcel": [], + "BootstrapFileExcelFill": [], + "BootstrapFileFill": [], + "BootstrapFileFont": [], + "BootstrapFileFontFill": [], + "BootstrapFileImage": [], + "BootstrapFileImageFill": [], + "BootstrapFileLock": [], + "BootstrapFileLock2": [], + "BootstrapFileLock2Fill": [], + "BootstrapFileLockFill": [], + "BootstrapFileMedical": [], + "BootstrapFileMedicalFill": [], + "BootstrapFileMinus": [], + "BootstrapFileMinusFill": [], + "BootstrapFileMusic": [], + "BootstrapFileMusicFill": [], + "BootstrapFilePdf": [], + "BootstrapFilePdfFill": [], + "BootstrapFilePerson": [], + "BootstrapFilePersonFill": [], + "BootstrapFilePlay": [], + "BootstrapFilePlayFill": [], + "BootstrapFilePlus": [], + "BootstrapFilePlusFill": [], + "BootstrapFilePost": [], + "BootstrapFilePostFill": [], + "BootstrapFilePpt": [], + "BootstrapFilePptFill": [], + "BootstrapFileRichtext": [], + "BootstrapFileRichtextFill": [], + "BootstrapFileRuled": [], + "BootstrapFileRuledFill": [], + "BootstrapFileSlides": [], + "BootstrapFileSlidesFill": [], + "BootstrapFileSpreadsheet": [], + "BootstrapFileSpreadsheetFill": [], + "BootstrapFileText": [], + "BootstrapFileTextFill": [], + "BootstrapFileWord": [], + "BootstrapFileWordFill": [], + "BootstrapFileX": [], + "BootstrapFileXFill": [], + "BootstrapFileZip": [], + "BootstrapFileZipFill": [], + "BootstrapFiles": [], + "BootstrapFilesAlt": [], + "BootstrapFiletypeAac": [], + "BootstrapFiletypeAi": [], + "BootstrapFiletypeBmp": [], + "BootstrapFiletypeCs": [], + "BootstrapFiletypeCss": [], + "BootstrapFiletypeCsv": [], + "BootstrapFiletypeDoc": [], + "BootstrapFiletypeDocx": [], + "BootstrapFiletypeExe": [], + "BootstrapFiletypeGif": [], + "BootstrapFiletypeHeic": [], + "BootstrapFiletypeHtml": [], + "BootstrapFiletypeJava": [], + "BootstrapFiletypeJpg": [], + "BootstrapFiletypeJs": [], + "BootstrapFiletypeJson": [], + "BootstrapFiletypeJsx": [], + "BootstrapFiletypeKey": [], + "BootstrapFiletypeM4P": [], + "BootstrapFiletypeMd": [], + "BootstrapFiletypeMdx": [], + "BootstrapFiletypeMov": [], + "BootstrapFiletypeMp3": [], + "BootstrapFiletypeMp4": [], + "BootstrapFiletypeOtf": [], + "BootstrapFiletypePdf": [], + "BootstrapFiletypePhp": [], + "BootstrapFiletypePng": [], + "BootstrapFiletypePpt": [], + "BootstrapFiletypePptx": [], + "BootstrapFiletypePsd": [], + "BootstrapFiletypePy": [], + "BootstrapFiletypeRaw": [], + "BootstrapFiletypeRb": [], + "BootstrapFiletypeSass": [], + "BootstrapFiletypeScss": [], + "BootstrapFiletypeSh": [], + "BootstrapFiletypeSql": [], + "BootstrapFiletypeSvg": [], + "BootstrapFiletypeTiff": [], + "BootstrapFiletypeTsx": [], + "BootstrapFiletypeTtf": [], + "BootstrapFiletypeTxt": [], + "BootstrapFiletypeWav": [], + "BootstrapFiletypeWoff": [], + "BootstrapFiletypeXls": [], + "BootstrapFiletypeXlsx": [], + "BootstrapFiletypeXml": [], + "BootstrapFiletypeYml": [], + "BootstrapFilm": [], + "BootstrapFilter": [], + "BootstrapFilterCircle": [], + "BootstrapFilterCircleFill": [], + "BootstrapFilterLeft": [], + "BootstrapFilterRight": [], + "BootstrapFilterSquare": [], + "BootstrapFilterSquareFill": [], + "BootstrapFingerprint": [], + "BootstrapFire": [], + "BootstrapFlag": [], + "BootstrapFlagFill": [], + "BootstrapFlower1": [], + "BootstrapFlower2": [], + "BootstrapFlower3": [], + "BootstrapFolder": [], + "BootstrapFolder2": [], + "BootstrapFolder2Open": [], + "BootstrapFolderCheck": [], + "BootstrapFolderFill": [], + "BootstrapFolderMinus": [], + "BootstrapFolderPlus": [], + "BootstrapFolderSymlink": [], + "BootstrapFolderSymlinkFill": [], + "BootstrapFolderX": [], + "BootstrapFonts": [], + "BootstrapForward": [], + "BootstrapForwardFill": [], + "BootstrapFront": [], + "BootstrapFuelPump": [], + "BootstrapFuelPumpDiesel": [], + "BootstrapFuelPumpDieselFill": [], + "BootstrapFuelPumpFill": [], + "BootstrapFullscreen": [], + "BootstrapFullscreenExit": [], + "BootstrapFunnel": [], + "BootstrapFunnelFill": [], + "BootstrapGear": [], + "BootstrapGearFill": [], + "BootstrapGearWide": [], + "BootstrapGearWideConnected": [], + "BootstrapGem": [], + "BootstrapGenderAmbiguous": [], + "BootstrapGenderFemale": [], + "BootstrapGenderMale": [], + "BootstrapGenderTrans": [], + "BootstrapGeo": [], + "BootstrapGeoAlt": [], + "BootstrapGeoAltFill": [], + "BootstrapGeoFill": [], + "BootstrapGift": [], + "BootstrapGiftFill": [], + "BootstrapGit": [], + "BootstrapGithub": [], + "BootstrapGlobe": [], + "BootstrapGlobe2": [], + "BootstrapGlobeAmericas": [], + "BootstrapGlobeAsiaAustralia": [], + "BootstrapGlobeCentralSouthAsia": [], + "BootstrapGlobeEuropeAfrica": [], + "BootstrapGoogle": [], + "BootstrapGooglePlay": [], + "BootstrapGpuCard": [], + "BootstrapGraphDown": [], + "BootstrapGraphDownArrow": [], + "BootstrapGraphUp": [], + "BootstrapGraphUpArrow": [], + "BootstrapGrid": [], + "BootstrapGrid1X2": [], + "BootstrapGrid1X2Fill": [], + "BootstrapGrid3X2": [], + "BootstrapGrid3X2Gap": [], + "BootstrapGrid3X2GapFill": [], + "BootstrapGrid3X3": [], + "BootstrapGrid3X3Gap": [], + "BootstrapGrid3X3GapFill": [], + "BootstrapGridFill": [], + "BootstrapGripHorizontal": [], + "BootstrapGripVertical": [], + "BootstrapHCircle": [], + "BootstrapHCircleFill": [], + "BootstrapHSquare": [], + "BootstrapHSquareFill": [], + "BootstrapHammer": [], + "BootstrapHandIndex": [], + "BootstrapHandIndexFill": [], + "BootstrapHandIndexThumb": [], + "BootstrapHandIndexThumbFill": [], + "BootstrapHandThumbsDown": [], + "BootstrapHandThumbsDownFill": [], + "BootstrapHandThumbsUp": [], + "BootstrapHandThumbsUpFill": [], + "BootstrapHandbag": [], + "BootstrapHandbagFill": [], + "BootstrapHash": [], + "BootstrapHdd": [], + "BootstrapHddFill": [], + "BootstrapHddNetwork": [], + "BootstrapHddNetworkFill": [], + "BootstrapHddRack": [], + "BootstrapHddRackFill": [], + "BootstrapHddStack": [], + "BootstrapHddStackFill": [], + "BootstrapHdmi": [], + "BootstrapHdmiFill": [], + "BootstrapHeadphones": [], + "BootstrapHeadset": [], + "BootstrapHeadsetVr": [], + "BootstrapHeart": [], + "BootstrapHeartArrow": [], + "BootstrapHeartFill": [], + "BootstrapHeartHalf": [], + "BootstrapHeartPulse": [], + "BootstrapHeartPulseFill": [], + "BootstrapHeartbreak": [], + "BootstrapHeartbreakFill": [], + "BootstrapHearts": [], + "BootstrapHeptagon": [], + "BootstrapHeptagonFill": [], + "BootstrapHeptagonHalf": [], + "BootstrapHexagon": [], + "BootstrapHexagonFill": [], + "BootstrapHexagonHalf": [], + "BootstrapHospital": [], + "BootstrapHospitalFill": [], + "BootstrapHourglass": [], + "BootstrapHourglassBottom": [], + "BootstrapHourglassSplit": [], + "BootstrapHourglassTop": [], + "BootstrapHouse": [], + "BootstrapHouseAdd": [], + "BootstrapHouseAddFill": [], + "BootstrapHouseCheck": [], + "BootstrapHouseCheckFill": [], + "BootstrapHouseDash": [], + "BootstrapHouseDashFill": [], + "BootstrapHouseDoor": [], + "BootstrapHouseDoorFill": [], + "BootstrapHouseDown": [], + "BootstrapHouseDownFill": [], + "BootstrapHouseExclamation": [], + "BootstrapHouseExclamationFill": [], + "BootstrapHouseFill": [], + "BootstrapHouseGear": [], + "BootstrapHouseGearFill": [], + "BootstrapHouseHeart": [], + "BootstrapHouseHeartFill": [], + "BootstrapHouseLock": [], + "BootstrapHouseLockFill": [], + "BootstrapHouseSlash": [], + "BootstrapHouseSlashFill": [], + "BootstrapHouseUp": [], + "BootstrapHouseUpFill": [], + "BootstrapHouseX": [], + "BootstrapHouseXFill": [], + "BootstrapHouses": [], + "BootstrapHousesFill": [], + "BootstrapHr": [], + "BootstrapHurricane": [], + "BootstrapHypnotize": [], + "BootstrapImage": [], + "BootstrapImageAlt": [], + "BootstrapImageFill": [], + "BootstrapImages": [], + "BootstrapInbox": [], + "BootstrapInboxFill": [], + "BootstrapInboxes": [], + "BootstrapInboxesFill": [], + "BootstrapIncognito": [], + "BootstrapIndent": [], + "BootstrapInfinity": [], + "BootstrapInfo": [], + "BootstrapInfoCircle": [], + "BootstrapInfoCircleFill": [], + "BootstrapInfoLg": [], + "BootstrapInfoSquare": [], + "BootstrapInfoSquareFill": [], + "BootstrapInputCursor": [], + "BootstrapInputCursorText": [], + "BootstrapInstagram": [], + "BootstrapIntersect": [], + "BootstrapJournal": [], + "BootstrapJournalAlbum": [], + "BootstrapJournalArrowDown": [], + "BootstrapJournalArrowUp": [], + "BootstrapJournalBookmark": [], + "BootstrapJournalBookmarkFill": [], + "BootstrapJournalCheck": [], + "BootstrapJournalCode": [], + "BootstrapJournalMedical": [], + "BootstrapJournalMinus": [], + "BootstrapJournalPlus": [], + "BootstrapJournalRichtext": [], + "BootstrapJournalText": [], + "BootstrapJournalX": [], + "BootstrapJournals": [], + "BootstrapJoystick": [], + "BootstrapJustify": [], + "BootstrapJustifyLeft": [], + "BootstrapJustifyRight": [], + "BootstrapKanban": [], + "BootstrapKanbanFill": [], + "BootstrapKey": [], + "BootstrapKeyFill": [], + "BootstrapKeyboard": [], + "BootstrapKeyboardFill": [], + "BootstrapLadder": [], + "BootstrapLamp": [], + "BootstrapLampFill": [], + "BootstrapLaptop": [], + "BootstrapLaptopFill": [], + "BootstrapLayerBackward": [], + "BootstrapLayerForward": [], + "BootstrapLayers": [], + "BootstrapLayersFill": [], + "BootstrapLayersHalf": [], + "BootstrapLayoutSidebar": [], + "BootstrapLayoutSidebarInset": [], + "BootstrapLayoutSidebarInsetReverse": [], + "BootstrapLayoutSidebarReverse": [], + "BootstrapLayoutSplit": [], + "BootstrapLayoutTextSidebar": [], + "BootstrapLayoutTextSidebarReverse": [], + "BootstrapLayoutTextWindow": [], + "BootstrapLayoutTextWindowReverse": [], + "BootstrapLayoutThreeColumns": [], + "BootstrapLayoutWtf": [], + "BootstrapLifePreserver": [], + "BootstrapLightbulb": [], + "BootstrapLightbulbFill": [], + "BootstrapLightbulbOff": [], + "BootstrapLightbulbOffFill": [], + "BootstrapLightning": [], + "BootstrapLightningCharge": [], + "BootstrapLightningChargeFill": [], + "BootstrapLightningFill": [], + "BootstrapLine": [], + "BootstrapLink": [], + "BootstrapLink45Deg": [], + "BootstrapLinkedin": [], + "BootstrapList": [], + "BootstrapListCheck": [], + "BootstrapListColumns": [], + "BootstrapListColumnsReverse": [], + "BootstrapListNested": [], + "BootstrapListOl": [], + "BootstrapListStars": [], + "BootstrapListTask": [], + "BootstrapListUl": [], + "BootstrapLock": [], + "BootstrapLockFill": [], + "BootstrapLungs": [], + "BootstrapLungsFill": [], + "BootstrapMagic": [], + "BootstrapMagnet": [], + "BootstrapMagnetFill": [], + "BootstrapMailbox": [], + "BootstrapMailbox2": [], + "BootstrapMap": [], + "BootstrapMapFill": [], + "BootstrapMarkdown": [], + "BootstrapMarkdownFill": [], + "BootstrapMask": [], + "BootstrapMastodon": [], + "BootstrapMedium": [], + "BootstrapMegaphone": [], + "BootstrapMegaphoneFill": [], + "BootstrapMemory": [], + "BootstrapMenuApp": [], + "BootstrapMenuAppFill": [], + "BootstrapMenuButton": [], + "BootstrapMenuButtonFill": [], + "BootstrapMenuButtonWide": [], + "BootstrapMenuButtonWideFill": [], + "BootstrapMenuDown": [], + "BootstrapMenuUp": [], + "BootstrapMessenger": [], + "BootstrapMeta": [], + "BootstrapMic": [], + "BootstrapMicFill": [], + "BootstrapMicMute": [], + "BootstrapMicMuteFill": [], + "BootstrapMicrosoft": [], + "BootstrapMicrosoftTeams": [], + "BootstrapMinecart": [], + "BootstrapMinecartLoaded": [], + "BootstrapModem": [], + "BootstrapModemFill": [], + "BootstrapMoisture": [], + "BootstrapMoon": [], + "BootstrapMoonFill": [], + "BootstrapMoonStars": [], + "BootstrapMoonStarsFill": [], + "BootstrapMortarboard": [], + "BootstrapMortarboardFill": [], + "BootstrapMotherboard": [], + "BootstrapMotherboardFill": [], + "BootstrapMouse": [], + "BootstrapMouse2": [], + "BootstrapMouse2Fill": [], + "BootstrapMouse3": [], + "BootstrapMouse3Fill": [], + "BootstrapMouseFill": [], + "BootstrapMusicNote": [], + "BootstrapMusicNoteBeamed": [], + "BootstrapMusicNoteList": [], + "BootstrapMusicPlayer": [], + "BootstrapMusicPlayerFill": [], + "BootstrapNewspaper": [], + "BootstrapNintendoSwitch": [], + "BootstrapNodeMinus": [], + "BootstrapNodeMinusFill": [], + "BootstrapNodePlus": [], + "BootstrapNodePlusFill": [], + "BootstrapNut": [], + "BootstrapNutFill": [], + "BootstrapNvidia": [], + "BootstrapOctagon": [], + "BootstrapOctagonFill": [], + "BootstrapOctagonHalf": [], + "BootstrapOpticalAudio": [], + "BootstrapOpticalAudioFill": [], + "BootstrapOption": [], + "BootstrapOutlet": [], + "BootstrapPCircle": [], + "BootstrapPCircleFill": [], + "BootstrapPSquare": [], + "BootstrapPSquareFill": [], + "BootstrapPaintBucket": [], + "BootstrapPalette": [], + "BootstrapPalette2": [], + "BootstrapPaletteFill": [], + "BootstrapPaperclip": [], + "BootstrapParagraph": [], + "BootstrapPass": [], + "BootstrapPassFill": [], + "BootstrapPatchCheck": [], + "BootstrapPatchCheckFill": [], + "BootstrapPatchExclamation": [], + "BootstrapPatchExclamationFill": [], + "BootstrapPatchMinus": [], + "BootstrapPatchMinusFill": [], + "BootstrapPatchPlus": [], + "BootstrapPatchPlusFill": [], + "BootstrapPatchQuestion": [], + "BootstrapPatchQuestionFill": [], + "BootstrapPause": [], + "BootstrapPauseBtn": [], + "BootstrapPauseBtnFill": [], + "BootstrapPauseCircle": [], + "BootstrapPauseCircleFill": [], + "BootstrapPauseFill": [], + "BootstrapPaypal": [], + "BootstrapPc": [], + "BootstrapPcDisplay": [], + "BootstrapPcDisplayHorizontal": [], + "BootstrapPcHorizontal": [], + "BootstrapPciCard": [], + "BootstrapPeace": [], + "BootstrapPeaceFill": [], + "BootstrapPen": [], + "BootstrapPenFill": [], + "BootstrapPencil": [], + "BootstrapPencilFill": [], + "BootstrapPencilSquare": [], + "BootstrapPentagon": [], + "BootstrapPentagonFill": [], + "BootstrapPentagonHalf": [], + "BootstrapPeople": [], + "BootstrapPeopleFill": [], + "BootstrapPercent": [], + "BootstrapPerson": [], + "BootstrapPersonAdd": [], + "BootstrapPersonBadge": [], + "BootstrapPersonBadgeFill": [], + "BootstrapPersonBoundingBox": [], + "BootstrapPersonCheck": [], + "BootstrapPersonCheckFill": [], + "BootstrapPersonCircle": [], + "BootstrapPersonDash": [], + "BootstrapPersonDashFill": [], + "BootstrapPersonDown": [], + "BootstrapPersonExclamation": [], + "BootstrapPersonFill": [], + "BootstrapPersonFillAdd": [], + "BootstrapPersonFillCheck": [], + "BootstrapPersonFillDash": [], + "BootstrapPersonFillDown": [], + "BootstrapPersonFillExclamation": [], + "BootstrapPersonFillGear": [], + "BootstrapPersonFillLock": [], + "BootstrapPersonFillSlash": [], + "BootstrapPersonFillUp": [], + "BootstrapPersonFillX": [], + "BootstrapPersonGear": [], + "BootstrapPersonHeart": [], + "BootstrapPersonHearts": [], + "BootstrapPersonLinesFill": [], + "BootstrapPersonLock": [], + "BootstrapPersonPlus": [], + "BootstrapPersonPlusFill": [], + "BootstrapPersonRolodex": [], + "BootstrapPersonSlash": [], + "BootstrapPersonSquare": [], + "BootstrapPersonUp": [], + "BootstrapPersonVcard": [], + "BootstrapPersonVcardFill": [], + "BootstrapPersonVideo": [], + "BootstrapPersonVideo2": [], + "BootstrapPersonVideo3": [], + "BootstrapPersonWorkspace": [], + "BootstrapPersonX": [], + "BootstrapPersonXFill": [], + "BootstrapPhone": [], + "BootstrapPhoneFill": [], + "BootstrapPhoneFlip": [], + "BootstrapPhoneLandscape": [], + "BootstrapPhoneLandscapeFill": [], + "BootstrapPhoneVibrate": [], + "BootstrapPhoneVibrateFill": [], + "BootstrapPieChart": [], + "BootstrapPieChartFill": [], + "BootstrapPiggyBank": [], + "BootstrapPiggyBankFill": [], + "BootstrapPin": [], + "BootstrapPinAngle": [], + "BootstrapPinAngleFill": [], + "BootstrapPinFill": [], + "BootstrapPinMap": [], + "BootstrapPinMapFill": [], + "BootstrapPinterest": [], + "BootstrapPip": [], + "BootstrapPipFill": [], + "BootstrapPlay": [], + "BootstrapPlayBtn": [], + "BootstrapPlayBtnFill": [], + "BootstrapPlayCircle": [], + "BootstrapPlayCircleFill": [], + "BootstrapPlayFill": [], + "BootstrapPlaystation": [], + "BootstrapPlug": [], + "BootstrapPlugFill": [], + "BootstrapPlugin": [], + "BootstrapPlus": [], + "BootstrapPlusCircle": [], + "BootstrapPlusCircleDotted": [], + "BootstrapPlusCircleFill": [], + "BootstrapPlusLg": [], + "BootstrapPlusSlashMinus": [], + "BootstrapPlusSquare": [], + "BootstrapPlusSquareDotted": [], + "BootstrapPlusSquareFill": [], + "BootstrapPostage": [], + "BootstrapPostageFill": [], + "BootstrapPostageHeart": [], + "BootstrapPostageHeartFill": [], + "BootstrapPostcard": [], + "BootstrapPostcardFill": [], + "BootstrapPostcardHeart": [], + "BootstrapPostcardHeartFill": [], + "BootstrapPower": [], + "BootstrapPrescription": [], + "BootstrapPrescription2": [], + "BootstrapPrinter": [], + "BootstrapPrinterFill": [], + "BootstrapProjector": [], + "BootstrapProjectorFill": [], + "BootstrapPuzzle": [], + "BootstrapPuzzleFill": [], + "BootstrapQrCode": [], + "BootstrapQrCodeScan": [], + "BootstrapQuestion": [], + "BootstrapQuestionCircle": [], + "BootstrapQuestionCircleFill": [], + "BootstrapQuestionDiamond": [], + "BootstrapQuestionDiamondFill": [], + "BootstrapQuestionLg": [], + "BootstrapQuestionOctagon": [], + "BootstrapQuestionOctagonFill": [], + "BootstrapQuestionSquare": [], + "BootstrapQuestionSquareFill": [], + "BootstrapQuora": [], + "BootstrapQuote": [], + "BootstrapRCircle": [], + "BootstrapRCircleFill": [], + "BootstrapRSquare": [], + "BootstrapRSquareFill": [], + "BootstrapRadioactive": [], + "BootstrapRainbow": [], + "BootstrapReceipt": [], + "BootstrapReceiptCutoff": [], + "BootstrapReception0": [], + "BootstrapReception1": [], + "BootstrapReception2": [], + "BootstrapReception3": [], + "BootstrapReception4": [], + "BootstrapRecord": [], + "BootstrapRecord2": [], + "BootstrapRecord2Fill": [], + "BootstrapRecordBtn": [], + "BootstrapRecordBtnFill": [], + "BootstrapRecordCircle": [], + "BootstrapRecordCircleFill": [], + "BootstrapRecordFill": [], + "BootstrapRecycle": [], + "BootstrapReddit": [], + "BootstrapRegex": [], + "BootstrapRepeat": [], + "BootstrapRepeat1": [], + "BootstrapReply": [], + "BootstrapReplyAll": [], + "BootstrapReplyAllFill": [], + "BootstrapReplyFill": [], + "BootstrapRewind": [], + "BootstrapRewindBtn": [], + "BootstrapRewindBtnFill": [], + "BootstrapRewindCircle": [], + "BootstrapRewindCircleFill": [], + "BootstrapRewindFill": [], + "BootstrapRobot": [], + "BootstrapRocket": [], + "BootstrapRocketFill": [], + "BootstrapRocketTakeoff": [], + "BootstrapRocketTakeoffFill": [], + "BootstrapRouter": [], + "BootstrapRouterFill": [], + "BootstrapRss": [], + "BootstrapRssFill": [], + "BootstrapRulers": [], + "BootstrapSafe": [], + "BootstrapSafe2": [], + "BootstrapSafe2Fill": [], + "BootstrapSafeFill": [], + "BootstrapSave": [], + "BootstrapSave2": [], + "BootstrapSave2Fill": [], + "BootstrapSaveFill": [], + "BootstrapScissors": [], + "BootstrapScooter": [], + "BootstrapScrewdriver": [], + "BootstrapSdCard": [], + "BootstrapSdCardFill": [], + "BootstrapSearch": [], + "BootstrapSearchHeart": [], + "BootstrapSearchHeartFill": [], + "BootstrapSegmentedNav": [], + "BootstrapSend": [], + "BootstrapSendCheck": [], + "BootstrapSendCheckFill": [], + "BootstrapSendDash": [], + "BootstrapSendDashFill": [], + "BootstrapSendExclamation": [], + "BootstrapSendExclamationFill": [], + "BootstrapSendFill": [], + "BootstrapSendPlus": [], + "BootstrapSendPlusFill": [], + "BootstrapSendSlash": [], + "BootstrapSendSlashFill": [], + "BootstrapSendX": [], + "BootstrapSendXFill": [], + "BootstrapServer": [], + "BootstrapShare": [], + "BootstrapShareFill": [], + "BootstrapShield": [], + "BootstrapShieldCheck": [], + "BootstrapShieldExclamation": [], + "BootstrapShieldFill": [], + "BootstrapShieldFillCheck": [], + "BootstrapShieldFillExclamation": [], + "BootstrapShieldFillMinus": [], + "BootstrapShieldFillPlus": [], + "BootstrapShieldFillX": [], + "BootstrapShieldLock": [], + "BootstrapShieldLockFill": [], + "BootstrapShieldMinus": [], + "BootstrapShieldPlus": [], + "BootstrapShieldShaded": [], + "BootstrapShieldSlash": [], + "BootstrapShieldSlashFill": [], + "BootstrapShieldX": [], + "BootstrapShift": [], + "BootstrapShiftFill": [], + "BootstrapShop": [], + "BootstrapShopWindow": [], + "BootstrapShuffle": [], + "BootstrapSignDeadEnd": [], + "BootstrapSignDeadEndFill": [], + "BootstrapSignDoNotEnter": [], + "BootstrapSignDoNotEnterFill": [], + "BootstrapSignIntersection": [], + "BootstrapSignIntersectionFill": [], + "BootstrapSignIntersectionSide": [], + "BootstrapSignIntersectionSideFill": [], + "BootstrapSignIntersectionT": [], + "BootstrapSignIntersectionTFill": [], + "BootstrapSignIntersectionY": [], + "BootstrapSignIntersectionYFill": [], + "BootstrapSignMergeLeft": [], + "BootstrapSignMergeLeftFill": [], + "BootstrapSignMergeRight": [], + "BootstrapSignMergeRightFill": [], + "BootstrapSignNoLeftTurn": [], + "BootstrapSignNoLeftTurnFill": [], + "BootstrapSignNoParking": [], + "BootstrapSignNoParkingFill": [], + "BootstrapSignNoRightTurn": [], + "BootstrapSignNoRightTurnFill": [], + "BootstrapSignRailroad": [], + "BootstrapSignRailroadFill": [], + "BootstrapSignStop": [], + "BootstrapSignStopFill": [], + "BootstrapSignStopLights": [], + "BootstrapSignStopLightsFill": [], + "BootstrapSignTurnLeft": [], + "BootstrapSignTurnLeftFill": [], + "BootstrapSignTurnRight": [], + "BootstrapSignTurnRightFill": [], + "BootstrapSignTurnSlightLeft": [], + "BootstrapSignTurnSlightLeftFill": [], + "BootstrapSignTurnSlightRight": [], + "BootstrapSignTurnSlightRightFill": [], + "BootstrapSignYield": [], + "BootstrapSignYieldFill": [], + "BootstrapSignal": [], + "BootstrapSignpost": [], + "BootstrapSignpost2": [], + "BootstrapSignpost2Fill": [], + "BootstrapSignpostFill": [], + "BootstrapSignpostSplit": [], + "BootstrapSignpostSplitFill": [], + "BootstrapSim": [], + "BootstrapSimFill": [], + "BootstrapSinaWeibo": [], + "BootstrapSkipBackward": [], + "BootstrapSkipBackwardBtn": [], + "BootstrapSkipBackwardBtnFill": [], + "BootstrapSkipBackwardCircle": [], + "BootstrapSkipBackwardCircleFill": [], + "BootstrapSkipBackwardFill": [], + "BootstrapSkipEnd": [], + "BootstrapSkipEndBtn": [], + "BootstrapSkipEndBtnFill": [], + "BootstrapSkipEndCircle": [], + "BootstrapSkipEndCircleFill": [], + "BootstrapSkipEndFill": [], + "BootstrapSkipForward": [], + "BootstrapSkipForwardBtn": [], + "BootstrapSkipForwardBtnFill": [], + "BootstrapSkipForwardCircle": [], + "BootstrapSkipForwardCircleFill": [], + "BootstrapSkipForwardFill": [], + "BootstrapSkipStart": [], + "BootstrapSkipStartBtn": [], + "BootstrapSkipStartBtnFill": [], + "BootstrapSkipStartCircle": [], + "BootstrapSkipStartCircleFill": [], + "BootstrapSkipStartFill": [], + "BootstrapSkype": [], + "BootstrapSlack": [], + "BootstrapSlash": [], + "BootstrapSlashCircle": [], + "BootstrapSlashCircleFill": [], + "BootstrapSlashLg": [], + "BootstrapSlashSquare": [], + "BootstrapSlashSquareFill": [], + "BootstrapSliders": [], + "BootstrapSliders2": [], + "BootstrapSliders2Vertical": [], + "BootstrapSmartwatch": [], + "BootstrapSnapchat": [], + "BootstrapSnow": [], + "BootstrapSnow2": [], + "BootstrapSnow3": [], + "BootstrapSortAlphaDown": [], + "BootstrapSortAlphaDownAlt": [], + "BootstrapSortAlphaUp": [], + "BootstrapSortAlphaUpAlt": [], + "BootstrapSortDown": [], + "BootstrapSortDownAlt": [], + "BootstrapSortNumericDown": [], + "BootstrapSortNumericDownAlt": [], + "BootstrapSortNumericUp": [], + "BootstrapSortNumericUpAlt": [], + "BootstrapSortUp": [], + "BootstrapSortUpAlt": [], + "BootstrapSoundwave": [], + "BootstrapSpeaker": [], + "BootstrapSpeakerFill": [], + "BootstrapSpeedometer": [], + "BootstrapSpeedometer2": [], + "BootstrapSpellcheck": [], + "BootstrapSpotify": [], + "BootstrapSquare": [], + "BootstrapSquareFill": [], + "BootstrapSquareHalf": [], + "BootstrapStack": [], + "BootstrapStackOverflow": [], + "BootstrapStar": [], + "BootstrapStarFill": [], + "BootstrapStarHalf": [], + "BootstrapStars": [], + "BootstrapSteam": [], + "BootstrapStickies": [], + "BootstrapStickiesFill": [], + "BootstrapSticky": [], + "BootstrapStickyFill": [], + "BootstrapStop": [], + "BootstrapStopBtn": [], + "BootstrapStopBtnFill": [], + "BootstrapStopCircle": [], + "BootstrapStopCircleFill": [], + "BootstrapStopFill": [], + "BootstrapStoplights": [], + "BootstrapStoplightsFill": [], + "BootstrapStopwatch": [], + "BootstrapStopwatchFill": [], + "BootstrapStrava": [], + "BootstrapStripe": [], + "BootstrapSubscript": [], + "BootstrapSubtract": [], + "BootstrapSuitClub": [], + "BootstrapSuitClubFill": [], + "BootstrapSuitDiamond": [], + "BootstrapSuitDiamondFill": [], + "BootstrapSuitHeart": [], + "BootstrapSuitHeartFill": [], + "BootstrapSuitSpade": [], + "BootstrapSuitSpadeFill": [], + "BootstrapSun": [], + "BootstrapSunFill": [], + "BootstrapSunglasses": [], + "BootstrapSunrise": [], + "BootstrapSunriseFill": [], + "BootstrapSunset": [], + "BootstrapSunsetFill": [], + "BootstrapSuperscript": [], + "BootstrapSymmetryHorizontal": [], + "BootstrapSymmetryVertical": [], + "BootstrapTable": [], + "BootstrapTablet": [], + "BootstrapTabletFill": [], + "BootstrapTabletLandscape": [], + "BootstrapTabletLandscapeFill": [], + "BootstrapTag": [], + "BootstrapTagFill": [], + "BootstrapTags": [], + "BootstrapTagsFill": [], + "BootstrapTaxiFront": [], + "BootstrapTaxiFrontFill": [], + "BootstrapTelegram": [], + "BootstrapTelephone": [], + "BootstrapTelephoneFill": [], + "BootstrapTelephoneForward": [], + "BootstrapTelephoneForwardFill": [], + "BootstrapTelephoneInbound": [], + "BootstrapTelephoneInboundFill": [], + "BootstrapTelephoneMinus": [], + "BootstrapTelephoneMinusFill": [], + "BootstrapTelephoneOutbound": [], + "BootstrapTelephoneOutboundFill": [], + "BootstrapTelephonePlus": [], + "BootstrapTelephonePlusFill": [], + "BootstrapTelephoneX": [], + "BootstrapTelephoneXFill": [], + "BootstrapTencentQq": [], + "BootstrapTerminal": [], + "BootstrapTerminalDash": [], + "BootstrapTerminalFill": [], + "BootstrapTerminalPlus": [], + "BootstrapTerminalSplit": [], + "BootstrapTerminalX": [], + "BootstrapTextCenter": [], + "BootstrapTextIndentLeft": [], + "BootstrapTextIndentRight": [], + "BootstrapTextLeft": [], + "BootstrapTextParagraph": [], + "BootstrapTextRight": [], + "BootstrapTextWrap": [], + "BootstrapTextarea": [], + "BootstrapTextareaResize": [], + "BootstrapTextareaT": [], + "BootstrapThermometer": [], + "BootstrapThermometerHalf": [], + "BootstrapThermometerHigh": [], + "BootstrapThermometerLow": [], + "BootstrapThermometerSnow": [], + "BootstrapThermometerSun": [], + "BootstrapThreeDots": [], + "BootstrapThreeDotsVertical": [], + "BootstrapThunderbolt": [], + "BootstrapThunderboltFill": [], + "BootstrapTicket": [], + "BootstrapTicketDetailed": [], + "BootstrapTicketDetailedFill": [], + "BootstrapTicketFill": [], + "BootstrapTicketPerforated": [], + "BootstrapTicketPerforatedFill": [], + "BootstrapTiktok": [], + "BootstrapToggle2Off": [], + "BootstrapToggle2On": [], + "BootstrapToggleOff": [], + "BootstrapToggleOn": [], + "BootstrapToggles": [], + "BootstrapToggles2": [], + "BootstrapTools": [], + "BootstrapTornado": [], + "BootstrapTrainFreightFront": [], + "BootstrapTrainFreightFrontFill": [], + "BootstrapTrainFront": [], + "BootstrapTrainFrontFill": [], + "BootstrapTrainLightrailFront": [], + "BootstrapTrainLightrailFrontFill": [], + "BootstrapTranslate": [], + "BootstrapTrash": [], + "BootstrapTrash2": [], + "BootstrapTrash2Fill": [], + "BootstrapTrash3": [], + "BootstrapTrash3Fill": [], + "BootstrapTrashFill": [], + "BootstrapTree": [], + "BootstrapTreeFill": [], + "BootstrapTrello": [], + "BootstrapTriangle": [], + "BootstrapTriangleFill": [], + "BootstrapTriangleHalf": [], + "BootstrapTrophy": [], + "BootstrapTrophyFill": [], + "BootstrapTropicalStorm": [], + "BootstrapTruck": [], + "BootstrapTruckFlatbed": [], + "BootstrapTruckFront": [], + "BootstrapTruckFrontFill": [], + "BootstrapTsunami": [], + "BootstrapTv": [], + "BootstrapTvFill": [], + "BootstrapTwitch": [], + "BootstrapTwitter": [], + "BootstrapType": [], + "BootstrapTypeBold": [], + "BootstrapTypeH1": [], + "BootstrapTypeH2": [], + "BootstrapTypeH3": [], + "BootstrapTypeItalic": [], + "BootstrapTypeStrikethrough": [], + "BootstrapTypeUnderline": [], + "BootstrapUbuntu": [], + "BootstrapUiChecks": [], + "BootstrapUiChecksGrid": [], + "BootstrapUiRadios": [], + "BootstrapUiRadiosGrid": [], + "BootstrapUmbrella": [], + "BootstrapUmbrellaFill": [], + "BootstrapUnindent": [], + "BootstrapUnion": [], + "BootstrapUnity": [], + "BootstrapUniversalAccess": [], + "BootstrapUniversalAccessCircle": [], + "BootstrapUnlock": [], + "BootstrapUnlockFill": [], + "BootstrapUpc": [], + "BootstrapUpcScan": [], + "BootstrapUpload": [], + "BootstrapUsb": [], + "BootstrapUsbC": [], + "BootstrapUsbCFill": [], + "BootstrapUsbDrive": [], + "BootstrapUsbDriveFill": [], + "BootstrapUsbFill": [], + "BootstrapUsbMicro": [], + "BootstrapUsbMicroFill": [], + "BootstrapUsbMini": [], + "BootstrapUsbMiniFill": [], + "BootstrapUsbPlug": [], + "BootstrapUsbPlugFill": [], + "BootstrapUsbSymbol": [], + "BootstrapValentine": [], + "BootstrapValentine2": [], + "BootstrapVectorPen": [], + "BootstrapViewList": [], + "BootstrapViewStacked": [], + "BootstrapVimeo": [], + "BootstrapVinyl": [], + "BootstrapVinylFill": [], + "BootstrapVirus": [], + "BootstrapVirus2": [], + "BootstrapVoicemail": [], + "BootstrapVolumeDown": [], + "BootstrapVolumeDownFill": [], + "BootstrapVolumeMute": [], + "BootstrapVolumeMuteFill": [], + "BootstrapVolumeOff": [], + "BootstrapVolumeOffFill": [], + "BootstrapVolumeUp": [], + "BootstrapVolumeUpFill": [], + "BootstrapVr": [], + "BootstrapWallet": [], + "BootstrapWallet2": [], + "BootstrapWalletFill": [], + "BootstrapWatch": [], + "BootstrapWater": [], + "BootstrapWebcam": [], + "BootstrapWebcamFill": [], + "BootstrapWechat": [], + "BootstrapWhatsapp": [], + "BootstrapWifi": [], + "BootstrapWifi1": [], + "BootstrapWifi2": [], + "BootstrapWifiOff": [], + "BootstrapWikipedia": [], + "BootstrapWind": [], + "BootstrapWindow": [], + "BootstrapWindowDash": [], + "BootstrapWindowDesktop": [], + "BootstrapWindowDock": [], + "BootstrapWindowFullscreen": [], + "BootstrapWindowPlus": [], + "BootstrapWindowSidebar": [], + "BootstrapWindowSplit": [], + "BootstrapWindowStack": [], + "BootstrapWindowX": [], + "BootstrapWindows": [], + "BootstrapWordpress": [], + "BootstrapWrench": [], + "BootstrapWrenchAdjustable": [], + "BootstrapWrenchAdjustableCircle": [], + "BootstrapWrenchAdjustableCircleFill": [], + "BootstrapX": [], + "BootstrapXCircle": [], + "BootstrapXCircleFill": [], + "BootstrapXDiamond": [], + "BootstrapXDiamondFill": [], + "BootstrapXLg": [], + "BootstrapXOctagon": [], + "BootstrapXOctagonFill": [], + "BootstrapXSquare": [], + "BootstrapXSquareFill": [], + "BootstrapXbox": [], + "BootstrapYelp": [], + "BootstrapYinYang": [], + "BootstrapYoutube": [], + "BootstrapZoomIn": [], + "BootstrapZoomOut": [], + "ExtraGooglePlay": [], + "FeatherActivity": [], + "FeatherAirplay": [], + "FeatherAlertCircle": [], + "FeatherAlertOctagon": [], + "FeatherAlertTriangle": [], + "FeatherAlignCenter": [], + "FeatherAlignJustify": [], + "FeatherAlignLeft": [], + "FeatherAlignRight": [], + "FeatherAnchor": [], + "FeatherAperture": [], + "FeatherArchive": [], + "FeatherArrowDown": [], + "FeatherArrowDownCircle": [], + "FeatherArrowDownLeft": [], + "FeatherArrowDownRight": [], + "FeatherArrowLeft": [], + "FeatherArrowLeftCircle": [], + "FeatherArrowRight": [], + "FeatherArrowRightCircle": [], + "FeatherArrowUp": [], + "FeatherArrowUpCircle": [], + "FeatherArrowUpLeft": [], + "FeatherArrowUpRight": [], + "FeatherAtSign": [], + "FeatherAward": [], + "FeatherBarChart": [], + "FeatherBarChart2": [], + "FeatherBattery": [], + "FeatherBatteryCharging": [], + "FeatherBell": [], + "FeatherBellOff": [], + "FeatherBluetooth": [], + "FeatherBold": [], + "FeatherBook": [], + "FeatherBookOpen": [], + "FeatherBookmark": [], + "FeatherBox": [], + "FeatherBriefcase": [], + "FeatherCalendar": [], + "FeatherCamera": [], + "FeatherCameraOff": [], + "FeatherCast": [], + "FeatherCheck": [], + "FeatherCheckCircle": [], + "FeatherCheckSquare": [], + "FeatherChevronDown": [], + "FeatherChevronLeft": [], + "FeatherChevronRight": [], + "FeatherChevronUp": [], + "FeatherChevronsDown": [], + "FeatherChevronsLeft": [], + "FeatherChevronsRight": [], + "FeatherChevronsUp": [], + "FeatherChrome": [], + "FeatherCircle": [], + "FeatherClipboard": [], + "FeatherClock": [], + "FeatherCloud": [], + "FeatherCloudDrizzle": [], + "FeatherCloudLightning": [], + "FeatherCloudOff": [], + "FeatherCloudRain": [], + "FeatherCloudSnow": [], + "FeatherCode": [], + "FeatherCodepen": [], + "FeatherCodesandbox": [], + "FeatherCoffee": [], + "FeatherColumns": [], + "FeatherCommand": [], + "FeatherCompass": [], + "FeatherCopy": [], + "FeatherCornerDownLeft": [], + "FeatherCornerDownRight": [], + "FeatherCornerLeftDown": [], + "FeatherCornerLeftUp": [], + "FeatherCornerRightDown": [], + "FeatherCornerRightUp": [], + "FeatherCornerUpLeft": [], + "FeatherCornerUpRight": [], + "FeatherCpu": [], + "FeatherCreditCard": [], + "FeatherCrop": [], + "FeatherCrosshair": [], + "FeatherDatabase": [], + "FeatherDelete": [], + "FeatherDisc": [], + "FeatherDivide": [], + "FeatherDivideCircle": [], + "FeatherDivideSquare": [], + "FeatherDollarSign": [], + "FeatherDownload": [], + "FeatherDownloadCloud": [], + "FeatherDribbble": [], + "FeatherDroplet": [], + "FeatherEdit": [], + "FeatherEdit2": [], + "FeatherEdit3": [], + "FeatherExternalLink": [], + "FeatherEye": [], + "FeatherEyeOff": [], + "FeatherFacebook": [], + "FeatherFastForward": [], + "FeatherFeather": [], + "FeatherFigma": [], + "FeatherFile": [], + "FeatherFileMinus": [], + "FeatherFilePlus": [], + "FeatherFileText": [], + "FeatherFilm": [], + "FeatherFilter": [], + "FeatherFlag": [], + "FeatherFolder": [], + "FeatherFolderMinus": [], + "FeatherFolderPlus": [], + "FeatherFramer": [], + "FeatherFrown": [], + "FeatherGift": [], + "FeatherGitBranch": [], + "FeatherGitCommit": [], + "FeatherGitMerge": [], + "FeatherGitPullRequest": [], + "FeatherGithub": [], + "FeatherGitlab": [], + "FeatherGlobe": [], + "FeatherGrid": [], + "FeatherHardDrive": [], + "FeatherHash": [], + "FeatherHeadphones": [], + "FeatherHeart": [], + "FeatherHelpCircle": [], + "FeatherHexagon": [], + "FeatherHome": [], + "FeatherImage": [], + "FeatherInbox": [], + "FeatherInfo": [], + "FeatherInstagram": [], + "FeatherItalic": [], + "FeatherKey": [], + "FeatherLayers": [], + "FeatherLayout": [], + "FeatherLifeBuoy": [], + "FeatherLink": [], + "FeatherLink2": [], + "FeatherLinkedin": [], + "FeatherList": [], + "FeatherLoader": [], + "FeatherLock": [], + "FeatherLogIn": [], + "FeatherLogOut": [], + "FeatherMail": [], + "FeatherMap": [], + "FeatherMapPin": [], + "FeatherMaximize": [], + "FeatherMaximize2": [], + "FeatherMeh": [], + "FeatherMenu": [], + "FeatherMessageCircle": [], + "FeatherMessageSquare": [], + "FeatherMic": [], + "FeatherMicOff": [], + "FeatherMinimize": [], + "FeatherMinimize2": [], + "FeatherMinus": [], + "FeatherMinusCircle": [], + "FeatherMinusSquare": [], + "FeatherMonitor": [], + "FeatherMoon": [], + "FeatherMoreHorizontal": [], + "FeatherMoreVertical": [], + "FeatherMousePointer": [], + "FeatherMove": [], + "FeatherMusic": [], + "FeatherNavigation": [], + "FeatherNavigation2": [], + "FeatherOctagon": [], + "FeatherPackage": [], + "FeatherPaperclip": [], + "FeatherPause": [], + "FeatherPauseCircle": [], + "FeatherPenTool": [], + "FeatherPercent": [], + "FeatherPhone": [], + "FeatherPhoneCall": [], + "FeatherPhoneForwarded": [], + "FeatherPhoneIncoming": [], + "FeatherPhoneMissed": [], + "FeatherPhoneOff": [], + "FeatherPhoneOutgoing": [], + "FeatherPieChart": [], + "FeatherPlay": [], + "FeatherPlayCircle": [], + "FeatherPlus": [], + "FeatherPlusCircle": [], + "FeatherPlusSquare": [], + "FeatherPocket": [], + "FeatherPower": [], + "FeatherPrinter": [], + "FeatherRadio": [], + "FeatherRefreshCcw": [], + "FeatherRefreshCw": [], + "FeatherRepeat": [], + "FeatherRewind": [], + "FeatherRotateCcw": [], + "FeatherRotateCw": [], + "FeatherRss": [], + "FeatherSave": [], + "FeatherScissors": [], + "FeatherSearch": [], + "FeatherSend": [], + "FeatherServer": [], + "FeatherSettings": [], + "FeatherShare": [], + "FeatherShare2": [], + "FeatherShield": [], + "FeatherShieldOff": [], + "FeatherShoppingBag": [], + "FeatherShoppingCart": [], + "FeatherShuffle": [], + "FeatherSidebar": [], + "FeatherSkipBack": [], + "FeatherSkipForward": [], + "FeatherSlack": [], + "FeatherSlash": [], + "FeatherSliders": [], + "FeatherSmartphone": [], + "FeatherSmile": [], + "FeatherSpeaker": [], + "FeatherSquare": [], + "FeatherStar": [], + "FeatherStopCircle": [], + "FeatherSun": [], + "FeatherSunrise": [], + "FeatherSunset": [], + "FeatherTable": [], + "FeatherTablet": [], + "FeatherTag": [], + "FeatherTarget": [], + "FeatherTerminal": [], + "FeatherThermometer": [], + "FeatherThumbsDown": [], + "FeatherThumbsUp": [], + "FeatherToggleLeft": [], + "FeatherToggleRight": [], + "FeatherTool": [], + "FeatherTrash": [], + "FeatherTrash2": [], + "FeatherTrello": [], + "FeatherTrendingDown": [], + "FeatherTrendingUp": [], + "FeatherTriangle": [], + "FeatherTruck": [], + "FeatherTv": [], + "FeatherTwitch": [], + "FeatherTwitter": [], + "FeatherType": [], + "FeatherUmbrella": [], + "FeatherUnderline": [], + "FeatherUnlock": [], + "FeatherUpload": [], + "FeatherUploadCloud": [], + "FeatherUser": [], + "FeatherUserCheck": [], + "FeatherUserMinus": [], + "FeatherUserPlus": [], + "FeatherUserX": [], + "FeatherUsers": [], + "FeatherVideo": [], + "FeatherVideoOff": [], + "FeatherVoicemail": [], + "FeatherVolume": [], + "FeatherVolume1": [], + "FeatherVolume2": [], + "FeatherVolumeX": [], + "FeatherWatch": [], + "FeatherWifi": [], + "FeatherWifiOff": [], + "FeatherWind": [], + "FeatherX": [], + "FeatherXCircle": [], + "FeatherXOctagon": [], + "FeatherXSquare": [], + "FeatherYoutube": [], + "FeatherZap": [], + "FeatherZapOff": [], + "FeatherZoomIn": [], + "FeatherZoomOut": [], + "FontAwesomeRegularAddressBook": [], + "FontAwesomeRegularAddressCard": [], + "FontAwesomeRegularBell": [], + "FontAwesomeRegularBellSlash": [], + "FontAwesomeRegularBookmark": [], + "FontAwesomeRegularBuilding": [], + "FontAwesomeRegularCalendar": [], + "FontAwesomeRegularCalendarCheck": [], + "FontAwesomeRegularCalendarDays": [], + "FontAwesomeRegularCalendarMinus": [], + "FontAwesomeRegularCalendarPlus": [], + "FontAwesomeRegularCalendarXmark": [], + "FontAwesomeRegularChartBar": [], + "FontAwesomeRegularChessBishop": [], + "FontAwesomeRegularChessKing": [], + "FontAwesomeRegularChessKnight": [], + "FontAwesomeRegularChessPawn": [], + "FontAwesomeRegularChessQueen": [], + "FontAwesomeRegularChessRook": [], + "FontAwesomeRegularCircle": [], + "FontAwesomeRegularCircleCheck": [], + "FontAwesomeRegularCircleDot": [], + "FontAwesomeRegularCircleDown": [], + "FontAwesomeRegularCircleLeft": [], + "FontAwesomeRegularCirclePause": [], + "FontAwesomeRegularCirclePlay": [], + "FontAwesomeRegularCircleQuestion": [], + "FontAwesomeRegularCircleRight": [], + "FontAwesomeRegularCircleStop": [], + "FontAwesomeRegularCircleUp": [], + "FontAwesomeRegularCircleUser": [], + "FontAwesomeRegularCircleXmark": [], + "FontAwesomeRegularClipboard": [], + "FontAwesomeRegularClock": [], + "FontAwesomeRegularClone": [], + "FontAwesomeRegularClosedCaptioning": [], + "FontAwesomeRegularComment": [], + "FontAwesomeRegularCommentDots": [], + "FontAwesomeRegularComments": [], + "FontAwesomeRegularCompass": [], + "FontAwesomeRegularCopy": [], + "FontAwesomeRegularCopyright": [], + "FontAwesomeRegularCreditCard": [], + "FontAwesomeRegularEnvelope": [], + "FontAwesomeRegularEnvelopeOpen": [], + "FontAwesomeRegularEye": [], + "FontAwesomeRegularEyeSlash": [], + "FontAwesomeRegularFaceAngry": [], + "FontAwesomeRegularFaceDizzy": [], + "FontAwesomeRegularFaceFlushed": [], + "FontAwesomeRegularFaceFrown": [], + "FontAwesomeRegularFaceFrownOpen": [], + "FontAwesomeRegularFaceGrimace": [], + "FontAwesomeRegularFaceGrin": [], + "FontAwesomeRegularFaceGrinBeam": [], + "FontAwesomeRegularFaceGrinBeamSweat": [], + "FontAwesomeRegularFaceGrinHearts": [], + "FontAwesomeRegularFaceGrinSquint": [], + "FontAwesomeRegularFaceGrinSquintTears": [], + "FontAwesomeRegularFaceGrinStars": [], + "FontAwesomeRegularFaceGrinTears": [], + "FontAwesomeRegularFaceGrinTongue": [], + "FontAwesomeRegularFaceGrinTongueSquint": [], + "FontAwesomeRegularFaceGrinTongueWink": [], + "FontAwesomeRegularFaceGrinWide": [], + "FontAwesomeRegularFaceGrinWink": [], + "FontAwesomeRegularFaceKiss": [], + "FontAwesomeRegularFaceKissBeam": [], + "FontAwesomeRegularFaceKissWinkHeart": [], + "FontAwesomeRegularFaceLaugh": [], + "FontAwesomeRegularFaceLaughBeam": [], + "FontAwesomeRegularFaceLaughSquint": [], + "FontAwesomeRegularFaceLaughWink": [], + "FontAwesomeRegularFaceMeh": [], + "FontAwesomeRegularFaceMehBlank": [], + "FontAwesomeRegularFaceRollingEyes": [], + "FontAwesomeRegularFaceSadCry": [], + "FontAwesomeRegularFaceSadTear": [], + "FontAwesomeRegularFaceSmile": [], + "FontAwesomeRegularFaceSmileBeam": [], + "FontAwesomeRegularFaceSmileWink": [], + "FontAwesomeRegularFaceSurprise": [], + "FontAwesomeRegularFaceTired": [], + "FontAwesomeRegularFile": [], + "FontAwesomeRegularFileAudio": [], + "FontAwesomeRegularFileCode": [], + "FontAwesomeRegularFileExcel": [], + "FontAwesomeRegularFileImage": [], + "FontAwesomeRegularFileLines": [], + "FontAwesomeRegularFilePdf": [], + "FontAwesomeRegularFilePowerpoint": [], + "FontAwesomeRegularFileVideo": [], + "FontAwesomeRegularFileWord": [], + "FontAwesomeRegularFileZipper": [], + "FontAwesomeRegularFlag": [], + "FontAwesomeRegularFloppyDisk": [], + "FontAwesomeRegularFolder": [], + "FontAwesomeRegularFolderClosed": [], + "FontAwesomeRegularFolderOpen": [], + "FontAwesomeRegularFontAwesome": [], + "FontAwesomeRegularFutbol": [], + "FontAwesomeRegularGem": [], + "FontAwesomeRegularHand": [], + "FontAwesomeRegularHandBackFist": [], + "FontAwesomeRegularHandLizard": [], + "FontAwesomeRegularHandPeace": [], + "FontAwesomeRegularHandPointDown": [], + "FontAwesomeRegularHandPointLeft": [], + "FontAwesomeRegularHandPointRight": [], + "FontAwesomeRegularHandPointUp": [], + "FontAwesomeRegularHandPointer": [], + "FontAwesomeRegularHandScissors": [], + "FontAwesomeRegularHandSpock": [], + "FontAwesomeRegularHandshake": [], + "FontAwesomeRegularHardDrive": [], + "FontAwesomeRegularHeart": [], + "FontAwesomeRegularHospital": [], + "FontAwesomeRegularHourglass": [], + "FontAwesomeRegularIdBadge": [], + "FontAwesomeRegularIdCard": [], + "FontAwesomeRegularImage": [], + "FontAwesomeRegularImages": [], + "FontAwesomeRegularKeyboard": [], + "FontAwesomeRegularLemon": [], + "FontAwesomeRegularLifeRing": [], + "FontAwesomeRegularLightbulb": [], + "FontAwesomeRegularMap": [], + "FontAwesomeRegularMessage": [], + "FontAwesomeRegularMoneyBill1": [], + "FontAwesomeRegularMoon": [], + "FontAwesomeRegularNewspaper": [], + "FontAwesomeRegularNoteSticky": [], + "FontAwesomeRegularObjectGroup": [], + "FontAwesomeRegularObjectUngroup": [], + "FontAwesomeRegularPaperPlane": [], + "FontAwesomeRegularPaste": [], + "FontAwesomeRegularPenToSquare": [], + "FontAwesomeRegularRectangleList": [], + "FontAwesomeRegularRectangleXmark": [], + "FontAwesomeRegularRegistered": [], + "FontAwesomeRegularShareFromSquare": [], + "FontAwesomeRegularSnowflake": [], + "FontAwesomeRegularSquare": [], + "FontAwesomeRegularSquareCaretDown": [], + "FontAwesomeRegularSquareCaretLeft": [], + "FontAwesomeRegularSquareCaretRight": [], + "FontAwesomeRegularSquareCaretUp": [], + "FontAwesomeRegularSquareCheck": [], + "FontAwesomeRegularSquareFull": [], + "FontAwesomeRegularSquareMinus": [], + "FontAwesomeRegularSquarePlus": [], + "FontAwesomeRegularStar": [], + "FontAwesomeRegularStarHalf": [], + "FontAwesomeRegularStarHalfStroke": [], + "FontAwesomeRegularSun": [], + "FontAwesomeRegularThumbsDown": [], + "FontAwesomeRegularThumbsUp": [], + "FontAwesomeRegularTrashCan": [], + "FontAwesomeRegularUser": [], + "FontAwesomeRegularWindowMaximize": [], + "FontAwesomeRegularWindowMinimize": [], + "FontAwesomeRegularWindowRestore": [], + "FontAwesomeSolid0": [], + "FontAwesomeSolid1": [], + "FontAwesomeSolid2": [], + "FontAwesomeSolid3": [], + "FontAwesomeSolid4": [], + "FontAwesomeSolid5": [], + "FontAwesomeSolid6": [], + "FontAwesomeSolid7": [], + "FontAwesomeSolid8": [], + "FontAwesomeSolid9": [], + "FontAwesomeSolidA": [], + "FontAwesomeSolidAddressBook": [], + "FontAwesomeSolidAddressCard": [], + "FontAwesomeSolidAlignCenter": [], + "FontAwesomeSolidAlignJustify": [], + "FontAwesomeSolidAlignLeft": [], + "FontAwesomeSolidAlignRight": [], + "FontAwesomeSolidAnchor": [], + "FontAwesomeSolidAnchorCircleCheck": [], + "FontAwesomeSolidAnchorCircleExclamation": [], + "FontAwesomeSolidAnchorCircleXmark": [], + "FontAwesomeSolidAnchorLock": [], + "FontAwesomeSolidAngleDown": [], + "FontAwesomeSolidAngleLeft": [], + "FontAwesomeSolidAngleRight": [], + "FontAwesomeSolidAngleUp": [], + "FontAwesomeSolidAnglesDown": [], + "FontAwesomeSolidAnglesLeft": [], + "FontAwesomeSolidAnglesRight": [], + "FontAwesomeSolidAnglesUp": [], + "FontAwesomeSolidAnkh": [], + "FontAwesomeSolidAppleWhole": [], + "FontAwesomeSolidArchway": [], + "FontAwesomeSolidArrowDown": [], + "FontAwesomeSolidArrowDown19": [], + "FontAwesomeSolidArrowDown91": [], + "FontAwesomeSolidArrowDownAZ": [], + "FontAwesomeSolidArrowDownLong": [], + "FontAwesomeSolidArrowDownShortWide": [], + "FontAwesomeSolidArrowDownUpAcrossLine": [], + "FontAwesomeSolidArrowDownUpLock": [], + "FontAwesomeSolidArrowDownWideShort": [], + "FontAwesomeSolidArrowDownZA": [], + "FontAwesomeSolidArrowLeft": [], + "FontAwesomeSolidArrowLeftLong": [], + "FontAwesomeSolidArrowPointer": [], + "FontAwesomeSolidArrowRight": [], + "FontAwesomeSolidArrowRightArrowLeft": [], + "FontAwesomeSolidArrowRightFromBracket": [], + "FontAwesomeSolidArrowRightLong": [], + "FontAwesomeSolidArrowRightToBracket": [], + "FontAwesomeSolidArrowRightToCity": [], + "FontAwesomeSolidArrowRotateLeft": [], + "FontAwesomeSolidArrowRotateRight": [], + "FontAwesomeSolidArrowTrendDown": [], + "FontAwesomeSolidArrowTrendUp": [], + "FontAwesomeSolidArrowTurnDown": [], + "FontAwesomeSolidArrowTurnUp": [], + "FontAwesomeSolidArrowUp": [], + "FontAwesomeSolidArrowUp19": [], + "FontAwesomeSolidArrowUp91": [], + "FontAwesomeSolidArrowUpAZ": [], + "FontAwesomeSolidArrowUpFromBracket": [], + "FontAwesomeSolidArrowUpFromGroundWater": [], + "FontAwesomeSolidArrowUpFromWaterPump": [], + "FontAwesomeSolidArrowUpLong": [], + "FontAwesomeSolidArrowUpRightDots": [], + "FontAwesomeSolidArrowUpRightFromSquare": [], + "FontAwesomeSolidArrowUpShortWide": [], + "FontAwesomeSolidArrowUpWideShort": [], + "FontAwesomeSolidArrowUpZA": [], + "FontAwesomeSolidArrowsDownToLine": [], + "FontAwesomeSolidArrowsDownToPeople": [], + "FontAwesomeSolidArrowsLeftRight": [], + "FontAwesomeSolidArrowsLeftRightToLine": [], + "FontAwesomeSolidArrowsRotate": [], + "FontAwesomeSolidArrowsSpin": [], + "FontAwesomeSolidArrowsSplitUpAndLeft": [], + "FontAwesomeSolidArrowsToCircle": [], + "FontAwesomeSolidArrowsToDot": [], + "FontAwesomeSolidArrowsToEye": [], + "FontAwesomeSolidArrowsTurnRight": [], + "FontAwesomeSolidArrowsTurnToDots": [], + "FontAwesomeSolidArrowsUpDown": [], + "FontAwesomeSolidArrowsUpDownLeftRight": [], + "FontAwesomeSolidArrowsUpToLine": [], + "FontAwesomeSolidAsterisk": [], + "FontAwesomeSolidAt": [], + "FontAwesomeSolidAtom": [], + "FontAwesomeSolidAudioDescription": [], + "FontAwesomeSolidAustralSign": [], + "FontAwesomeSolidAward": [], + "FontAwesomeSolidB": [], + "FontAwesomeSolidBaby": [], + "FontAwesomeSolidBabyCarriage": [], + "FontAwesomeSolidBackward": [], + "FontAwesomeSolidBackwardFast": [], + "FontAwesomeSolidBackwardStep": [], + "FontAwesomeSolidBacon": [], + "FontAwesomeSolidBacteria": [], + "FontAwesomeSolidBacterium": [], + "FontAwesomeSolidBagShopping": [], + "FontAwesomeSolidBahai": [], + "FontAwesomeSolidBahtSign": [], + "FontAwesomeSolidBan": [], + "FontAwesomeSolidBanSmoking": [], + "FontAwesomeSolidBandage": [], + "FontAwesomeSolidBarcode": [], + "FontAwesomeSolidBars": [], + "FontAwesomeSolidBarsProgress": [], + "FontAwesomeSolidBarsStaggered": [], + "FontAwesomeSolidBaseball": [], + "FontAwesomeSolidBaseballBatBall": [], + "FontAwesomeSolidBasketShopping": [], + "FontAwesomeSolidBasketball": [], + "FontAwesomeSolidBath": [], + "FontAwesomeSolidBatteryEmpty": [], + "FontAwesomeSolidBatteryFull": [], + "FontAwesomeSolidBatteryHalf": [], + "FontAwesomeSolidBatteryQuarter": [], + "FontAwesomeSolidBatteryThreeQuarters": [], + "FontAwesomeSolidBed": [], + "FontAwesomeSolidBedPulse": [], + "FontAwesomeSolidBeerMugEmpty": [], + "FontAwesomeSolidBell": [], + "FontAwesomeSolidBellConcierge": [], + "FontAwesomeSolidBellSlash": [], + "FontAwesomeSolidBezierCurve": [], + "FontAwesomeSolidBicycle": [], + "FontAwesomeSolidBinoculars": [], + "FontAwesomeSolidBiohazard": [], + "FontAwesomeSolidBitcoinSign": [], + "FontAwesomeSolidBlender": [], + "FontAwesomeSolidBlenderPhone": [], + "FontAwesomeSolidBlog": [], + "FontAwesomeSolidBold": [], + "FontAwesomeSolidBolt": [], + "FontAwesomeSolidBoltLightning": [], + "FontAwesomeSolidBomb": [], + "FontAwesomeSolidBone": [], + "FontAwesomeSolidBong": [], + "FontAwesomeSolidBook": [], + "FontAwesomeSolidBookAtlas": [], + "FontAwesomeSolidBookBible": [], + "FontAwesomeSolidBookBookmark": [], + "FontAwesomeSolidBookJournalWhills": [], + "FontAwesomeSolidBookMedical": [], + "FontAwesomeSolidBookOpen": [], + "FontAwesomeSolidBookOpenReader": [], + "FontAwesomeSolidBookQuran": [], + "FontAwesomeSolidBookSkull": [], + "FontAwesomeSolidBookmark": [], + "FontAwesomeSolidBorderAll": [], + "FontAwesomeSolidBorderNone": [], + "FontAwesomeSolidBorderTopLeft": [], + "FontAwesomeSolidBoreHole": [], + "FontAwesomeSolidBottleDroplet": [], + "FontAwesomeSolidBottleWater": [], + "FontAwesomeSolidBowlFood": [], + "FontAwesomeSolidBowlRice": [], + "FontAwesomeSolidBowlingBall": [], + "FontAwesomeSolidBox": [], + "FontAwesomeSolidBoxArchive": [], + "FontAwesomeSolidBoxOpen": [], + "FontAwesomeSolidBoxTissue": [], + "FontAwesomeSolidBoxesPacking": [], + "FontAwesomeSolidBoxesStacked": [], + "FontAwesomeSolidBraille": [], + "FontAwesomeSolidBrain": [], + "FontAwesomeSolidBrazilianRealSign": [], + "FontAwesomeSolidBreadSlice": [], + "FontAwesomeSolidBridge": [], + "FontAwesomeSolidBridgeCircleCheck": [], + "FontAwesomeSolidBridgeCircleExclamation": [], + "FontAwesomeSolidBridgeCircleXmark": [], + "FontAwesomeSolidBridgeLock": [], + "FontAwesomeSolidBridgeWater": [], + "FontAwesomeSolidBriefcase": [], + "FontAwesomeSolidBriefcaseMedical": [], + "FontAwesomeSolidBroom": [], + "FontAwesomeSolidBroomBall": [], + "FontAwesomeSolidBrush": [], + "FontAwesomeSolidBucket": [], + "FontAwesomeSolidBug": [], + "FontAwesomeSolidBugSlash": [], + "FontAwesomeSolidBugs": [], + "FontAwesomeSolidBuilding": [], + "FontAwesomeSolidBuildingCircleArrowRight": [], + "FontAwesomeSolidBuildingCircleCheck": [], + "FontAwesomeSolidBuildingCircleExclamation": [], + "FontAwesomeSolidBuildingCircleXmark": [], + "FontAwesomeSolidBuildingColumns": [], + "FontAwesomeSolidBuildingFlag": [], + "FontAwesomeSolidBuildingLock": [], + "FontAwesomeSolidBuildingNgo": [], + "FontAwesomeSolidBuildingShield": [], + "FontAwesomeSolidBuildingUn": [], + "FontAwesomeSolidBuildingUser": [], + "FontAwesomeSolidBuildingWheat": [], + "FontAwesomeSolidBullhorn": [], + "FontAwesomeSolidBullseye": [], + "FontAwesomeSolidBurger": [], + "FontAwesomeSolidBurst": [], + "FontAwesomeSolidBus": [], + "FontAwesomeSolidBusSimple": [], + "FontAwesomeSolidBusinessTime": [], + "FontAwesomeSolidC": [], + "FontAwesomeSolidCakeCandles": [], + "FontAwesomeSolidCalculator": [], + "FontAwesomeSolidCalendar": [], + "FontAwesomeSolidCalendarCheck": [], + "FontAwesomeSolidCalendarDay": [], + "FontAwesomeSolidCalendarDays": [], + "FontAwesomeSolidCalendarMinus": [], + "FontAwesomeSolidCalendarPlus": [], + "FontAwesomeSolidCalendarWeek": [], + "FontAwesomeSolidCalendarXmark": [], + "FontAwesomeSolidCamera": [], + "FontAwesomeSolidCameraRetro": [], + "FontAwesomeSolidCameraRotate": [], + "FontAwesomeSolidCampground": [], + "FontAwesomeSolidCandyCane": [], + "FontAwesomeSolidCannabis": [], + "FontAwesomeSolidCapsules": [], + "FontAwesomeSolidCar": [], + "FontAwesomeSolidCarBattery": [], + "FontAwesomeSolidCarBurst": [], + "FontAwesomeSolidCarCrash": [], + "FontAwesomeSolidCarOn": [], + "FontAwesomeSolidCarRear": [], + "FontAwesomeSolidCarSide": [], + "FontAwesomeSolidCarTunnel": [], + "FontAwesomeSolidCaravan": [], + "FontAwesomeSolidCaretDown": [], + "FontAwesomeSolidCaretLeft": [], + "FontAwesomeSolidCaretRight": [], + "FontAwesomeSolidCaretUp": [], + "FontAwesomeSolidCarrot": [], + "FontAwesomeSolidCartArrowDown": [], + "FontAwesomeSolidCartFlatbed": [], + "FontAwesomeSolidCartFlatbedSuitcase": [], + "FontAwesomeSolidCartPlus": [], + "FontAwesomeSolidCartShopping": [], + "FontAwesomeSolidCashRegister": [], + "FontAwesomeSolidCat": [], + "FontAwesomeSolidCediSign": [], + "FontAwesomeSolidCentSign": [], + "FontAwesomeSolidCertificate": [], + "FontAwesomeSolidChair": [], + "FontAwesomeSolidChalkboard": [], + "FontAwesomeSolidChalkboardUser": [], + "FontAwesomeSolidChampagneGlasses": [], + "FontAwesomeSolidChargingStation": [], + "FontAwesomeSolidChartArea": [], + "FontAwesomeSolidChartBar": [], + "FontAwesomeSolidChartColumn": [], + "FontAwesomeSolidChartGantt": [], + "FontAwesomeSolidChartLine": [], + "FontAwesomeSolidChartPie": [], + "FontAwesomeSolidChartSimple": [], + "FontAwesomeSolidCheck": [], + "FontAwesomeSolidCheckDouble": [], + "FontAwesomeSolidCheckToSlot": [], + "FontAwesomeSolidCheese": [], + "FontAwesomeSolidChess": [], + "FontAwesomeSolidChessBishop": [], + "FontAwesomeSolidChessBoard": [], + "FontAwesomeSolidChessKing": [], + "FontAwesomeSolidChessKnight": [], + "FontAwesomeSolidChessPawn": [], + "FontAwesomeSolidChessQueen": [], + "FontAwesomeSolidChessRook": [], + "FontAwesomeSolidChevronDown": [], + "FontAwesomeSolidChevronLeft": [], + "FontAwesomeSolidChevronRight": [], + "FontAwesomeSolidChevronUp": [], + "FontAwesomeSolidChild": [], + "FontAwesomeSolidChildDress": [], + "FontAwesomeSolidChildReaching": [], + "FontAwesomeSolidChildRifle": [], + "FontAwesomeSolidChildren": [], + "FontAwesomeSolidChurch": [], + "FontAwesomeSolidCircle": [], + "FontAwesomeSolidCircleArrowDown": [], + "FontAwesomeSolidCircleArrowLeft": [], + "FontAwesomeSolidCircleArrowRight": [], + "FontAwesomeSolidCircleArrowUp": [], + "FontAwesomeSolidCircleCheck": [], + "FontAwesomeSolidCircleChevronDown": [], + "FontAwesomeSolidCircleChevronLeft": [], + "FontAwesomeSolidCircleChevronRight": [], + "FontAwesomeSolidCircleChevronUp": [], + "FontAwesomeSolidCircleDollarToSlot": [], + "FontAwesomeSolidCircleDot": [], + "FontAwesomeSolidCircleDown": [], + "FontAwesomeSolidCircleExclamation": [], + "FontAwesomeSolidCircleH": [], + "FontAwesomeSolidCircleHalfStroke": [], + "FontAwesomeSolidCircleInfo": [], + "FontAwesomeSolidCircleLeft": [], + "FontAwesomeSolidCircleMinus": [], + "FontAwesomeSolidCircleNodes": [], + "FontAwesomeSolidCircleNotch": [], + "FontAwesomeSolidCirclePause": [], + "FontAwesomeSolidCirclePlay": [], + "FontAwesomeSolidCirclePlus": [], + "FontAwesomeSolidCircleQuestion": [], + "FontAwesomeSolidCircleRadiation": [], + "FontAwesomeSolidCircleRight": [], + "FontAwesomeSolidCircleStop": [], + "FontAwesomeSolidCircleUp": [], + "FontAwesomeSolidCircleUser": [], + "FontAwesomeSolidCircleXmark": [], + "FontAwesomeSolidCity": [], + "FontAwesomeSolidClapperboard": [], + "FontAwesomeSolidClipboard": [], + "FontAwesomeSolidClipboardCheck": [], + "FontAwesomeSolidClipboardList": [], + "FontAwesomeSolidClipboardQuestion": [], + "FontAwesomeSolidClipboardUser": [], + "FontAwesomeSolidClock": [], + "FontAwesomeSolidClockRotateLeft": [], + "FontAwesomeSolidClone": [], + "FontAwesomeSolidClosedCaptioning": [], + "FontAwesomeSolidCloud": [], + "FontAwesomeSolidCloudArrowDown": [], + "FontAwesomeSolidCloudArrowUp": [], + "FontAwesomeSolidCloudBolt": [], + "FontAwesomeSolidCloudMeatball": [], + "FontAwesomeSolidCloudMoon": [], + "FontAwesomeSolidCloudMoonRain": [], + "FontAwesomeSolidCloudRain": [], + "FontAwesomeSolidCloudShowersHeavy": [], + "FontAwesomeSolidCloudShowersWater": [], + "FontAwesomeSolidCloudSun": [], + "FontAwesomeSolidCloudSunRain": [], + "FontAwesomeSolidClover": [], + "FontAwesomeSolidCode": [], + "FontAwesomeSolidCodeBranch": [], + "FontAwesomeSolidCodeCommit": [], + "FontAwesomeSolidCodeCompare": [], + "FontAwesomeSolidCodeFork": [], + "FontAwesomeSolidCodeMerge": [], + "FontAwesomeSolidCodePullRequest": [], + "FontAwesomeSolidCoins": [], + "FontAwesomeSolidColonSign": [], + "FontAwesomeSolidComment": [], + "FontAwesomeSolidCommentDollar": [], + "FontAwesomeSolidCommentDots": [], + "FontAwesomeSolidCommentMedical": [], + "FontAwesomeSolidCommentSlash": [], + "FontAwesomeSolidCommentSms": [], + "FontAwesomeSolidComments": [], + "FontAwesomeSolidCommentsDollar": [], + "FontAwesomeSolidCompactDisc": [], + "FontAwesomeSolidCompass": [], + "FontAwesomeSolidCompassDrafting": [], + "FontAwesomeSolidCompress": [], + "FontAwesomeSolidComputer": [], + "FontAwesomeSolidComputerMouse": [], + "FontAwesomeSolidCookie": [], + "FontAwesomeSolidCookieBite": [], + "FontAwesomeSolidCopy": [], + "FontAwesomeSolidCopyright": [], + "FontAwesomeSolidCouch": [], + "FontAwesomeSolidCow": [], + "FontAwesomeSolidCreditCard": [], + "FontAwesomeSolidCrop": [], + "FontAwesomeSolidCropSimple": [], + "FontAwesomeSolidCross": [], + "FontAwesomeSolidCrosshairs": [], + "FontAwesomeSolidCrow": [], + "FontAwesomeSolidCrown": [], + "FontAwesomeSolidCrutch": [], + "FontAwesomeSolidCruzeiroSign": [], + "FontAwesomeSolidCube": [], + "FontAwesomeSolidCubes": [], + "FontAwesomeSolidCubesStacked": [], + "FontAwesomeSolidD": [], + "FontAwesomeSolidDatabase": [], + "FontAwesomeSolidDeleteLeft": [], + "FontAwesomeSolidDemocrat": [], + "FontAwesomeSolidDesktop": [], + "FontAwesomeSolidDharmachakra": [], + "FontAwesomeSolidDiagramNext": [], + "FontAwesomeSolidDiagramPredecessor": [], + "FontAwesomeSolidDiagramProject": [], + "FontAwesomeSolidDiagramSuccessor": [], + "FontAwesomeSolidDiamond": [], + "FontAwesomeSolidDiamondTurnRight": [], + "FontAwesomeSolidDice": [], + "FontAwesomeSolidDiceD20": [], + "FontAwesomeSolidDiceD6": [], + "FontAwesomeSolidDiceFive": [], + "FontAwesomeSolidDiceFour": [], + "FontAwesomeSolidDiceOne": [], + "FontAwesomeSolidDiceSix": [], + "FontAwesomeSolidDiceThree": [], + "FontAwesomeSolidDiceTwo": [], + "FontAwesomeSolidDisease": [], + "FontAwesomeSolidDisplay": [], + "FontAwesomeSolidDivide": [], + "FontAwesomeSolidDna": [], + "FontAwesomeSolidDog": [], + "FontAwesomeSolidDollarSign": [], + "FontAwesomeSolidDolly": [], + "FontAwesomeSolidDongSign": [], + "FontAwesomeSolidDoorClosed": [], + "FontAwesomeSolidDoorOpen": [], + "FontAwesomeSolidDove": [], + "FontAwesomeSolidDownLeftAndUpRightToCenter": [], + "FontAwesomeSolidDownLong": [], + "FontAwesomeSolidDownload": [], + "FontAwesomeSolidDragon": [], + "FontAwesomeSolidDrawPolygon": [], + "FontAwesomeSolidDroplet": [], + "FontAwesomeSolidDropletSlash": [], + "FontAwesomeSolidDrum": [], + "FontAwesomeSolidDrumSteelpan": [], + "FontAwesomeSolidDrumstickBite": [], + "FontAwesomeSolidDumbbell": [], + "FontAwesomeSolidDumpster": [], + "FontAwesomeSolidDumpsterFire": [], + "FontAwesomeSolidDungeon": [], + "FontAwesomeSolidE": [], + "FontAwesomeSolidEarDeaf": [], + "FontAwesomeSolidEarListen": [], + "FontAwesomeSolidEarthAfrica": [], + "FontAwesomeSolidEarthAmericas": [], + "FontAwesomeSolidEarthAsia": [], + "FontAwesomeSolidEarthEurope": [], + "FontAwesomeSolidEarthOceania": [], + "FontAwesomeSolidEgg": [], + "FontAwesomeSolidEject": [], + "FontAwesomeSolidElevator": [], + "FontAwesomeSolidEllipsis": [], + "FontAwesomeSolidEllipsisVertical": [], + "FontAwesomeSolidEnvelope": [], + "FontAwesomeSolidEnvelopeCircleCheck": [], + "FontAwesomeSolidEnvelopeOpen": [], + "FontAwesomeSolidEnvelopeOpenText": [], + "FontAwesomeSolidEnvelopesBulk": [], + "FontAwesomeSolidEquals": [], + "FontAwesomeSolidEraser": [], + "FontAwesomeSolidEthernet": [], + "FontAwesomeSolidEuroSign": [], + "FontAwesomeSolidExclamation": [], + "FontAwesomeSolidExpand": [], + "FontAwesomeSolidExplosion": [], + "FontAwesomeSolidEye": [], + "FontAwesomeSolidEyeDropper": [], + "FontAwesomeSolidEyeLowVision": [], + "FontAwesomeSolidEyeSlash": [], + "FontAwesomeSolidF": [], + "FontAwesomeSolidFaceAngry": [], + "FontAwesomeSolidFaceDizzy": [], + "FontAwesomeSolidFaceFlushed": [], + "FontAwesomeSolidFaceFrown": [], + "FontAwesomeSolidFaceFrownOpen": [], + "FontAwesomeSolidFaceGrimace": [], + "FontAwesomeSolidFaceGrin": [], + "FontAwesomeSolidFaceGrinBeam": [], + "FontAwesomeSolidFaceGrinBeamSweat": [], + "FontAwesomeSolidFaceGrinHearts": [], + "FontAwesomeSolidFaceGrinSquint": [], + "FontAwesomeSolidFaceGrinSquintTears": [], + "FontAwesomeSolidFaceGrinStars": [], + "FontAwesomeSolidFaceGrinTears": [], + "FontAwesomeSolidFaceGrinTongue": [], + "FontAwesomeSolidFaceGrinTongueSquint": [], + "FontAwesomeSolidFaceGrinTongueWink": [], + "FontAwesomeSolidFaceGrinWide": [], + "FontAwesomeSolidFaceGrinWink": [], + "FontAwesomeSolidFaceKiss": [], + "FontAwesomeSolidFaceKissBeam": [], + "FontAwesomeSolidFaceKissWinkHeart": [], + "FontAwesomeSolidFaceLaugh": [], + "FontAwesomeSolidFaceLaughBeam": [], + "FontAwesomeSolidFaceLaughSquint": [], + "FontAwesomeSolidFaceLaughWink": [], + "FontAwesomeSolidFaceMeh": [], + "FontAwesomeSolidFaceMehBlank": [], + "FontAwesomeSolidFaceRollingEyes": [], + "FontAwesomeSolidFaceSadCry": [], + "FontAwesomeSolidFaceSadTear": [], + "FontAwesomeSolidFaceSmile": [], + "FontAwesomeSolidFaceSmileBeam": [], + "FontAwesomeSolidFaceSmileWink": [], + "FontAwesomeSolidFaceSurprise": [], + "FontAwesomeSolidFaceTired": [], + "FontAwesomeSolidFan": [], + "FontAwesomeSolidFaucet": [], + "FontAwesomeSolidFaucetDrip": [], + "FontAwesomeSolidFax": [], + "FontAwesomeSolidFeather": [], + "FontAwesomeSolidFeatherPointed": [], + "FontAwesomeSolidFerry": [], + "FontAwesomeSolidFile": [], + "FontAwesomeSolidFileArrowDown": [], + "FontAwesomeSolidFileArrowUp": [], + "FontAwesomeSolidFileAudio": [], + "FontAwesomeSolidFileCircleCheck": [], + "FontAwesomeSolidFileCircleExclamation": [], + "FontAwesomeSolidFileCircleMinus": [], + "FontAwesomeSolidFileCirclePlus": [], + "FontAwesomeSolidFileCircleQuestion": [], + "FontAwesomeSolidFileCircleXmark": [], + "FontAwesomeSolidFileCode": [], + "FontAwesomeSolidFileContract": [], + "FontAwesomeSolidFileCsv": [], + "FontAwesomeSolidFileExcel": [], + "FontAwesomeSolidFileExport": [], + "FontAwesomeSolidFileImage": [], + "FontAwesomeSolidFileImport": [], + "FontAwesomeSolidFileInvoice": [], + "FontAwesomeSolidFileInvoiceDollar": [], + "FontAwesomeSolidFileLines": [], + "FontAwesomeSolidFileMedical": [], + "FontAwesomeSolidFilePdf": [], + "FontAwesomeSolidFilePen": [], + "FontAwesomeSolidFilePowerpoint": [], + "FontAwesomeSolidFilePrescription": [], + "FontAwesomeSolidFileShield": [], + "FontAwesomeSolidFileSignature": [], + "FontAwesomeSolidFileVideo": [], + "FontAwesomeSolidFileWaveform": [], + "FontAwesomeSolidFileWord": [], + "FontAwesomeSolidFileZipper": [], + "FontAwesomeSolidFill": [], + "FontAwesomeSolidFillDrip": [], + "FontAwesomeSolidFilm": [], + "FontAwesomeSolidFilter": [], + "FontAwesomeSolidFilterCircleDollar": [], + "FontAwesomeSolidFilterCircleXmark": [], + "FontAwesomeSolidFingerprint": [], + "FontAwesomeSolidFire": [], + "FontAwesomeSolidFireBurner": [], + "FontAwesomeSolidFireExtinguisher": [], + "FontAwesomeSolidFireFlameCurved": [], + "FontAwesomeSolidFireFlameSimple": [], + "FontAwesomeSolidFish": [], + "FontAwesomeSolidFishFins": [], + "FontAwesomeSolidFlag": [], + "FontAwesomeSolidFlagCheckered": [], + "FontAwesomeSolidFlagUsa": [], + "FontAwesomeSolidFlask": [], + "FontAwesomeSolidFlaskVial": [], + "FontAwesomeSolidFloppyDisk": [], + "FontAwesomeSolidFlorinSign": [], + "FontAwesomeSolidFolder": [], + "FontAwesomeSolidFolderClosed": [], + "FontAwesomeSolidFolderMinus": [], + "FontAwesomeSolidFolderOpen": [], + "FontAwesomeSolidFolderPlus": [], + "FontAwesomeSolidFolderTree": [], + "FontAwesomeSolidFont": [], + "FontAwesomeSolidFontAwesome": [], + "FontAwesomeSolidFootball": [], + "FontAwesomeSolidForward": [], + "FontAwesomeSolidForwardFast": [], + "FontAwesomeSolidForwardStep": [], + "FontAwesomeSolidFrancSign": [], + "FontAwesomeSolidFrog": [], + "FontAwesomeSolidFutbol": [], + "FontAwesomeSolidG": [], + "FontAwesomeSolidGamepad": [], + "FontAwesomeSolidGasPump": [], + "FontAwesomeSolidGauge": [], + "FontAwesomeSolidGaugeHigh": [], + "FontAwesomeSolidGaugeSimple": [], + "FontAwesomeSolidGaugeSimpleHigh": [], + "FontAwesomeSolidGavel": [], + "FontAwesomeSolidGear": [], + "FontAwesomeSolidGears": [], + "FontAwesomeSolidGem": [], + "FontAwesomeSolidGenderless": [], + "FontAwesomeSolidGhost": [], + "FontAwesomeSolidGift": [], + "FontAwesomeSolidGifts": [], + "FontAwesomeSolidGlassWater": [], + "FontAwesomeSolidGlassWaterDroplet": [], + "FontAwesomeSolidGlasses": [], + "FontAwesomeSolidGlobe": [], + "FontAwesomeSolidGolfBallTee": [], + "FontAwesomeSolidGopuram": [], + "FontAwesomeSolidGraduationCap": [], + "FontAwesomeSolidGreaterThan": [], + "FontAwesomeSolidGreaterThanEqual": [], + "FontAwesomeSolidGrip": [], + "FontAwesomeSolidGripLines": [], + "FontAwesomeSolidGripLinesVertical": [], + "FontAwesomeSolidGripVertical": [], + "FontAwesomeSolidGroupArrowsRotate": [], + "FontAwesomeSolidGuaraniSign": [], + "FontAwesomeSolidGuitar": [], + "FontAwesomeSolidGun": [], + "FontAwesomeSolidH": [], + "FontAwesomeSolidHammer": [], + "FontAwesomeSolidHamsa": [], + "FontAwesomeSolidHand": [], + "FontAwesomeSolidHandBackFist": [], + "FontAwesomeSolidHandDots": [], + "FontAwesomeSolidHandFist": [], + "FontAwesomeSolidHandHolding": [], + "FontAwesomeSolidHandHoldingDollar": [], + "FontAwesomeSolidHandHoldingDroplet": [], + "FontAwesomeSolidHandHoldingHand": [], + "FontAwesomeSolidHandHoldingHeart": [], + "FontAwesomeSolidHandHoldingMedical": [], + "FontAwesomeSolidHandLizard": [], + "FontAwesomeSolidHandMiddleFinger": [], + "FontAwesomeSolidHandPeace": [], + "FontAwesomeSolidHandPointDown": [], + "FontAwesomeSolidHandPointLeft": [], + "FontAwesomeSolidHandPointRight": [], + "FontAwesomeSolidHandPointUp": [], + "FontAwesomeSolidHandPointer": [], + "FontAwesomeSolidHandScissors": [], + "FontAwesomeSolidHandSparkles": [], + "FontAwesomeSolidHandSpock": [], + "FontAwesomeSolidHandcuffs": [], + "FontAwesomeSolidHands": [], + "FontAwesomeSolidHandsAslInterpreting": [], + "FontAwesomeSolidHandsBound": [], + "FontAwesomeSolidHandsBubbles": [], + "FontAwesomeSolidHandsClapping": [], + "FontAwesomeSolidHandsHolding": [], + "FontAwesomeSolidHandsHoldingChild": [], + "FontAwesomeSolidHandsHoldingCircle": [], + "FontAwesomeSolidHandsPraying": [], + "FontAwesomeSolidHandshake": [], + "FontAwesomeSolidHandshakeAngle": [], + "FontAwesomeSolidHandshakeSimple": [], + "FontAwesomeSolidHandshakeSimpleSlash": [], + "FontAwesomeSolidHandshakeSlash": [], + "FontAwesomeSolidHanukiah": [], + "FontAwesomeSolidHardDrive": [], + "FontAwesomeSolidHashtag": [], + "FontAwesomeSolidHatCowboy": [], + "FontAwesomeSolidHatCowboySide": [], + "FontAwesomeSolidHatWizard": [], + "FontAwesomeSolidHeadSideCough": [], + "FontAwesomeSolidHeadSideCoughSlash": [], + "FontAwesomeSolidHeadSideMask": [], + "FontAwesomeSolidHeadSideVirus": [], + "FontAwesomeSolidHeading": [], + "FontAwesomeSolidHeadphones": [], + "FontAwesomeSolidHeadphonesSimple": [], + "FontAwesomeSolidHeadset": [], + "FontAwesomeSolidHeart": [], + "FontAwesomeSolidHeartCircleBolt": [], + "FontAwesomeSolidHeartCircleCheck": [], + "FontAwesomeSolidHeartCircleExclamation": [], + "FontAwesomeSolidHeartCircleMinus": [], + "FontAwesomeSolidHeartCirclePlus": [], + "FontAwesomeSolidHeartCircleXmark": [], + "FontAwesomeSolidHeartCrack": [], + "FontAwesomeSolidHeartPulse": [], + "FontAwesomeSolidHelicopter": [], + "FontAwesomeSolidHelicopterSymbol": [], + "FontAwesomeSolidHelmetSafety": [], + "FontAwesomeSolidHelmetUn": [], + "FontAwesomeSolidHighlighter": [], + "FontAwesomeSolidHillAvalanche": [], + "FontAwesomeSolidHillRockslide": [], + "FontAwesomeSolidHippo": [], + "FontAwesomeSolidHockeyPuck": [], + "FontAwesomeSolidHollyBerry": [], + "FontAwesomeSolidHorse": [], + "FontAwesomeSolidHorseHead": [], + "FontAwesomeSolidHospital": [], + "FontAwesomeSolidHospitalUser": [], + "FontAwesomeSolidHotTubPerson": [], + "FontAwesomeSolidHotdog": [], + "FontAwesomeSolidHotel": [], + "FontAwesomeSolidHourglass": [], + "FontAwesomeSolidHourglassEmpty": [], + "FontAwesomeSolidHourglassEnd": [], + "FontAwesomeSolidHourglassStart": [], + "FontAwesomeSolidHouse": [], + "FontAwesomeSolidHouseChimney": [], + "FontAwesomeSolidHouseChimneyCrack": [], + "FontAwesomeSolidHouseChimneyMedical": [], + "FontAwesomeSolidHouseChimneyUser": [], + "FontAwesomeSolidHouseChimneyWindow": [], + "FontAwesomeSolidHouseCircleCheck": [], + "FontAwesomeSolidHouseCircleExclamation": [], + "FontAwesomeSolidHouseCircleXmark": [], + "FontAwesomeSolidHouseCrack": [], + "FontAwesomeSolidHouseFire": [], + "FontAwesomeSolidHouseFlag": [], + "FontAwesomeSolidHouseFloodWater": [], + "FontAwesomeSolidHouseFloodWaterCircleArrowRight": [], + "FontAwesomeSolidHouseLaptop": [], + "FontAwesomeSolidHouseLock": [], + "FontAwesomeSolidHouseMedical": [], + "FontAwesomeSolidHouseMedicalCircleCheck": [], + "FontAwesomeSolidHouseMedicalCircleExclamation": [], + "FontAwesomeSolidHouseMedicalCircleXmark": [], + "FontAwesomeSolidHouseMedicalFlag": [], + "FontAwesomeSolidHouseSignal": [], + "FontAwesomeSolidHouseTsunami": [], + "FontAwesomeSolidHouseUser": [], + "FontAwesomeSolidHryvniaSign": [], + "FontAwesomeSolidHurricane": [], + "FontAwesomeSolidI": [], + "FontAwesomeSolidICursor": [], + "FontAwesomeSolidIceCream": [], + "FontAwesomeSolidIcicles": [], + "FontAwesomeSolidIcons": [], + "FontAwesomeSolidIdBadge": [], + "FontAwesomeSolidIdCard": [], + "FontAwesomeSolidIdCardClip": [], + "FontAwesomeSolidIgloo": [], + "FontAwesomeSolidImage": [], + "FontAwesomeSolidImagePortrait": [], + "FontAwesomeSolidImages": [], + "FontAwesomeSolidInbox": [], + "FontAwesomeSolidIndent": [], + "FontAwesomeSolidIndianRupeeSign": [], + "FontAwesomeSolidIndustry": [], + "FontAwesomeSolidInfinity": [], + "FontAwesomeSolidInfo": [], + "FontAwesomeSolidItalic": [], + "FontAwesomeSolidJ": [], + "FontAwesomeSolidJar": [], + "FontAwesomeSolidJarWheat": [], + "FontAwesomeSolidJedi": [], + "FontAwesomeSolidJetFighter": [], + "FontAwesomeSolidJetFighterUp": [], + "FontAwesomeSolidJoint": [], + "FontAwesomeSolidJugDetergent": [], + "FontAwesomeSolidK": [], + "FontAwesomeSolidKaaba": [], + "FontAwesomeSolidKey": [], + "FontAwesomeSolidKeyboard": [], + "FontAwesomeSolidKhanda": [], + "FontAwesomeSolidKipSign": [], + "FontAwesomeSolidKitMedical": [], + "FontAwesomeSolidKitchenSet": [], + "FontAwesomeSolidKiwiBird": [], + "FontAwesomeSolidL": [], + "FontAwesomeSolidLandMineOn": [], + "FontAwesomeSolidLandmark": [], + "FontAwesomeSolidLandmarkDome": [], + "FontAwesomeSolidLandmarkFlag": [], + "FontAwesomeSolidLanguage": [], + "FontAwesomeSolidLaptop": [], + "FontAwesomeSolidLaptopCode": [], + "FontAwesomeSolidLaptopFile": [], + "FontAwesomeSolidLaptopMedical": [], + "FontAwesomeSolidLariSign": [], + "FontAwesomeSolidLayerGroup": [], + "FontAwesomeSolidLeaf": [], + "FontAwesomeSolidLeftLong": [], + "FontAwesomeSolidLeftRight": [], + "FontAwesomeSolidLemon": [], + "FontAwesomeSolidLessThan": [], + "FontAwesomeSolidLessThanEqual": [], + "FontAwesomeSolidLifeRing": [], + "FontAwesomeSolidLightbulb": [], + "FontAwesomeSolidLinesLeaning": [], + "FontAwesomeSolidLink": [], + "FontAwesomeSolidLinkSlash": [], + "FontAwesomeSolidLiraSign": [], + "FontAwesomeSolidList": [], + "FontAwesomeSolidListCheck": [], + "FontAwesomeSolidListOl": [], + "FontAwesomeSolidListUl": [], + "FontAwesomeSolidLitecoinSign": [], + "FontAwesomeSolidLocationArrow": [], + "FontAwesomeSolidLocationCrosshairs": [], + "FontAwesomeSolidLocationDot": [], + "FontAwesomeSolidLocationPin": [], + "FontAwesomeSolidLocationPinLock": [], + "FontAwesomeSolidLock": [], + "FontAwesomeSolidLockOpen": [], + "FontAwesomeSolidLocust": [], + "FontAwesomeSolidLungs": [], + "FontAwesomeSolidLungsVirus": [], + "FontAwesomeSolidM": [], + "FontAwesomeSolidMagnet": [], + "FontAwesomeSolidMagnifyingGlass": [], + "FontAwesomeSolidMagnifyingGlassArrowRight": [], + "FontAwesomeSolidMagnifyingGlassChart": [], + "FontAwesomeSolidMagnifyingGlassDollar": [], + "FontAwesomeSolidMagnifyingGlassLocation": [], + "FontAwesomeSolidMagnifyingGlassMinus": [], + "FontAwesomeSolidMagnifyingGlassPlus": [], + "FontAwesomeSolidManatSign": [], + "FontAwesomeSolidMap": [], + "FontAwesomeSolidMapLocation": [], + "FontAwesomeSolidMapLocationDot": [], + "FontAwesomeSolidMapPin": [], + "FontAwesomeSolidMarker": [], + "FontAwesomeSolidMars": [], + "FontAwesomeSolidMarsAndVenus": [], + "FontAwesomeSolidMarsAndVenusBurst": [], + "FontAwesomeSolidMarsDouble": [], + "FontAwesomeSolidMarsStroke": [], + "FontAwesomeSolidMarsStrokeRight": [], + "FontAwesomeSolidMarsStrokeUp": [], + "FontAwesomeSolidMartiniGlass": [], + "FontAwesomeSolidMartiniGlassCitrus": [], + "FontAwesomeSolidMartiniGlassEmpty": [], + "FontAwesomeSolidMask": [], + "FontAwesomeSolidMaskFace": [], + "FontAwesomeSolidMaskVentilator": [], + "FontAwesomeSolidMasksTheater": [], + "FontAwesomeSolidMattressPillow": [], + "FontAwesomeSolidMaximize": [], + "FontAwesomeSolidMedal": [], + "FontAwesomeSolidMemory": [], + "FontAwesomeSolidMenorah": [], + "FontAwesomeSolidMercury": [], + "FontAwesomeSolidMessage": [], + "FontAwesomeSolidMeteor": [], + "FontAwesomeSolidMicrochip": [], + "FontAwesomeSolidMicrophone": [], + "FontAwesomeSolidMicrophoneLines": [], + "FontAwesomeSolidMicrophoneLinesSlash": [], + "FontAwesomeSolidMicrophoneSlash": [], + "FontAwesomeSolidMicroscope": [], + "FontAwesomeSolidMillSign": [], + "FontAwesomeSolidMinimize": [], + "FontAwesomeSolidMinus": [], + "FontAwesomeSolidMitten": [], + "FontAwesomeSolidMobile": [], + "FontAwesomeSolidMobileButton": [], + "FontAwesomeSolidMobileRetro": [], + "FontAwesomeSolidMobileScreen": [], + "FontAwesomeSolidMobileScreenButton": [], + "FontAwesomeSolidMoneyBill": [], + "FontAwesomeSolidMoneyBill1": [], + "FontAwesomeSolidMoneyBill1Wave": [], + "FontAwesomeSolidMoneyBillTransfer": [], + "FontAwesomeSolidMoneyBillTrendUp": [], + "FontAwesomeSolidMoneyBillWave": [], + "FontAwesomeSolidMoneyBillWheat": [], + "FontAwesomeSolidMoneyBills": [], + "FontAwesomeSolidMoneyCheck": [], + "FontAwesomeSolidMoneyCheckDollar": [], + "FontAwesomeSolidMonument": [], + "FontAwesomeSolidMoon": [], + "FontAwesomeSolidMortarPestle": [], + "FontAwesomeSolidMosque": [], + "FontAwesomeSolidMosquito": [], + "FontAwesomeSolidMosquitoNet": [], + "FontAwesomeSolidMotorcycle": [], + "FontAwesomeSolidMound": [], + "FontAwesomeSolidMountain": [], + "FontAwesomeSolidMountainCity": [], + "FontAwesomeSolidMountainSun": [], + "FontAwesomeSolidMugHot": [], + "FontAwesomeSolidMugSaucer": [], + "FontAwesomeSolidMusic": [], + "FontAwesomeSolidN": [], + "FontAwesomeSolidNairaSign": [], + "FontAwesomeSolidNetworkWired": [], + "FontAwesomeSolidNeuter": [], + "FontAwesomeSolidNewspaper": [], + "FontAwesomeSolidNotEqual": [], + "FontAwesomeSolidNoteSticky": [], + "FontAwesomeSolidNotesMedical": [], + "FontAwesomeSolidO": [], + "FontAwesomeSolidObjectGroup": [], + "FontAwesomeSolidObjectUngroup": [], + "FontAwesomeSolidOilCan": [], + "FontAwesomeSolidOilWell": [], + "FontAwesomeSolidOm": [], + "FontAwesomeSolidOtter": [], + "FontAwesomeSolidOutdent": [], + "FontAwesomeSolidP": [], + "FontAwesomeSolidPager": [], + "FontAwesomeSolidPaintRoller": [], + "FontAwesomeSolidPaintbrush": [], + "FontAwesomeSolidPalette": [], + "FontAwesomeSolidPallet": [], + "FontAwesomeSolidPanorama": [], + "FontAwesomeSolidPaperPlane": [], + "FontAwesomeSolidPaperclip": [], + "FontAwesomeSolidParachuteBox": [], + "FontAwesomeSolidParagraph": [], + "FontAwesomeSolidPassport": [], + "FontAwesomeSolidPaste": [], + "FontAwesomeSolidPause": [], + "FontAwesomeSolidPaw": [], + "FontAwesomeSolidPeace": [], + "FontAwesomeSolidPen": [], + "FontAwesomeSolidPenClip": [], + "FontAwesomeSolidPenFancy": [], + "FontAwesomeSolidPenNib": [], + "FontAwesomeSolidPenRuler": [], + "FontAwesomeSolidPenToSquare": [], + "FontAwesomeSolidPencil": [], + "FontAwesomeSolidPeopleArrowsLeftRight": [], + "FontAwesomeSolidPeopleCarryBox": [], + "FontAwesomeSolidPeopleGroup": [], + "FontAwesomeSolidPeopleLine": [], + "FontAwesomeSolidPeoplePulling": [], + "FontAwesomeSolidPeopleRobbery": [], + "FontAwesomeSolidPeopleRoof": [], + "FontAwesomeSolidPepperHot": [], + "FontAwesomeSolidPercent": [], + "FontAwesomeSolidPerson": [], + "FontAwesomeSolidPersonArrowDownToLine": [], + "FontAwesomeSolidPersonArrowUpFromLine": [], + "FontAwesomeSolidPersonBiking": [], + "FontAwesomeSolidPersonBooth": [], + "FontAwesomeSolidPersonBreastfeeding": [], + "FontAwesomeSolidPersonBurst": [], + "FontAwesomeSolidPersonCane": [], + "FontAwesomeSolidPersonChalkboard": [], + "FontAwesomeSolidPersonCircleCheck": [], + "FontAwesomeSolidPersonCircleExclamation": [], + "FontAwesomeSolidPersonCircleMinus": [], + "FontAwesomeSolidPersonCirclePlus": [], + "FontAwesomeSolidPersonCircleQuestion": [], + "FontAwesomeSolidPersonCircleXmark": [], + "FontAwesomeSolidPersonDigging": [], + "FontAwesomeSolidPersonDotsFromLine": [], + "FontAwesomeSolidPersonDress": [], + "FontAwesomeSolidPersonDressBurst": [], + "FontAwesomeSolidPersonDrowning": [], + "FontAwesomeSolidPersonFalling": [], + "FontAwesomeSolidPersonFallingBurst": [], + "FontAwesomeSolidPersonHalfDress": [], + "FontAwesomeSolidPersonHarassing": [], + "FontAwesomeSolidPersonHiking": [], + "FontAwesomeSolidPersonMilitaryPointing": [], + "FontAwesomeSolidPersonMilitaryRifle": [], + "FontAwesomeSolidPersonMilitaryToPerson": [], + "FontAwesomeSolidPersonPraying": [], + "FontAwesomeSolidPersonPregnant": [], + "FontAwesomeSolidPersonRays": [], + "FontAwesomeSolidPersonRifle": [], + "FontAwesomeSolidPersonRunning": [], + "FontAwesomeSolidPersonShelter": [], + "FontAwesomeSolidPersonSkating": [], + "FontAwesomeSolidPersonSkiing": [], + "FontAwesomeSolidPersonSkiingNordic": [], + "FontAwesomeSolidPersonSnowboarding": [], + "FontAwesomeSolidPersonSwimming": [], + "FontAwesomeSolidPersonThroughWindow": [], + "FontAwesomeSolidPersonWalking": [], + "FontAwesomeSolidPersonWalkingArrowLoopLeft": [], + "FontAwesomeSolidPersonWalkingArrowRight": [], + "FontAwesomeSolidPersonWalkingDashedLineArrowRight": [], + "FontAwesomeSolidPersonWalkingLuggage": [], + "FontAwesomeSolidPersonWalkingWithCane": [], + "FontAwesomeSolidPesetaSign": [], + "FontAwesomeSolidPesoSign": [], + "FontAwesomeSolidPhone": [], + "FontAwesomeSolidPhoneFlip": [], + "FontAwesomeSolidPhoneSlash": [], + "FontAwesomeSolidPhoneVolume": [], + "FontAwesomeSolidPhotoFilm": [], + "FontAwesomeSolidPiggyBank": [], + "FontAwesomeSolidPills": [], + "FontAwesomeSolidPizzaSlice": [], + "FontAwesomeSolidPlaceOfWorship": [], + "FontAwesomeSolidPlane": [], + "FontAwesomeSolidPlaneArrival": [], + "FontAwesomeSolidPlaneCircleCheck": [], + "FontAwesomeSolidPlaneCircleExclamation": [], + "FontAwesomeSolidPlaneCircleXmark": [], + "FontAwesomeSolidPlaneDeparture": [], + "FontAwesomeSolidPlaneLock": [], + "FontAwesomeSolidPlaneSlash": [], + "FontAwesomeSolidPlaneUp": [], + "FontAwesomeSolidPlantWilt": [], + "FontAwesomeSolidPlateWheat": [], + "FontAwesomeSolidPlay": [], + "FontAwesomeSolidPlug": [], + "FontAwesomeSolidPlugCircleBolt": [], + "FontAwesomeSolidPlugCircleCheck": [], + "FontAwesomeSolidPlugCircleExclamation": [], + "FontAwesomeSolidPlugCircleMinus": [], + "FontAwesomeSolidPlugCirclePlus": [], + "FontAwesomeSolidPlugCircleXmark": [], + "FontAwesomeSolidPlus": [], + "FontAwesomeSolidPlusMinus": [], + "FontAwesomeSolidPodcast": [], + "FontAwesomeSolidPoo": [], + "FontAwesomeSolidPooStorm": [], + "FontAwesomeSolidPoop": [], + "FontAwesomeSolidPowerOff": [], + "FontAwesomeSolidPrescription": [], + "FontAwesomeSolidPrescriptionBottle": [], + "FontAwesomeSolidPrescriptionBottleMedical": [], + "FontAwesomeSolidPrint": [], + "FontAwesomeSolidPumpMedical": [], + "FontAwesomeSolidPumpSoap": [], + "FontAwesomeSolidPuzzlePiece": [], + "FontAwesomeSolidQ": [], + "FontAwesomeSolidQrcode": [], + "FontAwesomeSolidQuestion": [], + "FontAwesomeSolidQuoteLeft": [], + "FontAwesomeSolidQuoteRight": [], + "FontAwesomeSolidR": [], + "FontAwesomeSolidRadiation": [], + "FontAwesomeSolidRadio": [], + "FontAwesomeSolidRainbow": [], + "FontAwesomeSolidRankingStar": [], + "FontAwesomeSolidReceipt": [], + "FontAwesomeSolidRecordVinyl": [], + "FontAwesomeSolidRectangleAd": [], + "FontAwesomeSolidRectangleList": [], + "FontAwesomeSolidRectangleXmark": [], + "FontAwesomeSolidRecycle": [], + "FontAwesomeSolidRegistered": [], + "FontAwesomeSolidRepeat": [], + "FontAwesomeSolidReply": [], + "FontAwesomeSolidReplyAll": [], + "FontAwesomeSolidRepublican": [], + "FontAwesomeSolidRestroom": [], + "FontAwesomeSolidRetweet": [], + "FontAwesomeSolidRibbon": [], + "FontAwesomeSolidRightFromBracket": [], + "FontAwesomeSolidRightLeft": [], + "FontAwesomeSolidRightLong": [], + "FontAwesomeSolidRightToBracket": [], + "FontAwesomeSolidRing": [], + "FontAwesomeSolidRoad": [], + "FontAwesomeSolidRoadBarrier": [], + "FontAwesomeSolidRoadBridge": [], + "FontAwesomeSolidRoadCircleCheck": [], + "FontAwesomeSolidRoadCircleExclamation": [], + "FontAwesomeSolidRoadCircleXmark": [], + "FontAwesomeSolidRoadLock": [], + "FontAwesomeSolidRoadSpikes": [], + "FontAwesomeSolidRobot": [], + "FontAwesomeSolidRocket": [], + "FontAwesomeSolidRotate": [], + "FontAwesomeSolidRotateLeft": [], + "FontAwesomeSolidRotateRight": [], + "FontAwesomeSolidRoute": [], + "FontAwesomeSolidRss": [], + "FontAwesomeSolidRubleSign": [], + "FontAwesomeSolidRug": [], + "FontAwesomeSolidRuler": [], + "FontAwesomeSolidRulerCombined": [], + "FontAwesomeSolidRulerHorizontal": [], + "FontAwesomeSolidRulerVertical": [], + "FontAwesomeSolidRupeeSign": [], + "FontAwesomeSolidRupiahSign": [], + "FontAwesomeSolidS": [], + "FontAwesomeSolidSackDollar": [], + "FontAwesomeSolidSackXmark": [], + "FontAwesomeSolidSailboat": [], + "FontAwesomeSolidSatellite": [], + "FontAwesomeSolidSatelliteDish": [], + "FontAwesomeSolidScaleBalanced": [], + "FontAwesomeSolidScaleUnbalanced": [], + "FontAwesomeSolidScaleUnbalancedFlip": [], + "FontAwesomeSolidSchool": [], + "FontAwesomeSolidSchoolCircleCheck": [], + "FontAwesomeSolidSchoolCircleExclamation": [], + "FontAwesomeSolidSchoolCircleXmark": [], + "FontAwesomeSolidSchoolFlag": [], + "FontAwesomeSolidSchoolLock": [], + "FontAwesomeSolidScissors": [], + "FontAwesomeSolidScrewdriver": [], + "FontAwesomeSolidScrewdriverWrench": [], + "FontAwesomeSolidScroll": [], + "FontAwesomeSolidScrollTorah": [], + "FontAwesomeSolidSdCard": [], + "FontAwesomeSolidSection": [], + "FontAwesomeSolidSeedling": [], + "FontAwesomeSolidServer": [], + "FontAwesomeSolidShapes": [], + "FontAwesomeSolidShare": [], + "FontAwesomeSolidShareFromSquare": [], + "FontAwesomeSolidShareNodes": [], + "FontAwesomeSolidSheetPlastic": [], + "FontAwesomeSolidShekelSign": [], + "FontAwesomeSolidShield": [], + "FontAwesomeSolidShieldBlank": [], + "FontAwesomeSolidShieldCat": [], + "FontAwesomeSolidShieldDog": [], + "FontAwesomeSolidShieldHalved": [], + "FontAwesomeSolidShieldHeart": [], + "FontAwesomeSolidShieldVirus": [], + "FontAwesomeSolidShip": [], + "FontAwesomeSolidShirt": [], + "FontAwesomeSolidShoePrints": [], + "FontAwesomeSolidShop": [], + "FontAwesomeSolidShopLock": [], + "FontAwesomeSolidShopSlash": [], + "FontAwesomeSolidShower": [], + "FontAwesomeSolidShrimp": [], + "FontAwesomeSolidShuffle": [], + "FontAwesomeSolidShuttleSpace": [], + "FontAwesomeSolidSignHanging": [], + "FontAwesomeSolidSignal": [], + "FontAwesomeSolidSignature": [], + "FontAwesomeSolidSignsPost": [], + "FontAwesomeSolidSimCard": [], + "FontAwesomeSolidSink": [], + "FontAwesomeSolidSitemap": [], + "FontAwesomeSolidSkull": [], + "FontAwesomeSolidSkullCrossbones": [], + "FontAwesomeSolidSlash": [], + "FontAwesomeSolidSleigh": [], + "FontAwesomeSolidSliders": [], + "FontAwesomeSolidSmog": [], + "FontAwesomeSolidSmoking": [], + "FontAwesomeSolidSnowflake": [], + "FontAwesomeSolidSnowman": [], + "FontAwesomeSolidSnowplow": [], + "FontAwesomeSolidSoap": [], + "FontAwesomeSolidSocks": [], + "FontAwesomeSolidSolarPanel": [], + "FontAwesomeSolidSort": [], + "FontAwesomeSolidSortDown": [], + "FontAwesomeSolidSortUp": [], + "FontAwesomeSolidSpa": [], + "FontAwesomeSolidSpaghettiMonsterFlying": [], + "FontAwesomeSolidSpellCheck": [], + "FontAwesomeSolidSpider": [], + "FontAwesomeSolidSpinner": [], + "FontAwesomeSolidSplotch": [], + "FontAwesomeSolidSpoon": [], + "FontAwesomeSolidSprayCan": [], + "FontAwesomeSolidSprayCanSparkles": [], + "FontAwesomeSolidSquare": [], + "FontAwesomeSolidSquareArrowUpRight": [], + "FontAwesomeSolidSquareCaretDown": [], + "FontAwesomeSolidSquareCaretLeft": [], + "FontAwesomeSolidSquareCaretRight": [], + "FontAwesomeSolidSquareCaretUp": [], + "FontAwesomeSolidSquareCheck": [], + "FontAwesomeSolidSquareEnvelope": [], + "FontAwesomeSolidSquareFull": [], + "FontAwesomeSolidSquareH": [], + "FontAwesomeSolidSquareMinus": [], + "FontAwesomeSolidSquareNfi": [], + "FontAwesomeSolidSquareParking": [], + "FontAwesomeSolidSquarePen": [], + "FontAwesomeSolidSquarePersonConfined": [], + "FontAwesomeSolidSquarePhone": [], + "FontAwesomeSolidSquarePhoneFlip": [], + "FontAwesomeSolidSquarePlus": [], + "FontAwesomeSolidSquarePollHorizontal": [], + "FontAwesomeSolidSquarePollVertical": [], + "FontAwesomeSolidSquareRootVariable": [], + "FontAwesomeSolidSquareRss": [], + "FontAwesomeSolidSquareShareNodes": [], + "FontAwesomeSolidSquareUpRight": [], + "FontAwesomeSolidSquareVirus": [], + "FontAwesomeSolidSquareXmark": [], + "FontAwesomeSolidStaffAesculapius": [], + "FontAwesomeSolidStairs": [], + "FontAwesomeSolidStamp": [], + "FontAwesomeSolidStar": [], + "FontAwesomeSolidStarAndCrescent": [], + "FontAwesomeSolidStarHalf": [], + "FontAwesomeSolidStarHalfStroke": [], + "FontAwesomeSolidStarOfDavid": [], + "FontAwesomeSolidStarOfLife": [], + "FontAwesomeSolidSterlingSign": [], + "FontAwesomeSolidStethoscope": [], + "FontAwesomeSolidStop": [], + "FontAwesomeSolidStopwatch": [], + "FontAwesomeSolidStopwatch20": [], + "FontAwesomeSolidStore": [], + "FontAwesomeSolidStoreSlash": [], + "FontAwesomeSolidStreetView": [], + "FontAwesomeSolidStrikethrough": [], + "FontAwesomeSolidStroopwafel": [], + "FontAwesomeSolidSubscript": [], + "FontAwesomeSolidSuitcase": [], + "FontAwesomeSolidSuitcaseMedical": [], + "FontAwesomeSolidSuitcaseRolling": [], + "FontAwesomeSolidSun": [], + "FontAwesomeSolidSunPlantWilt": [], + "FontAwesomeSolidSuperscript": [], + "FontAwesomeSolidSwatchbook": [], + "FontAwesomeSolidSynagogue": [], + "FontAwesomeSolidSyringe": [], + "FontAwesomeSolidT": [], + "FontAwesomeSolidTable": [], + "FontAwesomeSolidTableCells": [], + "FontAwesomeSolidTableCellsLarge": [], + "FontAwesomeSolidTableColumns": [], + "FontAwesomeSolidTableList": [], + "FontAwesomeSolidTableTennisPaddleBall": [], + "FontAwesomeSolidTablet": [], + "FontAwesomeSolidTabletButton": [], + "FontAwesomeSolidTabletScreenButton": [], + "FontAwesomeSolidTablets": [], + "FontAwesomeSolidTachographDigital": [], + "FontAwesomeSolidTag": [], + "FontAwesomeSolidTags": [], + "FontAwesomeSolidTape": [], + "FontAwesomeSolidTarp": [], + "FontAwesomeSolidTarpDroplet": [], + "FontAwesomeSolidTaxi": [], + "FontAwesomeSolidTeeth": [], + "FontAwesomeSolidTeethOpen": [], + "FontAwesomeSolidTemperatureArrowDown": [], + "FontAwesomeSolidTemperatureArrowUp": [], + "FontAwesomeSolidTemperatureEmpty": [], + "FontAwesomeSolidTemperatureFull": [], + "FontAwesomeSolidTemperatureHalf": [], + "FontAwesomeSolidTemperatureHigh": [], + "FontAwesomeSolidTemperatureLow": [], + "FontAwesomeSolidTemperatureQuarter": [], + "FontAwesomeSolidTemperatureThreeQuarters": [], + "FontAwesomeSolidTengeSign": [], + "FontAwesomeSolidTent": [], + "FontAwesomeSolidTentArrowDownToLine": [], + "FontAwesomeSolidTentArrowLeftRight": [], + "FontAwesomeSolidTentArrowTurnLeft": [], + "FontAwesomeSolidTentArrowsDown": [], + "FontAwesomeSolidTents": [], + "FontAwesomeSolidTerminal": [], + "FontAwesomeSolidTextHeight": [], + "FontAwesomeSolidTextSlash": [], + "FontAwesomeSolidTextWidth": [], + "FontAwesomeSolidThermometer": [], + "FontAwesomeSolidThumbsDown": [], + "FontAwesomeSolidThumbsUp": [], + "FontAwesomeSolidThumbtack": [], + "FontAwesomeSolidTicket": [], + "FontAwesomeSolidTicketSimple": [], + "FontAwesomeSolidTimeline": [], + "FontAwesomeSolidToggleOff": [], + "FontAwesomeSolidToggleOn": [], + "FontAwesomeSolidToilet": [], + "FontAwesomeSolidToiletPaper": [], + "FontAwesomeSolidToiletPaperSlash": [], + "FontAwesomeSolidToiletPortable": [], + "FontAwesomeSolidToiletsPortable": [], + "FontAwesomeSolidToolbox": [], + "FontAwesomeSolidTooth": [], + "FontAwesomeSolidToriiGate": [], + "FontAwesomeSolidTornado": [], + "FontAwesomeSolidTowerBroadcast": [], + "FontAwesomeSolidTowerCell": [], + "FontAwesomeSolidTowerObservation": [], + "FontAwesomeSolidTractor": [], + "FontAwesomeSolidTrademark": [], + "FontAwesomeSolidTrafficLight": [], + "FontAwesomeSolidTrailer": [], + "FontAwesomeSolidTrain": [], + "FontAwesomeSolidTrainSubway": [], + "FontAwesomeSolidTrainTram": [], + "FontAwesomeSolidTransgender": [], + "FontAwesomeSolidTrash": [], + "FontAwesomeSolidTrashArrowUp": [], + "FontAwesomeSolidTrashCan": [], + "FontAwesomeSolidTrashCanArrowUp": [], + "FontAwesomeSolidTree": [], + "FontAwesomeSolidTreeCity": [], + "FontAwesomeSolidTriangleExclamation": [], + "FontAwesomeSolidTrophy": [], + "FontAwesomeSolidTrowel": [], + "FontAwesomeSolidTrowelBricks": [], + "FontAwesomeSolidTruck": [], + "FontAwesomeSolidTruckArrowRight": [], + "FontAwesomeSolidTruckDroplet": [], + "FontAwesomeSolidTruckFast": [], + "FontAwesomeSolidTruckField": [], + "FontAwesomeSolidTruckFieldUn": [], + "FontAwesomeSolidTruckFront": [], + "FontAwesomeSolidTruckMedical": [], + "FontAwesomeSolidTruckMonster": [], + "FontAwesomeSolidTruckMoving": [], + "FontAwesomeSolidTruckPickup": [], + "FontAwesomeSolidTruckPlane": [], + "FontAwesomeSolidTruckRampBox": [], + "FontAwesomeSolidTty": [], + "FontAwesomeSolidTurkishLiraSign": [], + "FontAwesomeSolidTurnDown": [], + "FontAwesomeSolidTurnUp": [], + "FontAwesomeSolidTv": [], + "FontAwesomeSolidU": [], + "FontAwesomeSolidUmbrella": [], + "FontAwesomeSolidUmbrellaBeach": [], + "FontAwesomeSolidUnderline": [], + "FontAwesomeSolidUniversalAccess": [], + "FontAwesomeSolidUnlock": [], + "FontAwesomeSolidUnlockKeyhole": [], + "FontAwesomeSolidUpDown": [], + "FontAwesomeSolidUpDownLeftRight": [], + "FontAwesomeSolidUpLong": [], + "FontAwesomeSolidUpRightAndDownLeftFromCenter": [], + "FontAwesomeSolidUpRightFromSquare": [], + "FontAwesomeSolidUpload": [], + "FontAwesomeSolidUser": [], + "FontAwesomeSolidUserAstronaut": [], + "FontAwesomeSolidUserCheck": [], + "FontAwesomeSolidUserClock": [], + "FontAwesomeSolidUserDoctor": [], + "FontAwesomeSolidUserGear": [], + "FontAwesomeSolidUserGraduate": [], + "FontAwesomeSolidUserGroup": [], + "FontAwesomeSolidUserInjured": [], + "FontAwesomeSolidUserLarge": [], + "FontAwesomeSolidUserLargeSlash": [], + "FontAwesomeSolidUserLock": [], + "FontAwesomeSolidUserMinus": [], + "FontAwesomeSolidUserNinja": [], + "FontAwesomeSolidUserNurse": [], + "FontAwesomeSolidUserPen": [], + "FontAwesomeSolidUserPlus": [], + "FontAwesomeSolidUserSecret": [], + "FontAwesomeSolidUserShield": [], + "FontAwesomeSolidUserSlash": [], + "FontAwesomeSolidUserTag": [], + "FontAwesomeSolidUserTie": [], + "FontAwesomeSolidUserXmark": [], + "FontAwesomeSolidUsers": [], + "FontAwesomeSolidUsersBetweenLines": [], + "FontAwesomeSolidUsersGear": [], + "FontAwesomeSolidUsersLine": [], + "FontAwesomeSolidUsersRays": [], + "FontAwesomeSolidUsersRectangle": [], + "FontAwesomeSolidUsersSlash": [], + "FontAwesomeSolidUsersViewfinder": [], + "FontAwesomeSolidUtensils": [], + "FontAwesomeSolidV": [], + "FontAwesomeSolidVanShuttle": [], + "FontAwesomeSolidVault": [], + "FontAwesomeSolidVectorSquare": [], + "FontAwesomeSolidVenus": [], + "FontAwesomeSolidVenusDouble": [], + "FontAwesomeSolidVenusMars": [], + "FontAwesomeSolidVest": [], + "FontAwesomeSolidVestPatches": [], + "FontAwesomeSolidVial": [], + "FontAwesomeSolidVialCircleCheck": [], + "FontAwesomeSolidVialVirus": [], + "FontAwesomeSolidVials": [], + "FontAwesomeSolidVideo": [], + "FontAwesomeSolidVideoSlash": [], + "FontAwesomeSolidVihara": [], + "FontAwesomeSolidVirus": [], + "FontAwesomeSolidVirusCovid": [], + "FontAwesomeSolidVirusCovidSlash": [], + "FontAwesomeSolidVirusSlash": [], + "FontAwesomeSolidViruses": [], + "FontAwesomeSolidVoicemail": [], + "FontAwesomeSolidVolcano": [], + "FontAwesomeSolidVolleyball": [], + "FontAwesomeSolidVolumeHigh": [], + "FontAwesomeSolidVolumeLow": [], + "FontAwesomeSolidVolumeOff": [], + "FontAwesomeSolidVolumeXmark": [], + "FontAwesomeSolidVrCardboard": [], + "FontAwesomeSolidW": [], + "FontAwesomeSolidWalkieTalkie": [], + "FontAwesomeSolidWallet": [], + "FontAwesomeSolidWandMagic": [], + "FontAwesomeSolidWandMagicSparkles": [], + "FontAwesomeSolidWandSparkles": [], + "FontAwesomeSolidWarehouse": [], + "FontAwesomeSolidWater": [], + "FontAwesomeSolidWaterLadder": [], + "FontAwesomeSolidWaveSquare": [], + "FontAwesomeSolidWeightHanging": [], + "FontAwesomeSolidWeightScale": [], + "FontAwesomeSolidWheatAwn": [], + "FontAwesomeSolidWheatAwnCircleExclamation": [], + "FontAwesomeSolidWheelchair": [], + "FontAwesomeSolidWheelchairMove": [], + "FontAwesomeSolidWhiskeyGlass": [], + "FontAwesomeSolidWifi": [], + "FontAwesomeSolidWind": [], + "FontAwesomeSolidWindowMaximize": [], + "FontAwesomeSolidWindowMinimize": [], + "FontAwesomeSolidWindowRestore": [], + "FontAwesomeSolidWineBottle": [], + "FontAwesomeSolidWineGlass": [], + "FontAwesomeSolidWineGlassEmpty": [], + "FontAwesomeSolidWonSign": [], + "FontAwesomeSolidWorm": [], + "FontAwesomeSolidWrench": [], + "FontAwesomeSolidX": [], + "FontAwesomeSolidXRay": [], + "FontAwesomeSolidXmark": [], + "FontAwesomeSolidXmarksLines": [], + "FontAwesomeSolidY": [], + "FontAwesomeSolidYenSign": [], + "FontAwesomeSolidYinYang": [], + "FontAwesomeSolidZ": [], + "HeroiconsMiniSolidAcademicCap": [], + "HeroiconsMiniSolidAdjustmentsHorizontal": [], + "HeroiconsMiniSolidAdjustmentsVertical": [], + "HeroiconsMiniSolidArchiveBox": [], + "HeroiconsMiniSolidArchiveBoxArrowDown": [], + "HeroiconsMiniSolidArchiveBoxXMark": [], + "HeroiconsMiniSolidArrowDown": [], + "HeroiconsMiniSolidArrowDownCircle": [], + "HeroiconsMiniSolidArrowDownLeft": [], + "HeroiconsMiniSolidArrowDownOnSquare": [], + "HeroiconsMiniSolidArrowDownOnSquareStack": [], + "HeroiconsMiniSolidArrowDownRight": [], + "HeroiconsMiniSolidArrowDownTray": [], + "HeroiconsMiniSolidArrowLeft": [], + "HeroiconsMiniSolidArrowLeftCircle": [], + "HeroiconsMiniSolidArrowLeftOnRectangle": [], + "HeroiconsMiniSolidArrowLongDown": [], + "HeroiconsMiniSolidArrowLongLeft": [], + "HeroiconsMiniSolidArrowLongRight": [], + "HeroiconsMiniSolidArrowLongUp": [], + "HeroiconsMiniSolidArrowPath": [], + "HeroiconsMiniSolidArrowPathRoundedSquare": [], + "HeroiconsMiniSolidArrowRight": [], + "HeroiconsMiniSolidArrowRightCircle": [], + "HeroiconsMiniSolidArrowRightOnRectangle": [], + "HeroiconsMiniSolidArrowSmallDown": [], + "HeroiconsMiniSolidArrowSmallLeft": [], + "HeroiconsMiniSolidArrowSmallRight": [], + "HeroiconsMiniSolidArrowSmallUp": [], + "HeroiconsMiniSolidArrowTopRightOnSquare": [], + "HeroiconsMiniSolidArrowTrendingDown": [], + "HeroiconsMiniSolidArrowTrendingUp": [], + "HeroiconsMiniSolidArrowUp": [], + "HeroiconsMiniSolidArrowUpCircle": [], + "HeroiconsMiniSolidArrowUpLeft": [], + "HeroiconsMiniSolidArrowUpOnSquare": [], + "HeroiconsMiniSolidArrowUpOnSquareStack": [], + "HeroiconsMiniSolidArrowUpRight": [], + "HeroiconsMiniSolidArrowUpTray": [], + "HeroiconsMiniSolidArrowUturnDown": [], + "HeroiconsMiniSolidArrowUturnLeft": [], + "HeroiconsMiniSolidArrowUturnRight": [], + "HeroiconsMiniSolidArrowUturnUp": [], + "HeroiconsMiniSolidArrowsPointingIn": [], + "HeroiconsMiniSolidArrowsPointingOut": [], + "HeroiconsMiniSolidArrowsRightLeft": [], + "HeroiconsMiniSolidArrowsUpDown": [], + "HeroiconsMiniSolidAtSymbol": [], + "HeroiconsMiniSolidBackspace": [], + "HeroiconsMiniSolidBackward": [], + "HeroiconsMiniSolidBanknotes": [], + "HeroiconsMiniSolidBars2": [], + "HeroiconsMiniSolidBars3": [], + "HeroiconsMiniSolidBars3BottomLeft": [], + "HeroiconsMiniSolidBars3BottomRight": [], + "HeroiconsMiniSolidBars3CenterLeft": [], + "HeroiconsMiniSolidBars4": [], + "HeroiconsMiniSolidBarsArrowDown": [], + "HeroiconsMiniSolidBarsArrowUp": [], + "HeroiconsMiniSolidBattery0": [], + "HeroiconsMiniSolidBattery100": [], + "HeroiconsMiniSolidBattery50": [], + "HeroiconsMiniSolidBeaker": [], + "HeroiconsMiniSolidBell": [], + "HeroiconsMiniSolidBellAlert": [], + "HeroiconsMiniSolidBellSlash": [], + "HeroiconsMiniSolidBellSnooze": [], + "HeroiconsMiniSolidBolt": [], + "HeroiconsMiniSolidBoltSlash": [], + "HeroiconsMiniSolidBookOpen": [], + "HeroiconsMiniSolidBookmark": [], + "HeroiconsMiniSolidBookmarkSlash": [], + "HeroiconsMiniSolidBookmarkSquare": [], + "HeroiconsMiniSolidBriefcase": [], + "HeroiconsMiniSolidBugAnt": [], + "HeroiconsMiniSolidBuildingLibrary": [], + "HeroiconsMiniSolidBuildingOffice": [], + "HeroiconsMiniSolidBuildingOffice2": [], + "HeroiconsMiniSolidBuildingStorefront": [], + "HeroiconsMiniSolidCake": [], + "HeroiconsMiniSolidCalculator": [], + "HeroiconsMiniSolidCalendar": [], + "HeroiconsMiniSolidCalendarDays": [], + "HeroiconsMiniSolidCamera": [], + "HeroiconsMiniSolidChartBar": [], + "HeroiconsMiniSolidChartBarSquare": [], + "HeroiconsMiniSolidChartPie": [], + "HeroiconsMiniSolidChatBubbleBottomCenter": [], + "HeroiconsMiniSolidChatBubbleBottomCenterText": [], + "HeroiconsMiniSolidChatBubbleLeft": [], + "HeroiconsMiniSolidChatBubbleLeftEllipsis": [], + "HeroiconsMiniSolidChatBubbleLeftRight": [], + "HeroiconsMiniSolidChatBubbleOvalLeft": [], + "HeroiconsMiniSolidChatBubbleOvalLeftEllipsis": [], + "HeroiconsMiniSolidCheck": [], + "HeroiconsMiniSolidCheckBadge": [], + "HeroiconsMiniSolidCheckCircle": [], + "HeroiconsMiniSolidChevronDoubleDown": [], + "HeroiconsMiniSolidChevronDoubleLeft": [], + "HeroiconsMiniSolidChevronDoubleRight": [], + "HeroiconsMiniSolidChevronDoubleUp": [], + "HeroiconsMiniSolidChevronDown": [], + "HeroiconsMiniSolidChevronLeft": [], + "HeroiconsMiniSolidChevronRight": [], + "HeroiconsMiniSolidChevronUp": [], + "HeroiconsMiniSolidChevronUpDown": [], + "HeroiconsMiniSolidCircleStack": [], + "HeroiconsMiniSolidClipboard": [], + "HeroiconsMiniSolidClipboardDocument": [], + "HeroiconsMiniSolidClipboardDocumentCheck": [], + "HeroiconsMiniSolidClipboardDocumentList": [], + "HeroiconsMiniSolidClock": [], + "HeroiconsMiniSolidCloud": [], + "HeroiconsMiniSolidCloudArrowDown": [], + "HeroiconsMiniSolidCloudArrowUp": [], + "HeroiconsMiniSolidCodeBracket": [], + "HeroiconsMiniSolidCodeBracketSquare": [], + "HeroiconsMiniSolidCog": [], + "HeroiconsMiniSolidCog6Tooth": [], + "HeroiconsMiniSolidCog8Tooth": [], + "HeroiconsMiniSolidCommandLine": [], + "HeroiconsMiniSolidComputerDesktop": [], + "HeroiconsMiniSolidCpuChip": [], + "HeroiconsMiniSolidCreditCard": [], + "HeroiconsMiniSolidCube": [], + "HeroiconsMiniSolidCubeTransparent": [], + "HeroiconsMiniSolidCurrencyBangladeshi": [], + "HeroiconsMiniSolidCurrencyDollar": [], + "HeroiconsMiniSolidCurrencyEuro": [], + "HeroiconsMiniSolidCurrencyPound": [], + "HeroiconsMiniSolidCurrencyRupee": [], + "HeroiconsMiniSolidCurrencyYen": [], + "HeroiconsMiniSolidCursorArrowRays": [], + "HeroiconsMiniSolidCursorArrowRipple": [], + "HeroiconsMiniSolidDevicePhoneMobile": [], + "HeroiconsMiniSolidDeviceTablet": [], + "HeroiconsMiniSolidDocument": [], + "HeroiconsMiniSolidDocumentArrowDown": [], + "HeroiconsMiniSolidDocumentArrowUp": [], + "HeroiconsMiniSolidDocumentChartBar": [], + "HeroiconsMiniSolidDocumentCheck": [], + "HeroiconsMiniSolidDocumentDuplicate": [], + "HeroiconsMiniSolidDocumentMagnifyingGlass": [], + "HeroiconsMiniSolidDocumentMinus": [], + "HeroiconsMiniSolidDocumentPlus": [], + "HeroiconsMiniSolidDocumentText": [], + "HeroiconsMiniSolidEllipsisHorizontal": [], + "HeroiconsMiniSolidEllipsisHorizontalCircle": [], + "HeroiconsMiniSolidEllipsisVertical": [], + "HeroiconsMiniSolidEnvelope": [], + "HeroiconsMiniSolidEnvelopeOpen": [], + "HeroiconsMiniSolidExclamationCircle": [], + "HeroiconsMiniSolidExclamationTriangle": [], + "HeroiconsMiniSolidEye": [], + "HeroiconsMiniSolidEyeDropper": [], + "HeroiconsMiniSolidEyeSlash": [], + "HeroiconsMiniSolidFaceFrown": [], + "HeroiconsMiniSolidFaceSmile": [], + "HeroiconsMiniSolidFilm": [], + "HeroiconsMiniSolidFingerPrint": [], + "HeroiconsMiniSolidFire": [], + "HeroiconsMiniSolidFlag": [], + "HeroiconsMiniSolidFolder": [], + "HeroiconsMiniSolidFolderArrowDown": [], + "HeroiconsMiniSolidFolderMinus": [], + "HeroiconsMiniSolidFolderOpen": [], + "HeroiconsMiniSolidFolderPlus": [], + "HeroiconsMiniSolidForward": [], + "HeroiconsMiniSolidFunnel": [], + "HeroiconsMiniSolidGif": [], + "HeroiconsMiniSolidGift": [], + "HeroiconsMiniSolidGiftTop": [], + "HeroiconsMiniSolidGlobeAlt": [], + "HeroiconsMiniSolidGlobeAmericas": [], + "HeroiconsMiniSolidGlobeAsiaAustralia": [], + "HeroiconsMiniSolidGlobeEuropeAfrica": [], + "HeroiconsMiniSolidHandRaised": [], + "HeroiconsMiniSolidHandThumbDown": [], + "HeroiconsMiniSolidHandThumbUp": [], + "HeroiconsMiniSolidHashtag": [], + "HeroiconsMiniSolidHeart": [], + "HeroiconsMiniSolidHome": [], + "HeroiconsMiniSolidHomeModern": [], + "HeroiconsMiniSolidIdentification": [], + "HeroiconsMiniSolidInbox": [], + "HeroiconsMiniSolidInboxArrowDown": [], + "HeroiconsMiniSolidInboxStack": [], + "HeroiconsMiniSolidInformationCircle": [], + "HeroiconsMiniSolidKey": [], + "HeroiconsMiniSolidLanguage": [], + "HeroiconsMiniSolidLifebuoy": [], + "HeroiconsMiniSolidLightBulb": [], + "HeroiconsMiniSolidLink": [], + "HeroiconsMiniSolidListBullet": [], + "HeroiconsMiniSolidLockClosed": [], + "HeroiconsMiniSolidLockOpen": [], + "HeroiconsMiniSolidMagnifyingGlass": [], + "HeroiconsMiniSolidMagnifyingGlassCircle": [], + "HeroiconsMiniSolidMagnifyingGlassMinus": [], + "HeroiconsMiniSolidMagnifyingGlassPlus": [], + "HeroiconsMiniSolidMap": [], + "HeroiconsMiniSolidMapPin": [], + "HeroiconsMiniSolidMegaphone": [], + "HeroiconsMiniSolidMicrophone": [], + "HeroiconsMiniSolidMinus": [], + "HeroiconsMiniSolidMinusCircle": [], + "HeroiconsMiniSolidMinusSmall": [], + "HeroiconsMiniSolidMoon": [], + "HeroiconsMiniSolidMusicalNote": [], + "HeroiconsMiniSolidNewspaper": [], + "HeroiconsMiniSolidNoSymbol": [], + "HeroiconsMiniSolidPaintBrush": [], + "HeroiconsMiniSolidPaperAirplane": [], + "HeroiconsMiniSolidPaperClip": [], + "HeroiconsMiniSolidPause": [], + "HeroiconsMiniSolidPauseCircle": [], + "HeroiconsMiniSolidPencil": [], + "HeroiconsMiniSolidPencilSquare": [], + "HeroiconsMiniSolidPhone": [], + "HeroiconsMiniSolidPhoneArrowDownLeft": [], + "HeroiconsMiniSolidPhoneArrowUpRight": [], + "HeroiconsMiniSolidPhoneXMark": [], + "HeroiconsMiniSolidPhoto": [], + "HeroiconsMiniSolidPlay": [], + "HeroiconsMiniSolidPlayCircle": [], + "HeroiconsMiniSolidPlayPause": [], + "HeroiconsMiniSolidPlus": [], + "HeroiconsMiniSolidPlusCircle": [], + "HeroiconsMiniSolidPlusSmall": [], + "HeroiconsMiniSolidPower": [], + "HeroiconsMiniSolidPresentationChartBar": [], + "HeroiconsMiniSolidPresentationChartLine": [], + "HeroiconsMiniSolidPrinter": [], + "HeroiconsMiniSolidPuzzlePiece": [], + "HeroiconsMiniSolidQrCode": [], + "HeroiconsMiniSolidQuestionMarkCircle": [], + "HeroiconsMiniSolidQueueList": [], + "HeroiconsMiniSolidRadio": [], + "HeroiconsMiniSolidReceiptPercent": [], + "HeroiconsMiniSolidReceiptRefund": [], + "HeroiconsMiniSolidRectangleGroup": [], + "HeroiconsMiniSolidRectangleStack": [], + "HeroiconsMiniSolidRocketLaunch": [], + "HeroiconsMiniSolidRss": [], + "HeroiconsMiniSolidScale": [], + "HeroiconsMiniSolidScissors": [], + "HeroiconsMiniSolidServer": [], + "HeroiconsMiniSolidServerStack": [], + "HeroiconsMiniSolidShare": [], + "HeroiconsMiniSolidShieldCheck": [], + "HeroiconsMiniSolidShieldExclamation": [], + "HeroiconsMiniSolidShoppingBag": [], + "HeroiconsMiniSolidShoppingCart": [], + "HeroiconsMiniSolidSignal": [], + "HeroiconsMiniSolidSignalSlash": [], + "HeroiconsMiniSolidSparkles": [], + "HeroiconsMiniSolidSpeakerWave": [], + "HeroiconsMiniSolidSpeakerXMark": [], + "HeroiconsMiniSolidSquare2Stack": [], + "HeroiconsMiniSolidSquare3Stack3D": [], + "HeroiconsMiniSolidSquares2X2": [], + "HeroiconsMiniSolidSquaresPlus": [], + "HeroiconsMiniSolidStar": [], + "HeroiconsMiniSolidStop": [], + "HeroiconsMiniSolidStopCircle": [], + "HeroiconsMiniSolidSun": [], + "HeroiconsMiniSolidSwatch": [], + "HeroiconsMiniSolidTableCells": [], + "HeroiconsMiniSolidTag": [], + "HeroiconsMiniSolidTicket": [], + "HeroiconsMiniSolidTrash": [], + "HeroiconsMiniSolidTrophy": [], + "HeroiconsMiniSolidTruck": [], + "HeroiconsMiniSolidTv": [], + "HeroiconsMiniSolidUser": [], + "HeroiconsMiniSolidUserCircle": [], + "HeroiconsMiniSolidUserGroup": [], + "HeroiconsMiniSolidUserMinus": [], + "HeroiconsMiniSolidUserPlus": [], + "HeroiconsMiniSolidUsers": [], + "HeroiconsMiniSolidVariable": [], + "HeroiconsMiniSolidVideoCamera": [], + "HeroiconsMiniSolidVideoCameraSlash": [], + "HeroiconsMiniSolidViewColumns": [], + "HeroiconsMiniSolidViewfinderCircle": [], + "HeroiconsMiniSolidWallet": [], + "HeroiconsMiniSolidWifi": [], + "HeroiconsMiniSolidWindow": [], + "HeroiconsMiniSolidWrench": [], + "HeroiconsMiniSolidWrenchScrewdriver": [], + "HeroiconsMiniSolidXCircle": [], + "HeroiconsMiniSolidXMark": [], + "HeroiconsOutlineAcademicCap": [], + "HeroiconsOutlineAdjustmentsHorizontal": [], + "HeroiconsOutlineAdjustmentsVertical": [], + "HeroiconsOutlineArchiveBox": [], + "HeroiconsOutlineArchiveBoxArrowDown": [], + "HeroiconsOutlineArchiveBoxXMark": [], + "HeroiconsOutlineArrowDown": [], + "HeroiconsOutlineArrowDownCircle": [], + "HeroiconsOutlineArrowDownLeft": [], + "HeroiconsOutlineArrowDownOnSquare": [], + "HeroiconsOutlineArrowDownOnSquareStack": [], + "HeroiconsOutlineArrowDownRight": [], + "HeroiconsOutlineArrowDownTray": [], + "HeroiconsOutlineArrowLeft": [], + "HeroiconsOutlineArrowLeftCircle": [], + "HeroiconsOutlineArrowLeftOnRectangle": [], + "HeroiconsOutlineArrowLongDown": [], + "HeroiconsOutlineArrowLongLeft": [], + "HeroiconsOutlineArrowLongRight": [], + "HeroiconsOutlineArrowLongUp": [], + "HeroiconsOutlineArrowPath": [], + "HeroiconsOutlineArrowPathRoundedSquare": [], + "HeroiconsOutlineArrowRight": [], + "HeroiconsOutlineArrowRightCircle": [], + "HeroiconsOutlineArrowRightOnRectangle": [], + "HeroiconsOutlineArrowSmallDown": [], + "HeroiconsOutlineArrowSmallLeft": [], + "HeroiconsOutlineArrowSmallRight": [], + "HeroiconsOutlineArrowSmallUp": [], + "HeroiconsOutlineArrowTopRightOnSquare": [], + "HeroiconsOutlineArrowTrendingDown": [], + "HeroiconsOutlineArrowTrendingUp": [], + "HeroiconsOutlineArrowUp": [], + "HeroiconsOutlineArrowUpCircle": [], + "HeroiconsOutlineArrowUpLeft": [], + "HeroiconsOutlineArrowUpOnSquare": [], + "HeroiconsOutlineArrowUpOnSquareStack": [], + "HeroiconsOutlineArrowUpRight": [], + "HeroiconsOutlineArrowUpTray": [], + "HeroiconsOutlineArrowUturnDown": [], + "HeroiconsOutlineArrowUturnLeft": [], + "HeroiconsOutlineArrowUturnRight": [], + "HeroiconsOutlineArrowUturnUp": [], + "HeroiconsOutlineArrowsPointingIn": [], + "HeroiconsOutlineArrowsPointingOut": [], + "HeroiconsOutlineArrowsRightLeft": [], + "HeroiconsOutlineArrowsUpDown": [], + "HeroiconsOutlineAtSymbol": [], + "HeroiconsOutlineBackspace": [], + "HeroiconsOutlineBackward": [], + "HeroiconsOutlineBanknotes": [], + "HeroiconsOutlineBars2": [], + "HeroiconsOutlineBars3": [], + "HeroiconsOutlineBars3BottomLeft": [], + "HeroiconsOutlineBars3BottomRight": [], + "HeroiconsOutlineBars3CenterLeft": [], + "HeroiconsOutlineBars4": [], + "HeroiconsOutlineBarsArrowDown": [], + "HeroiconsOutlineBarsArrowUp": [], + "HeroiconsOutlineBattery0": [], + "HeroiconsOutlineBattery100": [], + "HeroiconsOutlineBattery50": [], + "HeroiconsOutlineBeaker": [], + "HeroiconsOutlineBell": [], + "HeroiconsOutlineBellAlert": [], + "HeroiconsOutlineBellSlash": [], + "HeroiconsOutlineBellSnooze": [], + "HeroiconsOutlineBolt": [], + "HeroiconsOutlineBoltSlash": [], + "HeroiconsOutlineBookOpen": [], + "HeroiconsOutlineBookmark": [], + "HeroiconsOutlineBookmarkSlash": [], + "HeroiconsOutlineBookmarkSquare": [], + "HeroiconsOutlineBriefcase": [], + "HeroiconsOutlineBugAnt": [], + "HeroiconsOutlineBuildingLibrary": [], + "HeroiconsOutlineBuildingOffice": [], + "HeroiconsOutlineBuildingOffice2": [], + "HeroiconsOutlineBuildingStorefront": [], + "HeroiconsOutlineCake": [], + "HeroiconsOutlineCalculator": [], + "HeroiconsOutlineCalendar": [], + "HeroiconsOutlineCalendarDays": [], + "HeroiconsOutlineCamera": [], + "HeroiconsOutlineChartBar": [], + "HeroiconsOutlineChartBarSquare": [], + "HeroiconsOutlineChartPie": [], + "HeroiconsOutlineChatBubbleBottomCenter": [], + "HeroiconsOutlineChatBubbleBottomCenterText": [], + "HeroiconsOutlineChatBubbleLeft": [], + "HeroiconsOutlineChatBubbleLeftEllipsis": [], + "HeroiconsOutlineChatBubbleLeftRight": [], + "HeroiconsOutlineChatBubbleOvalLeft": [], + "HeroiconsOutlineChatBubbleOvalLeftEllipsis": [], + "HeroiconsOutlineCheck": [], + "HeroiconsOutlineCheckBadge": [], + "HeroiconsOutlineCheckCircle": [], + "HeroiconsOutlineChevronDoubleDown": [], + "HeroiconsOutlineChevronDoubleLeft": [], + "HeroiconsOutlineChevronDoubleRight": [], + "HeroiconsOutlineChevronDoubleUp": [], + "HeroiconsOutlineChevronDown": [], + "HeroiconsOutlineChevronLeft": [], + "HeroiconsOutlineChevronRight": [], + "HeroiconsOutlineChevronUp": [], + "HeroiconsOutlineChevronUpDown": [], + "HeroiconsOutlineCircleStack": [], + "HeroiconsOutlineClipboard": [], + "HeroiconsOutlineClipboardDocument": [], + "HeroiconsOutlineClipboardDocumentCheck": [], + "HeroiconsOutlineClipboardDocumentList": [], + "HeroiconsOutlineClock": [], + "HeroiconsOutlineCloud": [], + "HeroiconsOutlineCloudArrowDown": [], + "HeroiconsOutlineCloudArrowUp": [], + "HeroiconsOutlineCodeBracket": [], + "HeroiconsOutlineCodeBracketSquare": [], + "HeroiconsOutlineCog": [], + "HeroiconsOutlineCog6Tooth": [], + "HeroiconsOutlineCog8Tooth": [], + "HeroiconsOutlineCommandLine": [], + "HeroiconsOutlineComputerDesktop": [], + "HeroiconsOutlineCpuChip": [], + "HeroiconsOutlineCreditCard": [], + "HeroiconsOutlineCube": [], + "HeroiconsOutlineCubeTransparent": [], + "HeroiconsOutlineCurrencyBangladeshi": [], + "HeroiconsOutlineCurrencyDollar": [], + "HeroiconsOutlineCurrencyEuro": [], + "HeroiconsOutlineCurrencyPound": [], + "HeroiconsOutlineCurrencyRupee": [], + "HeroiconsOutlineCurrencyYen": [], + "HeroiconsOutlineCursorArrowRays": [], + "HeroiconsOutlineCursorArrowRipple": [], + "HeroiconsOutlineDevicePhoneMobile": [], + "HeroiconsOutlineDeviceTablet": [], + "HeroiconsOutlineDocument": [], + "HeroiconsOutlineDocumentArrowDown": [], + "HeroiconsOutlineDocumentArrowUp": [], + "HeroiconsOutlineDocumentChartBar": [], + "HeroiconsOutlineDocumentCheck": [], + "HeroiconsOutlineDocumentDuplicate": [], + "HeroiconsOutlineDocumentMagnifyingGlass": [], + "HeroiconsOutlineDocumentMinus": [], + "HeroiconsOutlineDocumentPlus": [], + "HeroiconsOutlineDocumentText": [], + "HeroiconsOutlineEllipsisHorizontal": [], + "HeroiconsOutlineEllipsisHorizontalCircle": [], + "HeroiconsOutlineEllipsisVertical": [], + "HeroiconsOutlineEnvelope": [], + "HeroiconsOutlineEnvelopeOpen": [], + "HeroiconsOutlineExclamationCircle": [], + "HeroiconsOutlineExclamationTriangle": [], + "HeroiconsOutlineEye": [], + "HeroiconsOutlineEyeDropper": [], + "HeroiconsOutlineEyeSlash": [], + "HeroiconsOutlineFaceFrown": [], + "HeroiconsOutlineFaceSmile": [], + "HeroiconsOutlineFilm": [], + "HeroiconsOutlineFingerPrint": [], + "HeroiconsOutlineFire": [], + "HeroiconsOutlineFlag": [], + "HeroiconsOutlineFolder": [], + "HeroiconsOutlineFolderArrowDown": [], + "HeroiconsOutlineFolderMinus": [], + "HeroiconsOutlineFolderOpen": [], + "HeroiconsOutlineFolderPlus": [], + "HeroiconsOutlineForward": [], + "HeroiconsOutlineFunnel": [], + "HeroiconsOutlineGif": [], + "HeroiconsOutlineGift": [], + "HeroiconsOutlineGiftTop": [], + "HeroiconsOutlineGlobeAlt": [], + "HeroiconsOutlineGlobeAmericas": [], + "HeroiconsOutlineGlobeAsiaAustralia": [], + "HeroiconsOutlineGlobeEuropeAfrica": [], + "HeroiconsOutlineHandRaised": [], + "HeroiconsOutlineHandThumbDown": [], + "HeroiconsOutlineHandThumbUp": [], + "HeroiconsOutlineHashtag": [], + "HeroiconsOutlineHeart": [], + "HeroiconsOutlineHome": [], + "HeroiconsOutlineHomeModern": [], + "HeroiconsOutlineIdentification": [], + "HeroiconsOutlineInbox": [], + "HeroiconsOutlineInboxArrowDown": [], + "HeroiconsOutlineInboxStack": [], + "HeroiconsOutlineInformationCircle": [], + "HeroiconsOutlineKey": [], + "HeroiconsOutlineLanguage": [], + "HeroiconsOutlineLifebuoy": [], + "HeroiconsOutlineLightBulb": [], + "HeroiconsOutlineLink": [], + "HeroiconsOutlineListBullet": [], + "HeroiconsOutlineLockClosed": [], + "HeroiconsOutlineLockOpen": [], + "HeroiconsOutlineMagnifyingGlass": [], + "HeroiconsOutlineMagnifyingGlassCircle": [], + "HeroiconsOutlineMagnifyingGlassMinus": [], + "HeroiconsOutlineMagnifyingGlassPlus": [], + "HeroiconsOutlineMap": [], + "HeroiconsOutlineMapPin": [], + "HeroiconsOutlineMegaphone": [], + "HeroiconsOutlineMicrophone": [], + "HeroiconsOutlineMinus": [], + "HeroiconsOutlineMinusCircle": [], + "HeroiconsOutlineMinusSmall": [], + "HeroiconsOutlineMoon": [], + "HeroiconsOutlineMusicalNote": [], + "HeroiconsOutlineNewspaper": [], + "HeroiconsOutlineNoSymbol": [], + "HeroiconsOutlinePaintBrush": [], + "HeroiconsOutlinePaperAirplane": [], + "HeroiconsOutlinePaperClip": [], + "HeroiconsOutlinePause": [], + "HeroiconsOutlinePauseCircle": [], + "HeroiconsOutlinePencil": [], + "HeroiconsOutlinePencilSquare": [], + "HeroiconsOutlinePhone": [], + "HeroiconsOutlinePhoneArrowDownLeft": [], + "HeroiconsOutlinePhoneArrowUpRight": [], + "HeroiconsOutlinePhoneXMark": [], + "HeroiconsOutlinePhoto": [], + "HeroiconsOutlinePlay": [], + "HeroiconsOutlinePlayCircle": [], + "HeroiconsOutlinePlayPause": [], + "HeroiconsOutlinePlus": [], + "HeroiconsOutlinePlusCircle": [], + "HeroiconsOutlinePlusSmall": [], + "HeroiconsOutlinePower": [], + "HeroiconsOutlinePresentationChartBar": [], + "HeroiconsOutlinePresentationChartLine": [], + "HeroiconsOutlinePrinter": [], + "HeroiconsOutlinePuzzlePiece": [], + "HeroiconsOutlineQrCode": [], + "HeroiconsOutlineQuestionMarkCircle": [], + "HeroiconsOutlineQueueList": [], + "HeroiconsOutlineRadio": [], + "HeroiconsOutlineReceiptPercent": [], + "HeroiconsOutlineReceiptRefund": [], + "HeroiconsOutlineRectangleGroup": [], + "HeroiconsOutlineRectangleStack": [], + "HeroiconsOutlineRocketLaunch": [], + "HeroiconsOutlineRss": [], + "HeroiconsOutlineScale": [], + "HeroiconsOutlineScissors": [], + "HeroiconsOutlineServer": [], + "HeroiconsOutlineServerStack": [], + "HeroiconsOutlineShare": [], + "HeroiconsOutlineShieldCheck": [], + "HeroiconsOutlineShieldExclamation": [], + "HeroiconsOutlineShoppingBag": [], + "HeroiconsOutlineShoppingCart": [], + "HeroiconsOutlineSignal": [], + "HeroiconsOutlineSignalSlash": [], + "HeroiconsOutlineSparkles": [], + "HeroiconsOutlineSpeakerWave": [], + "HeroiconsOutlineSpeakerXMark": [], + "HeroiconsOutlineSquare2Stack": [], + "HeroiconsOutlineSquare3Stack3D": [], + "HeroiconsOutlineSquares2X2": [], + "HeroiconsOutlineSquaresPlus": [], + "HeroiconsOutlineStar": [], + "HeroiconsOutlineStop": [], + "HeroiconsOutlineStopCircle": [], + "HeroiconsOutlineSun": [], + "HeroiconsOutlineSwatch": [], + "HeroiconsOutlineTableCells": [], + "HeroiconsOutlineTag": [], + "HeroiconsOutlineTicket": [], + "HeroiconsOutlineTrash": [], + "HeroiconsOutlineTrophy": [], + "HeroiconsOutlineTruck": [], + "HeroiconsOutlineTv": [], + "HeroiconsOutlineUser": [], + "HeroiconsOutlineUserCircle": [], + "HeroiconsOutlineUserGroup": [], + "HeroiconsOutlineUserMinus": [], + "HeroiconsOutlineUserPlus": [], + "HeroiconsOutlineUsers": [], + "HeroiconsOutlineVariable": [], + "HeroiconsOutlineVideoCamera": [], + "HeroiconsOutlineVideoCameraSlash": [], + "HeroiconsOutlineViewColumns": [], + "HeroiconsOutlineViewfinderCircle": [], + "HeroiconsOutlineWallet": [], + "HeroiconsOutlineWifi": [], + "HeroiconsOutlineWindow": [], + "HeroiconsOutlineWrench": [], + "HeroiconsOutlineWrenchScrewdriver": [], + "HeroiconsOutlineXCircle": [], + "HeroiconsOutlineXMark": [], + "HeroiconsSolidAcademicCap": [], + "HeroiconsSolidAdjustmentsHorizontal": [], + "HeroiconsSolidAdjustmentsVertical": [], + "HeroiconsSolidArchiveBox": [], + "HeroiconsSolidArchiveBoxArrowDown": [], + "HeroiconsSolidArchiveBoxXMark": [], + "HeroiconsSolidArrowDown": [], + "HeroiconsSolidArrowDownCircle": [], + "HeroiconsSolidArrowDownLeft": [], + "HeroiconsSolidArrowDownOnSquare": [], + "HeroiconsSolidArrowDownOnSquareStack": [], + "HeroiconsSolidArrowDownRight": [], + "HeroiconsSolidArrowDownTray": [], + "HeroiconsSolidArrowLeft": [], + "HeroiconsSolidArrowLeftCircle": [], + "HeroiconsSolidArrowLeftOnRectangle": [], + "HeroiconsSolidArrowLongDown": [], + "HeroiconsSolidArrowLongLeft": [], + "HeroiconsSolidArrowLongRight": [], + "HeroiconsSolidArrowLongUp": [], + "HeroiconsSolidArrowPath": [], + "HeroiconsSolidArrowPathRoundedSquare": [], + "HeroiconsSolidArrowRight": [], + "HeroiconsSolidArrowRightCircle": [], + "HeroiconsSolidArrowRightOnRectangle": [], + "HeroiconsSolidArrowSmallDown": [], + "HeroiconsSolidArrowSmallLeft": [], + "HeroiconsSolidArrowSmallRight": [], + "HeroiconsSolidArrowSmallUp": [], + "HeroiconsSolidArrowTopRightOnSquare": [], + "HeroiconsSolidArrowTrendingDown": [], + "HeroiconsSolidArrowTrendingUp": [], + "HeroiconsSolidArrowUp": [], + "HeroiconsSolidArrowUpCircle": [], + "HeroiconsSolidArrowUpLeft": [], + "HeroiconsSolidArrowUpOnSquare": [], + "HeroiconsSolidArrowUpOnSquareStack": [], + "HeroiconsSolidArrowUpRight": [], + "HeroiconsSolidArrowUpTray": [], + "HeroiconsSolidArrowUturnDown": [], + "HeroiconsSolidArrowUturnLeft": [], + "HeroiconsSolidArrowUturnRight": [], + "HeroiconsSolidArrowUturnUp": [], + "HeroiconsSolidArrowsPointingIn": [], + "HeroiconsSolidArrowsPointingOut": [], + "HeroiconsSolidArrowsRightLeft": [], + "HeroiconsSolidArrowsUpDown": [], + "HeroiconsSolidAtSymbol": [], + "HeroiconsSolidBackspace": [], + "HeroiconsSolidBackward": [], + "HeroiconsSolidBanknotes": [], + "HeroiconsSolidBars2": [], + "HeroiconsSolidBars3": [], + "HeroiconsSolidBars3BottomLeft": [], + "HeroiconsSolidBars3BottomRight": [], + "HeroiconsSolidBars3CenterLeft": [], + "HeroiconsSolidBars4": [], + "HeroiconsSolidBarsArrowDown": [], + "HeroiconsSolidBarsArrowUp": [], + "HeroiconsSolidBattery0": [], + "HeroiconsSolidBattery100": [], + "HeroiconsSolidBattery50": [], + "HeroiconsSolidBeaker": [], + "HeroiconsSolidBell": [], + "HeroiconsSolidBellAlert": [], + "HeroiconsSolidBellSlash": [], + "HeroiconsSolidBellSnooze": [], + "HeroiconsSolidBolt": [], + "HeroiconsSolidBoltSlash": [], + "HeroiconsSolidBookOpen": [], + "HeroiconsSolidBookmark": [], + "HeroiconsSolidBookmarkSlash": [], + "HeroiconsSolidBookmarkSquare": [], + "HeroiconsSolidBriefcase": [], + "HeroiconsSolidBugAnt": [], + "HeroiconsSolidBuildingLibrary": [], + "HeroiconsSolidBuildingOffice": [], + "HeroiconsSolidBuildingOffice2": [], + "HeroiconsSolidBuildingStorefront": [], + "HeroiconsSolidCake": [], + "HeroiconsSolidCalculator": [], + "HeroiconsSolidCalendar": [], + "HeroiconsSolidCalendarDays": [], + "HeroiconsSolidCamera": [], + "HeroiconsSolidChartBar": [], + "HeroiconsSolidChartBarSquare": [], + "HeroiconsSolidChartPie": [], + "HeroiconsSolidChatBubbleBottomCenter": [], + "HeroiconsSolidChatBubbleBottomCenterText": [], + "HeroiconsSolidChatBubbleLeft": [], + "HeroiconsSolidChatBubbleLeftEllipsis": [], + "HeroiconsSolidChatBubbleLeftRight": [], + "HeroiconsSolidChatBubbleOvalLeft": [], + "HeroiconsSolidChatBubbleOvalLeftEllipsis": [], + "HeroiconsSolidCheck": [], + "HeroiconsSolidCheckBadge": [], + "HeroiconsSolidCheckCircle": [], + "HeroiconsSolidChevronDoubleDown": [], + "HeroiconsSolidChevronDoubleLeft": [], + "HeroiconsSolidChevronDoubleRight": [], + "HeroiconsSolidChevronDoubleUp": [], + "HeroiconsSolidChevronDown": [], + "HeroiconsSolidChevronLeft": [], + "HeroiconsSolidChevronRight": [], + "HeroiconsSolidChevronUp": [], + "HeroiconsSolidChevronUpDown": [], + "HeroiconsSolidCircleStack": [], + "HeroiconsSolidClipboard": [], + "HeroiconsSolidClipboardDocument": [], + "HeroiconsSolidClipboardDocumentCheck": [], + "HeroiconsSolidClipboardDocumentList": [], + "HeroiconsSolidClock": [], + "HeroiconsSolidCloud": [], + "HeroiconsSolidCloudArrowDown": [], + "HeroiconsSolidCloudArrowUp": [], + "HeroiconsSolidCodeBracket": [], + "HeroiconsSolidCodeBracketSquare": [], + "HeroiconsSolidCog": [], + "HeroiconsSolidCog6Tooth": [], + "HeroiconsSolidCog8Tooth": [], + "HeroiconsSolidCommandLine": [], + "HeroiconsSolidComputerDesktop": [], + "HeroiconsSolidCpuChip": [], + "HeroiconsSolidCreditCard": [], + "HeroiconsSolidCube": [], + "HeroiconsSolidCubeTransparent": [], + "HeroiconsSolidCurrencyBangladeshi": [], + "HeroiconsSolidCurrencyDollar": [], + "HeroiconsSolidCurrencyEuro": [], + "HeroiconsSolidCurrencyPound": [], + "HeroiconsSolidCurrencyRupee": [], + "HeroiconsSolidCurrencyYen": [], + "HeroiconsSolidCursorArrowRays": [], + "HeroiconsSolidCursorArrowRipple": [], + "HeroiconsSolidDevicePhoneMobile": [], + "HeroiconsSolidDeviceTablet": [], + "HeroiconsSolidDocument": [], + "HeroiconsSolidDocumentArrowDown": [], + "HeroiconsSolidDocumentArrowUp": [], + "HeroiconsSolidDocumentChartBar": [], + "HeroiconsSolidDocumentCheck": [], + "HeroiconsSolidDocumentDuplicate": [], + "HeroiconsSolidDocumentMagnifyingGlass": [], + "HeroiconsSolidDocumentMinus": [], + "HeroiconsSolidDocumentPlus": [], + "HeroiconsSolidDocumentText": [], + "HeroiconsSolidEllipsisHorizontal": [], + "HeroiconsSolidEllipsisHorizontalCircle": [], + "HeroiconsSolidEllipsisVertical": [], + "HeroiconsSolidEnvelope": [], + "HeroiconsSolidEnvelopeOpen": [], + "HeroiconsSolidExclamationCircle": [], + "HeroiconsSolidExclamationTriangle": [], + "HeroiconsSolidEye": [], + "HeroiconsSolidEyeDropper": [], + "HeroiconsSolidEyeSlash": [], + "HeroiconsSolidFaceFrown": [], + "HeroiconsSolidFaceSmile": [], + "HeroiconsSolidFilm": [], + "HeroiconsSolidFingerPrint": [], + "HeroiconsSolidFire": [], + "HeroiconsSolidFlag": [], + "HeroiconsSolidFolder": [], + "HeroiconsSolidFolderArrowDown": [], + "HeroiconsSolidFolderMinus": [], + "HeroiconsSolidFolderOpen": [], + "HeroiconsSolidFolderPlus": [], + "HeroiconsSolidForward": [], + "HeroiconsSolidFunnel": [], + "HeroiconsSolidGif": [], + "HeroiconsSolidGift": [], + "HeroiconsSolidGiftTop": [], + "HeroiconsSolidGlobeAlt": [], + "HeroiconsSolidGlobeAmericas": [], + "HeroiconsSolidGlobeAsiaAustralia": [], + "HeroiconsSolidGlobeEuropeAfrica": [], + "HeroiconsSolidHandRaised": [], + "HeroiconsSolidHandThumbDown": [], + "HeroiconsSolidHandThumbUp": [], + "HeroiconsSolidHashtag": [], + "HeroiconsSolidHeart": [], + "HeroiconsSolidHome": [], + "HeroiconsSolidHomeModern": [], + "HeroiconsSolidIdentification": [], + "HeroiconsSolidInbox": [], + "HeroiconsSolidInboxArrowDown": [], + "HeroiconsSolidInboxStack": [], + "HeroiconsSolidInformationCircle": [], + "HeroiconsSolidKey": [], + "HeroiconsSolidLanguage": [], + "HeroiconsSolidLifebuoy": [], + "HeroiconsSolidLightBulb": [], + "HeroiconsSolidLink": [], + "HeroiconsSolidListBullet": [], + "HeroiconsSolidLockClosed": [], + "HeroiconsSolidLockOpen": [], + "HeroiconsSolidMagnifyingGlass": [], + "HeroiconsSolidMagnifyingGlassCircle": [], + "HeroiconsSolidMagnifyingGlassMinus": [], + "HeroiconsSolidMagnifyingGlassPlus": [], + "HeroiconsSolidMap": [], + "HeroiconsSolidMapPin": [], + "HeroiconsSolidMegaphone": [], + "HeroiconsSolidMicrophone": [], + "HeroiconsSolidMinus": [], + "HeroiconsSolidMinusCircle": [], + "HeroiconsSolidMinusSmall": [], + "HeroiconsSolidMoon": [], + "HeroiconsSolidMusicalNote": [], + "HeroiconsSolidNewspaper": [], + "HeroiconsSolidNoSymbol": [], + "HeroiconsSolidPaintBrush": [], + "HeroiconsSolidPaperAirplane": [], + "HeroiconsSolidPaperClip": [], + "HeroiconsSolidPause": [], + "HeroiconsSolidPauseCircle": [], + "HeroiconsSolidPencil": [], + "HeroiconsSolidPencilSquare": [], + "HeroiconsSolidPhone": [], + "HeroiconsSolidPhoneArrowDownLeft": [], + "HeroiconsSolidPhoneArrowUpRight": [], + "HeroiconsSolidPhoneXMark": [], + "HeroiconsSolidPhoto": [], + "HeroiconsSolidPlay": [], + "HeroiconsSolidPlayCircle": [], + "HeroiconsSolidPlayPause": [], + "HeroiconsSolidPlus": [], + "HeroiconsSolidPlusCircle": [], + "HeroiconsSolidPlusSmall": [], + "HeroiconsSolidPower": [], + "HeroiconsSolidPresentationChartBar": [], + "HeroiconsSolidPresentationChartLine": [], + "HeroiconsSolidPrinter": [], + "HeroiconsSolidPuzzlePiece": [], + "HeroiconsSolidQrCode": [], + "HeroiconsSolidQuestionMarkCircle": [], + "HeroiconsSolidQueueList": [], + "HeroiconsSolidRadio": [], + "HeroiconsSolidReceiptPercent": [], + "HeroiconsSolidReceiptRefund": [], + "HeroiconsSolidRectangleGroup": [], + "HeroiconsSolidRectangleStack": [], + "HeroiconsSolidRocketLaunch": [], + "HeroiconsSolidRss": [], + "HeroiconsSolidScale": [], + "HeroiconsSolidScissors": [], + "HeroiconsSolidServer": [], + "HeroiconsSolidServerStack": [], + "HeroiconsSolidShare": [], + "HeroiconsSolidShieldCheck": [], + "HeroiconsSolidShieldExclamation": [], + "HeroiconsSolidShoppingBag": [], + "HeroiconsSolidShoppingCart": [], + "HeroiconsSolidSignal": [], + "HeroiconsSolidSignalSlash": [], + "HeroiconsSolidSparkles": [], + "HeroiconsSolidSpeakerWave": [], + "HeroiconsSolidSpeakerXMark": [], + "HeroiconsSolidSquare2Stack": [], + "HeroiconsSolidSquare3Stack3D": [], + "HeroiconsSolidSquares2X2": [], + "HeroiconsSolidSquaresPlus": [], + "HeroiconsSolidStar": [], + "HeroiconsSolidStop": [], + "HeroiconsSolidStopCircle": [], + "HeroiconsSolidSun": [], + "HeroiconsSolidSwatch": [], + "HeroiconsSolidTableCells": [], + "HeroiconsSolidTag": [], + "HeroiconsSolidTicket": [], + "HeroiconsSolidTrash": [], + "HeroiconsSolidTrophy": [], + "HeroiconsSolidTruck": [], + "HeroiconsSolidTv": [], + "HeroiconsSolidUser": [], + "HeroiconsSolidUserCircle": [], + "HeroiconsSolidUserGroup": [], + "HeroiconsSolidUserMinus": [], + "HeroiconsSolidUserPlus": [], + "HeroiconsSolidUsers": [], + "HeroiconsSolidVariable": [], + "HeroiconsSolidVideoCamera": [], + "HeroiconsSolidVideoCameraSlash": [], + "HeroiconsSolidViewColumns": [], + "HeroiconsSolidViewfinderCircle": [], + "HeroiconsSolidWallet": [], + "HeroiconsSolidWifi": [], + "HeroiconsSolidWindow": [], + "HeroiconsSolidWrench": [], + "HeroiconsSolidWrenchScrewdriver": [], + "HeroiconsSolidXCircle": [], + "HeroiconsSolidXMark": [], + "LipisFlagIcons1X1Ac": [], + "LipisFlagIcons1X1Ad": [], + "LipisFlagIcons1X1Ae": [], + "LipisFlagIcons1X1Af": [], + "LipisFlagIcons1X1Ag": [], + "LipisFlagIcons1X1Ai": [], + "LipisFlagIcons1X1Al": [], + "LipisFlagIcons1X1Am": [], + "LipisFlagIcons1X1Ao": [], + "LipisFlagIcons1X1Aq": [], + "LipisFlagIcons1X1Ar": [], + "LipisFlagIcons1X1As": [], + "LipisFlagIcons1X1At": [], + "LipisFlagIcons1X1Au": [], + "LipisFlagIcons1X1Aw": [], + "LipisFlagIcons1X1Ax": [], + "LipisFlagIcons1X1Az": [], + "LipisFlagIcons1X1Ba": [], + "LipisFlagIcons1X1Bb": [], + "LipisFlagIcons1X1Bd": [], + "LipisFlagIcons1X1Be": [], + "LipisFlagIcons1X1Bf": [], + "LipisFlagIcons1X1Bg": [], + "LipisFlagIcons1X1Bh": [], + "LipisFlagIcons1X1Bi": [], + "LipisFlagIcons1X1Bj": [], + "LipisFlagIcons1X1Bl": [], + "LipisFlagIcons1X1Bm": [], + "LipisFlagIcons1X1Bn": [], + "LipisFlagIcons1X1Bo": [], + "LipisFlagIcons1X1Bq": [], + "LipisFlagIcons1X1Br": [], + "LipisFlagIcons1X1Bs": [], + "LipisFlagIcons1X1Bt": [], + "LipisFlagIcons1X1Bv": [], + "LipisFlagIcons1X1Bw": [], + "LipisFlagIcons1X1By": [], + "LipisFlagIcons1X1Bz": [], + "LipisFlagIcons1X1Ca": [], + "LipisFlagIcons1X1Cc": [], + "LipisFlagIcons1X1Cd": [], + "LipisFlagIcons1X1Cefta": [], + "LipisFlagIcons1X1Cf": [], + "LipisFlagIcons1X1Cg": [], + "LipisFlagIcons1X1Ch": [], + "LipisFlagIcons1X1Ci": [], + "LipisFlagIcons1X1Ck": [], + "LipisFlagIcons1X1Cl": [], + "LipisFlagIcons1X1Cm": [], + "LipisFlagIcons1X1Cn": [], + "LipisFlagIcons1X1Co": [], + "LipisFlagIcons1X1Cp": [], + "LipisFlagIcons1X1Cr": [], + "LipisFlagIcons1X1Cu": [], + "LipisFlagIcons1X1Cv": [], + "LipisFlagIcons1X1Cw": [], + "LipisFlagIcons1X1Cx": [], + "LipisFlagIcons1X1Cy": [], + "LipisFlagIcons1X1Cz": [], + "LipisFlagIcons1X1De": [], + "LipisFlagIcons1X1Dg": [], + "LipisFlagIcons1X1Dj": [], + "LipisFlagIcons1X1Dk": [], + "LipisFlagIcons1X1Dm": [], + "LipisFlagIcons1X1Do": [], + "LipisFlagIcons1X1Dz": [], + "LipisFlagIcons1X1Ea": [], + "LipisFlagIcons1X1Ec": [], + "LipisFlagIcons1X1Ee": [], + "LipisFlagIcons1X1Eg": [], + "LipisFlagIcons1X1Eh": [], + "LipisFlagIcons1X1Er": [], + "LipisFlagIcons1X1Es": [], + "LipisFlagIcons1X1EsCt": [], + "LipisFlagIcons1X1EsGa": [], + "LipisFlagIcons1X1Et": [], + "LipisFlagIcons1X1Eu": [], + "LipisFlagIcons1X1Fi": [], + "LipisFlagIcons1X1Fj": [], + "LipisFlagIcons1X1Fk": [], + "LipisFlagIcons1X1Fm": [], + "LipisFlagIcons1X1Fo": [], + "LipisFlagIcons1X1Fr": [], + "LipisFlagIcons1X1Ga": [], + "LipisFlagIcons1X1Gb": [], + "LipisFlagIcons1X1GbEng": [], + "LipisFlagIcons1X1GbNir": [], + "LipisFlagIcons1X1GbSct": [], + "LipisFlagIcons1X1GbWls": [], + "LipisFlagIcons1X1Gd": [], + "LipisFlagIcons1X1Ge": [], + "LipisFlagIcons1X1Gf": [], + "LipisFlagIcons1X1Gg": [], + "LipisFlagIcons1X1Gh": [], + "LipisFlagIcons1X1Gi": [], + "LipisFlagIcons1X1Gl": [], + "LipisFlagIcons1X1Gm": [], + "LipisFlagIcons1X1Gn": [], + "LipisFlagIcons1X1Gp": [], + "LipisFlagIcons1X1Gq": [], + "LipisFlagIcons1X1Gr": [], + "LipisFlagIcons1X1Gs": [], + "LipisFlagIcons1X1Gt": [], + "LipisFlagIcons1X1Gu": [], + "LipisFlagIcons1X1Gw": [], + "LipisFlagIcons1X1Gy": [], + "LipisFlagIcons1X1Hk": [], + "LipisFlagIcons1X1Hm": [], + "LipisFlagIcons1X1Hn": [], + "LipisFlagIcons1X1Hr": [], + "LipisFlagIcons1X1Ht": [], + "LipisFlagIcons1X1Hu": [], + "LipisFlagIcons1X1Ic": [], + "LipisFlagIcons1X1Id": [], + "LipisFlagIcons1X1Ie": [], + "LipisFlagIcons1X1Il": [], + "LipisFlagIcons1X1Im": [], + "LipisFlagIcons1X1In": [], + "LipisFlagIcons1X1Io": [], + "LipisFlagIcons1X1Iq": [], + "LipisFlagIcons1X1Ir": [], + "LipisFlagIcons1X1Is": [], + "LipisFlagIcons1X1It": [], + "LipisFlagIcons1X1Je": [], + "LipisFlagIcons1X1Jm": [], + "LipisFlagIcons1X1Jo": [], + "LipisFlagIcons1X1Jp": [], + "LipisFlagIcons1X1Ke": [], + "LipisFlagIcons1X1Kg": [], + "LipisFlagIcons1X1Kh": [], + "LipisFlagIcons1X1Ki": [], + "LipisFlagIcons1X1Km": [], + "LipisFlagIcons1X1Kn": [], + "LipisFlagIcons1X1Kp": [], + "LipisFlagIcons1X1Kr": [], + "LipisFlagIcons1X1Kw": [], + "LipisFlagIcons1X1Ky": [], + "LipisFlagIcons1X1Kz": [], + "LipisFlagIcons1X1La": [], + "LipisFlagIcons1X1Lb": [], + "LipisFlagIcons1X1Lc": [], + "LipisFlagIcons1X1Li": [], + "LipisFlagIcons1X1Lk": [], + "LipisFlagIcons1X1Lr": [], + "LipisFlagIcons1X1Ls": [], + "LipisFlagIcons1X1Lt": [], + "LipisFlagIcons1X1Lu": [], + "LipisFlagIcons1X1Lv": [], + "LipisFlagIcons1X1Ly": [], + "LipisFlagIcons1X1Ma": [], + "LipisFlagIcons1X1Mc": [], + "LipisFlagIcons1X1Md": [], + "LipisFlagIcons1X1Me": [], + "LipisFlagIcons1X1Mf": [], + "LipisFlagIcons1X1Mg": [], + "LipisFlagIcons1X1Mh": [], + "LipisFlagIcons1X1Mk": [], + "LipisFlagIcons1X1Ml": [], + "LipisFlagIcons1X1Mm": [], + "LipisFlagIcons1X1Mn": [], + "LipisFlagIcons1X1Mo": [], + "LipisFlagIcons1X1Mp": [], + "LipisFlagIcons1X1Mq": [], + "LipisFlagIcons1X1Mr": [], + "LipisFlagIcons1X1Ms": [], + "LipisFlagIcons1X1Mt": [], + "LipisFlagIcons1X1Mu": [], + "LipisFlagIcons1X1Mv": [], + "LipisFlagIcons1X1Mw": [], + "LipisFlagIcons1X1Mx": [], + "LipisFlagIcons1X1My": [], + "LipisFlagIcons1X1Mz": [], + "LipisFlagIcons1X1Na": [], + "LipisFlagIcons1X1Nc": [], + "LipisFlagIcons1X1Ne": [], + "LipisFlagIcons1X1Nf": [], + "LipisFlagIcons1X1Ng": [], + "LipisFlagIcons1X1Ni": [], + "LipisFlagIcons1X1Nl": [], + "LipisFlagIcons1X1No": [], + "LipisFlagIcons1X1Np": [], + "LipisFlagIcons1X1Nr": [], + "LipisFlagIcons1X1Nu": [], + "LipisFlagIcons1X1Nz": [], + "LipisFlagIcons1X1Om": [], + "LipisFlagIcons1X1Pa": [], + "LipisFlagIcons1X1Pe": [], + "LipisFlagIcons1X1Pf": [], + "LipisFlagIcons1X1Pg": [], + "LipisFlagIcons1X1Ph": [], + "LipisFlagIcons1X1Pk": [], + "LipisFlagIcons1X1Pl": [], + "LipisFlagIcons1X1Pm": [], + "LipisFlagIcons1X1Pn": [], + "LipisFlagIcons1X1Pr": [], + "LipisFlagIcons1X1Ps": [], + "LipisFlagIcons1X1Pt": [], + "LipisFlagIcons1X1Pw": [], + "LipisFlagIcons1X1Py": [], + "LipisFlagIcons1X1Qa": [], + "LipisFlagIcons1X1Re": [], + "LipisFlagIcons1X1Ro": [], + "LipisFlagIcons1X1Rs": [], + "LipisFlagIcons1X1Ru": [], + "LipisFlagIcons1X1Rw": [], + "LipisFlagIcons1X1Sa": [], + "LipisFlagIcons1X1Sb": [], + "LipisFlagIcons1X1Sc": [], + "LipisFlagIcons1X1Sd": [], + "LipisFlagIcons1X1Se": [], + "LipisFlagIcons1X1Sg": [], + "LipisFlagIcons1X1Sh": [], + "LipisFlagIcons1X1Si": [], + "LipisFlagIcons1X1Sj": [], + "LipisFlagIcons1X1Sk": [], + "LipisFlagIcons1X1Sl": [], + "LipisFlagIcons1X1Sm": [], + "LipisFlagIcons1X1Sn": [], + "LipisFlagIcons1X1So": [], + "LipisFlagIcons1X1Sr": [], + "LipisFlagIcons1X1Ss": [], + "LipisFlagIcons1X1St": [], + "LipisFlagIcons1X1Sv": [], + "LipisFlagIcons1X1Sx": [], + "LipisFlagIcons1X1Sy": [], + "LipisFlagIcons1X1Sz": [], + "LipisFlagIcons1X1Ta": [], + "LipisFlagIcons1X1Tc": [], + "LipisFlagIcons1X1Td": [], + "LipisFlagIcons1X1Tf": [], + "LipisFlagIcons1X1Tg": [], + "LipisFlagIcons1X1Th": [], + "LipisFlagIcons1X1Tj": [], + "LipisFlagIcons1X1Tk": [], + "LipisFlagIcons1X1Tl": [], + "LipisFlagIcons1X1Tm": [], + "LipisFlagIcons1X1Tn": [], + "LipisFlagIcons1X1To": [], + "LipisFlagIcons1X1Tr": [], + "LipisFlagIcons1X1Tt": [], + "LipisFlagIcons1X1Tv": [], + "LipisFlagIcons1X1Tw": [], + "LipisFlagIcons1X1Tz": [], + "LipisFlagIcons1X1Ua": [], + "LipisFlagIcons1X1Ug": [], + "LipisFlagIcons1X1Um": [], + "LipisFlagIcons1X1Un": [], + "LipisFlagIcons1X1Us": [], + "LipisFlagIcons1X1Uy": [], + "LipisFlagIcons1X1Uz": [], + "LipisFlagIcons1X1Va": [], + "LipisFlagIcons1X1Vc": [], + "LipisFlagIcons1X1Ve": [], + "LipisFlagIcons1X1Vg": [], + "LipisFlagIcons1X1Vi": [], + "LipisFlagIcons1X1Vn": [], + "LipisFlagIcons1X1Vu": [], + "LipisFlagIcons1X1Wf": [], + "LipisFlagIcons1X1Ws": [], + "LipisFlagIcons1X1Xk": [], + "LipisFlagIcons1X1Xx": [], + "LipisFlagIcons1X1Ye": [], + "LipisFlagIcons1X1Yt": [], + "LipisFlagIcons1X1Za": [], + "LipisFlagIcons1X1Zm": [], + "LipisFlagIcons1X1Zw": [], + "LipisFlagIcons4X3Ac": [], + "LipisFlagIcons4X3Ad": [], + "LipisFlagIcons4X3Ae": [], + "LipisFlagIcons4X3Af": [], + "LipisFlagIcons4X3Ag": [], + "LipisFlagIcons4X3Ai": [], + "LipisFlagIcons4X3Al": [], + "LipisFlagIcons4X3Am": [], + "LipisFlagIcons4X3Ao": [], + "LipisFlagIcons4X3Aq": [], + "LipisFlagIcons4X3Ar": [], + "LipisFlagIcons4X3As": [], + "LipisFlagIcons4X3At": [], + "LipisFlagIcons4X3Au": [], + "LipisFlagIcons4X3Aw": [], + "LipisFlagIcons4X3Ax": [], + "LipisFlagIcons4X3Az": [], + "LipisFlagIcons4X3Ba": [], + "LipisFlagIcons4X3Bb": [], + "LipisFlagIcons4X3Bd": [], + "LipisFlagIcons4X3Be": [], + "LipisFlagIcons4X3Bf": [], + "LipisFlagIcons4X3Bg": [], + "LipisFlagIcons4X3Bh": [], + "LipisFlagIcons4X3Bi": [], + "LipisFlagIcons4X3Bj": [], + "LipisFlagIcons4X3Bl": [], + "LipisFlagIcons4X3Bm": [], + "LipisFlagIcons4X3Bn": [], + "LipisFlagIcons4X3Bo": [], + "LipisFlagIcons4X3Bq": [], + "LipisFlagIcons4X3Br": [], + "LipisFlagIcons4X3Bs": [], + "LipisFlagIcons4X3Bt": [], + "LipisFlagIcons4X3Bv": [], + "LipisFlagIcons4X3Bw": [], + "LipisFlagIcons4X3By": [], + "LipisFlagIcons4X3Bz": [], + "LipisFlagIcons4X3Ca": [], + "LipisFlagIcons4X3Cc": [], + "LipisFlagIcons4X3Cd": [], + "LipisFlagIcons4X3Cefta": [], + "LipisFlagIcons4X3Cf": [], + "LipisFlagIcons4X3Cg": [], + "LipisFlagIcons4X3Ch": [], + "LipisFlagIcons4X3Ci": [], + "LipisFlagIcons4X3Ck": [], + "LipisFlagIcons4X3Cl": [], + "LipisFlagIcons4X3Cm": [], + "LipisFlagIcons4X3Cn": [], + "LipisFlagIcons4X3Co": [], + "LipisFlagIcons4X3Cp": [], + "LipisFlagIcons4X3Cr": [], + "LipisFlagIcons4X3Cu": [], + "LipisFlagIcons4X3Cv": [], + "LipisFlagIcons4X3Cw": [], + "LipisFlagIcons4X3Cx": [], + "LipisFlagIcons4X3Cy": [], + "LipisFlagIcons4X3Cz": [], + "LipisFlagIcons4X3De": [], + "LipisFlagIcons4X3Dg": [], + "LipisFlagIcons4X3Dj": [], + "LipisFlagIcons4X3Dk": [], + "LipisFlagIcons4X3Dm": [], + "LipisFlagIcons4X3Do": [], + "LipisFlagIcons4X3Dz": [], + "LipisFlagIcons4X3Ea": [], + "LipisFlagIcons4X3Ec": [], + "LipisFlagIcons4X3Ee": [], + "LipisFlagIcons4X3Eg": [], + "LipisFlagIcons4X3Eh": [], + "LipisFlagIcons4X3Er": [], + "LipisFlagIcons4X3Es": [], + "LipisFlagIcons4X3EsCt": [], + "LipisFlagIcons4X3EsGa": [], + "LipisFlagIcons4X3Et": [], + "LipisFlagIcons4X3Eu": [], + "LipisFlagIcons4X3Fi": [], + "LipisFlagIcons4X3Fj": [], + "LipisFlagIcons4X3Fk": [], + "LipisFlagIcons4X3Fm": [], + "LipisFlagIcons4X3Fo": [], + "LipisFlagIcons4X3Fr": [], + "LipisFlagIcons4X3Ga": [], + "LipisFlagIcons4X3Gb": [], + "LipisFlagIcons4X3GbEng": [], + "LipisFlagIcons4X3GbNir": [], + "LipisFlagIcons4X3GbSct": [], + "LipisFlagIcons4X3GbWls": [], + "LipisFlagIcons4X3Gd": [], + "LipisFlagIcons4X3Ge": [], + "LipisFlagIcons4X3Gf": [], + "LipisFlagIcons4X3Gg": [], + "LipisFlagIcons4X3Gh": [], + "LipisFlagIcons4X3Gi": [], + "LipisFlagIcons4X3Gl": [], + "LipisFlagIcons4X3Gm": [], + "LipisFlagIcons4X3Gn": [], + "LipisFlagIcons4X3Gp": [], + "LipisFlagIcons4X3Gq": [], + "LipisFlagIcons4X3Gr": [], + "LipisFlagIcons4X3Gs": [], + "LipisFlagIcons4X3Gt": [], + "LipisFlagIcons4X3Gu": [], + "LipisFlagIcons4X3Gw": [], + "LipisFlagIcons4X3Gy": [], + "LipisFlagIcons4X3Hk": [], + "LipisFlagIcons4X3Hm": [], + "LipisFlagIcons4X3Hn": [], + "LipisFlagIcons4X3Hr": [], + "LipisFlagIcons4X3Ht": [], + "LipisFlagIcons4X3Hu": [], + "LipisFlagIcons4X3Ic": [], + "LipisFlagIcons4X3Id": [], + "LipisFlagIcons4X3Ie": [], + "LipisFlagIcons4X3Il": [], + "LipisFlagIcons4X3Im": [], + "LipisFlagIcons4X3In": [], + "LipisFlagIcons4X3Io": [], + "LipisFlagIcons4X3Iq": [], + "LipisFlagIcons4X3Ir": [], + "LipisFlagIcons4X3Is": [], + "LipisFlagIcons4X3It": [], + "LipisFlagIcons4X3Je": [], + "LipisFlagIcons4X3Jm": [], + "LipisFlagIcons4X3Jo": [], + "LipisFlagIcons4X3Jp": [], + "LipisFlagIcons4X3Ke": [], + "LipisFlagIcons4X3Kg": [], + "LipisFlagIcons4X3Kh": [], + "LipisFlagIcons4X3Ki": [], + "LipisFlagIcons4X3Km": [], + "LipisFlagIcons4X3Kn": [], + "LipisFlagIcons4X3Kp": [], + "LipisFlagIcons4X3Kr": [], + "LipisFlagIcons4X3Kw": [], + "LipisFlagIcons4X3Ky": [], + "LipisFlagIcons4X3Kz": [], + "LipisFlagIcons4X3La": [], + "LipisFlagIcons4X3Lb": [], + "LipisFlagIcons4X3Lc": [], + "LipisFlagIcons4X3Li": [], + "LipisFlagIcons4X3Lk": [], + "LipisFlagIcons4X3Lr": [], + "LipisFlagIcons4X3Ls": [], + "LipisFlagIcons4X3Lt": [], + "LipisFlagIcons4X3Lu": [], + "LipisFlagIcons4X3Lv": [], + "LipisFlagIcons4X3Ly": [], + "LipisFlagIcons4X3Ma": [], + "LipisFlagIcons4X3Mc": [], + "LipisFlagIcons4X3Md": [], + "LipisFlagIcons4X3Me": [], + "LipisFlagIcons4X3Mf": [], + "LipisFlagIcons4X3Mg": [], + "LipisFlagIcons4X3Mh": [], + "LipisFlagIcons4X3Mk": [], + "LipisFlagIcons4X3Ml": [], + "LipisFlagIcons4X3Mm": [], + "LipisFlagIcons4X3Mn": [], + "LipisFlagIcons4X3Mo": [], + "LipisFlagIcons4X3Mp": [], + "LipisFlagIcons4X3Mq": [], + "LipisFlagIcons4X3Mr": [], + "LipisFlagIcons4X3Ms": [], + "LipisFlagIcons4X3Mt": [], + "LipisFlagIcons4X3Mu": [], + "LipisFlagIcons4X3Mv": [], + "LipisFlagIcons4X3Mw": [], + "LipisFlagIcons4X3Mx": [], + "LipisFlagIcons4X3My": [], + "LipisFlagIcons4X3Mz": [], + "LipisFlagIcons4X3Na": [], + "LipisFlagIcons4X3Nc": [], + "LipisFlagIcons4X3Ne": [], + "LipisFlagIcons4X3Nf": [], + "LipisFlagIcons4X3Ng": [], + "LipisFlagIcons4X3Ni": [], + "LipisFlagIcons4X3Nl": [], + "LipisFlagIcons4X3No": [], + "LipisFlagIcons4X3Np": [], + "LipisFlagIcons4X3Nr": [], + "LipisFlagIcons4X3Nu": [], + "LipisFlagIcons4X3Nz": [], + "LipisFlagIcons4X3Om": [], + "LipisFlagIcons4X3Pa": [], + "LipisFlagIcons4X3Pe": [], + "LipisFlagIcons4X3Pf": [], + "LipisFlagIcons4X3Pg": [], + "LipisFlagIcons4X3Ph": [], + "LipisFlagIcons4X3Pk": [], + "LipisFlagIcons4X3Pl": [], + "LipisFlagIcons4X3Pm": [], + "LipisFlagIcons4X3Pn": [], + "LipisFlagIcons4X3Pr": [], + "LipisFlagIcons4X3Ps": [], + "LipisFlagIcons4X3Pt": [], + "LipisFlagIcons4X3Pw": [], + "LipisFlagIcons4X3Py": [], + "LipisFlagIcons4X3Qa": [], + "LipisFlagIcons4X3Re": [], + "LipisFlagIcons4X3Ro": [], + "LipisFlagIcons4X3Rs": [], + "LipisFlagIcons4X3Ru": [], + "LipisFlagIcons4X3Rw": [], + "LipisFlagIcons4X3Sa": [], + "LipisFlagIcons4X3Sb": [], + "LipisFlagIcons4X3Sc": [], + "LipisFlagIcons4X3Sd": [], + "LipisFlagIcons4X3Se": [], + "LipisFlagIcons4X3Sg": [], + "LipisFlagIcons4X3Sh": [], + "LipisFlagIcons4X3Si": [], + "LipisFlagIcons4X3Sj": [], + "LipisFlagIcons4X3Sk": [], + "LipisFlagIcons4X3Sl": [], + "LipisFlagIcons4X3Sm": [], + "LipisFlagIcons4X3Sn": [], + "LipisFlagIcons4X3So": [], + "LipisFlagIcons4X3Sr": [], + "LipisFlagIcons4X3Ss": [], + "LipisFlagIcons4X3St": [], + "LipisFlagIcons4X3Sv": [], + "LipisFlagIcons4X3Sx": [], + "LipisFlagIcons4X3Sy": [], + "LipisFlagIcons4X3Sz": [], + "LipisFlagIcons4X3Ta": [], + "LipisFlagIcons4X3Tc": [], + "LipisFlagIcons4X3Td": [], + "LipisFlagIcons4X3Tf": [], + "LipisFlagIcons4X3Tg": [], + "LipisFlagIcons4X3Th": [], + "LipisFlagIcons4X3Tj": [], + "LipisFlagIcons4X3Tk": [], + "LipisFlagIcons4X3Tl": [], + "LipisFlagIcons4X3Tm": [], + "LipisFlagIcons4X3Tn": [], + "LipisFlagIcons4X3To": [], + "LipisFlagIcons4X3Tr": [], + "LipisFlagIcons4X3Tt": [], + "LipisFlagIcons4X3Tv": [], + "LipisFlagIcons4X3Tw": [], + "LipisFlagIcons4X3Tz": [], + "LipisFlagIcons4X3Ua": [], + "LipisFlagIcons4X3Ug": [], + "LipisFlagIcons4X3Um": [], + "LipisFlagIcons4X3Un": [], + "LipisFlagIcons4X3Us": [], + "LipisFlagIcons4X3Uy": [], + "LipisFlagIcons4X3Uz": [], + "LipisFlagIcons4X3Va": [], + "LipisFlagIcons4X3Vc": [], + "LipisFlagIcons4X3Ve": [], + "LipisFlagIcons4X3Vg": [], + "LipisFlagIcons4X3Vi": [], + "LipisFlagIcons4X3Vn": [], + "LipisFlagIcons4X3Vu": [], + "LipisFlagIcons4X3Wf": [], + "LipisFlagIcons4X3Ws": [], + "LipisFlagIcons4X3Xk": [], + "LipisFlagIcons4X3Xx": [], + "LipisFlagIcons4X3Ye": [], + "LipisFlagIcons4X3Yt": [], + "LipisFlagIcons4X3Za": [], + "LipisFlagIcons4X3Zm": [], + "LipisFlagIcons4X3Zw": [], + "LucideAccessibility": [], + "LucideActivity": [], + "LucideAirVent": [], + "LucideAirplay": [], + "LucideAlarmCheck": [], + "LucideAlarmClock": [], + "LucideAlarmClockOff": [], + "LucideAlarmMinus": [], + "LucideAlarmPlus": [], + "LucideAlbum": [], + "LucideAlertCircle": [], + "LucideAlertOctagon": [], + "LucideAlertTriangle": [], + "LucideAlignCenter": [], + "LucideAlignCenterHorizontal": [], + "LucideAlignCenterVertical": [], + "LucideAlignEndHorizontal": [], + "LucideAlignEndVertical": [], + "LucideAlignHorizontalDistributeCenter": [], + "LucideAlignHorizontalDistributeEnd": [], + "LucideAlignHorizontalDistributeStart": [], + "LucideAlignHorizontalJustifyCenter": [], + "LucideAlignHorizontalJustifyEnd": [], + "LucideAlignHorizontalJustifyStart": [], + "LucideAlignHorizontalSpaceAround": [], + "LucideAlignHorizontalSpaceBetween": [], + "LucideAlignJustify": [], + "LucideAlignLeft": [], + "LucideAlignRight": [], + "LucideAlignStartHorizontal": [], + "LucideAlignStartVertical": [], + "LucideAlignVerticalDistributeCenter": [], + "LucideAlignVerticalDistributeEnd": [], + "LucideAlignVerticalDistributeStart": [], + "LucideAlignVerticalJustifyCenter": [], + "LucideAlignVerticalJustifyEnd": [], + "LucideAlignVerticalJustifyStart": [], + "LucideAlignVerticalSpaceAround": [], + "LucideAlignVerticalSpaceBetween": [], + "LucideAnchor": [], + "LucideAngry": [], + "LucideAnnoyed": [], + "LucideAperture": [], + "LucideApple": [], + "LucideArchive": [], + "LucideArchiveRestore": [], + "LucideArmchair": [], + "LucideArrowBigDown": [], + "LucideArrowBigLeft": [], + "LucideArrowBigRight": [], + "LucideArrowBigUp": [], + "LucideArrowDown": [], + "LucideArrowDownCircle": [], + "LucideArrowDownLeft": [], + "LucideArrowDownRight": [], + "LucideArrowLeft": [], + "LucideArrowLeftCircle": [], + "LucideArrowLeftRight": [], + "LucideArrowRight": [], + "LucideArrowRightCircle": [], + "LucideArrowUp": [], + "LucideArrowUpCircle": [], + "LucideArrowUpDown": [], + "LucideArrowUpLeft": [], + "LucideArrowUpRight": [], + "LucideAsterisk": [], + "LucideAtSign": [], + "LucideAward": [], + "LucideAxe": [], + "LucideAxis3D": [], + "LucideBaby": [], + "LucideBackpack": [], + "LucideBaggageClaim": [], + "LucideBanana": [], + "LucideBanknote": [], + "LucideBarChart": [], + "LucideBarChart2": [], + "LucideBarChart3": [], + "LucideBarChart4": [], + "LucideBarChartHorizontal": [], + "LucideBaseline": [], + "LucideBath": [], + "LucideBattery": [], + "LucideBatteryCharging": [], + "LucideBatteryFull": [], + "LucideBatteryLow": [], + "LucideBatteryMedium": [], + "LucideBeaker": [], + "LucideBed": [], + "LucideBedDouble": [], + "LucideBedSingle": [], + "LucideBeer": [], + "LucideBell": [], + "LucideBellMinus": [], + "LucideBellOff": [], + "LucideBellPlus": [], + "LucideBellRing": [], + "LucideBike": [], + "LucideBinary": [], + "LucideBitcoin": [], + "LucideBluetooth": [], + "LucideBluetoothConnected": [], + "LucideBluetoothOff": [], + "LucideBluetoothSearching": [], + "LucideBold": [], + "LucideBomb": [], + "LucideBone": [], + "LucideBook": [], + "LucideBookOpen": [], + "LucideBookOpenCheck": [], + "LucideBookmark": [], + "LucideBookmarkMinus": [], + "LucideBookmarkPlus": [], + "LucideBot": [], + "LucideBox": [], + "LucideBoxSelect": [], + "LucideBoxes": [], + "LucideBriefcase": [], + "LucideBrush": [], + "LucideBug": [], + "LucideBuilding": [], + "LucideBuilding2": [], + "LucideBus": [], + "LucideCake": [], + "LucideCalculator": [], + "LucideCalendar": [], + "LucideCalendarCheck": [], + "LucideCalendarCheck2": [], + "LucideCalendarClock": [], + "LucideCalendarDays": [], + "LucideCalendarHeart": [], + "LucideCalendarMinus": [], + "LucideCalendarOff": [], + "LucideCalendarPlus": [], + "LucideCalendarRange": [], + "LucideCalendarSearch": [], + "LucideCalendarX": [], + "LucideCalendarX2": [], + "LucideCamera": [], + "LucideCameraOff": [], + "LucideCar": [], + "LucideCarrot": [], + "LucideCast": [], + "LucideCheck": [], + "LucideCheckCircle": [], + "LucideCheckCircle2": [], + "LucideCheckSquare": [], + "LucideChefHat": [], + "LucideCherry": [], + "LucideChevronDown": [], + "LucideChevronFirst": [], + "LucideChevronLast": [], + "LucideChevronLeft": [], + "LucideChevronRight": [], + "LucideChevronUp": [], + "LucideChevronsDown": [], + "LucideChevronsDownUp": [], + "LucideChevronsLeft": [], + "LucideChevronsLeftRight": [], + "LucideChevronsRight": [], + "LucideChevronsRightLeft": [], + "LucideChevronsUp": [], + "LucideChevronsUpDown": [], + "LucideChrome": [], + "LucideCigarette": [], + "LucideCigaretteOff": [], + "LucideCircle": [], + "LucideCircleDot": [], + "LucideCircleEllipsis": [], + "LucideCircleSlashed": [], + "LucideCitrus": [], + "LucideClapperboard": [], + "LucideClipboard": [], + "LucideClipboardCheck": [], + "LucideClipboardCopy": [], + "LucideClipboardEdit": [], + "LucideClipboardList": [], + "LucideClipboardSignature": [], + "LucideClipboardType": [], + "LucideClipboardX": [], + "LucideClock": [], + "LucideClock1": [], + "LucideClock10": [], + "LucideClock11": [], + "LucideClock12": [], + "LucideClock2": [], + "LucideClock3": [], + "LucideClock4": [], + "LucideClock5": [], + "LucideClock6": [], + "LucideClock7": [], + "LucideClock8": [], + "LucideClock9": [], + "LucideCloud": [], + "LucideCloudCog": [], + "LucideCloudDrizzle": [], + "LucideCloudFog": [], + "LucideCloudHail": [], + "LucideCloudLightning": [], + "LucideCloudMoon": [], + "LucideCloudMoonRain": [], + "LucideCloudOff": [], + "LucideCloudRain": [], + "LucideCloudRainWind": [], + "LucideCloudSnow": [], + "LucideCloudSun": [], + "LucideCloudSunRain": [], + "LucideCloudy": [], + "LucideClover": [], + "LucideCode": [], + "LucideCode2": [], + "LucideCodepen": [], + "LucideCodesandbox": [], + "LucideCoffee": [], + "LucideCog": [], + "LucideCoins": [], + "LucideColumns": [], + "LucideCommand": [], + "LucideCompass": [], + "LucideComponent": [], + "LucideConciergeBell": [], + "LucideContact": [], + "LucideContrast": [], + "LucideCookie": [], + "LucideCopy": [], + "LucideCopyleft": [], + "LucideCopyright": [], + "LucideCornerDownLeft": [], + "LucideCornerDownRight": [], + "LucideCornerLeftDown": [], + "LucideCornerLeftUp": [], + "LucideCornerRightDown": [], + "LucideCornerRightUp": [], + "LucideCornerUpLeft": [], + "LucideCornerUpRight": [], + "LucideCpu": [], + "LucideCreditCard": [], + "LucideCroissant": [], + "LucideCrop": [], + "LucideCross": [], + "LucideCrosshair": [], + "LucideCrown": [], + "LucideCupSoda": [], + "LucideCurlyBraces": [], + "LucideCurrency": [], + "LucideDatabase": [], + "LucideDelete": [], + "LucideDiamond": [], + "LucideDice1": [], + "LucideDice2": [], + "LucideDice3": [], + "LucideDice4": [], + "LucideDice5": [], + "LucideDice6": [], + "LucideDices": [], + "LucideDiff": [], + "LucideDisc": [], + "LucideDivide": [], + "LucideDivideCircle": [], + "LucideDivideSquare": [], + "LucideDollarSign": [], + "LucideDownload": [], + "LucideDownloadCloud": [], + "LucideDribbble": [], + "LucideDroplet": [], + "LucideDroplets": [], + "LucideDrumstick": [], + "LucideEar": [], + "LucideEarOff": [], + "LucideEdit": [], + "LucideEdit2": [], + "LucideEdit3": [], + "LucideEgg": [], + "LucideEggFried": [], + "LucideEqual": [], + "LucideEqualNot": [], + "LucideEraser": [], + "LucideEuro": [], + "LucideExpand": [], + "LucideExternalLink": [], + "LucideEye": [], + "LucideEyeOff": [], + "LucideFacebook": [], + "LucideFactory": [], + "LucideFan": [], + "LucideFastForward": [], + "LucideFeather": [], + "LucideFigma": [], + "LucideFile": [], + "LucideFileArchive": [], + "LucideFileAudio": [], + "LucideFileAudio2": [], + "LucideFileAxis3D": [], + "LucideFileBadge": [], + "LucideFileBadge2": [], + "LucideFileBarChart": [], + "LucideFileBarChart2": [], + "LucideFileBox": [], + "LucideFileCheck": [], + "LucideFileCheck2": [], + "LucideFileClock": [], + "LucideFileCode": [], + "LucideFileCog": [], + "LucideFileCog2": [], + "LucideFileDiff": [], + "LucideFileDigit": [], + "LucideFileDown": [], + "LucideFileEdit": [], + "LucideFileHeart": [], + "LucideFileImage": [], + "LucideFileInput": [], + "LucideFileJson": [], + "LucideFileJson2": [], + "LucideFileKey": [], + "LucideFileKey2": [], + "LucideFileLineChart": [], + "LucideFileLock": [], + "LucideFileLock2": [], + "LucideFileMinus": [], + "LucideFileMinus2": [], + "LucideFileOutput": [], + "LucideFilePieChart": [], + "LucideFilePlus": [], + "LucideFilePlus2": [], + "LucideFileQuestion": [], + "LucideFileScan": [], + "LucideFileSearch": [], + "LucideFileSearch2": [], + "LucideFileSignature": [], + "LucideFileSpreadsheet": [], + "LucideFileSymlink": [], + "LucideFileTerminal": [], + "LucideFileText": [], + "LucideFileType": [], + "LucideFileType2": [], + "LucideFileUp": [], + "LucideFileVideo": [], + "LucideFileVideo2": [], + "LucideFileVolume": [], + "LucideFileVolume2": [], + "LucideFileWarning": [], + "LucideFileX": [], + "LucideFileX2": [], + "LucideFiles": [], + "LucideFilm": [], + "LucideFilter": [], + "LucideFingerprint": [], + "LucideFlag": [], + "LucideFlagOff": [], + "LucideFlagTriangleLeft": [], + "LucideFlagTriangleRight": [], + "LucideFlame": [], + "LucideFlashlight": [], + "LucideFlashlightOff": [], + "LucideFlaskConical": [], + "LucideFlaskRound": [], + "LucideFlipHorizontal": [], + "LucideFlipHorizontal2": [], + "LucideFlipVertical": [], + "LucideFlipVertical2": [], + "LucideFlower": [], + "LucideFlower2": [], + "LucideFocus": [], + "LucideFolder": [], + "LucideFolderArchive": [], + "LucideFolderCheck": [], + "LucideFolderClock": [], + "LucideFolderClosed": [], + "LucideFolderCog": [], + "LucideFolderCog2": [], + "LucideFolderDown": [], + "LucideFolderEdit": [], + "LucideFolderHeart": [], + "LucideFolderInput": [], + "LucideFolderKey": [], + "LucideFolderLock": [], + "LucideFolderMinus": [], + "LucideFolderOpen": [], + "LucideFolderOutput": [], + "LucideFolderPlus": [], + "LucideFolderSearch": [], + "LucideFolderSearch2": [], + "LucideFolderSymlink": [], + "LucideFolderTree": [], + "LucideFolderUp": [], + "LucideFolderX": [], + "LucideFolders": [], + "LucideFormInput": [], + "LucideForward": [], + "LucideFrame": [], + "LucideFramer": [], + "LucideFrown": [], + "LucideFuel": [], + "LucideFunctionSquare": [], + "LucideGamepad": [], + "LucideGamepad2": [], + "LucideGauge": [], + "LucideGavel": [], + "LucideGem": [], + "LucideGhost": [], + "LucideGift": [], + "LucideGitBranch": [], + "LucideGitBranchPlus": [], + "LucideGitCommit": [], + "LucideGitCompare": [], + "LucideGitFork": [], + "LucideGitMerge": [], + "LucideGitPullRequest": [], + "LucideGitPullRequestClosed": [], + "LucideGitPullRequestDraft": [], + "LucideGithub": [], + "LucideGitlab": [], + "LucideGlassWater": [], + "LucideGlasses": [], + "LucideGlobe": [], + "LucideGlobe2": [], + "LucideGrab": [], + "LucideGraduationCap": [], + "LucideGrape": [], + "LucideGrid": [], + "LucideGripHorizontal": [], + "LucideGripVertical": [], + "LucideHammer": [], + "LucideHand": [], + "LucideHandMetal": [], + "LucideHardDrive": [], + "LucideHardHat": [], + "LucideHash": [], + "LucideHaze": [], + "LucideHeadphones": [], + "LucideHeart": [], + "LucideHeartCrack": [], + "LucideHeartHandshake": [], + "LucideHeartOff": [], + "LucideHeartPulse": [], + "LucideHelpCircle": [], + "LucideHexagon": [], + "LucideHighlighter": [], + "LucideHistory": [], + "LucideHome": [], + "LucideHourglass": [], + "LucideIceCream": [], + "LucideImage": [], + "LucideImageMinus": [], + "LucideImageOff": [], + "LucideImagePlus": [], + "LucideImport": [], + "LucideInbox": [], + "LucideIndent": [], + "LucideIndianRupee": [], + "LucideInfinity": [], + "LucideInfo": [], + "LucideInspect": [], + "LucideInstagram": [], + "LucideItalic": [], + "LucideJapaneseYen": [], + "LucideJoystick": [], + "LucideKey": [], + "LucideKeyboard": [], + "LucideLamp": [], + "LucideLampCeiling": [], + "LucideLampDesk": [], + "LucideLampFloor": [], + "LucideLampWallDown": [], + "LucideLampWallUp": [], + "LucideLandmark": [], + "LucideLanguages": [], + "LucideLaptop": [], + "LucideLaptop2": [], + "LucideLasso": [], + "LucideLassoSelect": [], + "LucideLaugh": [], + "LucideLayers": [], + "LucideLayout": [], + "LucideLayoutDashboard": [], + "LucideLayoutGrid": [], + "LucideLayoutList": [], + "LucideLayoutTemplate": [], + "LucideLeaf": [], + "LucideLibrary": [], + "LucideLifeBuoy": [], + "LucideLightbulb": [], + "LucideLightbulbOff": [], + "LucideLineChart": [], + "LucideLink": [], + "LucideLink2": [], + "LucideLink2Off": [], + "LucideLinkedin": [], + "LucideList": [], + "LucideListChecks": [], + "LucideListEnd": [], + "LucideListMinus": [], + "LucideListMusic": [], + "LucideListOrdered": [], + "LucideListPlus": [], + "LucideListStart": [], + "LucideListVideo": [], + "LucideListX": [], + "LucideLoader": [], + "LucideLoader2": [], + "LucideLocate": [], + "LucideLocateFixed": [], + "LucideLocateOff": [], + "LucideLock": [], + "LucideLogIn": [], + "LucideLogOut": [], + "LucideLuggage": [], + "LucideMagnet": [], + "LucideMail": [], + "LucideMailCheck": [], + "LucideMailMinus": [], + "LucideMailOpen": [], + "LucideMailPlus": [], + "LucideMailQuestion": [], + "LucideMailSearch": [], + "LucideMailWarning": [], + "LucideMailX": [], + "LucideMails": [], + "LucideMap": [], + "LucideMapPin": [], + "LucideMapPinOff": [], + "LucideMartini": [], + "LucideMaximize": [], + "LucideMaximize2": [], + "LucideMedal": [], + "LucideMegaphone": [], + "LucideMegaphoneOff": [], + "LucideMeh": [], + "LucideMenu": [], + "LucideMessageCircle": [], + "LucideMessageSquare": [], + "LucideMic": [], + "LucideMic2": [], + "LucideMicOff": [], + "LucideMicroscope": [], + "LucideMicrowave": [], + "LucideMilestone": [], + "LucideMinimize": [], + "LucideMinimize2": [], + "LucideMinus": [], + "LucideMinusCircle": [], + "LucideMinusSquare": [], + "LucideMonitor": [], + "LucideMonitorOff": [], + "LucideMonitorSpeaker": [], + "LucideMoon": [], + "LucideMoreHorizontal": [], + "LucideMoreVertical": [], + "LucideMountain": [], + "LucideMountainSnow": [], + "LucideMouse": [], + "LucideMousePointer": [], + "LucideMousePointer2": [], + "LucideMousePointerClick": [], + "LucideMove": [], + "LucideMove3D": [], + "LucideMoveDiagonal": [], + "LucideMoveDiagonal2": [], + "LucideMoveHorizontal": [], + "LucideMoveVertical": [], + "LucideMusic": [], + "LucideMusic2": [], + "LucideMusic3": [], + "LucideMusic4": [], + "LucideNavigation": [], + "LucideNavigation2": [], + "LucideNavigation2Off": [], + "LucideNavigationOff": [], + "LucideNetwork": [], + "LucideNewspaper": [], + "LucideOctagon": [], + "LucideOption": [], + "LucideOutdent": [], + "LucidePackage": [], + "LucidePackage2": [], + "LucidePackageCheck": [], + "LucidePackageMinus": [], + "LucidePackageOpen": [], + "LucidePackagePlus": [], + "LucidePackageSearch": [], + "LucidePackageX": [], + "LucidePaintBucket": [], + "LucidePaintbrush": [], + "LucidePaintbrush2": [], + "LucidePalette": [], + "LucidePalmtree": [], + "LucidePaperclip": [], + "LucidePartyPopper": [], + "LucidePause": [], + "LucidePauseCircle": [], + "LucidePauseOctagon": [], + "LucidePenTool": [], + "LucidePencil": [], + "LucidePercent": [], + "LucidePersonStanding": [], + "LucidePhone": [], + "LucidePhoneCall": [], + "LucidePhoneForwarded": [], + "LucidePhoneIncoming": [], + "LucidePhoneMissed": [], + "LucidePhoneOff": [], + "LucidePhoneOutgoing": [], + "LucidePieChart": [], + "LucidePiggyBank": [], + "LucidePin": [], + "LucidePinOff": [], + "LucidePipette": [], + "LucidePizza": [], + "LucidePlane": [], + "LucidePlay": [], + "LucidePlayCircle": [], + "LucidePlug": [], + "LucidePlug2": [], + "LucidePlugZap": [], + "LucidePlus": [], + "LucidePlusCircle": [], + "LucidePlusSquare": [], + "LucidePocket": [], + "LucidePodcast": [], + "LucidePointer": [], + "LucidePoundSterling": [], + "LucidePower": [], + "LucidePowerOff": [], + "LucidePrinter": [], + "LucidePuzzle": [], + "LucideQrCode": [], + "LucideQuote": [], + "LucideRadio": [], + "LucideRadioReceiver": [], + "LucideRectangleHorizontal": [], + "LucideRectangleVertical": [], + "LucideRecycle": [], + "LucideRedo": [], + "LucideRedo2": [], + "LucideRefreshCcw": [], + "LucideRefreshCw": [], + "LucideRefrigerator": [], + "LucideRegex": [], + "LucideRepeat": [], + "LucideRepeat1": [], + "LucideReply": [], + "LucideReplyAll": [], + "LucideRewind": [], + "LucideRocket": [], + "LucideRockingChair": [], + "LucideRotate3D": [], + "LucideRotateCcw": [], + "LucideRotateCw": [], + "LucideRss": [], + "LucideRuler": [], + "LucideRussianRuble": [], + "LucideSailboat": [], + "LucideSave": [], + "LucideScale": [], + "LucideScale3D": [], + "LucideScaling": [], + "LucideScan": [], + "LucideScanFace": [], + "LucideScanLine": [], + "LucideScissors": [], + "LucideScreenShare": [], + "LucideScreenShareOff": [], + "LucideScroll": [], + "LucideSearch": [], + "LucideSend": [], + "LucideSeparatorHorizontal": [], + "LucideSeparatorVertical": [], + "LucideServer": [], + "LucideServerCog": [], + "LucideServerCrash": [], + "LucideServerOff": [], + "LucideSettings": [], + "LucideSettings2": [], + "LucideShare": [], + "LucideShare2": [], + "LucideSheet": [], + "LucideShield": [], + "LucideShieldAlert": [], + "LucideShieldCheck": [], + "LucideShieldClose": [], + "LucideShieldOff": [], + "LucideShirt": [], + "LucideShoppingBag": [], + "LucideShoppingCart": [], + "LucideShovel": [], + "LucideShowerHead": [], + "LucideShrink": [], + "LucideShrub": [], + "LucideShuffle": [], + "LucideSidebar": [], + "LucideSidebarClose": [], + "LucideSidebarOpen": [], + "LucideSigma": [], + "LucideSignal": [], + "LucideSignalHigh": [], + "LucideSignalLow": [], + "LucideSignalMedium": [], + "LucideSignalZero": [], + "LucideSiren": [], + "LucideSkipBack": [], + "LucideSkipForward": [], + "LucideSkull": [], + "LucideSlack": [], + "LucideSlash": [], + "LucideSlice": [], + "LucideSliders": [], + "LucideSlidersHorizontal": [], + "LucideSmartphone": [], + "LucideSmartphoneCharging": [], + "LucideSmile": [], + "LucideSmilePlus": [], + "LucideSnowflake": [], + "LucideSofa": [], + "LucideSortAsc": [], + "LucideSortDesc": [], + "LucideSpeaker": [], + "LucideSprout": [], + "LucideSquare": [], + "LucideStar": [], + "LucideStarHalf": [], + "LucideStarOff": [], + "LucideStethoscope": [], + "LucideSticker": [], + "LucideStickyNote": [], + "LucideStopCircle": [], + "LucideStretchHorizontal": [], + "LucideStretchVertical": [], + "LucideStrikethrough": [], + "LucideSubscript": [], + "LucideSun": [], + "LucideSunDim": [], + "LucideSunMedium": [], + "LucideSunMoon": [], + "LucideSunSnow": [], + "LucideSunrise": [], + "LucideSunset": [], + "LucideSuperscript": [], + "LucideSwissFranc": [], + "LucideSwitchCamera": [], + "LucideSword": [], + "LucideSwords": [], + "LucideSyringe": [], + "LucideTable": [], + "LucideTable2": [], + "LucideTablet": [], + "LucideTag": [], + "LucideTags": [], + "LucideTarget": [], + "LucideTent": [], + "LucideTerminal": [], + "LucideTerminalSquare": [], + "LucideTextCursor": [], + "LucideTextCursorInput": [], + "LucideThermometer": [], + "LucideThermometerSnowflake": [], + "LucideThermometerSun": [], + "LucideThumbsDown": [], + "LucideThumbsUp": [], + "LucideTicket": [], + "LucideTimer": [], + "LucideTimerOff": [], + "LucideTimerReset": [], + "LucideToggleLeft": [], + "LucideToggleRight": [], + "LucideTornado": [], + "LucideToyBrick": [], + "LucideTrain": [], + "LucideTrash": [], + "LucideTrash2": [], + "LucideTreeDeciduous": [], + "LucideTreePine": [], + "LucideTrees": [], + "LucideTrello": [], + "LucideTrendingDown": [], + "LucideTrendingUp": [], + "LucideTriangle": [], + "LucideTrophy": [], + "LucideTruck": [], + "LucideTv": [], + "LucideTv2": [], + "LucideTwitch": [], + "LucideTwitter": [], + "LucideType": [], + "LucideUmbrella": [], + "LucideUnderline": [], + "LucideUndo": [], + "LucideUndo2": [], + "LucideUnlink": [], + "LucideUnlink2": [], + "LucideUnlock": [], + "LucideUpload": [], + "LucideUploadCloud": [], + "LucideUsb": [], + "LucideUser": [], + "LucideUserCheck": [], + "LucideUserCog": [], + "LucideUserMinus": [], + "LucideUserPlus": [], + "LucideUserX": [], + "LucideUsers": [], + "LucideUtensils": [], + "LucideUtensilsCrossed": [], + "LucideVenetianMask": [], + "LucideVerified": [], + "LucideVibrate": [], + "LucideVibrateOff": [], + "LucideVideo": [], + "LucideVideoOff": [], + "LucideView": [], + "LucideVoicemail": [], + "LucideVolume": [], + "LucideVolume1": [], + "LucideVolume2": [], + "LucideVolumeX": [], + "LucideWallet": [], + "LucideWand": [], + "LucideWand2": [], + "LucideWatch": [], + "LucideWaves": [], + "LucideWebcam": [], + "LucideWebhook": [], + "LucideWifi": [], + "LucideWifiOff": [], + "LucideWind": [], + "LucideWine": [], + "LucideWrapText": [], + "LucideWrench": [], + "LucideX": [], + "LucideXCircle": [], + "LucideXOctagon": [], + "LucideXSquare": [], + "LucideYoutube": [], + "LucideZap": [], + "LucideZapOff": [], + "LucideZoomIn": [], + "LucideZoomOut": [], + "OcticonsAccessibility16": [], + "OcticonsAlert16": [], + "OcticonsAlert24": [], + "OcticonsAlertFill12": [], + "OcticonsApps16": [], + "OcticonsArchive16": [], + "OcticonsArchive24": [], + "OcticonsArrowBoth16": [], + "OcticonsArrowBoth24": [], + "OcticonsArrowDown16": [], + "OcticonsArrowDown24": [], + "OcticonsArrowDownLeft24": [], + "OcticonsArrowDownRight24": [], + "OcticonsArrowLeft16": [], + "OcticonsArrowLeft24": [], + "OcticonsArrowRight16": [], + "OcticonsArrowRight24": [], + "OcticonsArrowSwitch16": [], + "OcticonsArrowSwitch24": [], + "OcticonsArrowUp16": [], + "OcticonsArrowUp24": [], + "OcticonsArrowUpLeft24": [], + "OcticonsArrowUpRight24": [], + "OcticonsBeaker16": [], + "OcticonsBeaker24": [], + "OcticonsBell16": [], + "OcticonsBell24": [], + "OcticonsBellFill16": [], + "OcticonsBellFill24": [], + "OcticonsBellSlash16": [], + "OcticonsBellSlash24": [], + "OcticonsBlocked16": [], + "OcticonsBlocked24": [], + "OcticonsBold16": [], + "OcticonsBold24": [], + "OcticonsBook16": [], + "OcticonsBook24": [], + "OcticonsBookmark16": [], + "OcticonsBookmark24": [], + "OcticonsBookmarkFill24": [], + "OcticonsBookmarkSlash16": [], + "OcticonsBookmarkSlash24": [], + "OcticonsBookmarkSlashFill24": [], + "OcticonsBriefcase16": [], + "OcticonsBriefcase24": [], + "OcticonsBroadcast16": [], + "OcticonsBroadcast24": [], + "OcticonsBrowser16": [], + "OcticonsBrowser24": [], + "OcticonsBug16": [], + "OcticonsBug24": [], + "OcticonsCalendar16": [], + "OcticonsCalendar24": [], + "OcticonsCheck16": [], + "OcticonsCheck24": [], + "OcticonsCheckCircle16": [], + "OcticonsCheckCircle24": [], + "OcticonsCheckCircleFill12": [], + "OcticonsCheckCircleFill16": [], + "OcticonsCheckCircleFill24": [], + "OcticonsChecklist16": [], + "OcticonsChecklist24": [], + "OcticonsChevronDown16": [], + "OcticonsChevronDown24": [], + "OcticonsChevronLeft16": [], + "OcticonsChevronLeft24": [], + "OcticonsChevronRight16": [], + "OcticonsChevronRight24": [], + "OcticonsChevronUp16": [], + "OcticonsChevronUp24": [], + "OcticonsCircle16": [], + "OcticonsCircle24": [], + "OcticonsCircleSlash16": [], + "OcticonsCircleSlash24": [], + "OcticonsClock16": [], + "OcticonsClock24": [], + "OcticonsCloud16": [], + "OcticonsCloud24": [], + "OcticonsCloudOffline16": [], + "OcticonsCloudOffline24": [], + "OcticonsCode16": [], + "OcticonsCode24": [], + "OcticonsCodeOfConduct16": [], + "OcticonsCodeOfConduct24": [], + "OcticonsCodeReview16": [], + "OcticonsCodeReview24": [], + "OcticonsCodeSquare16": [], + "OcticonsCodeSquare24": [], + "OcticonsCodescan16": [], + "OcticonsCodescan24": [], + "OcticonsCodescanCheckmark16": [], + "OcticonsCodescanCheckmark24": [], + "OcticonsCodespaces16": [], + "OcticonsCodespaces24": [], + "OcticonsColumns16": [], + "OcticonsColumns24": [], + "OcticonsComment16": [], + "OcticonsComment24": [], + "OcticonsCommentDiscussion16": [], + "OcticonsCommentDiscussion24": [], + "OcticonsCommit24": [], + "OcticonsContainer16": [], + "OcticonsContainer24": [], + "OcticonsCopy16": [], + "OcticonsCopy24": [], + "OcticonsCpu16": [], + "OcticonsCpu24": [], + "OcticonsCreditCard16": [], + "OcticonsCreditCard24": [], + "OcticonsCrossReference16": [], + "OcticonsCrossReference24": [], + "OcticonsDash16": [], + "OcticonsDash24": [], + "OcticonsDatabase16": [], + "OcticonsDatabase24": [], + "OcticonsDependabot16": [], + "OcticonsDependabot24": [], + "OcticonsDesktopDownload16": [], + "OcticonsDesktopDownload24": [], + "OcticonsDeviceCamera16": [], + "OcticonsDeviceCameraVideo16": [], + "OcticonsDeviceCameraVideo24": [], + "OcticonsDeviceDesktop16": [], + "OcticonsDeviceDesktop24": [], + "OcticonsDeviceMobile16": [], + "OcticonsDeviceMobile24": [], + "OcticonsDiamond16": [], + "OcticonsDiamond24": [], + "OcticonsDiff16": [], + "OcticonsDiff24": [], + "OcticonsDiffAdded16": [], + "OcticonsDiffIgnored16": [], + "OcticonsDiffModified16": [], + "OcticonsDiffRemoved16": [], + "OcticonsDiffRenamed16": [], + "OcticonsDot16": [], + "OcticonsDot24": [], + "OcticonsDotFill16": [], + "OcticonsDotFill24": [], + "OcticonsDownload16": [], + "OcticonsDownload24": [], + "OcticonsDuplicate16": [], + "OcticonsDuplicate24": [], + "OcticonsEllipsis16": [], + "OcticonsEye16": [], + "OcticonsEye24": [], + "OcticonsEyeClosed16": [], + "OcticonsEyeClosed24": [], + "OcticonsFeedDiscussion16": [], + "OcticonsFeedForked16": [], + "OcticonsFeedHeart16": [], + "OcticonsFeedMerged16": [], + "OcticonsFeedPerson16": [], + "OcticonsFeedRepo16": [], + "OcticonsFeedRocket16": [], + "OcticonsFeedStar16": [], + "OcticonsFeedTag16": [], + "OcticonsFeedTrophy16": [], + "OcticonsFile16": [], + "OcticonsFile24": [], + "OcticonsFileBadge16": [], + "OcticonsFileBinary16": [], + "OcticonsFileBinary24": [], + "OcticonsFileCode16": [], + "OcticonsFileCode24": [], + "OcticonsFileDiff16": [], + "OcticonsFileDiff24": [], + "OcticonsFileDirectory16": [], + "OcticonsFileDirectory24": [], + "OcticonsFileDirectoryFill16": [], + "OcticonsFileDirectoryFill24": [], + "OcticonsFileDirectoryOpenFill16": [], + "OcticonsFileMedia24": [], + "OcticonsFileSubmodule16": [], + "OcticonsFileSubmodule24": [], + "OcticonsFileSymlinkFile16": [], + "OcticonsFileSymlinkFile24": [], + "OcticonsFileZip16": [], + "OcticonsFileZip24": [], + "OcticonsFilter16": [], + "OcticonsFilter24": [], + "OcticonsFlame16": [], + "OcticonsFlame24": [], + "OcticonsFold16": [], + "OcticonsFold24": [], + "OcticonsFoldDown16": [], + "OcticonsFoldDown24": [], + "OcticonsFoldUp16": [], + "OcticonsFoldUp24": [], + "OcticonsGear16": [], + "OcticonsGear24": [], + "OcticonsGift16": [], + "OcticonsGift24": [], + "OcticonsGitBranch16": [], + "OcticonsGitBranch24": [], + "OcticonsGitCommit16": [], + "OcticonsGitCommit24": [], + "OcticonsGitCompare16": [], + "OcticonsGitCompare24": [], + "OcticonsGitMerge16": [], + "OcticonsGitMerge24": [], + "OcticonsGitPullRequest16": [], + "OcticonsGitPullRequest24": [], + "OcticonsGitPullRequestClosed16": [], + "OcticonsGitPullRequestClosed24": [], + "OcticonsGitPullRequestDraft16": [], + "OcticonsGitPullRequestDraft24": [], + "OcticonsGlobe16": [], + "OcticonsGlobe24": [], + "OcticonsGrabber16": [], + "OcticonsGrabber24": [], + "OcticonsGraph16": [], + "OcticonsGraph24": [], + "OcticonsHash16": [], + "OcticonsHash24": [], + "OcticonsHeading16": [], + "OcticonsHeading24": [], + "OcticonsHeart16": [], + "OcticonsHeart24": [], + "OcticonsHeartFill16": [], + "OcticonsHeartFill24": [], + "OcticonsHistory16": [], + "OcticonsHistory24": [], + "OcticonsHome16": [], + "OcticonsHome24": [], + "OcticonsHomeFill24": [], + "OcticonsHorizontalRule16": [], + "OcticonsHorizontalRule24": [], + "OcticonsHourglass16": [], + "OcticonsHourglass24": [], + "OcticonsHubot16": [], + "OcticonsHubot24": [], + "OcticonsIdBadge16": [], + "OcticonsImage16": [], + "OcticonsImage24": [], + "OcticonsInbox16": [], + "OcticonsInbox24": [], + "OcticonsInfinity16": [], + "OcticonsInfinity24": [], + "OcticonsInfo16": [], + "OcticonsInfo24": [], + "OcticonsIssueClosed16": [], + "OcticonsIssueClosed24": [], + "OcticonsIssueDraft16": [], + "OcticonsIssueDraft24": [], + "OcticonsIssueOpened16": [], + "OcticonsIssueOpened24": [], + "OcticonsIssueReopened16": [], + "OcticonsIssueReopened24": [], + "OcticonsItalic16": [], + "OcticonsItalic24": [], + "OcticonsIterations16": [], + "OcticonsIterations24": [], + "OcticonsKebabHorizontal16": [], + "OcticonsKebabHorizontal24": [], + "OcticonsKey16": [], + "OcticonsKey24": [], + "OcticonsKeyAsterisk16": [], + "OcticonsLaw16": [], + "OcticonsLaw24": [], + "OcticonsLightBulb16": [], + "OcticonsLightBulb24": [], + "OcticonsLink16": [], + "OcticonsLink24": [], + "OcticonsLinkExternal16": [], + "OcticonsLinkExternal24": [], + "OcticonsListOrdered16": [], + "OcticonsListOrdered24": [], + "OcticonsListUnordered16": [], + "OcticonsListUnordered24": [], + "OcticonsLocation16": [], + "OcticonsLocation24": [], + "OcticonsLock16": [], + "OcticonsLock24": [], + "OcticonsLog16": [], + "OcticonsLogoGist16": [], + "OcticonsLogoGithub16": [], + "OcticonsMail16": [], + "OcticonsMail24": [], + "OcticonsMarkGithub16": [], + "OcticonsMarkdown16": [], + "OcticonsMegaphone16": [], + "OcticonsMegaphone24": [], + "OcticonsMention16": [], + "OcticonsMention24": [], + "OcticonsMeter16": [], + "OcticonsMilestone16": [], + "OcticonsMilestone24": [], + "OcticonsMirror16": [], + "OcticonsMirror24": [], + "OcticonsMoon16": [], + "OcticonsMoon24": [], + "OcticonsMortarBoard16": [], + "OcticonsMortarBoard24": [], + "OcticonsMultiSelect16": [], + "OcticonsMultiSelect24": [], + "OcticonsMute16": [], + "OcticonsMute24": [], + "OcticonsNoEntry16": [], + "OcticonsNoEntry24": [], + "OcticonsNoEntryFill12": [], + "OcticonsNorthStar16": [], + "OcticonsNorthStar24": [], + "OcticonsNote16": [], + "OcticonsNote24": [], + "OcticonsNumber16": [], + "OcticonsNumber24": [], + "OcticonsOrganization16": [], + "OcticonsOrganization24": [], + "OcticonsPackage16": [], + "OcticonsPackage24": [], + "OcticonsPackageDependencies16": [], + "OcticonsPackageDependencies24": [], + "OcticonsPackageDependents16": [], + "OcticonsPackageDependents24": [], + "OcticonsPaintbrush16": [], + "OcticonsPaperAirplane16": [], + "OcticonsPaperAirplane24": [], + "OcticonsPaste16": [], + "OcticonsPaste24": [], + "OcticonsPencil16": [], + "OcticonsPencil24": [], + "OcticonsPeople16": [], + "OcticonsPeople24": [], + "OcticonsPerson16": [], + "OcticonsPerson24": [], + "OcticonsPersonAdd16": [], + "OcticonsPersonAdd24": [], + "OcticonsPersonFill16": [], + "OcticonsPersonFill24": [], + "OcticonsPin16": [], + "OcticonsPin24": [], + "OcticonsPlay16": [], + "OcticonsPlay24": [], + "OcticonsPlug16": [], + "OcticonsPlug24": [], + "OcticonsPlus16": [], + "OcticonsPlus24": [], + "OcticonsPlusCircle16": [], + "OcticonsPlusCircle24": [], + "OcticonsProject16": [], + "OcticonsProject24": [], + "OcticonsPulse16": [], + "OcticonsPulse24": [], + "OcticonsQuestion16": [], + "OcticonsQuestion24": [], + "OcticonsQuote16": [], + "OcticonsQuote24": [], + "OcticonsReply16": [], + "OcticonsReply24": [], + "OcticonsRepo16": [], + "OcticonsRepo24": [], + "OcticonsRepoClone16": [], + "OcticonsRepoDeleted16": [], + "OcticonsRepoForked16": [], + "OcticonsRepoForked24": [], + "OcticonsRepoLocked16": [], + "OcticonsRepoPull16": [], + "OcticonsRepoPush16": [], + "OcticonsRepoPush24": [], + "OcticonsRepoTemplate16": [], + "OcticonsRepoTemplate24": [], + "OcticonsReport16": [], + "OcticonsReport24": [], + "OcticonsRocket16": [], + "OcticonsRocket24": [], + "OcticonsRows16": [], + "OcticonsRows24": [], + "OcticonsRss16": [], + "OcticonsRss24": [], + "OcticonsRuby16": [], + "OcticonsRuby24": [], + "OcticonsScreenFull16": [], + "OcticonsScreenFull24": [], + "OcticonsScreenNormal16": [], + "OcticonsScreenNormal24": [], + "OcticonsSearch16": [], + "OcticonsSearch24": [], + "OcticonsServer16": [], + "OcticonsServer24": [], + "OcticonsShare16": [], + "OcticonsShare24": [], + "OcticonsShareAndroid16": [], + "OcticonsShareAndroid24": [], + "OcticonsShield16": [], + "OcticonsShield24": [], + "OcticonsShieldCheck16": [], + "OcticonsShieldCheck24": [], + "OcticonsShieldLock16": [], + "OcticonsShieldLock24": [], + "OcticonsShieldX16": [], + "OcticonsShieldX24": [], + "OcticonsSidebarCollapse16": [], + "OcticonsSidebarCollapse24": [], + "OcticonsSidebarExpand16": [], + "OcticonsSidebarExpand24": [], + "OcticonsSignIn16": [], + "OcticonsSignIn24": [], + "OcticonsSignOut16": [], + "OcticonsSignOut24": [], + "OcticonsSingleSelect16": [], + "OcticonsSingleSelect24": [], + "OcticonsSkip16": [], + "OcticonsSkip24": [], + "OcticonsSmiley16": [], + "OcticonsSmiley24": [], + "OcticonsSortAsc16": [], + "OcticonsSortAsc24": [], + "OcticonsSortDesc16": [], + "OcticonsSortDesc24": [], + "OcticonsSquare16": [], + "OcticonsSquare24": [], + "OcticonsSquareFill16": [], + "OcticonsSquareFill24": [], + "OcticonsSquirrel16": [], + "OcticonsSquirrel24": [], + "OcticonsStack16": [], + "OcticonsStack24": [], + "OcticonsStar16": [], + "OcticonsStar24": [], + "OcticonsStarFill16": [], + "OcticonsStarFill24": [], + "OcticonsStop16": [], + "OcticonsStop24": [], + "OcticonsStopwatch16": [], + "OcticonsStopwatch24": [], + "OcticonsStrikethrough16": [], + "OcticonsStrikethrough24": [], + "OcticonsSun16": [], + "OcticonsSun24": [], + "OcticonsSync16": [], + "OcticonsSync24": [], + "OcticonsTab24": [], + "OcticonsTabExternal16": [], + "OcticonsTable16": [], + "OcticonsTable24": [], + "OcticonsTag16": [], + "OcticonsTag24": [], + "OcticonsTasklist16": [], + "OcticonsTasklist24": [], + "OcticonsTelescope16": [], + "OcticonsTelescope24": [], + "OcticonsTelescopeFill16": [], + "OcticonsTelescopeFill24": [], + "OcticonsTerminal16": [], + "OcticonsTerminal24": [], + "OcticonsThreeBars16": [], + "OcticonsThumbsdown16": [], + "OcticonsThumbsdown24": [], + "OcticonsThumbsup16": [], + "OcticonsThumbsup24": [], + "OcticonsTools16": [], + "OcticonsTools24": [], + "OcticonsTrash16": [], + "OcticonsTrash24": [], + "OcticonsTriangleDown16": [], + "OcticonsTriangleDown24": [], + "OcticonsTriangleLeft16": [], + "OcticonsTriangleLeft24": [], + "OcticonsTriangleRight16": [], + "OcticonsTriangleRight24": [], + "OcticonsTriangleUp16": [], + "OcticonsTriangleUp24": [], + "OcticonsTrophy16": [], + "OcticonsTrophy24": [], + "OcticonsTypography16": [], + "OcticonsTypography24": [], + "OcticonsUnfold16": [], + "OcticonsUnfold24": [], + "OcticonsUnlock16": [], + "OcticonsUnlock24": [], + "OcticonsUnmute16": [], + "OcticonsUnmute24": [], + "OcticonsUnverified16": [], + "OcticonsUnverified24": [], + "OcticonsUpload16": [], + "OcticonsUpload24": [], + "OcticonsVerified16": [], + "OcticonsVerified24": [], + "OcticonsVersions16": [], + "OcticonsVersions24": [], + "OcticonsVideo16": [], + "OcticonsVideo24": [], + "OcticonsWebhook16": [], + "OcticonsWorkflow16": [], + "OcticonsWorkflow24": [], + "OcticonsX16": [], + "OcticonsX24": [], + "OcticonsXCircle16": [], + "OcticonsXCircle24": [], + "OcticonsXCircleFill12": [], + "OcticonsXCircleFill16": [], + "OcticonsXCircleFill24": [], + "OcticonsZap16": [], + "OcticonsZap24": [], + "SimpleIcons1001Tracklists": [], + "SimpleIcons1Password": [], + "SimpleIcons3M": [], + "SimpleIcons42": [], + "SimpleIcons4Chan": [], + "SimpleIcons4D": [], + "SimpleIcons500Px": [], + "SimpleIconsAbbott": [], + "SimpleIconsAbbrobotstudio": [], + "SimpleIconsAbbvie": [], + "SimpleIconsAbletonlive": [], + "SimpleIconsAboutdotme": [], + "SimpleIconsAbstract": [], + "SimpleIconsAcademia": [], + "SimpleIconsAccenture": [], + "SimpleIconsAcclaim": [], + "SimpleIconsAccusoft": [], + "SimpleIconsAcer": [], + "SimpleIconsAcm": [], + "SimpleIconsActigraph": [], + "SimpleIconsActivision": [], + "SimpleIconsAdafruit": [], + "SimpleIconsAdblock": [], + "SimpleIconsAdblockplus": [], + "SimpleIconsAddthis": [], + "SimpleIconsAdguard": [], + "SimpleIconsAdidas": [], + "SimpleIconsAdminer": [], + "SimpleIconsAdobe": [], + "SimpleIconsAdobeacrobatreader": [], + "SimpleIconsAdobeaftereffects": [], + "SimpleIconsAdobeaudition": [], + "SimpleIconsAdobecreativecloud": [], + "SimpleIconsAdobedreamweaver": [], + "SimpleIconsAdobefonts": [], + "SimpleIconsAdobeillustrator": [], + "SimpleIconsAdobeindesign": [], + "SimpleIconsAdobelightroom": [], + "SimpleIconsAdobelightroomclassic": [], + "SimpleIconsAdobephotoshop": [], + "SimpleIconsAdobepremierepro": [], + "SimpleIconsAdobexd": [], + "SimpleIconsAdonisjs": [], + "SimpleIconsAdp": [], + "SimpleIconsAdyen": [], + "SimpleIconsAerlingus": [], + "SimpleIconsAeroflot": [], + "SimpleIconsAeromexico": [], + "SimpleIconsAerospike": [], + "SimpleIconsAew": [], + "SimpleIconsAffinity": [], + "SimpleIconsAffinitydesigner": [], + "SimpleIconsAffinityphoto": [], + "SimpleIconsAffinitypublisher": [], + "SimpleIconsAframe": [], + "SimpleIconsAgora": [], + "SimpleIconsAib": [], + "SimpleIconsAidungeon": [], + "SimpleIconsAiohttp": [], + "SimpleIconsAiqfome": [], + "SimpleIconsAirasia": [], + "SimpleIconsAirbnb": [], + "SimpleIconsAirbus": [], + "SimpleIconsAirbyte": [], + "SimpleIconsAircall": [], + "SimpleIconsAircanada": [], + "SimpleIconsAirchina": [], + "SimpleIconsAirfrance": [], + "SimpleIconsAirplayaudio": [], + "SimpleIconsAirplayvideo": [], + "SimpleIconsAirtable": [], + "SimpleIconsAjv": [], + "SimpleIconsAkamai": [], + "SimpleIconsAlacritty": [], + "SimpleIconsAlbertheijn": [], + "SimpleIconsAlchemy": [], + "SimpleIconsAldinord": [], + "SimpleIconsAldisud": [], + "SimpleIconsAlfaromeo": [], + "SimpleIconsAlfred": [], + "SimpleIconsAlgolia": [], + "SimpleIconsAlgorand": [], + "SimpleIconsAlibabacloud": [], + "SimpleIconsAlibabadotcom": [], + "SimpleIconsAliexpress": [], + "SimpleIconsAlipay": [], + "SimpleIconsAlitalia": [], + "SimpleIconsAllegro": [], + "SimpleIconsAlliedmodders": [], + "SimpleIconsAllocine": [], + "SimpleIconsAlltrails": [], + "SimpleIconsAlpinedotjs": [], + "SimpleIconsAlpinelinux": [], + "SimpleIconsAltiumdesigner": [], + "SimpleIconsAlwaysdata": [], + "SimpleIconsAmazon": [], + "SimpleIconsAmazonalexa": [], + "SimpleIconsAmazonapigateway": [], + "SimpleIconsAmazonaws": [], + "SimpleIconsAmazoncloudwatch": [], + "SimpleIconsAmazondynamodb": [], + "SimpleIconsAmazonec2": [], + "SimpleIconsAmazonecs": [], + "SimpleIconsAmazoneks": [], + "SimpleIconsAmazonfiretv": [], + "SimpleIconsAmazongames": [], + "SimpleIconsAmazonlumberyard": [], + "SimpleIconsAmazonpay": [], + "SimpleIconsAmazonprime": [], + "SimpleIconsAmazonrds": [], + "SimpleIconsAmazons3": [], + "SimpleIconsAmazonsqs": [], + "SimpleIconsAmd": [], + "SimpleIconsAmericanairlines": [], + "SimpleIconsAmericanexpress": [], + "SimpleIconsAmg": [], + "SimpleIconsAmp": [], + "SimpleIconsAmul": [], + "SimpleIconsAna": [], + "SimpleIconsAnaconda": [], + "SimpleIconsAnalogue": [], + "SimpleIconsAnchor": [], + "SimpleIconsAndela": [], + "SimpleIconsAndroid": [], + "SimpleIconsAndroidauto": [], + "SimpleIconsAndroidstudio": [], + "SimpleIconsAngellist": [], + "SimpleIconsAngular": [], + "SimpleIconsAngularjs": [], + "SimpleIconsAngularuniversal": [], + "SimpleIconsAnilist": [], + "SimpleIconsAnsible": [], + "SimpleIconsAnswer": [], + "SimpleIconsAnsys": [], + "SimpleIconsAnta": [], + "SimpleIconsAntdesign": [], + "SimpleIconsAntena3": [], + "SimpleIconsAnydesk": [], + "SimpleIconsAol": [], + "SimpleIconsApache": [], + "SimpleIconsApacheairflow": [], + "SimpleIconsApacheant": [], + "SimpleIconsApachecassandra": [], + "SimpleIconsApachecloudstack": [], + "SimpleIconsApachecordova": [], + "SimpleIconsApachecouchdb": [], + "SimpleIconsApachedruid": [], + "SimpleIconsApacheecharts": [], + "SimpleIconsApacheflink": [], + "SimpleIconsApachegroovy": [], + "SimpleIconsApachehadoop": [], + "SimpleIconsApachehive": [], + "SimpleIconsApachejmeter": [], + "SimpleIconsApachekafka": [], + "SimpleIconsApachekylin": [], + "SimpleIconsApachemaven": [], + "SimpleIconsApachenetbeanside": [], + "SimpleIconsApacheopenoffice": [], + "SimpleIconsApachepulsar": [], + "SimpleIconsApacherocketmq": [], + "SimpleIconsApachesolr": [], + "SimpleIconsApachespark": [], + "SimpleIconsApachetomcat": [], + "SimpleIconsAparat": [], + "SimpleIconsApollographql": [], + "SimpleIconsApostrophe": [], + "SimpleIconsAppian": [], + "SimpleIconsApple": [], + "SimpleIconsApplearcade": [], + "SimpleIconsApplemusic": [], + "SimpleIconsApplenews": [], + "SimpleIconsApplepay": [], + "SimpleIconsApplepodcasts": [], + "SimpleIconsAppletv": [], + "SimpleIconsAppsignal": [], + "SimpleIconsAppstore": [], + "SimpleIconsAppveyor": [], + "SimpleIconsAppwrite": [], + "SimpleIconsAqua": [], + "SimpleIconsAral": [], + "SimpleIconsArangodb": [], + "SimpleIconsArchicad": [], + "SimpleIconsArchiveofourown": [], + "SimpleIconsArchlinux": [], + "SimpleIconsArdour": [], + "SimpleIconsArduino": [], + "SimpleIconsArgo": [], + "SimpleIconsArgos": [], + "SimpleIconsArkecosystem": [], + "SimpleIconsArlo": [], + "SimpleIconsArm": [], + "SimpleIconsArtifacthub": [], + "SimpleIconsArtixlinux": [], + "SimpleIconsArtstation": [], + "SimpleIconsArxiv": [], + "SimpleIconsAsana": [], + "SimpleIconsAsciidoctor": [], + "SimpleIconsAsciinema": [], + "SimpleIconsAsda": [], + "SimpleIconsAseprite": [], + "SimpleIconsAskfm": [], + "SimpleIconsAskubuntu": [], + "SimpleIconsAssemblyscript": [], + "SimpleIconsAstonmartin": [], + "SimpleIconsAstro": [], + "SimpleIconsAsus": [], + "SimpleIconsAtandt": [], + "SimpleIconsAtari": [], + "SimpleIconsAtlassian": [], + "SimpleIconsAtom": [], + "SimpleIconsAuchan": [], + "SimpleIconsAudacity": [], + "SimpleIconsAudi": [], + "SimpleIconsAudible": [], + "SimpleIconsAudioboom": [], + "SimpleIconsAudiomack": [], + "SimpleIconsAudiotechnica": [], + "SimpleIconsAurelia": [], + "SimpleIconsAuth0": [], + "SimpleIconsAuthy": [], + "SimpleIconsAutodesk": [], + "SimpleIconsAutohotkey": [], + "SimpleIconsAutomattic": [], + "SimpleIconsAutoprefixer": [], + "SimpleIconsAvajs": [], + "SimpleIconsAvast": [], + "SimpleIconsAwesomelists": [], + "SimpleIconsAwesomewm": [], + "SimpleIconsAwsamplify": [], + "SimpleIconsAwsfargate": [], + "SimpleIconsAwslambda": [], + "SimpleIconsAxios": [], + "SimpleIconsAzureartifacts": [], + "SimpleIconsAzuredataexplorer": [], + "SimpleIconsAzuredevops": [], + "SimpleIconsAzurefunctions": [], + "SimpleIconsAzurepipelines": [], + "SimpleIconsBabel": [], + "SimpleIconsBackblaze": [], + "SimpleIconsBackbonedotjs": [], + "SimpleIconsBackendless": [], + "SimpleIconsBackstage": [], + "SimpleIconsBadgr": [], + "SimpleIconsBadoo": [], + "SimpleIconsBaidu": [], + "SimpleIconsBamboo": [], + "SimpleIconsBandcamp": [], + "SimpleIconsBandlab": [], + "SimpleIconsBandrautomation": [], + "SimpleIconsBandsintown": [], + "SimpleIconsBankofamerica": [], + "SimpleIconsBarclays": [], + "SimpleIconsBaremetrics": [], + "SimpleIconsBasecamp": [], + "SimpleIconsBastyon": [], + "SimpleIconsBata": [], + "SimpleIconsBathasu": [], + "SimpleIconsBattledotnet": [], + "SimpleIconsBbc": [], + "SimpleIconsBbciplayer": [], + "SimpleIconsBeatport": [], + "SimpleIconsBeats": [], + "SimpleIconsBeatsbydre": [], + "SimpleIconsBehance": [], + "SimpleIconsBeijingsubway": [], + "SimpleIconsBem": [], + "SimpleIconsBentley": [], + "SimpleIconsBetfair": [], + "SimpleIconsBigbasket": [], + "SimpleIconsBigbluebutton": [], + "SimpleIconsBigcartel": [], + "SimpleIconsBigcommerce": [], + "SimpleIconsBilibili": [], + "SimpleIconsBillboard": [], + "SimpleIconsBim": [], + "SimpleIconsBinance": [], + "SimpleIconsBiolink": [], + "SimpleIconsBit": [], + "SimpleIconsBitbucket": [], + "SimpleIconsBitcoin": [], + "SimpleIconsBitcoincash": [], + "SimpleIconsBitcoinsv": [], + "SimpleIconsBitdefender": [], + "SimpleIconsBitly": [], + "SimpleIconsBitrise": [], + "SimpleIconsBitwarden": [], + "SimpleIconsBitwig": [], + "SimpleIconsBlackberry": [], + "SimpleIconsBlazemeter": [], + "SimpleIconsBlazor": [], + "SimpleIconsBlender": [], + "SimpleIconsBlockchaindotcom": [], + "SimpleIconsBlogger": [], + "SimpleIconsBloglovin": [], + "SimpleIconsBlueprint": [], + "SimpleIconsBluetooth": [], + "SimpleIconsBmcsoftware": [], + "SimpleIconsBmw": [], + "SimpleIconsBoardgamegeek": [], + "SimpleIconsBoehringeringelheim": [], + "SimpleIconsBoeing": [], + "SimpleIconsBookalope": [], + "SimpleIconsBookbub": [], + "SimpleIconsBookmeter": [], + "SimpleIconsBookmyshow": [], + "SimpleIconsBookstack": [], + "SimpleIconsBoost": [], + "SimpleIconsBoots": [], + "SimpleIconsBootstrap": [], + "SimpleIconsBorgbackup": [], + "SimpleIconsBosch": [], + "SimpleIconsBose": [], + "SimpleIconsBoulanger": [], + "SimpleIconsBower": [], + "SimpleIconsBox": [], + "SimpleIconsBoxysvg": [], + "SimpleIconsBrandfolder": [], + "SimpleIconsBrave": [], + "SimpleIconsBreaker": [], + "SimpleIconsBritishairways": [], + "SimpleIconsBroadcom": [], + "SimpleIconsBt": [], + "SimpleIconsBuddy": [], + "SimpleIconsBudibase": [], + "SimpleIconsBuefy": [], + "SimpleIconsBuffer": [], + "SimpleIconsBugatti": [], + "SimpleIconsBugcrowd": [], + "SimpleIconsBugsnag": [], + "SimpleIconsBuildkite": [], + "SimpleIconsBukalapak": [], + "SimpleIconsBulma": [], + "SimpleIconsBun": [], + "SimpleIconsBunq": [], + "SimpleIconsBurgerking": [], + "SimpleIconsBurton": [], + "SimpleIconsBuymeacoffee": [], + "SimpleIconsBuzzfeed": [], + "SimpleIconsBvg": [], + "SimpleIconsByjus": [], + "SimpleIconsByte": [], + "SimpleIconsBytedance": [], + "SimpleIconsC": [], + "SimpleIconsCachet": [], + "SimpleIconsCafepress": [], + "SimpleIconsCaffeine": [], + "SimpleIconsCairographics": [], + "SimpleIconsCairometro": [], + "SimpleIconsCakephp": [], + "SimpleIconsCampaignmonitor": [], + "SimpleIconsCanonical": [], + "SimpleIconsCanva": [], + "SimpleIconsCapacitor": [], + "SimpleIconsCarrefour": [], + "SimpleIconsCarthrottle": [], + "SimpleIconsCarto": [], + "SimpleIconsCashapp": [], + "SimpleIconsCastbox": [], + "SimpleIconsCastorama": [], + "SimpleIconsCastro": [], + "SimpleIconsCaterpillar": [], + "SimpleIconsCbs": [], + "SimpleIconsCdprojekt": [], + "SimpleIconsCelery": [], + "SimpleIconsCentos": [], + "SimpleIconsCeph": [], + "SimpleIconsCesium": [], + "SimpleIconsChai": [], + "SimpleIconsChainguard": [], + "SimpleIconsChainlink": [], + "SimpleIconsChakraui": [], + "SimpleIconsChartdotjs": [], + "SimpleIconsChartmogul": [], + "SimpleIconsChase": [], + "SimpleIconsChatbot": [], + "SimpleIconsCheckio": [], + "SimpleIconsCheckmarx": [], + "SimpleIconsChef": [], + "SimpleIconsChemex": [], + "SimpleIconsChevrolet": [], + "SimpleIconsChinaeasternairlines": [], + "SimpleIconsChinasouthernairlines": [], + "SimpleIconsChocolatey": [], + "SimpleIconsChromecast": [], + "SimpleIconsChrysler": [], + "SimpleIconsChupachups": [], + "SimpleIconsCilium": [], + "SimpleIconsCinema4D": [], + "SimpleIconsCircle": [], + "SimpleIconsCircleci": [], + "SimpleIconsCirrusci": [], + "SimpleIconsCisco": [], + "SimpleIconsCitrix": [], + "SimpleIconsCitroen": [], + "SimpleIconsCivicrm": [], + "SimpleIconsCivo": [], + "SimpleIconsCkeditor4": [], + "SimpleIconsClaris": [], + "SimpleIconsClickhouse": [], + "SimpleIconsClickup": [], + "SimpleIconsClion": [], + "SimpleIconsCliqz": [], + "SimpleIconsClockify": [], + "SimpleIconsClojure": [], + "SimpleIconsCloud66": [], + "SimpleIconsCloudbees": [], + "SimpleIconsCloudcannon": [], + "SimpleIconsCloudera": [], + "SimpleIconsCloudflare": [], + "SimpleIconsCloudflarepages": [], + "SimpleIconsCloudfoundry": [], + "SimpleIconsCloudsmith": [], + "SimpleIconsCloudways": [], + "SimpleIconsClubhouse": [], + "SimpleIconsClyp": [], + "SimpleIconsCmake": [], + "SimpleIconsCncf": [], + "SimpleIconsCnn": [], + "SimpleIconsCockpit": [], + "SimpleIconsCockroachlabs": [], + "SimpleIconsCocoapods": [], + "SimpleIconsCocos": [], + "SimpleIconsCoda": [], + "SimpleIconsCodacy": [], + "SimpleIconsCodeberg": [], + "SimpleIconsCodecademy": [], + "SimpleIconsCodeceptjs": [], + "SimpleIconsCodechef": [], + "SimpleIconsCodeclimate": [], + "SimpleIconsCodecov": [], + "SimpleIconsCodefactor": [], + "SimpleIconsCodeforces": [], + "SimpleIconsCodeigniter": [], + "SimpleIconsCodemagic": [], + "SimpleIconsCodemirror": [], + "SimpleIconsCodenewbie": [], + "SimpleIconsCodepen": [], + "SimpleIconsCodeproject": [], + "SimpleIconsCodereview": [], + "SimpleIconsCodersrank": [], + "SimpleIconsCoderwall": [], + "SimpleIconsCodesandbox": [], + "SimpleIconsCodeship": [], + "SimpleIconsCodewars": [], + "SimpleIconsCodingame": [], + "SimpleIconsCodingninjas": [], + "SimpleIconsCodio": [], + "SimpleIconsCoffeescript": [], + "SimpleIconsCognizant": [], + "SimpleIconsCoil": [], + "SimpleIconsCoinbase": [], + "SimpleIconsCoinmarketcap": [], + "SimpleIconsCommerzbank": [], + "SimpleIconsCommitlint": [], + "SimpleIconsCommodore": [], + "SimpleIconsCommonworkflowlanguage": [], + "SimpleIconsComposer": [], + "SimpleIconsComsol": [], + "SimpleIconsConan": [], + "SimpleIconsConcourse": [], + "SimpleIconsCondaforge": [], + "SimpleIconsConekta": [], + "SimpleIconsConfluence": [], + "SimpleIconsConstruct3": [], + "SimpleIconsConsul": [], + "SimpleIconsContactlesspayment": [], + "SimpleIconsContainerd": [], + "SimpleIconsContentful": [], + "SimpleIconsConventionalcommits": [], + "SimpleIconsConvertio": [], + "SimpleIconsCookiecutter": [], + "SimpleIconsCoop": [], + "SimpleIconsCora": [], + "SimpleIconsCoronaengine": [], + "SimpleIconsCoronarenderer": [], + "SimpleIconsCorsair": [], + "SimpleIconsCouchbase": [], + "SimpleIconsCounterstrike": [], + "SimpleIconsCountingworkspro": [], + "SimpleIconsCoursera": [], + "SimpleIconsCoveralls": [], + "SimpleIconsCpanel": [], + "SimpleIconsCplusplus": [], + "SimpleIconsCraftcms": [], + "SimpleIconsCratedb": [], + "SimpleIconsCrayon": [], + "SimpleIconsCreatereactapp": [], + "SimpleIconsCreativecommons": [], + "SimpleIconsCreativetechnology": [], + "SimpleIconsCredly": [], + "SimpleIconsCrehana": [], + "SimpleIconsCriticalrole": [], + "SimpleIconsCrowdin": [], + "SimpleIconsCrowdsource": [], + "SimpleIconsCrunchbase": [], + "SimpleIconsCrunchyroll": [], + "SimpleIconsCryengine": [], + "SimpleIconsCrystal": [], + "SimpleIconsCsharp": [], + "SimpleIconsCss3": [], + "SimpleIconsCssmodules": [], + "SimpleIconsCsswizardry": [], + "SimpleIconsCts": [], + "SimpleIconsCucumber": [], + "SimpleIconsCultura": [], + "SimpleIconsCurl": [], + "SimpleIconsCurseforge": [], + "SimpleIconsCycling74": [], + "SimpleIconsCypress": [], + "SimpleIconsCytoscapedotjs": [], + "SimpleIconsD": [], + "SimpleIconsD3Dotjs": [], + "SimpleIconsDacia": [], + "SimpleIconsDaf": [], + "SimpleIconsDailymotion": [], + "SimpleIconsDaimler": [], + "SimpleIconsDaisyui": [], + "SimpleIconsDapr": [], + "SimpleIconsDarkreader": [], + "SimpleIconsDart": [], + "SimpleIconsDarty": [], + "SimpleIconsDaserste": [], + "SimpleIconsDash": [], + "SimpleIconsDashlane": [], + "SimpleIconsDask": [], + "SimpleIconsDassaultsystemes": [], + "SimpleIconsDatabricks": [], + "SimpleIconsDatacamp": [], + "SimpleIconsDatadog": [], + "SimpleIconsDatadotai": [], + "SimpleIconsDatagrip": [], + "SimpleIconsDataiku": [], + "SimpleIconsDatastax": [], + "SimpleIconsDataverse": [], + "SimpleIconsDatocms": [], + "SimpleIconsDatto": [], + "SimpleIconsDazn": [], + "SimpleIconsDblp": [], + "SimpleIconsDbt": [], + "SimpleIconsDcentertainment": [], + "SimpleIconsDebian": [], + "SimpleIconsDedge": [], + "SimpleIconsDeepin": [], + "SimpleIconsDeepnote": [], + "SimpleIconsDeezer": [], + "SimpleIconsDelicious": [], + "SimpleIconsDeliveroo": [], + "SimpleIconsDell": [], + "SimpleIconsDelonghi": [], + "SimpleIconsDelphi": [], + "SimpleIconsDelta": [], + "SimpleIconsDeno": [], + "SimpleIconsDependabot": [], + "SimpleIconsDerspiegel": [], + "SimpleIconsDesignernews": [], + "SimpleIconsDeutschebahn": [], + "SimpleIconsDeutschebank": [], + "SimpleIconsDevdotto": [], + "SimpleIconsDevexpress": [], + "SimpleIconsDeviantart": [], + "SimpleIconsDevpost": [], + "SimpleIconsDevrant": [], + "SimpleIconsDgraph": [], + "SimpleIconsDhl": [], + "SimpleIconsDiagramsdotnet": [], + "SimpleIconsDialogflow": [], + "SimpleIconsDiaspora": [], + "SimpleIconsDigg": [], + "SimpleIconsDigikeyelectronics": [], + "SimpleIconsDigitalocean": [], + "SimpleIconsDior": [], + "SimpleIconsDirectus": [], + "SimpleIconsDiscogs": [], + "SimpleIconsDiscord": [], + "SimpleIconsDiscourse": [], + "SimpleIconsDiscover": [], + "SimpleIconsDisqus": [], + "SimpleIconsDisroot": [], + "SimpleIconsDjango": [], + "SimpleIconsDlib": [], + "SimpleIconsDlna": [], + "SimpleIconsDm": [], + "SimpleIconsDocker": [], + "SimpleIconsDocsdotrs": [], + "SimpleIconsDocusign": [], + "SimpleIconsDogecoin": [], + "SimpleIconsDolby": [], + "SimpleIconsDoordash": [], + "SimpleIconsDotenv": [], + "SimpleIconsDotnet": [], + "SimpleIconsDouban": [], + "SimpleIconsDoubanread": [], + "SimpleIconsDovecot": [], + "SimpleIconsDpd": [], + "SimpleIconsDragonframe": [], + "SimpleIconsDraugiemdotlv": [], + "SimpleIconsDribbble": [], + "SimpleIconsDrone": [], + "SimpleIconsDrooble": [], + "SimpleIconsDropbox": [], + "SimpleIconsDrupal": [], + "SimpleIconsDsautomobiles": [], + "SimpleIconsDtube": [], + "SimpleIconsDucati": [], + "SimpleIconsDuckdb": [], + "SimpleIconsDuckduckgo": [], + "SimpleIconsDungeonsanddragons": [], + "SimpleIconsDunked": [], + "SimpleIconsDuolingo": [], + "SimpleIconsDvc": [], + "SimpleIconsDwavesystems": [], + "SimpleIconsDwm": [], + "SimpleIconsDynamics365": [], + "SimpleIconsDynatrace": [], + "SimpleIconsE": [], + "SimpleIconsE3": [], + "SimpleIconsEa": [], + "SimpleIconsEagle": [], + "SimpleIconsEasyjet": [], + "SimpleIconsEbay": [], + "SimpleIconsEclipseche": [], + "SimpleIconsEclipseide": [], + "SimpleIconsEclipsejetty": [], + "SimpleIconsEclipsemosquitto": [], + "SimpleIconsEclipsevertdotx": [], + "SimpleIconsEdeka": [], + "SimpleIconsEditorconfig": [], + "SimpleIconsEdotleclerc": [], + "SimpleIconsEdx": [], + "SimpleIconsEgghead": [], + "SimpleIconsEgnyte": [], + "SimpleIconsEightsleep": [], + "SimpleIconsElastic": [], + "SimpleIconsElasticcloud": [], + "SimpleIconsElasticsearch": [], + "SimpleIconsElasticstack": [], + "SimpleIconsElectron": [], + "SimpleIconsElectronbuilder": [], + "SimpleIconsElectronfiddle": [], + "SimpleIconsElement": [], + "SimpleIconsElementary": [], + "SimpleIconsElementor": [], + "SimpleIconsEleventy": [], + "SimpleIconsElgato": [], + "SimpleIconsElixir": [], + "SimpleIconsEljueves": [], + "SimpleIconsEllo": [], + "SimpleIconsElm": [], + "SimpleIconsElsevier": [], + "SimpleIconsEmbarcadero": [], + "SimpleIconsEmberdotjs": [], + "SimpleIconsEmby": [], + "SimpleIconsEmirates": [], + "SimpleIconsEmlakjet": [], + "SimpleIconsEmpirekred": [], + "SimpleIconsEngadget": [], + "SimpleIconsEnpass": [], + "SimpleIconsEnterprisedb": [], + "SimpleIconsEnvato": [], + "SimpleIconsEnvoyproxy": [], + "SimpleIconsEpel": [], + "SimpleIconsEpicgames": [], + "SimpleIconsEpson": [], + "SimpleIconsEquinixmetal": [], + "SimpleIconsErlang": [], + "SimpleIconsEsbuild": [], + "SimpleIconsEsea": [], + "SimpleIconsEslgaming": [], + "SimpleIconsEslint": [], + "SimpleIconsEsphome": [], + "SimpleIconsEspressif": [], + "SimpleIconsEtcd": [], + "SimpleIconsEthereum": [], + "SimpleIconsEthiopianairlines": [], + "SimpleIconsEtihadairways": [], + "SimpleIconsEtsy": [], + "SimpleIconsEventbrite": [], + "SimpleIconsEventstore": [], + "SimpleIconsEvernote": [], + "SimpleIconsExercism": [], + "SimpleIconsExordo": [], + "SimpleIconsExoscale": [], + "SimpleIconsExpensify": [], + "SimpleIconsExpertsexchange": [], + "SimpleIconsExpo": [], + "SimpleIconsExpress": [], + "SimpleIconsExpressvpn": [], + "SimpleIconsEyeem": [], + "SimpleIconsF1": [], + "SimpleIconsF5": [], + "SimpleIconsFacebook": [], + "SimpleIconsFacebookgaming": [], + "SimpleIconsFacebooklive": [], + "SimpleIconsFaceit": [], + "SimpleIconsFacepunch": [], + "SimpleIconsFalcon": [], + "SimpleIconsFampay": [], + "SimpleIconsFandango": [], + "SimpleIconsFandom": [], + "SimpleIconsFanfou": [], + "SimpleIconsFantom": [], + "SimpleIconsFarfetch": [], + "SimpleIconsFastapi": [], + "SimpleIconsFastify": [], + "SimpleIconsFastlane": [], + "SimpleIconsFastly": [], + "SimpleIconsFathom": [], + "SimpleIconsFauna": [], + "SimpleIconsFavro": [], + "SimpleIconsFdroid": [], + "SimpleIconsFeathub": [], + "SimpleIconsFedex": [], + "SimpleIconsFedora": [], + "SimpleIconsFeedly": [], + "SimpleIconsFerrari": [], + "SimpleIconsFerrarinv": [], + "SimpleIconsFfmpeg": [], + "SimpleIconsFiat": [], + "SimpleIconsFidoalliance": [], + "SimpleIconsFifa": [], + "SimpleIconsFig": [], + "SimpleIconsFigma": [], + "SimpleIconsFigshare": [], + "SimpleIconsFila": [], + "SimpleIconsFiles": [], + "SimpleIconsFilezilla": [], + "SimpleIconsFing": [], + "SimpleIconsFirebase": [], + "SimpleIconsFirefox": [], + "SimpleIconsFirefoxbrowser": [], + "SimpleIconsFireship": [], + "SimpleIconsFirewalla": [], + "SimpleIconsFirst": [], + "SimpleIconsFitbit": [], + "SimpleIconsFite": [], + "SimpleIconsFivem": [], + "SimpleIconsFiverr": [], + "SimpleIconsFlask": [], + "SimpleIconsFlat": [], + "SimpleIconsFlathub": [], + "SimpleIconsFlatpak": [], + "SimpleIconsFlattr": [], + "SimpleIconsFlickr": [], + "SimpleIconsFlipboard": [], + "SimpleIconsFlipkart": [], + "SimpleIconsFloatplane": [], + "SimpleIconsFlood": [], + "SimpleIconsFluentbit": [], + "SimpleIconsFluentd": [], + "SimpleIconsFlutter": [], + "SimpleIconsFluxus": [], + "SimpleIconsFlyway": [], + "SimpleIconsFmod": [], + "SimpleIconsFnac": [], + "SimpleIconsFolium": [], + "SimpleIconsFonoma": [], + "SimpleIconsFontawesome": [], + "SimpleIconsFontbase": [], + "SimpleIconsFontforge": [], + "SimpleIconsFoodpanda": [], + "SimpleIconsFord": [], + "SimpleIconsForestry": [], + "SimpleIconsFormstack": [], + "SimpleIconsFortinet": [], + "SimpleIconsFortran": [], + "SimpleIconsFossa": [], + "SimpleIconsFossilscm": [], + "SimpleIconsFoursquare": [], + "SimpleIconsFoursquarecityguide": [], + "SimpleIconsFox": [], + "SimpleIconsFoxtel": [], + "SimpleIconsFozzy": [], + "SimpleIconsFramer": [], + "SimpleIconsFramework7": [], + "SimpleIconsFranprix": [], + "SimpleIconsFraunhofergesellschaft": [], + "SimpleIconsFreebsd": [], + "SimpleIconsFreecodecamp": [], + "SimpleIconsFreedesktopdotorg": [], + "SimpleIconsFreelancer": [], + "SimpleIconsFreenas": [], + "SimpleIconsFrontendmentor": [], + "SimpleIconsFsecure": [], + "SimpleIconsFugacloud": [], + "SimpleIconsFujifilm": [], + "SimpleIconsFujitsu": [], + "SimpleIconsFunimation": [], + "SimpleIconsFuraffinity": [], + "SimpleIconsFurrynetwork": [], + "SimpleIconsFuturelearn": [], + "SimpleIconsG2": [], + "SimpleIconsG2A": [], + "SimpleIconsGameandwatch": [], + "SimpleIconsGamedeveloper": [], + "SimpleIconsGamejolt": [], + "SimpleIconsGarmin": [], + "SimpleIconsGatling": [], + "SimpleIconsGatsby": [], + "SimpleIconsGeant": [], + "SimpleIconsGeeksforgeeks": [], + "SimpleIconsGeneralelectric": [], + "SimpleIconsGeneralmotors": [], + "SimpleIconsGenius": [], + "SimpleIconsGentoo": [], + "SimpleIconsGeocaching": [], + "SimpleIconsGerrit": [], + "SimpleIconsGhost": [], + "SimpleIconsGhostery": [], + "SimpleIconsGimp": [], + "SimpleIconsGiphy": [], + "SimpleIconsGit": [], + "SimpleIconsGitbook": [], + "SimpleIconsGitea": [], + "SimpleIconsGitee": [], + "SimpleIconsGitextensions": [], + "SimpleIconsGithub": [], + "SimpleIconsGithubactions": [], + "SimpleIconsGithubpages": [], + "SimpleIconsGithubsponsors": [], + "SimpleIconsGitignoredotio": [], + "SimpleIconsGitkraken": [], + "SimpleIconsGitlab": [], + "SimpleIconsGitlfs": [], + "SimpleIconsGitpod": [], + "SimpleIconsGitter": [], + "SimpleIconsGlassdoor": [], + "SimpleIconsGlitch": [], + "SimpleIconsGlobus": [], + "SimpleIconsGmail": [], + "SimpleIconsGnome": [], + "SimpleIconsGnometerminal": [], + "SimpleIconsGnu": [], + "SimpleIconsGnubash": [], + "SimpleIconsGnuemacs": [], + "SimpleIconsGnuicecat": [], + "SimpleIconsGnuprivacyguard": [], + "SimpleIconsGnusocial": [], + "SimpleIconsGo": [], + "SimpleIconsGocd": [], + "SimpleIconsGodaddy": [], + "SimpleIconsGodotengine": [], + "SimpleIconsGofundme": [], + "SimpleIconsGogdotcom": [], + "SimpleIconsGoland": [], + "SimpleIconsGoldenline": [], + "SimpleIconsGoodreads": [], + "SimpleIconsGoogle": [], + "SimpleIconsGoogleadmob": [], + "SimpleIconsGoogleads": [], + "SimpleIconsGoogleadsense": [], + "SimpleIconsGoogleanalytics": [], + "SimpleIconsGoogleassistant": [], + "SimpleIconsGooglecalendar": [], + "SimpleIconsGooglecardboard": [], + "SimpleIconsGooglechat": [], + "SimpleIconsGooglechrome": [], + "SimpleIconsGoogleclassroom": [], + "SimpleIconsGooglecloud": [], + "SimpleIconsGooglecolab": [], + "SimpleIconsGoogledomains": [], + "SimpleIconsGoogledrive": [], + "SimpleIconsGoogleearth": [], + "SimpleIconsGooglefit": [], + "SimpleIconsGooglefonts": [], + "SimpleIconsGooglehangouts": [], + "SimpleIconsGooglehome": [], + "SimpleIconsGooglekeep": [], + "SimpleIconsGooglelens": [], + "SimpleIconsGooglemaps": [], + "SimpleIconsGooglemarketingplatform": [], + "SimpleIconsGooglemeet": [], + "SimpleIconsGooglemessages": [], + "SimpleIconsGooglemybusiness": [], + "SimpleIconsGooglenearby": [], + "SimpleIconsGooglenews": [], + "SimpleIconsGoogleoptimize": [], + "SimpleIconsGooglepay": [], + "SimpleIconsGooglephotos": [], + "SimpleIconsGoogleplay": [], + "SimpleIconsGooglepodcasts": [], + "SimpleIconsGooglescholar": [], + "SimpleIconsGooglesearchconsole": [], + "SimpleIconsGooglesheets": [], + "SimpleIconsGooglestreetview": [], + "SimpleIconsGoogletagmanager": [], + "SimpleIconsGoogletranslate": [], + "SimpleIconsGotomeeting": [], + "SimpleIconsGrab": [], + "SimpleIconsGradle": [], + "SimpleIconsGrafana": [], + "SimpleIconsGrammarly": [], + "SimpleIconsGrandfrais": [], + "SimpleIconsGraphql": [], + "SimpleIconsGrav": [], + "SimpleIconsGravatar": [], + "SimpleIconsGraylog": [], + "SimpleIconsGreenhouse": [], + "SimpleIconsGreensock": [], + "SimpleIconsGriddotai": [], + "SimpleIconsGridsome": [], + "SimpleIconsGroupme": [], + "SimpleIconsGroupon": [], + "SimpleIconsGrubhub": [], + "SimpleIconsGrunt": [], + "SimpleIconsGsk": [], + "SimpleIconsGtk": [], + "SimpleIconsGuangzhoumetro": [], + "SimpleIconsGuilded": [], + "SimpleIconsGulp": [], + "SimpleIconsGumroad": [], + "SimpleIconsGumtree": [], + "SimpleIconsGunicorn": [], + "SimpleIconsGurobi": [], + "SimpleIconsGutenberg": [], + "SimpleIconsHabr": [], + "SimpleIconsHackaday": [], + "SimpleIconsHackclub": [], + "SimpleIconsHackerearth": [], + "SimpleIconsHackernoon": [], + "SimpleIconsHackerone": [], + "SimpleIconsHackerrank": [], + "SimpleIconsHackster": [], + "SimpleIconsHackthebox": [], + "SimpleIconsHandlebarsdotjs": [], + "SimpleIconsHandshake": [], + "SimpleIconsHandshakeProtocol": [], + "SimpleIconsHappycow": [], + "SimpleIconsHarbor": [], + "SimpleIconsHarmonyos": [], + "SimpleIconsHashnode": [], + "SimpleIconsHaskell": [], + "SimpleIconsHasura": [], + "SimpleIconsHatenabookmark": [], + "SimpleIconsHaveibeenpwned": [], + "SimpleIconsHaxe": [], + "SimpleIconsHbo": [], + "SimpleIconsHcl": [], + "SimpleIconsHeadlessui": [], + "SimpleIconsHeadspace": [], + "SimpleIconsHedera": [], + "SimpleIconsHellofresh": [], + "SimpleIconsHellyhansen": [], + "SimpleIconsHelm": [], + "SimpleIconsHelpdesk": [], + "SimpleIconsHelpscout": [], + "SimpleIconsHere": [], + "SimpleIconsHeroku": [], + "SimpleIconsHetzner": [], + "SimpleIconsHexo": [], + "SimpleIconsHey": [], + "SimpleIconsHibernate": [], + "SimpleIconsHibob": [], + "SimpleIconsHilton": [], + "SimpleIconsHitachi": [], + "SimpleIconsHive": [], + "SimpleIconsHiveBlockchain": [], + "SimpleIconsHomeadvisor": [], + "SimpleIconsHomeassistant": [], + "SimpleIconsHomeassistantcommunitystore": [], + "SimpleIconsHomebrew": [], + "SimpleIconsHomebridge": [], + "SimpleIconsHomify": [], + "SimpleIconsHonda": [], + "SimpleIconsHoney": [], + "SimpleIconsHootsuite": [], + "SimpleIconsHoppscotch": [], + "SimpleIconsHotelsdotcom": [], + "SimpleIconsHotjar": [], + "SimpleIconsHoudini": [], + "SimpleIconsHouzz": [], + "SimpleIconsHp": [], + "SimpleIconsHtml5": [], + "SimpleIconsHtmlacademy": [], + "SimpleIconsHttpie": [], + "SimpleIconsHuawei": [], + "SimpleIconsHubspot": [], + "SimpleIconsHugo": [], + "SimpleIconsHulu": [], + "SimpleIconsHumblebundle": [], + "SimpleIconsHungryjacks": [], + "SimpleIconsHurriyetemlak": [], + "SimpleIconsHusqvarna": [], + "SimpleIconsHyper": [], + "SimpleIconsHyperledger": [], + "SimpleIconsHypothesis": [], + "SimpleIconsHyundai": [], + "SimpleIconsI18Next": [], + "SimpleIconsIata": [], + "SimpleIconsIbeacon": [], + "SimpleIconsIbm": [], + "SimpleIconsIbmcloud": [], + "SimpleIconsIbmwatson": [], + "SimpleIconsIced": [], + "SimpleIconsIceland": [], + "SimpleIconsIcinga": [], + "SimpleIconsIcloud": [], + "SimpleIconsIcomoon": [], + "SimpleIconsIcon": [], + "SimpleIconsIconfinder": [], + "SimpleIconsIconify": [], + "SimpleIconsIconjar": [], + "SimpleIconsIcons8": [], + "SimpleIconsIcq": [], + "SimpleIconsIeee": [], + "SimpleIconsIfixit": [], + "SimpleIconsIfood": [], + "SimpleIconsIfttt": [], + "SimpleIconsIheartradio": [], + "SimpleIconsIkea": [], + "SimpleIconsIledefrancemobilites": [], + "SimpleIconsImagej": [], + "SimpleIconsImdb": [], + "SimpleIconsImgur": [], + "SimpleIconsImmer": [], + "SimpleIconsImou": [], + "SimpleIconsIndeed": [], + "SimpleIconsInfiniti": [], + "SimpleIconsInfluxdb": [], + "SimpleIconsInformatica": [], + "SimpleIconsInfosys": [], + "SimpleIconsInfracost": [], + "SimpleIconsIngress": [], + "SimpleIconsInkdrop": [], + "SimpleIconsInkscape": [], + "SimpleIconsInsomnia": [], + "SimpleIconsInstacart": [], + "SimpleIconsInstagram": [], + "SimpleIconsInstapaper": [], + "SimpleIconsInstatus": [], + "SimpleIconsInstructables": [], + "SimpleIconsInstructure": [], + "SimpleIconsIntegromat": [], + "SimpleIconsIntel": [], + "SimpleIconsIntellijidea": [], + "SimpleIconsInteractiondesignfoundation": [], + "SimpleIconsInteractjs": [], + "SimpleIconsIntercom": [], + "SimpleIconsIntermarche": [], + "SimpleIconsInternetarchive": [], + "SimpleIconsInternetexplorer": [], + "SimpleIconsIntigriti": [], + "SimpleIconsInvision": [], + "SimpleIconsInvoiceninja": [], + "SimpleIconsIobroker": [], + "SimpleIconsIonic": [], + "SimpleIconsIonos": [], + "SimpleIconsIos": [], + "SimpleIconsIota": [], + "SimpleIconsIpfs": [], + "SimpleIconsIssuu": [], + "SimpleIconsIstio": [], + "SimpleIconsItchdotio": [], + "SimpleIconsIterm2": [], + "SimpleIconsItunes": [], + "SimpleIconsItvx": [], + "SimpleIconsIveco": [], + "SimpleIconsJabber": [], + "SimpleIconsJaguar": [], + "SimpleIconsJamboard": [], + "SimpleIconsJameson": [], + "SimpleIconsJamstack": [], + "SimpleIconsJasmine": [], + "SimpleIconsJavascript": [], + "SimpleIconsJbl": [], + "SimpleIconsJcb": [], + "SimpleIconsJeep": [], + "SimpleIconsJekyll": [], + "SimpleIconsJellyfin": [], + "SimpleIconsJenkins": [], + "SimpleIconsJenkinsx": [], + "SimpleIconsJest": [], + "SimpleIconsJet": [], + "SimpleIconsJetbrains": [], + "SimpleIconsJetpackcompose": [], + "SimpleIconsJfrog": [], + "SimpleIconsJfrogbintray": [], + "SimpleIconsJinja": [], + "SimpleIconsJira": [], + "SimpleIconsJirasoftware": [], + "SimpleIconsJitsi": [], + "SimpleIconsJohndeere": [], + "SimpleIconsJoomla": [], + "SimpleIconsJoplin": [], + "SimpleIconsJordan": [], + "SimpleIconsJpeg": [], + "SimpleIconsJquery": [], + "SimpleIconsJrgroup": [], + "SimpleIconsJsdelivr": [], + "SimpleIconsJsfiddle": [], + "SimpleIconsJson": [], + "SimpleIconsJsonwebtokens": [], + "SimpleIconsJss": [], + "SimpleIconsJuke": [], + "SimpleIconsJulia": [], + "SimpleIconsJunipernetworks": [], + "SimpleIconsJunit5": [], + "SimpleIconsJupyter": [], + "SimpleIconsJusteat": [], + "SimpleIconsJustgiving": [], + "SimpleIconsK3S": [], + "SimpleIconsK6": [], + "SimpleIconsKaggle": [], + "SimpleIconsKahoot": [], + "SimpleIconsKaios": [], + "SimpleIconsKakao": [], + "SimpleIconsKakaotalk": [], + "SimpleIconsKalilinux": [], + "SimpleIconsKaniko": [], + "SimpleIconsKarlsruherverkehrsverbund": [], + "SimpleIconsKasasmart": [], + "SimpleIconsKashflow": [], + "SimpleIconsKaspersky": [], + "SimpleIconsKatacoda": [], + "SimpleIconsKatana": [], + "SimpleIconsKaufland": [], + "SimpleIconsKde": [], + "SimpleIconsKdenlive": [], + "SimpleIconsKeepachangelog": [], + "SimpleIconsKeepassxc": [], + "SimpleIconsKentico": [], + "SimpleIconsKeras": [], + "SimpleIconsKeybase": [], + "SimpleIconsKeycdn": [], + "SimpleIconsKeystone": [], + "SimpleIconsKfc": [], + "SimpleIconsKhanacademy": [], + "SimpleIconsKhronosgroup": [], + "SimpleIconsKia": [], + "SimpleIconsKibana": [], + "SimpleIconsKicad": [], + "SimpleIconsKickstarter": [], + "SimpleIconsKik": [], + "SimpleIconsKingstontechnology": [], + "SimpleIconsKinopoisk": [], + "SimpleIconsKirby": [], + "SimpleIconsKitsu": [], + "SimpleIconsKlarna": [], + "SimpleIconsKlm": [], + "SimpleIconsKlook": [], + "SimpleIconsKnative": [], + "SimpleIconsKnowledgebase": [], + "SimpleIconsKnown": [], + "SimpleIconsKoa": [], + "SimpleIconsKoc": [], + "SimpleIconsKodi": [], + "SimpleIconsKofax": [], + "SimpleIconsKofi": [], + "SimpleIconsKomoot": [], + "SimpleIconsKonami": [], + "SimpleIconsKong": [], + "SimpleIconsKongregate": [], + "SimpleIconsKonva": [], + "SimpleIconsKotlin": [], + "SimpleIconsKoyeb": [], + "SimpleIconsKrita": [], + "SimpleIconsKtm": [], + "SimpleIconsKuaishou": [], + "SimpleIconsKubernetes": [], + "SimpleIconsKubuntu": [], + "SimpleIconsKuma": [], + "SimpleIconsKuula": [], + "SimpleIconsKyocera": [], + "SimpleIconsLabview": [], + "SimpleIconsLada": [], + "SimpleIconsLamborghini": [], + "SimpleIconsLandrover": [], + "SimpleIconsLapce": [], + "SimpleIconsLaragon": [], + "SimpleIconsLaravel": [], + "SimpleIconsLaravelhorizon": [], + "SimpleIconsLaravelnova": [], + "SimpleIconsLastdotfm": [], + "SimpleIconsLastpass": [], + "SimpleIconsLatex": [], + "SimpleIconsLaunchpad": [], + "SimpleIconsLazarus": [], + "SimpleIconsLbry": [], + "SimpleIconsLeaderprice": [], + "SimpleIconsLeaflet": [], + "SimpleIconsLeanpub": [], + "SimpleIconsLeetcode": [], + "SimpleIconsLegacygames": [], + "SimpleIconsLemmy": [], + "SimpleIconsLenovo": [], + "SimpleIconsLens": [], + "SimpleIconsLerna": [], + "SimpleIconsLeroymerlin": [], + "SimpleIconsLess": [], + "SimpleIconsLetsencrypt": [], + "SimpleIconsLetterboxd": [], + "SimpleIconsLevelsdotfyi": [], + "SimpleIconsLg": [], + "SimpleIconsLgtm": [], + "SimpleIconsLiberapay": [], + "SimpleIconsLibrariesdotio": [], + "SimpleIconsLibrarything": [], + "SimpleIconsLibreoffice": [], + "SimpleIconsLibuv": [], + "SimpleIconsLichess": [], + "SimpleIconsLidl": [], + "SimpleIconsLifx": [], + "SimpleIconsLighthouse": [], + "SimpleIconsLine": [], + "SimpleIconsLineageos": [], + "SimpleIconsLinear": [], + "SimpleIconsLinkedin": [], + "SimpleIconsLinkerd": [], + "SimpleIconsLinkfire": [], + "SimpleIconsLinktree": [], + "SimpleIconsLinode": [], + "SimpleIconsLinux": [], + "SimpleIconsLinuxcontainers": [], + "SimpleIconsLinuxfoundation": [], + "SimpleIconsLinuxmint": [], + "SimpleIconsLionair": [], + "SimpleIconsLiquibase": [], + "SimpleIconsLit": [], + "SimpleIconsLitecoin": [], + "SimpleIconsLitiengine": [], + "SimpleIconsLivechat": [], + "SimpleIconsLivejournal": [], + "SimpleIconsLivewire": [], + "SimpleIconsLlvm": [], + "SimpleIconsLmms": [], + "SimpleIconsLodash": [], + "SimpleIconsLogitech": [], + "SimpleIconsLogmein": [], + "SimpleIconsLogstash": [], + "SimpleIconsLooker": [], + "SimpleIconsLoom": [], + "SimpleIconsLoop": [], + "SimpleIconsLoopback": [], + "SimpleIconsLospec": [], + "SimpleIconsLotpolishairlines": [], + "SimpleIconsLua": [], + "SimpleIconsLubuntu": [], + "SimpleIconsLudwig": [], + "SimpleIconsLufthansa": [], + "SimpleIconsLumen": [], + "SimpleIconsLunacy": [], + "SimpleIconsLydia": [], + "SimpleIconsLyft": [], + "SimpleIconsMaas": [], + "SimpleIconsMacos": [], + "SimpleIconsMacpaw": [], + "SimpleIconsMacys": [], + "SimpleIconsMagasinsu": [], + "SimpleIconsMagento": [], + "SimpleIconsMagisk": [], + "SimpleIconsMailchimp": [], + "SimpleIconsMaildotru": [], + "SimpleIconsMailgun": [], + "SimpleIconsMajorleaguehacking": [], + "SimpleIconsMakerbot": [], + "SimpleIconsMamp": [], + "SimpleIconsMan": [], + "SimpleIconsManageiq": [], + "SimpleIconsManjaro": [], + "SimpleIconsMapbox": [], + "SimpleIconsMariadb": [], + "SimpleIconsMariadbfoundation": [], + "SimpleIconsMarkdown": [], + "SimpleIconsMarketo": [], + "SimpleIconsMarko": [], + "SimpleIconsMarriott": [], + "SimpleIconsMaserati": [], + "SimpleIconsMastercard": [], + "SimpleIconsMastercomfig": [], + "SimpleIconsMastodon": [], + "SimpleIconsMaterialdesign": [], + "SimpleIconsMaterialdesignicons": [], + "SimpleIconsMatomo": [], + "SimpleIconsMatrix": [], + "SimpleIconsMatterdotjs": [], + "SimpleIconsMattermost": [], + "SimpleIconsMatternet": [], + "SimpleIconsMax": [], + "SimpleIconsMaxplanckgesellschaft": [], + "SimpleIconsMaytag": [], + "SimpleIconsMazda": [], + "SimpleIconsMcafee": [], + "SimpleIconsMcdonalds": [], + "SimpleIconsMclaren": [], + "SimpleIconsMdbook": [], + "SimpleIconsMdnwebdocs": [], + "SimpleIconsMdx": [], + "SimpleIconsMediafire": [], + "SimpleIconsMediamarkt": [], + "SimpleIconsMediatek": [], + "SimpleIconsMediatemple": [], + "SimpleIconsMedium": [], + "SimpleIconsMeetup": [], + "SimpleIconsMega": [], + "SimpleIconsMendeley": [], + "SimpleIconsMercadopago": [], + "SimpleIconsMercedes": [], + "SimpleIconsMerck": [], + "SimpleIconsMercurial": [], + "SimpleIconsMessenger": [], + "SimpleIconsMeta": [], + "SimpleIconsMetabase": [], + "SimpleIconsMetafilter": [], + "SimpleIconsMeteor": [], + "SimpleIconsMetro": [], + "SimpleIconsMetrodelaciudaddemexico": [], + "SimpleIconsMetrodemadrid": [], + "SimpleIconsMetrodeparis": [], + "SimpleIconsMewe": [], + "SimpleIconsMicrobit": [], + "SimpleIconsMicrodotblog": [], + "SimpleIconsMicrogenetics": [], + "SimpleIconsMicropython": [], + "SimpleIconsMicrosoft": [], + "SimpleIconsMicrosoftacademic": [], + "SimpleIconsMicrosoftaccess": [], + "SimpleIconsMicrosoftazure": [], + "SimpleIconsMicrosoftbing": [], + "SimpleIconsMicrosoftedge": [], + "SimpleIconsMicrosoftexcel": [], + "SimpleIconsMicrosoftexchange": [], + "SimpleIconsMicrosoftoffice": [], + "SimpleIconsMicrosoftonedrive": [], + "SimpleIconsMicrosoftonenote": [], + "SimpleIconsMicrosoftoutlook": [], + "SimpleIconsMicrosoftpowerpoint": [], + "SimpleIconsMicrosoftsharepoint": [], + "SimpleIconsMicrosoftsqlserver": [], + "SimpleIconsMicrosoftteams": [], + "SimpleIconsMicrosofttranslator": [], + "SimpleIconsMicrosoftvisio": [], + "SimpleIconsMicrosoftword": [], + "SimpleIconsMicrostrategy": [], + "SimpleIconsMidi": [], + "SimpleIconsMinds": [], + "SimpleIconsMinecraft": [], + "SimpleIconsMinetest": [], + "SimpleIconsMini": [], + "SimpleIconsMinutemailer": [], + "SimpleIconsMiro": [], + "SimpleIconsMitsubishi": [], + "SimpleIconsMix": [], + "SimpleIconsMixcloud": [], + "SimpleIconsMlb": [], + "SimpleIconsMlflow": [], + "SimpleIconsMobx": [], + "SimpleIconsMobxstatetree": [], + "SimpleIconsMocha": [], + "SimpleIconsModin": [], + "SimpleIconsModrinth": [], + "SimpleIconsModx": [], + "SimpleIconsMojangstudios": [], + "SimpleIconsMoleculer": [], + "SimpleIconsMomenteo": [], + "SimpleIconsMonero": [], + "SimpleIconsMoneygram": [], + "SimpleIconsMongodb": [], + "SimpleIconsMonica": [], + "SimpleIconsMonkeytie": [], + "SimpleIconsMonogames": [], + "SimpleIconsMonoprix": [], + "SimpleIconsMonster": [], + "SimpleIconsMonzo": [], + "SimpleIconsMoo": [], + "SimpleIconsMoonrepo": [], + "SimpleIconsMorrisons": [], + "SimpleIconsMoscowmetro": [], + "SimpleIconsMotorola": [], + "SimpleIconsMozilla": [], + "SimpleIconsMqtt": [], + "SimpleIconsMsi": [], + "SimpleIconsMsibusiness": [], + "SimpleIconsMta": [], + "SimpleIconsMtr": [], + "SimpleIconsMui": [], + "SimpleIconsMulesoft": [], + "SimpleIconsMuller": [], + "SimpleIconsMumble": [], + "SimpleIconsMusescore": [], + "SimpleIconsMusicbrainz": [], + "SimpleIconsMxlinux": [], + "SimpleIconsMyanimelist": [], + "SimpleIconsMyob": [], + "SimpleIconsMyspace": [], + "SimpleIconsMysql": [], + "SimpleIconsN26": [], + "SimpleIconsNamebase": [], + "SimpleIconsNamecheap": [], + "SimpleIconsNano": [], + "SimpleIconsNasa": [], + "SimpleIconsNationalgrid": [], + "SimpleIconsNativescript": [], + "SimpleIconsNaver": [], + "SimpleIconsNba": [], + "SimpleIconsNbb": [], + "SimpleIconsNdr": [], + "SimpleIconsNec": [], + "SimpleIconsNeo4J": [], + "SimpleIconsNeovim": [], + "SimpleIconsNestjs": [], + "SimpleIconsNetapp": [], + "SimpleIconsNetbsd": [], + "SimpleIconsNetflix": [], + "SimpleIconsNetlify": [], + "SimpleIconsNette": [], + "SimpleIconsNetto": [], + "SimpleIconsNeutralinojs": [], + "SimpleIconsNewbalance": [], + "SimpleIconsNewjapanprowrestling": [], + "SimpleIconsNewrelic": [], + "SimpleIconsNewyorktimes": [], + "SimpleIconsNextbilliondotai": [], + "SimpleIconsNextcloud": [], + "SimpleIconsNextdoor": [], + "SimpleIconsNextdotjs": [], + "SimpleIconsNfc": [], + "SimpleIconsNginx": [], + "SimpleIconsNgrok": [], + "SimpleIconsNiconico": [], + "SimpleIconsNike": [], + "SimpleIconsNim": [], + "SimpleIconsNintendo": [], + "SimpleIconsNintendo3Ds": [], + "SimpleIconsNintendogamecube": [], + "SimpleIconsNintendonetwork": [], + "SimpleIconsNintendoswitch": [], + "SimpleIconsNissan": [], + "SimpleIconsNixos": [], + "SimpleIconsNodedotjs": [], + "SimpleIconsNodemon": [], + "SimpleIconsNodered": [], + "SimpleIconsNokia": [], + "SimpleIconsNorco": [], + "SimpleIconsNordvpn": [], + "SimpleIconsNorwegian": [], + "SimpleIconsNotepadplusplus": [], + "SimpleIconsNotion": [], + "SimpleIconsNotist": [], + "SimpleIconsNounproject": [], + "SimpleIconsNovu": [], + "SimpleIconsNow": [], + "SimpleIconsNpm": [], + "SimpleIconsNrwl": [], + "SimpleIconsNubank": [], + "SimpleIconsNucleo": [], + "SimpleIconsNuget": [], + "SimpleIconsNuke": [], + "SimpleIconsNumba": [], + "SimpleIconsNumpy": [], + "SimpleIconsNunjucks": [], + "SimpleIconsNutanix": [], + "SimpleIconsNuxtdotjs": [], + "SimpleIconsNvidia": [], + "SimpleIconsNx": [], + "SimpleIconsNzxt": [], + "SimpleIconsObservable": [], + "SimpleIconsObsidian": [], + "SimpleIconsObsstudio": [], + "SimpleIconsOcaml": [], + "SimpleIconsOctanerender": [], + "SimpleIconsOctave": [], + "SimpleIconsOctoprint": [], + "SimpleIconsOctopusdeploy": [], + "SimpleIconsOculus": [], + "SimpleIconsOdnoklassniki": [], + "SimpleIconsOdysee": [], + "SimpleIconsOhdear": [], + "SimpleIconsOkcupid": [], + "SimpleIconsOkta": [], + "SimpleIconsOneplus": [], + "SimpleIconsOnlyfans": [], + "SimpleIconsOnlyoffice": [], + "SimpleIconsOnnx": [], + "SimpleIconsOnstar": [], + "SimpleIconsOpel": [], + "SimpleIconsOpenaccess": [], + "SimpleIconsOpenai": [], + "SimpleIconsOpenaigym": [], + "SimpleIconsOpenapiinitiative": [], + "SimpleIconsOpenbadges": [], + "SimpleIconsOpenbsd": [], + "SimpleIconsOpenbugbounty": [], + "SimpleIconsOpencollective": [], + "SimpleIconsOpencontainersinitiative": [], + "SimpleIconsOpencv": [], + "SimpleIconsOpenfaas": [], + "SimpleIconsOpengl": [], + "SimpleIconsOpenid": [], + "SimpleIconsOpenjdk": [], + "SimpleIconsOpenlayers": [], + "SimpleIconsOpenmined": [], + "SimpleIconsOpennebula": [], + "SimpleIconsOpenproject": [], + "SimpleIconsOpensea": [], + "SimpleIconsOpensearch": [], + "SimpleIconsOpensourceinitiative": [], + "SimpleIconsOpenssl": [], + "SimpleIconsOpenstack": [], + "SimpleIconsOpenstreetmap": [], + "SimpleIconsOpensuse": [], + "SimpleIconsOpentelemetry": [], + "SimpleIconsOpenverse": [], + "SimpleIconsOpenvpn": [], + "SimpleIconsOpenwrt": [], + "SimpleIconsOpenzeppelin": [], + "SimpleIconsOpenzfs": [], + "SimpleIconsOpera": [], + "SimpleIconsOpnsense": [], + "SimpleIconsOpsgenie": [], + "SimpleIconsOpslevel": [], + "SimpleIconsOracle": [], + "SimpleIconsOrcid": [], + "SimpleIconsOreilly": [], + "SimpleIconsOrg": [], + "SimpleIconsOrigin": [], + "SimpleIconsOsano": [], + "SimpleIconsOshkosh": [], + "SimpleIconsOsmc": [], + "SimpleIconsOsu": [], + "SimpleIconsOtto": [], + "SimpleIconsOvercast": [], + "SimpleIconsOverleaf": [], + "SimpleIconsOvh": [], + "SimpleIconsOwasp": [], + "SimpleIconsOxygen": [], + "SimpleIconsOyo": [], + "SimpleIconsP5Dotjs": [], + "SimpleIconsPackagist": [], + "SimpleIconsPacker": [], + "SimpleIconsPaddypower": [], + "SimpleIconsPagekit": [], + "SimpleIconsPagerduty": [], + "SimpleIconsPagespeedinsights": [], + "SimpleIconsPagseguro": [], + "SimpleIconsPalantir": [], + "SimpleIconsPaloaltosoftware": [], + "SimpleIconsPandas": [], + "SimpleIconsPandora": [], + "SimpleIconsPantheon": [], + "SimpleIconsPaperspace": [], + "SimpleIconsParitysubstrate": [], + "SimpleIconsParsedotly": [], + "SimpleIconsPassport": [], + "SimpleIconsPastebin": [], + "SimpleIconsPatreon": [], + "SimpleIconsPayoneer": [], + "SimpleIconsPaypal": [], + "SimpleIconsPaytm": [], + "SimpleIconsPcgamingwiki": [], + "SimpleIconsPeakdesign": [], + "SimpleIconsPeertube": [], + "SimpleIconsPegasusairlines": [], + "SimpleIconsPelican": [], + "SimpleIconsPeloton": [], + "SimpleIconsPenny": [], + "SimpleIconsPenpot": [], + "SimpleIconsPepsi": [], + "SimpleIconsPercy": [], + "SimpleIconsPerforce": [], + "SimpleIconsPerl": [], + "SimpleIconsPersistent": [], + "SimpleIconsPersonio": [], + "SimpleIconsPetsathome": [], + "SimpleIconsPeugeot": [], + "SimpleIconsPexels": [], + "SimpleIconsPfsense": [], + "SimpleIconsPhabricator": [], + "SimpleIconsPhilipshue": [], + "SimpleIconsPhonepe": [], + "SimpleIconsPhotobucket": [], + "SimpleIconsPhotocrowd": [], + "SimpleIconsPhotopea": [], + "SimpleIconsPhp": [], + "SimpleIconsPhpmyadmin": [], + "SimpleIconsPhpstorm": [], + "SimpleIconsPicardsurgeles": [], + "SimpleIconsPicartodottv": [], + "SimpleIconsPicnic": [], + "SimpleIconsPicpay": [], + "SimpleIconsPihole": [], + "SimpleIconsPimcore": [], + "SimpleIconsPinboard": [], + "SimpleIconsPingdom": [], + "SimpleIconsPinterest": [], + "SimpleIconsPioneerdj": [], + "SimpleIconsPivotaltracker": [], + "SimpleIconsPiwigo": [], + "SimpleIconsPix": [], + "SimpleIconsPixabay": [], + "SimpleIconsPixiv": [], + "SimpleIconsPkgsrc": [], + "SimpleIconsPlanet": [], + "SimpleIconsPlanetscale": [], + "SimpleIconsPlangrid": [], + "SimpleIconsPlatformdotsh": [], + "SimpleIconsPlatzi": [], + "SimpleIconsPlausibleanalytics": [], + "SimpleIconsPlaycanvas": [], + "SimpleIconsPlayerdotme": [], + "SimpleIconsPlayerfm": [], + "SimpleIconsPlaystation": [], + "SimpleIconsPlaystation2": [], + "SimpleIconsPlaystation3": [], + "SimpleIconsPlaystation4": [], + "SimpleIconsPlaystation5": [], + "SimpleIconsPlaystationvita": [], + "SimpleIconsPlaywright": [], + "SimpleIconsPleroma": [], + "SimpleIconsPlesk": [], + "SimpleIconsPlex": [], + "SimpleIconsPlotly": [], + "SimpleIconsPluralsight": [], + "SimpleIconsPlurk": [], + "SimpleIconsPluscodes": [], + "SimpleIconsPm2": [], + "SimpleIconsPnpm": [], + "SimpleIconsPocket": [], + "SimpleIconsPocketbase": [], + "SimpleIconsPocketcasts": [], + "SimpleIconsPodcastaddict": [], + "SimpleIconsPodman": [], + "SimpleIconsPoetry": [], + "SimpleIconsPointy": [], + "SimpleIconsPokemon": [], + "SimpleIconsPolars": [], + "SimpleIconsPolkadot": [], + "SimpleIconsPoly": [], + "SimpleIconsPolymerproject": [], + "SimpleIconsPolywork": [], + "SimpleIconsPopos": [], + "SimpleIconsPorsche": [], + "SimpleIconsPortainer": [], + "SimpleIconsPostcss": [], + "SimpleIconsPostgresql": [], + "SimpleIconsPostman": [], + "SimpleIconsPostmates": [], + "SimpleIconsPowerapps": [], + "SimpleIconsPowerautomate": [], + "SimpleIconsPowerbi": [], + "SimpleIconsPowerfx": [], + "SimpleIconsPowerpages": [], + "SimpleIconsPowers": [], + "SimpleIconsPowershell": [], + "SimpleIconsPowervirtualagents": [], + "SimpleIconsPrdotco": [], + "SimpleIconsPreact": [], + "SimpleIconsPrecommit": [], + "SimpleIconsPremierleague": [], + "SimpleIconsPrestashop": [], + "SimpleIconsPresto": [], + "SimpleIconsPrettier": [], + "SimpleIconsPrevention": [], + "SimpleIconsPrezi": [], + "SimpleIconsPrime": [], + "SimpleIconsPrimevideo": [], + "SimpleIconsPrisma": [], + "SimpleIconsPrismic": [], + "SimpleIconsPrivateinternetaccess": [], + "SimpleIconsProbot": [], + "SimpleIconsProcessingfoundation": [], + "SimpleIconsProcesswire": [], + "SimpleIconsProducthunt": [], + "SimpleIconsProgate": [], + "SimpleIconsProgress": [], + "SimpleIconsPrometheus": [], + "SimpleIconsProsieben": [], + "SimpleIconsProtocolsdotio": [], + "SimpleIconsProtodotio": [], + "SimpleIconsProtondb": [], + "SimpleIconsProtonmail": [], + "SimpleIconsProtonvpn": [], + "SimpleIconsProtools": [], + "SimpleIconsProtractor": [], + "SimpleIconsProxmox": [], + "SimpleIconsPubg": [], + "SimpleIconsPublons": [], + "SimpleIconsPubmed": [], + "SimpleIconsPug": [], + "SimpleIconsPulumi": [], + "SimpleIconsPuma": [], + "SimpleIconsPuppet": [], + "SimpleIconsPuppeteer": [], + "SimpleIconsPurescript": [], + "SimpleIconsPurgecss": [], + "SimpleIconsPurism": [], + "SimpleIconsPusher": [], + "SimpleIconsPwa": [], + "SimpleIconsPycharm": [], + "SimpleIconsPyg": [], + "SimpleIconsPypi": [], + "SimpleIconsPypy": [], + "SimpleIconsPyscaffold": [], + "SimpleIconsPysyft": [], + "SimpleIconsPytest": [], + "SimpleIconsPython": [], + "SimpleIconsPytorch": [], + "SimpleIconsPytorchlightning": [], + "SimpleIconsPyup": [], + "SimpleIconsQantas": [], + "SimpleIconsQatarairways": [], + "SimpleIconsQemu": [], + "SimpleIconsQgis": [], + "SimpleIconsQi": [], + "SimpleIconsQiita": [], + "SimpleIconsQiskit": [], + "SimpleIconsQiwi": [], + "SimpleIconsQmk": [], + "SimpleIconsQt": [], + "SimpleIconsQualcomm": [], + "SimpleIconsQualtrics": [], + "SimpleIconsQualys": [], + "SimpleIconsQuantcast": [], + "SimpleIconsQuantconnect": [], + "SimpleIconsQuarkus": [], + "SimpleIconsQuasar": [], + "SimpleIconsQubesos": [], + "SimpleIconsQuest": [], + "SimpleIconsQuickbooks": [], + "SimpleIconsQuicklook": [], + "SimpleIconsQuicktime": [], + "SimpleIconsQuip": [], + "SimpleIconsQuora": [], + "SimpleIconsQwiklabs": [], + "SimpleIconsQzone": [], + "SimpleIconsR": [], + "SimpleIconsR3": [], + "SimpleIconsRabbitmq": [], + "SimpleIconsRacket": [], + "SimpleIconsRadar": [], + "SimpleIconsRadiopublic": [], + "SimpleIconsRailway": [], + "SimpleIconsRainmeter": [], + "SimpleIconsRakuten": [], + "SimpleIconsRam": [], + "SimpleIconsRancher": [], + "SimpleIconsRarible": [], + "SimpleIconsRasa": [], + "SimpleIconsRaspberrypi": [], + "SimpleIconsRavelry": [], + "SimpleIconsRay": [], + "SimpleIconsRazer": [], + "SimpleIconsRazorpay": [], + "SimpleIconsReact": [], + "SimpleIconsReacthookform": [], + "SimpleIconsReactivex": [], + "SimpleIconsReactos": [], + "SimpleIconsReactquery": [], + "SimpleIconsReactrouter": [], + "SimpleIconsReacttable": [], + "SimpleIconsReadme": [], + "SimpleIconsReadthedocs": [], + "SimpleIconsRealm": [], + "SimpleIconsReason": [], + "SimpleIconsReasonstudios": [], + "SimpleIconsRed": [], + "SimpleIconsRedbubble": [], + "SimpleIconsReddit": [], + "SimpleIconsRedhat": [], + "SimpleIconsRedhatopenshift": [], + "SimpleIconsRedis": [], + "SimpleIconsRedmine": [], + "SimpleIconsRedox": [], + "SimpleIconsRedux": [], + "SimpleIconsReduxsaga": [], + "SimpleIconsRedwoodjs": [], + "SimpleIconsReebok": [], + "SimpleIconsRelay": [], + "SimpleIconsRelianceindustrieslimited": [], + "SimpleIconsRemix": [], + "SimpleIconsRenault": [], + "SimpleIconsRender": [], + "SimpleIconsRenovatebot": [], + "SimpleIconsRenpy": [], + "SimpleIconsRenren": [], + "SimpleIconsReplit": [], + "SimpleIconsRepublicofgamers": [], + "SimpleIconsRescript": [], + "SimpleIconsRescuetime": [], + "SimpleIconsResearchgate": [], + "SimpleIconsResharper": [], + "SimpleIconsResurrectionremixos": [], + "SimpleIconsRetroarch": [], + "SimpleIconsRetropie": [], + "SimpleIconsRevealdotjs": [], + "SimpleIconsReverbnation": [], + "SimpleIconsRevoltdotchat": [], + "SimpleIconsRevolut": [], + "SimpleIconsRevue": [], + "SimpleIconsRewe": [], + "SimpleIconsRezgo": [], + "SimpleIconsRhinoceros": [], + "SimpleIconsRider": [], + "SimpleIconsRimacautomobili": [], + "SimpleIconsRing": [], + "SimpleIconsRiotgames": [], + "SimpleIconsRipple": [], + "SimpleIconsRiseup": [], + "SimpleIconsRoamresearch": [], + "SimpleIconsRoblox": [], + "SimpleIconsRobotframework": [], + "SimpleIconsRocketdotchat": [], + "SimpleIconsRocksdb": [], + "SimpleIconsRockylinux": [], + "SimpleIconsRoku": [], + "SimpleIconsRollsroyce": [], + "SimpleIconsRollupdotjs": [], + "SimpleIconsRome": [], + "SimpleIconsRoots": [], + "SimpleIconsRootsbedrock": [], + "SimpleIconsRootssage": [], + "SimpleIconsRos": [], + "SimpleIconsRossmann": [], + "SimpleIconsRotaryinternational": [], + "SimpleIconsRottentomatoes": [], + "SimpleIconsRoundcube": [], + "SimpleIconsRsocket": [], + "SimpleIconsRss": [], + "SimpleIconsRstudio": [], + "SimpleIconsRte": [], + "SimpleIconsRtl": [], + "SimpleIconsRtlzwei": [], + "SimpleIconsRubocop": [], + "SimpleIconsRuby": [], + "SimpleIconsRubygems": [], + "SimpleIconsRubyonrails": [], + "SimpleIconsRubysinatra": [], + "SimpleIconsRunkeeper": [], + "SimpleIconsRunkit": [], + "SimpleIconsRust": [], + "SimpleIconsRxdb": [], + "SimpleIconsRyanair": [], + "SimpleIconsS7Airlines": [], + "SimpleIconsSabanci": [], + "SimpleIconsSafari": [], + "SimpleIconsSahibinden": [], + "SimpleIconsSailfishos": [], + "SimpleIconsSalesforce": [], + "SimpleIconsSaltproject": [], + "SimpleIconsSamsung": [], + "SimpleIconsSamsungpay": [], + "SimpleIconsSandisk": [], + "SimpleIconsSanfranciscomunicipalrailway": [], + "SimpleIconsSaopaulometro": [], + "SimpleIconsSap": [], + "SimpleIconsSass": [], + "SimpleIconsSat1": [], + "SimpleIconsSaturn": [], + "SimpleIconsSaucelabs": [], + "SimpleIconsScala": [], + "SimpleIconsScaleway": [], + "SimpleIconsScania": [], + "SimpleIconsSchneiderelectric": [], + "SimpleIconsScikitlearn": [], + "SimpleIconsScipy": [], + "SimpleIconsScopus": [], + "SimpleIconsScpfoundation": [], + "SimpleIconsScratch": [], + "SimpleIconsScreencastify": [], + "SimpleIconsScribd": [], + "SimpleIconsScrimba": [], + "SimpleIconsScrollreveal": [], + "SimpleIconsScrumalliance": [], + "SimpleIconsScrutinizerci": [], + "SimpleIconsSeagate": [], + "SimpleIconsSeat": [], + "SimpleIconsSecurityscorecard": [], + "SimpleIconsSefaria": [], + "SimpleIconsSega": [], + "SimpleIconsSelenium": [], + "SimpleIconsSellfy": [], + "SimpleIconsSemanticrelease": [], + "SimpleIconsSemanticscholar": [], + "SimpleIconsSemanticuireact": [], + "SimpleIconsSemanticweb": [], + "SimpleIconsSemaphoreci": [], + "SimpleIconsSemver": [], + "SimpleIconsSencha": [], + "SimpleIconsSendinblue": [], + "SimpleIconsSennheiser": [], + "SimpleIconsSensu": [], + "SimpleIconsSentry": [], + "SimpleIconsSepa": [], + "SimpleIconsSequelize": [], + "SimpleIconsServerfault": [], + "SimpleIconsServerless": [], + "SimpleIconsSessionize": [], + "SimpleIconsSetapp": [], + "SimpleIconsSfml": [], + "SimpleIconsShadow": [], + "SimpleIconsShanghaimetro": [], + "SimpleIconsSharp": [], + "SimpleIconsShazam": [], + "SimpleIconsShell": [], + "SimpleIconsShelly": [], + "SimpleIconsShenzhenmetro": [], + "SimpleIconsShieldsdotio": [], + "SimpleIconsShikimori": [], + "SimpleIconsShopee": [], + "SimpleIconsShopify": [], + "SimpleIconsShopware": [], + "SimpleIconsShotcut": [], + "SimpleIconsShowpad": [], + "SimpleIconsShowtime": [], + "SimpleIconsShutterstock": [], + "SimpleIconsSiemens": [], + "SimpleIconsSignal": [], + "SimpleIconsSimilarweb": [], + "SimpleIconsSimkl": [], + "SimpleIconsSimpleanalytics": [], + "SimpleIconsSimpleicons": [], + "SimpleIconsSimplenote": [], + "SimpleIconsSinaweibo": [], + "SimpleIconsSinglestore": [], + "SimpleIconsSitepoint": [], + "SimpleIconsSketch": [], + "SimpleIconsSketchfab": [], + "SimpleIconsSketchup": [], + "SimpleIconsSkillshare": [], + "SimpleIconsSkoda": [], + "SimpleIconsSky": [], + "SimpleIconsSkynet": [], + "SimpleIconsSkypack": [], + "SimpleIconsSkype": [], + "SimpleIconsSkypeforbusiness": [], + "SimpleIconsSlack": [], + "SimpleIconsSlackware": [], + "SimpleIconsSlashdot": [], + "SimpleIconsSlickpic": [], + "SimpleIconsSlides": [], + "SimpleIconsSlideshare": [], + "SimpleIconsSmart": [], + "SimpleIconsSmartthings": [], + "SimpleIconsSmashdotgg": [], + "SimpleIconsSmashingmagazine": [], + "SimpleIconsSmrt": [], + "SimpleIconsSmugmug": [], + "SimpleIconsSnapchat": [], + "SimpleIconsSnapcraft": [], + "SimpleIconsSncf": [], + "SimpleIconsSnowflake": [], + "SimpleIconsSnowpack": [], + "SimpleIconsSnyk": [], + "SimpleIconsSocialblade": [], + "SimpleIconsSociety6": [], + "SimpleIconsSocketdotio": [], + "SimpleIconsSogou": [], + "SimpleIconsSolid": [], + "SimpleIconsSolidity": [], + "SimpleIconsSololearn": [], + "SimpleIconsSolus": [], + "SimpleIconsSonar": [], + "SimpleIconsSonarcloud": [], + "SimpleIconsSonarlint": [], + "SimpleIconsSonarqube": [], + "SimpleIconsSonarsource": [], + "SimpleIconsSongkick": [], + "SimpleIconsSongoda": [], + "SimpleIconsSonicwall": [], + "SimpleIconsSonos": [], + "SimpleIconsSony": [], + "SimpleIconsSoundcharts": [], + "SimpleIconsSoundcloud": [], + "SimpleIconsSourceengine": [], + "SimpleIconsSourceforge": [], + "SimpleIconsSourcegraph": [], + "SimpleIconsSourcetree": [], + "SimpleIconsSouthwestairlines": [], + "SimpleIconsSpacemacs": [], + "SimpleIconsSpacex": [], + "SimpleIconsSpacy": [], + "SimpleIconsSparkar": [], + "SimpleIconsSparkasse": [], + "SimpleIconsSparkfun": [], + "SimpleIconsSparkpost": [], + "SimpleIconsSpdx": [], + "SimpleIconsSpeakerdeck": [], + "SimpleIconsSpectrum": [], + "SimpleIconsSpeedtest": [], + "SimpleIconsSpinnaker": [], + "SimpleIconsSpinrilla": [], + "SimpleIconsSplunk": [], + "SimpleIconsSpond": [], + "SimpleIconsSpotify": [], + "SimpleIconsSpotlight": [], + "SimpleIconsSpreadshirt": [], + "SimpleIconsSpreaker": [], + "SimpleIconsSpring": [], + "SimpleIconsSpringCreators": [], + "SimpleIconsSpringboot": [], + "SimpleIconsSpringsecurity": [], + "SimpleIconsSpyderide": [], + "SimpleIconsSqlite": [], + "SimpleIconsSquare": [], + "SimpleIconsSquareenix": [], + "SimpleIconsSquarespace": [], + "SimpleIconsSsrn": [], + "SimpleIconsStackbit": [], + "SimpleIconsStackblitz": [], + "SimpleIconsStackedit": [], + "SimpleIconsStackexchange": [], + "SimpleIconsStackoverflow": [], + "SimpleIconsStackpath": [], + "SimpleIconsStackshare": [], + "SimpleIconsStadia": [], + "SimpleIconsStaffbase": [], + "SimpleIconsStandardjs": [], + "SimpleIconsStarbucks": [], + "SimpleIconsStardock": [], + "SimpleIconsStarlingbank": [], + "SimpleIconsStarship": [], + "SimpleIconsStartrek": [], + "SimpleIconsStarz": [], + "SimpleIconsStatamic": [], + "SimpleIconsStatuspage": [], + "SimpleIconsStatuspal": [], + "SimpleIconsSteam": [], + "SimpleIconsSteamdb": [], + "SimpleIconsSteamdeck": [], + "SimpleIconsSteamworks": [], + "SimpleIconsSteelseries": [], + "SimpleIconsSteem": [], + "SimpleIconsSteemit": [], + "SimpleIconsSteinberg": [], + "SimpleIconsStellar": [], + "SimpleIconsStencyl": [], + "SimpleIconsStimulus": [], + "SimpleIconsStitcher": [], + "SimpleIconsStmicroelectronics": [], + "SimpleIconsStopstalk": [], + "SimpleIconsStoryblok": [], + "SimpleIconsStorybook": [], + "SimpleIconsStrapi": [], + "SimpleIconsStrava": [], + "SimpleIconsStreamlit": [], + "SimpleIconsStripe": [], + "SimpleIconsStrongswan": [], + "SimpleIconsStubhub": [], + "SimpleIconsStyledcomponents": [], + "SimpleIconsStylelint": [], + "SimpleIconsStyleshare": [], + "SimpleIconsStylus": [], + "SimpleIconsSubaru": [], + "SimpleIconsSublimetext": [], + "SimpleIconsSubstack": [], + "SimpleIconsSubversion": [], + "SimpleIconsSuckless": [], + "SimpleIconsSumologic": [], + "SimpleIconsSupabase": [], + "SimpleIconsSupermicro": [], + "SimpleIconsSuperuser": [], + "SimpleIconsSurrealdb": [], + "SimpleIconsSurveymonkey": [], + "SimpleIconsSuse": [], + "SimpleIconsSuzuki": [], + "SimpleIconsSvelte": [], + "SimpleIconsSvg": [], + "SimpleIconsSvgo": [], + "SimpleIconsSwagger": [], + "SimpleIconsSwarm": [], + "SimpleIconsSwc": [], + "SimpleIconsSwift": [], + "SimpleIconsSwiggy": [], + "SimpleIconsSwiper": [], + "SimpleIconsSymantec": [], + "SimpleIconsSymfony": [], + "SimpleIconsSymphony": [], + "SimpleIconsSympy": [], + "SimpleIconsSynology": [], + "SimpleIconsSystem76": [], + "SimpleIconsTableau": [], + "SimpleIconsTablecheck": [], + "SimpleIconsTacobell": [], + "SimpleIconsTado": [], + "SimpleIconsTaichigraphics": [], + "SimpleIconsTaichilang": [], + "SimpleIconsTails": [], + "SimpleIconsTailwindcss": [], + "SimpleIconsTalend": [], + "SimpleIconsTalenthouse": [], + "SimpleIconsTamiya": [], + "SimpleIconsTampermonkey": [], + "SimpleIconsTaobao": [], + "SimpleIconsTapas": [], + "SimpleIconsTarget": [], + "SimpleIconsTask": [], + "SimpleIconsTasmota": [], + "SimpleIconsTata": [], + "SimpleIconsTauri": [], + "SimpleIconsTaxbuzz": [], + "SimpleIconsTeamcity": [], + "SimpleIconsTeamspeak": [], + "SimpleIconsTeamviewer": [], + "SimpleIconsTed": [], + "SimpleIconsTeespring": [], + "SimpleIconsTekton": [], + "SimpleIconsTele5": [], + "SimpleIconsTelegram": [], + "SimpleIconsTelegraph": [], + "SimpleIconsTemporal": [], + "SimpleIconsTencentqq": [], + "SimpleIconsTensorflow": [], + "SimpleIconsTeradata": [], + "SimpleIconsTeratail": [], + "SimpleIconsTerraform": [], + "SimpleIconsTesco": [], + "SimpleIconsTesla": [], + "SimpleIconsTestcafe": [], + "SimpleIconsTestin": [], + "SimpleIconsTestinglibrary": [], + "SimpleIconsTether": [], + "SimpleIconsTextpattern": [], + "SimpleIconsTga": [], + "SimpleIconsThealgorithms": [], + "SimpleIconsTheconversation": [], + "SimpleIconsTheirishtimes": [], + "SimpleIconsThemighty": [], + "SimpleIconsThemodelsresource": [], + "SimpleIconsThemoviedatabase": [], + "SimpleIconsThenorthface": [], + "SimpleIconsTheregister": [], + "SimpleIconsThesoundsresource": [], + "SimpleIconsThespritersresource": [], + "SimpleIconsThewashingtonpost": [], + "SimpleIconsThingiverse": [], + "SimpleIconsThinkpad": [], + "SimpleIconsThreadless": [], + "SimpleIconsThreedotjs": [], + "SimpleIconsThreema": [], + "SimpleIconsThumbtack": [], + "SimpleIconsThunderbird": [], + "SimpleIconsThymeleaf": [], + "SimpleIconsTicketmaster": [], + "SimpleIconsTidal": [], + "SimpleIconsTide": [], + "SimpleIconsTidyverse": [], + "SimpleIconsTietoevry": [], + "SimpleIconsTiktok": [], + "SimpleIconsTile": [], + "SimpleIconsTimescale": [], + "SimpleIconsTinder": [], + "SimpleIconsTinyletter": [], + "SimpleIconsTistory": [], + "SimpleIconsTmobile": [], + "SimpleIconsTmux": [], + "SimpleIconsTnt": [], + "SimpleIconsTodoist": [], + "SimpleIconsToggl": [], + "SimpleIconsTokyometro": [], + "SimpleIconsToml": [], + "SimpleIconsTomorrowland": [], + "SimpleIconsTopcoder": [], + "SimpleIconsToptal": [], + "SimpleIconsTorbrowser": [], + "SimpleIconsTorproject": [], + "SimpleIconsToshiba": [], + "SimpleIconsToyota": [], + "SimpleIconsTplink": [], + "SimpleIconsTqdm": [], + "SimpleIconsTraefikmesh": [], + "SimpleIconsTraefikproxy": [], + "SimpleIconsTrainerroad": [], + "SimpleIconsTrakt": [], + "SimpleIconsTransportforireland": [], + "SimpleIconsTransportforlondon": [], + "SimpleIconsTravisci": [], + "SimpleIconsTreehouse": [], + "SimpleIconsTrello": [], + "SimpleIconsTrendmicro": [], + "SimpleIconsTreyarch": [], + "SimpleIconsTriller": [], + "SimpleIconsTrino": [], + "SimpleIconsTripadvisor": [], + "SimpleIconsTripdotcom": [], + "SimpleIconsTrove": [], + "SimpleIconsTrpc": [], + "SimpleIconsTruenas": [], + "SimpleIconsTrulia": [], + "SimpleIconsTrustedshops": [], + "SimpleIconsTrustpilot": [], + "SimpleIconsTryhackme": [], + "SimpleIconsTryitonline": [], + "SimpleIconsTsnode": [], + "SimpleIconsTubi": [], + "SimpleIconsTui": [], + "SimpleIconsTumblr": [], + "SimpleIconsTunein": [], + "SimpleIconsTurborepo": [], + "SimpleIconsTurbosquid": [], + "SimpleIconsTurkishairlines": [], + "SimpleIconsTutanota": [], + "SimpleIconsTvtime": [], + "SimpleIconsTwilio": [], + "SimpleIconsTwitch": [], + "SimpleIconsTwitter": [], + "SimpleIconsTwoo": [], + "SimpleIconsTypeform": [], + "SimpleIconsTypescript": [], + "SimpleIconsTypo3": [], + "SimpleIconsUber": [], + "SimpleIconsUbereats": [], + "SimpleIconsUbiquiti": [], + "SimpleIconsUbisoft": [], + "SimpleIconsUblockorigin": [], + "SimpleIconsUbuntu": [], + "SimpleIconsUdacity": [], + "SimpleIconsUdemy": [], + "SimpleIconsUfc": [], + "SimpleIconsUikit": [], + "SimpleIconsUlule": [], + "SimpleIconsUmbraco": [], + "SimpleIconsUnacademy": [], + "SimpleIconsUnderarmour": [], + "SimpleIconsUnderscoredotjs": [], + "SimpleIconsUndertale": [], + "SimpleIconsUnicode": [], + "SimpleIconsUnilever": [], + "SimpleIconsUnitedairlines": [], + "SimpleIconsUnity": [], + "SimpleIconsUnlicense": [], + "SimpleIconsUnocss": [], + "SimpleIconsUnraid": [], + "SimpleIconsUnrealengine": [], + "SimpleIconsUnsplash": [], + "SimpleIconsUntangle": [], + "SimpleIconsUntappd": [], + "SimpleIconsUpcloud": [], + "SimpleIconsUplabs": [], + "SimpleIconsUploaded": [], + "SimpleIconsUps": [], + "SimpleIconsUpstash": [], + "SimpleIconsUptimekuma": [], + "SimpleIconsUptobox": [], + "SimpleIconsUpwork": [], + "SimpleIconsUsps": [], + "SimpleIconsV": [], + "SimpleIconsV2Ex": [], + "SimpleIconsV8": [], + "SimpleIconsVaadin": [], + "SimpleIconsVagrant": [], + "SimpleIconsVala": [], + "SimpleIconsValorant": [], + "SimpleIconsValve": [], + "SimpleIconsVapor": [], + "SimpleIconsVault": [], + "SimpleIconsVauxhall": [], + "SimpleIconsVbulletin": [], + "SimpleIconsVectorlogozone": [], + "SimpleIconsVectorworks": [], + "SimpleIconsVeeam": [], + "SimpleIconsVeepee": [], + "SimpleIconsVelog": [], + "SimpleIconsVenmo": [], + "SimpleIconsVercel": [], + "SimpleIconsVerdaccio": [], + "SimpleIconsVeritas": [], + "SimpleIconsVerizon": [], + "SimpleIconsVexxhost": [], + "SimpleIconsVfairs": [], + "SimpleIconsViadeo": [], + "SimpleIconsViber": [], + "SimpleIconsVim": [], + "SimpleIconsVimeo": [], + "SimpleIconsVimeolivestream": [], + "SimpleIconsVirgin": [], + "SimpleIconsVirginmedia": [], + "SimpleIconsVirtualbox": [], + "SimpleIconsVirustotal": [], + "SimpleIconsVisa": [], + "SimpleIconsVisualstudio": [], + "SimpleIconsVisualstudiocode": [], + "SimpleIconsVite": [], + "SimpleIconsVitess": [], + "SimpleIconsVitest": [], + "SimpleIconsVivaldi": [], + "SimpleIconsVivino": [], + "SimpleIconsVk": [], + "SimpleIconsVlcmediaplayer": [], + "SimpleIconsVmware": [], + "SimpleIconsVodafone": [], + "SimpleIconsVolkswagen": [], + "SimpleIconsVolvo": [], + "SimpleIconsVonage": [], + "SimpleIconsVowpalwabbit": [], + "SimpleIconsVox": [], + "SimpleIconsVsco": [], + "SimpleIconsVscodium": [], + "SimpleIconsVtex": [], + "SimpleIconsVuedotjs": [], + "SimpleIconsVuetify": [], + "SimpleIconsVulkan": [], + "SimpleIconsVultr": [], + "SimpleIconsW3C": [], + "SimpleIconsWacom": [], + "SimpleIconsWagtail": [], + "SimpleIconsWails": [], + "SimpleIconsWakatime": [], + "SimpleIconsWalkman": [], + "SimpleIconsWallabag": [], + "SimpleIconsWalmart": [], + "SimpleIconsWantedly": [], + "SimpleIconsWappalyzer": [], + "SimpleIconsWarnerbros": [], + "SimpleIconsWarp": [], + "SimpleIconsWasmcloud": [], + "SimpleIconsWasmer": [], + "SimpleIconsWattpad": [], + "SimpleIconsWayland": [], + "SimpleIconsWaze": [], + "SimpleIconsWearos": [], + "SimpleIconsWeasyl": [], + "SimpleIconsWeb3Dotjs": [], + "SimpleIconsWebassembly": [], + "SimpleIconsWebauthn": [], + "SimpleIconsWebcomponentsdotorg": [], + "SimpleIconsWebdriverio": [], + "SimpleIconsWebflow": [], + "SimpleIconsWebgl": [], + "SimpleIconsWebhint": [], + "SimpleIconsWeblate": [], + "SimpleIconsWebmin": [], + "SimpleIconsWebmoney": [], + "SimpleIconsWebpack": [], + "SimpleIconsWebrtc": [], + "SimpleIconsWebstorm": [], + "SimpleIconsWebtoon": [], + "SimpleIconsWechat": [], + "SimpleIconsWegame": [], + "SimpleIconsWeightsandbiases": [], + "SimpleIconsWelcometothejungle": [], + "SimpleIconsWemo": [], + "SimpleIconsWesterndigital": [], + "SimpleIconsWetransfer": [], + "SimpleIconsWhatsapp": [], + "SimpleIconsWheniwork": [], + "SimpleIconsWhitesource": [], + "SimpleIconsWii": [], + "SimpleIconsWiiu": [], + "SimpleIconsWikidata": [], + "SimpleIconsWikidotjs": [], + "SimpleIconsWikimediacommons": [], + "SimpleIconsWikipedia": [], + "SimpleIconsWikiquote": [], + "SimpleIconsWikivoyage": [], + "SimpleIconsWinamp": [], + "SimpleIconsWindicss": [], + "SimpleIconsWindows": [], + "SimpleIconsWindows11": [], + "SimpleIconsWindows95": [], + "SimpleIconsWindowsterminal": [], + "SimpleIconsWindowsxp": [], + "SimpleIconsWinmate": [], + "SimpleIconsWipro": [], + "SimpleIconsWire": [], + "SimpleIconsWireguard": [], + "SimpleIconsWireshark": [], + "SimpleIconsWise": [], + "SimpleIconsWish": [], + "SimpleIconsWistia": [], + "SimpleIconsWix": [], + "SimpleIconsWizzair": [], + "SimpleIconsWolfram": [], + "SimpleIconsWolframlanguage": [], + "SimpleIconsWolframmathematica": [], + "SimpleIconsWoo": [], + "SimpleIconsWoocommerce": [], + "SimpleIconsWordpress": [], + "SimpleIconsWorkplace": [], + "SimpleIconsWorldhealthorganization": [], + "SimpleIconsWpengine": [], + "SimpleIconsWpexplorer": [], + "SimpleIconsWprocket": [], + "SimpleIconsWritedotas": [], + "SimpleIconsWwe": [], + "SimpleIconsWwise": [], + "SimpleIconsXamarin": [], + "SimpleIconsXaml": [], + "SimpleIconsXampp": [], + "SimpleIconsXbox": [], + "SimpleIconsXcode": [], + "SimpleIconsXdadevelopers": [], + "SimpleIconsXdotorg": [], + "SimpleIconsXero": [], + "SimpleIconsXfce": [], + "SimpleIconsXiaomi": [], + "SimpleIconsXilinx": [], + "SimpleIconsXing": [], + "SimpleIconsXmpp": [], + "SimpleIconsXo": [], + "SimpleIconsXrp": [], + "SimpleIconsXsplit": [], + "SimpleIconsXstate": [], + "SimpleIconsYahoo": [], + "SimpleIconsYale": [], + "SimpleIconsYamahacorporation": [], + "SimpleIconsYamahamotorcorporation": [], + "SimpleIconsYammer": [], + "SimpleIconsYarn": [], + "SimpleIconsYcombinator": [], + "SimpleIconsYelp": [], + "SimpleIconsYoast": [], + "SimpleIconsYolo": [], + "SimpleIconsYourtraveldottv": [], + "SimpleIconsYoutube": [], + "SimpleIconsYoutubegaming": [], + "SimpleIconsYoutubemusic": [], + "SimpleIconsYoutubestudio": [], + "SimpleIconsYoutubetv": [], + "SimpleIconsYubico": [], + "SimpleIconsZabka": [], + "SimpleIconsZalando": [], + "SimpleIconsZalo": [], + "SimpleIconsZapier": [], + "SimpleIconsZara": [], + "SimpleIconsZazzle": [], + "SimpleIconsZcash": [], + "SimpleIconsZdf": [], + "SimpleIconsZebratechnologies": [], + "SimpleIconsZelle": [], + "SimpleIconsZend": [], + "SimpleIconsZendesk": [], + "SimpleIconsZendframework": [], + "SimpleIconsZenn": [], + "SimpleIconsZenodo": [], + "SimpleIconsZerodha": [], + "SimpleIconsZeromq": [], + "SimpleIconsZerply": [], + "SimpleIconsZettlr": [], + "SimpleIconsZhihu": [], + "SimpleIconsZig": [], + "SimpleIconsZigbee": [], + "SimpleIconsZillow": [], + "SimpleIconsZincsearch": [], + "SimpleIconsZingat": [], + "SimpleIconsZoho": [], + "SimpleIconsZoiper": [], + "SimpleIconsZomato": [], + "SimpleIconsZoom": [], + "SimpleIconsZorin": [], + "SimpleIconsZotero": [], + "SimpleIconsZulip": [], + "SimpleIconsZwave": [], + "SimpleIconsZyte": [], + "base64": [ + "dep:base64" + ], + "bootstrap": [ + "Bootstrap0CircleFill", + "Bootstrap0Circle", + "Bootstrap0SquareFill", + "Bootstrap0Square", + "Bootstrap1CircleFill", + "Bootstrap1Circle", + "Bootstrap1SquareFill", + "Bootstrap1Square", + "Bootstrap123", + "Bootstrap2CircleFill", + "Bootstrap2Circle", + "Bootstrap2SquareFill", + "Bootstrap2Square", + "Bootstrap3CircleFill", + "Bootstrap3Circle", + "Bootstrap3SquareFill", + "Bootstrap3Square", + "Bootstrap4CircleFill", + "Bootstrap4Circle", + "Bootstrap4SquareFill", + "Bootstrap4Square", + "Bootstrap5CircleFill", + "Bootstrap5Circle", + "Bootstrap5SquareFill", + "Bootstrap5Square", + "Bootstrap6CircleFill", + "Bootstrap6Circle", + "Bootstrap6SquareFill", + "Bootstrap6Square", + "Bootstrap7CircleFill", + "Bootstrap7Circle", + "Bootstrap7SquareFill", + "Bootstrap7Square", + "Bootstrap8CircleFill", + "Bootstrap8Circle", + "Bootstrap8SquareFill", + "Bootstrap8Square", + "Bootstrap9CircleFill", + "Bootstrap9Circle", + "Bootstrap9SquareFill", + "Bootstrap9Square", + "BootstrapActivity", + "BootstrapAirplaneEnginesFill", + "BootstrapAirplaneEngines", + "BootstrapAirplaneFill", + "BootstrapAirplane", + "BootstrapAlarmFill", + "BootstrapAlarm", + "BootstrapAlexa", + "BootstrapAlignBottom", + "BootstrapAlignCenter", + "BootstrapAlignEnd", + "BootstrapAlignMiddle", + "BootstrapAlignStart", + "BootstrapAlignTop", + "BootstrapAlipay", + "BootstrapAlt", + "BootstrapAmd", + "BootstrapAndroid", + "BootstrapAndroid2", + "BootstrapAppIndicator", + "BootstrapApp", + "BootstrapApple", + "BootstrapArchiveFill", + "BootstrapArchive", + "BootstrapArrow90DegDown", + "BootstrapArrow90DegLeft", + "BootstrapArrow90DegRight", + "BootstrapArrow90DegUp", + "BootstrapArrowBarDown", + "BootstrapArrowBarLeft", + "BootstrapArrowBarRight", + "BootstrapArrowBarUp", + "BootstrapArrowClockwise", + "BootstrapArrowCounterclockwise", + "BootstrapArrowDownCircleFill", + "BootstrapArrowDownCircle", + "BootstrapArrowDownLeftCircleFill", + "BootstrapArrowDownLeftCircle", + "BootstrapArrowDownLeftSquareFill", + "BootstrapArrowDownLeftSquare", + "BootstrapArrowDownLeft", + "BootstrapArrowDownRightCircleFill", + "BootstrapArrowDownRightCircle", + "BootstrapArrowDownRightSquareFill", + "BootstrapArrowDownRightSquare", + "BootstrapArrowDownRight", + "BootstrapArrowDownShort", + "BootstrapArrowDownSquareFill", + "BootstrapArrowDownSquare", + "BootstrapArrowDownUp", + "BootstrapArrowDown", + "BootstrapArrowLeftCircleFill", + "BootstrapArrowLeftCircle", + "BootstrapArrowLeftRight", + "BootstrapArrowLeftShort", + "BootstrapArrowLeftSquareFill", + "BootstrapArrowLeftSquare", + "BootstrapArrowLeft", + "BootstrapArrowRepeat", + "BootstrapArrowReturnLeft", + "BootstrapArrowReturnRight", + "BootstrapArrowRightCircleFill", + "BootstrapArrowRightCircle", + "BootstrapArrowRightShort", + "BootstrapArrowRightSquareFill", + "BootstrapArrowRightSquare", + "BootstrapArrowRight", + "BootstrapArrowThroughHeartFill", + "BootstrapArrowThroughHeart", + "BootstrapArrowUpCircleFill", + "BootstrapArrowUpCircle", + "BootstrapArrowUpLeftCircleFill", + "BootstrapArrowUpLeftCircle", + "BootstrapArrowUpLeftSquareFill", + "BootstrapArrowUpLeftSquare", + "BootstrapArrowUpLeft", + "BootstrapArrowUpRightCircleFill", + "BootstrapArrowUpRightCircle", + "BootstrapArrowUpRightSquareFill", + "BootstrapArrowUpRightSquare", + "BootstrapArrowUpRight", + "BootstrapArrowUpShort", + "BootstrapArrowUpSquareFill", + "BootstrapArrowUpSquare", + "BootstrapArrowUp", + "BootstrapArrowsAngleContract", + "BootstrapArrowsAngleExpand", + "BootstrapArrowsCollapse", + "BootstrapArrowsExpand", + "BootstrapArrowsFullscreen", + "BootstrapArrowsMove", + "BootstrapAspectRatioFill", + "BootstrapAspectRatio", + "BootstrapAsterisk", + "BootstrapAt", + "BootstrapAwardFill", + "BootstrapAward", + "BootstrapBack", + "BootstrapBackspaceFill", + "BootstrapBackspaceReverseFill", + "BootstrapBackspaceReverse", + "BootstrapBackspace", + "BootstrapBadge3DFill", + "BootstrapBadge3D", + "BootstrapBadge4KFill", + "BootstrapBadge4K", + "BootstrapBadge8KFill", + "BootstrapBadge8K", + "BootstrapBadgeAdFill", + "BootstrapBadgeAd", + "BootstrapBadgeArFill", + "BootstrapBadgeAr", + "BootstrapBadgeCcFill", + "BootstrapBadgeCc", + "BootstrapBadgeHdFill", + "BootstrapBadgeHd", + "BootstrapBadgeSdFill", + "BootstrapBadgeSd", + "BootstrapBadgeTmFill", + "BootstrapBadgeTm", + "BootstrapBadgeVoFill", + "BootstrapBadgeVo", + "BootstrapBadgeVrFill", + "BootstrapBadgeVr", + "BootstrapBadgeWcFill", + "BootstrapBadgeWc", + "BootstrapBagCheckFill", + "BootstrapBagCheck", + "BootstrapBagDashFill", + "BootstrapBagDash", + "BootstrapBagFill", + "BootstrapBagHeartFill", + "BootstrapBagHeart", + "BootstrapBagPlusFill", + "BootstrapBagPlus", + "BootstrapBagXFill", + "BootstrapBagX", + "BootstrapBag", + "BootstrapBalloonFill", + "BootstrapBalloonHeartFill", + "BootstrapBalloonHeart", + "BootstrapBalloon", + "BootstrapBandaidFill", + "BootstrapBandaid", + "BootstrapBank", + "BootstrapBank2", + "BootstrapBarChartFill", + "BootstrapBarChartLineFill", + "BootstrapBarChartLine", + "BootstrapBarChartSteps", + "BootstrapBarChart", + "BootstrapBasketFill", + "BootstrapBasket", + "BootstrapBasket2Fill", + "BootstrapBasket2", + "BootstrapBasket3Fill", + "BootstrapBasket3", + "BootstrapBatteryCharging", + "BootstrapBatteryFull", + "BootstrapBatteryHalf", + "BootstrapBattery", + "BootstrapBehance", + "BootstrapBellFill", + "BootstrapBellSlashFill", + "BootstrapBellSlash", + "BootstrapBell", + "BootstrapBezier", + "BootstrapBezier2", + "BootstrapBicycle", + "BootstrapBinocularsFill", + "BootstrapBinoculars", + "BootstrapBlockquoteLeft", + "BootstrapBlockquoteRight", + "BootstrapBluetooth", + "BootstrapBodyText", + "BootstrapBookFill", + "BootstrapBookHalf", + "BootstrapBook", + "BootstrapBookmarkCheckFill", + "BootstrapBookmarkCheck", + "BootstrapBookmarkDashFill", + "BootstrapBookmarkDash", + "BootstrapBookmarkFill", + "BootstrapBookmarkHeartFill", + "BootstrapBookmarkHeart", + "BootstrapBookmarkPlusFill", + "BootstrapBookmarkPlus", + "BootstrapBookmarkStarFill", + "BootstrapBookmarkStar", + "BootstrapBookmarkXFill", + "BootstrapBookmarkX", + "BootstrapBookmark", + "BootstrapBookmarksFill", + "BootstrapBookmarks", + "BootstrapBookshelf", + "BootstrapBoomboxFill", + "BootstrapBoombox", + "BootstrapBootstrapFill", + "BootstrapBootstrapReboot", + "BootstrapBootstrap", + "BootstrapBorderAll", + "BootstrapBorderBottom", + "BootstrapBorderCenter", + "BootstrapBorderInner", + "BootstrapBorderLeft", + "BootstrapBorderMiddle", + "BootstrapBorderOuter", + "BootstrapBorderRight", + "BootstrapBorderStyle", + "BootstrapBorderTop", + "BootstrapBorderWidth", + "BootstrapBorder", + "BootstrapBoundingBoxCircles", + "BootstrapBoundingBox", + "BootstrapBoxArrowDownLeft", + "BootstrapBoxArrowDownRight", + "BootstrapBoxArrowDown", + "BootstrapBoxArrowInDownLeft", + "BootstrapBoxArrowInDownRight", + "BootstrapBoxArrowInDown", + "BootstrapBoxArrowInLeft", + "BootstrapBoxArrowInRight", + "BootstrapBoxArrowInUpLeft", + "BootstrapBoxArrowInUpRight", + "BootstrapBoxArrowInUp", + "BootstrapBoxArrowLeft", + "BootstrapBoxArrowRight", + "BootstrapBoxArrowUpLeft", + "BootstrapBoxArrowUpRight", + "BootstrapBoxArrowUp", + "BootstrapBoxFill", + "BootstrapBoxSeamFill", + "BootstrapBoxSeam", + "BootstrapBox", + "BootstrapBox2Fill", + "BootstrapBox2HeartFill", + "BootstrapBox2Heart", + "BootstrapBox2", + "BootstrapBoxes", + "BootstrapBracesAsterisk", + "BootstrapBraces", + "BootstrapBricks", + "BootstrapBriefcaseFill", + "BootstrapBriefcase", + "BootstrapBrightnessAltHighFill", + "BootstrapBrightnessAltHigh", + "BootstrapBrightnessAltLowFill", + "BootstrapBrightnessAltLow", + "BootstrapBrightnessHighFill", + "BootstrapBrightnessHigh", + "BootstrapBrightnessLowFill", + "BootstrapBrightnessLow", + "BootstrapBroadcastPin", + "BootstrapBroadcast", + "BootstrapBrowserChrome", + "BootstrapBrowserEdge", + "BootstrapBrowserFirefox", + "BootstrapBrowserSafari", + "BootstrapBrushFill", + "BootstrapBrush", + "BootstrapBucketFill", + "BootstrapBucket", + "BootstrapBugFill", + "BootstrapBug", + "BootstrapBuildingAdd", + "BootstrapBuildingCheck", + "BootstrapBuildingDash", + "BootstrapBuildingDown", + "BootstrapBuildingExclamation", + "BootstrapBuildingFillAdd", + "BootstrapBuildingFillCheck", + "BootstrapBuildingFillDash", + "BootstrapBuildingFillDown", + "BootstrapBuildingFillExclamation", + "BootstrapBuildingFillGear", + "BootstrapBuildingFillLock", + "BootstrapBuildingFillSlash", + "BootstrapBuildingFillUp", + "BootstrapBuildingFillX", + "BootstrapBuildingFill", + "BootstrapBuildingGear", + "BootstrapBuildingLock", + "BootstrapBuildingSlash", + "BootstrapBuildingUp", + "BootstrapBuildingX", + "BootstrapBuilding", + "BootstrapBuildingsFill", + "BootstrapBuildings", + "BootstrapBullseye", + "BootstrapBusFrontFill", + "BootstrapBusFront", + "BootstrapCCircleFill", + "BootstrapCCircle", + "BootstrapCSquareFill", + "BootstrapCSquare", + "BootstrapCalculatorFill", + "BootstrapCalculator", + "BootstrapCalendarCheckFill", + "BootstrapCalendarCheck", + "BootstrapCalendarDateFill", + "BootstrapCalendarDate", + "BootstrapCalendarDayFill", + "BootstrapCalendarDay", + "BootstrapCalendarEventFill", + "BootstrapCalendarEvent", + "BootstrapCalendarFill", + "BootstrapCalendarHeartFill", + "BootstrapCalendarHeart", + "BootstrapCalendarMinusFill", + "BootstrapCalendarMinus", + "BootstrapCalendarMonthFill", + "BootstrapCalendarMonth", + "BootstrapCalendarPlusFill", + "BootstrapCalendarPlus", + "BootstrapCalendarRangeFill", + "BootstrapCalendarRange", + "BootstrapCalendarWeekFill", + "BootstrapCalendarWeek", + "BootstrapCalendarXFill", + "BootstrapCalendarX", + "BootstrapCalendar", + "BootstrapCalendar2CheckFill", + "BootstrapCalendar2Check", + "BootstrapCalendar2DateFill", + "BootstrapCalendar2Date", + "BootstrapCalendar2DayFill", + "BootstrapCalendar2Day", + "BootstrapCalendar2EventFill", + "BootstrapCalendar2Event", + "BootstrapCalendar2Fill", + "BootstrapCalendar2HeartFill", + "BootstrapCalendar2Heart", + "BootstrapCalendar2MinusFill", + "BootstrapCalendar2Minus", + "BootstrapCalendar2MonthFill", + "BootstrapCalendar2Month", + "BootstrapCalendar2PlusFill", + "BootstrapCalendar2Plus", + "BootstrapCalendar2RangeFill", + "BootstrapCalendar2Range", + "BootstrapCalendar2WeekFill", + "BootstrapCalendar2Week", + "BootstrapCalendar2XFill", + "BootstrapCalendar2X", + "BootstrapCalendar2", + "BootstrapCalendar3EventFill", + "BootstrapCalendar3Event", + "BootstrapCalendar3Fill", + "BootstrapCalendar3RangeFill", + "BootstrapCalendar3Range", + "BootstrapCalendar3WeekFill", + "BootstrapCalendar3Week", + "BootstrapCalendar3", + "BootstrapCalendar4Event", + "BootstrapCalendar4Range", + "BootstrapCalendar4Week", + "BootstrapCalendar4", + "BootstrapCameraFill", + "BootstrapCameraReelsFill", + "BootstrapCameraReels", + "BootstrapCameraVideoFill", + "BootstrapCameraVideoOffFill", + "BootstrapCameraVideoOff", + "BootstrapCameraVideo", + "BootstrapCamera", + "BootstrapCamera2", + "BootstrapCapslockFill", + "BootstrapCapslock", + "BootstrapCapsulePill", + "BootstrapCapsule", + "BootstrapCarFrontFill", + "BootstrapCarFront", + "BootstrapCardChecklist", + "BootstrapCardHeading", + "BootstrapCardImage", + "BootstrapCardList", + "BootstrapCardText", + "BootstrapCaretDownFill", + "BootstrapCaretDownSquareFill", + "BootstrapCaretDownSquare", + "BootstrapCaretDown", + "BootstrapCaretLeftFill", + "BootstrapCaretLeftSquareFill", + "BootstrapCaretLeftSquare", + "BootstrapCaretLeft", + "BootstrapCaretRightFill", + "BootstrapCaretRightSquareFill", + "BootstrapCaretRightSquare", + "BootstrapCaretRight", + "BootstrapCaretUpFill", + "BootstrapCaretUpSquareFill", + "BootstrapCaretUpSquare", + "BootstrapCaretUp", + "BootstrapCartCheckFill", + "BootstrapCartCheck", + "BootstrapCartDashFill", + "BootstrapCartDash", + "BootstrapCartFill", + "BootstrapCartPlusFill", + "BootstrapCartPlus", + "BootstrapCartXFill", + "BootstrapCartX", + "BootstrapCart", + "BootstrapCart2", + "BootstrapCart3", + "BootstrapCart4", + "BootstrapCashCoin", + "BootstrapCashStack", + "BootstrapCash", + "BootstrapCassetteFill", + "BootstrapCassette", + "BootstrapCast", + "BootstrapCcCircleFill", + "BootstrapCcCircle", + "BootstrapCcSquareFill", + "BootstrapCcSquare", + "BootstrapChatDotsFill", + "BootstrapChatDots", + "BootstrapChatFill", + "BootstrapChatHeartFill", + "BootstrapChatHeart", + "BootstrapChatLeftDotsFill", + "BootstrapChatLeftDots", + "BootstrapChatLeftFill", + "BootstrapChatLeftHeartFill", + "BootstrapChatLeftHeart", + "BootstrapChatLeftQuoteFill", + "BootstrapChatLeftQuote", + "BootstrapChatLeftTextFill", + "BootstrapChatLeftText", + "BootstrapChatLeft", + "BootstrapChatQuoteFill", + "BootstrapChatQuote", + "BootstrapChatRightDotsFill", + "BootstrapChatRightDots", + "BootstrapChatRightFill", + "BootstrapChatRightHeartFill", + "BootstrapChatRightHeart", + "BootstrapChatRightQuoteFill", + "BootstrapChatRightQuote", + "BootstrapChatRightTextFill", + "BootstrapChatRightText", + "BootstrapChatRight", + "BootstrapChatSquareDotsFill", + "BootstrapChatSquareDots", + "BootstrapChatSquareFill", + "BootstrapChatSquareHeartFill", + "BootstrapChatSquareHeart", + "BootstrapChatSquareQuoteFill", + "BootstrapChatSquareQuote", + "BootstrapChatSquareTextFill", + "BootstrapChatSquareText", + "BootstrapChatSquare", + "BootstrapChatTextFill", + "BootstrapChatText", + "BootstrapChat", + "BootstrapCheckAll", + "BootstrapCheckCircleFill", + "BootstrapCheckCircle", + "BootstrapCheckLg", + "BootstrapCheckSquareFill", + "BootstrapCheckSquare", + "BootstrapCheck", + "BootstrapCheck2All", + "BootstrapCheck2Circle", + "BootstrapCheck2Square", + "BootstrapCheck2", + "BootstrapChevronBarContract", + "BootstrapChevronBarDown", + "BootstrapChevronBarExpand", + "BootstrapChevronBarLeft", + "BootstrapChevronBarRight", + "BootstrapChevronBarUp", + "BootstrapChevronCompactDown", + "BootstrapChevronCompactLeft", + "BootstrapChevronCompactRight", + "BootstrapChevronCompactUp", + "BootstrapChevronContract", + "BootstrapChevronDoubleDown", + "BootstrapChevronDoubleLeft", + "BootstrapChevronDoubleRight", + "BootstrapChevronDoubleUp", + "BootstrapChevronDown", + "BootstrapChevronExpand", + "BootstrapChevronLeft", + "BootstrapChevronRight", + "BootstrapChevronUp", + "BootstrapCircleFill", + "BootstrapCircleHalf", + "BootstrapCircleSquare", + "BootstrapCircle", + "BootstrapClipboardCheckFill", + "BootstrapClipboardCheck", + "BootstrapClipboardDataFill", + "BootstrapClipboardData", + "BootstrapClipboardFill", + "BootstrapClipboardHeartFill", + "BootstrapClipboardHeart", + "BootstrapClipboardMinusFill", + "BootstrapClipboardMinus", + "BootstrapClipboardPlusFill", + "BootstrapClipboardPlus", + "BootstrapClipboardPulse", + "BootstrapClipboardXFill", + "BootstrapClipboardX", + "BootstrapClipboard", + "BootstrapClipboard2CheckFill", + "BootstrapClipboard2Check", + "BootstrapClipboard2DataFill", + "BootstrapClipboard2Data", + "BootstrapClipboard2Fill", + "BootstrapClipboard2HeartFill", + "BootstrapClipboard2Heart", + "BootstrapClipboard2MinusFill", + "BootstrapClipboard2Minus", + "BootstrapClipboard2PlusFill", + "BootstrapClipboard2Plus", + "BootstrapClipboard2PulseFill", + "BootstrapClipboard2Pulse", + "BootstrapClipboard2XFill", + "BootstrapClipboard2X", + "BootstrapClipboard2", + "BootstrapClockFill", + "BootstrapClockHistory", + "BootstrapClock", + "BootstrapCloudArrowDownFill", + "BootstrapCloudArrowDown", + "BootstrapCloudArrowUpFill", + "BootstrapCloudArrowUp", + "BootstrapCloudCheckFill", + "BootstrapCloudCheck", + "BootstrapCloudDownloadFill", + "BootstrapCloudDownload", + "BootstrapCloudDrizzleFill", + "BootstrapCloudDrizzle", + "BootstrapCloudFill", + "BootstrapCloudFogFill", + "BootstrapCloudFog", + "BootstrapCloudFog2Fill", + "BootstrapCloudFog2", + "BootstrapCloudHailFill", + "BootstrapCloudHail", + "BootstrapCloudHazeFill", + "BootstrapCloudHaze", + "BootstrapCloudHaze2Fill", + "BootstrapCloudHaze2", + "BootstrapCloudLightningFill", + "BootstrapCloudLightningRainFill", + "BootstrapCloudLightningRain", + "BootstrapCloudLightning", + "BootstrapCloudMinusFill", + "BootstrapCloudMinus", + "BootstrapCloudMoonFill", + "BootstrapCloudMoon", + "BootstrapCloudPlusFill", + "BootstrapCloudPlus", + "BootstrapCloudRainFill", + "BootstrapCloudRainHeavyFill", + "BootstrapCloudRainHeavy", + "BootstrapCloudRain", + "BootstrapCloudSlashFill", + "BootstrapCloudSlash", + "BootstrapCloudSleetFill", + "BootstrapCloudSleet", + "BootstrapCloudSnowFill", + "BootstrapCloudSnow", + "BootstrapCloudSunFill", + "BootstrapCloudSun", + "BootstrapCloudUploadFill", + "BootstrapCloudUpload", + "BootstrapCloud", + "BootstrapCloudsFill", + "BootstrapClouds", + "BootstrapCloudyFill", + "BootstrapCloudy", + "BootstrapCodeSlash", + "BootstrapCodeSquare", + "BootstrapCode", + "BootstrapCoin", + "BootstrapCollectionFill", + "BootstrapCollectionPlayFill", + "BootstrapCollectionPlay", + "BootstrapCollection", + "BootstrapColumnsGap", + "BootstrapColumns", + "BootstrapCommand", + "BootstrapCompassFill", + "BootstrapCompass", + "BootstrapConeStriped", + "BootstrapCone", + "BootstrapController", + "BootstrapCpuFill", + "BootstrapCpu", + "BootstrapCreditCard2BackFill", + "BootstrapCreditCard2Back", + "BootstrapCreditCard2FrontFill", + "BootstrapCreditCard2Front", + "BootstrapCreditCardFill", + "BootstrapCreditCard", + "BootstrapCrop", + "BootstrapCupFill", + "BootstrapCupHotFill", + "BootstrapCupHot", + "BootstrapCupStraw", + "BootstrapCup", + "BootstrapCurrencyBitcoin", + "BootstrapCurrencyDollar", + "BootstrapCurrencyEuro", + "BootstrapCurrencyExchange", + "BootstrapCurrencyPound", + "BootstrapCurrencyRupee", + "BootstrapCurrencyYen", + "BootstrapCursorFill", + "BootstrapCursorText", + "BootstrapCursor", + "BootstrapDashCircleDotted", + "BootstrapDashCircleFill", + "BootstrapDashCircle", + "BootstrapDashLg", + "BootstrapDashSquareDotted", + "BootstrapDashSquareFill", + "BootstrapDashSquare", + "BootstrapDash", + "BootstrapDatabaseAdd", + "BootstrapDatabaseCheck", + "BootstrapDatabaseDash", + "BootstrapDatabaseDown", + "BootstrapDatabaseExclamation", + "BootstrapDatabaseFillAdd", + "BootstrapDatabaseFillCheck", + "BootstrapDatabaseFillDash", + "BootstrapDatabaseFillDown", + "BootstrapDatabaseFillExclamation", + "BootstrapDatabaseFillGear", + "BootstrapDatabaseFillLock", + "BootstrapDatabaseFillSlash", + "BootstrapDatabaseFillUp", + "BootstrapDatabaseFillX", + "BootstrapDatabaseFill", + "BootstrapDatabaseGear", + "BootstrapDatabaseLock", + "BootstrapDatabaseSlash", + "BootstrapDatabaseUp", + "BootstrapDatabaseX", + "BootstrapDatabase", + "BootstrapDeviceHddFill", + "BootstrapDeviceHdd", + "BootstrapDeviceSsdFill", + "BootstrapDeviceSsd", + "BootstrapDiagram2Fill", + "BootstrapDiagram2", + "BootstrapDiagram3Fill", + "BootstrapDiagram3", + "BootstrapDiamondFill", + "BootstrapDiamondHalf", + "BootstrapDiamond", + "BootstrapDice1Fill", + "BootstrapDice1", + "BootstrapDice2Fill", + "BootstrapDice2", + "BootstrapDice3Fill", + "BootstrapDice3", + "BootstrapDice4Fill", + "BootstrapDice4", + "BootstrapDice5Fill", + "BootstrapDice5", + "BootstrapDice6Fill", + "BootstrapDice6", + "BootstrapDiscFill", + "BootstrapDisc", + "BootstrapDiscord", + "BootstrapDisplayFill", + "BootstrapDisplay", + "BootstrapDisplayportFill", + "BootstrapDisplayport", + "BootstrapDistributeHorizontal", + "BootstrapDistributeVertical", + "BootstrapDoorClosedFill", + "BootstrapDoorClosed", + "BootstrapDoorOpenFill", + "BootstrapDoorOpen", + "BootstrapDot", + "BootstrapDownload", + "BootstrapDpadFill", + "BootstrapDpad", + "BootstrapDribbble", + "BootstrapDropbox", + "BootstrapDropletFill", + "BootstrapDropletHalf", + "BootstrapDroplet", + "BootstrapEarFill", + "BootstrapEar", + "BootstrapEarbuds", + "BootstrapEaselFill", + "BootstrapEasel", + "BootstrapEasel2Fill", + "BootstrapEasel2", + "BootstrapEasel3Fill", + "BootstrapEasel3", + "BootstrapEggFill", + "BootstrapEggFried", + "BootstrapEgg", + "BootstrapEjectFill", + "BootstrapEject", + "BootstrapEmojiAngryFill", + "BootstrapEmojiAngry", + "BootstrapEmojiDizzyFill", + "BootstrapEmojiDizzy", + "BootstrapEmojiExpressionlessFill", + "BootstrapEmojiExpressionless", + "BootstrapEmojiFrownFill", + "BootstrapEmojiFrown", + "BootstrapEmojiHeartEyesFill", + "BootstrapEmojiHeartEyes", + "BootstrapEmojiKissFill", + "BootstrapEmojiKiss", + "BootstrapEmojiLaughingFill", + "BootstrapEmojiLaughing", + "BootstrapEmojiNeutralFill", + "BootstrapEmojiNeutral", + "BootstrapEmojiSmileFill", + "BootstrapEmojiSmileUpsideDownFill", + "BootstrapEmojiSmileUpsideDown", + "BootstrapEmojiSmile", + "BootstrapEmojiSunglassesFill", + "BootstrapEmojiSunglasses", + "BootstrapEmojiWinkFill", + "BootstrapEmojiWink", + "BootstrapEnvelopeAtFill", + "BootstrapEnvelopeAt", + "BootstrapEnvelopeCheckFill", + "BootstrapEnvelopeCheck", + "BootstrapEnvelopeDashFill", + "BootstrapEnvelopeDash", + "BootstrapEnvelopeExclamationFill", + "BootstrapEnvelopeExclamation", + "BootstrapEnvelopeFill", + "BootstrapEnvelopeHeartFill", + "BootstrapEnvelopeHeart", + "BootstrapEnvelopeOpenFill", + "BootstrapEnvelopeOpenHeartFill", + "BootstrapEnvelopeOpenHeart", + "BootstrapEnvelopeOpen", + "BootstrapEnvelopePaperFill", + "BootstrapEnvelopePaperHeartFill", + "BootstrapEnvelopePaperHeart", + "BootstrapEnvelopePaper", + "BootstrapEnvelopePlusFill", + "BootstrapEnvelopePlus", + "BootstrapEnvelopeSlashFill", + "BootstrapEnvelopeSlash", + "BootstrapEnvelopeXFill", + "BootstrapEnvelopeX", + "BootstrapEnvelope", + "BootstrapEraserFill", + "BootstrapEraser", + "BootstrapEscape", + "BootstrapEthernet", + "BootstrapEvFrontFill", + "BootstrapEvFront", + "BootstrapEvStationFill", + "BootstrapEvStation", + "BootstrapExclamationCircleFill", + "BootstrapExclamationCircle", + "BootstrapExclamationDiamondFill", + "BootstrapExclamationDiamond", + "BootstrapExclamationLg", + "BootstrapExclamationOctagonFill", + "BootstrapExclamationOctagon", + "BootstrapExclamationSquareFill", + "BootstrapExclamationSquare", + "BootstrapExclamationTriangleFill", + "BootstrapExclamationTriangle", + "BootstrapExclamation", + "BootstrapExclude", + "BootstrapExplicitFill", + "BootstrapExplicit", + "BootstrapEyeFill", + "BootstrapEyeSlashFill", + "BootstrapEyeSlash", + "BootstrapEye", + "BootstrapEyedropper", + "BootstrapEyeglasses", + "BootstrapFacebook", + "BootstrapFan", + "BootstrapFastForwardBtnFill", + "BootstrapFastForwardBtn", + "BootstrapFastForwardCircleFill", + "BootstrapFastForwardCircle", + "BootstrapFastForwardFill", + "BootstrapFastForward", + "BootstrapFileArrowDownFill", + "BootstrapFileArrowDown", + "BootstrapFileArrowUpFill", + "BootstrapFileArrowUp", + "BootstrapFileBarGraphFill", + "BootstrapFileBarGraph", + "BootstrapFileBinaryFill", + "BootstrapFileBinary", + "BootstrapFileBreakFill", + "BootstrapFileBreak", + "BootstrapFileCheckFill", + "BootstrapFileCheck", + "BootstrapFileCodeFill", + "BootstrapFileCode", + "BootstrapFileDiffFill", + "BootstrapFileDiff", + "BootstrapFileEarmarkArrowDownFill", + "BootstrapFileEarmarkArrowDown", + "BootstrapFileEarmarkArrowUpFill", + "BootstrapFileEarmarkArrowUp", + "BootstrapFileEarmarkBarGraphFill", + "BootstrapFileEarmarkBarGraph", + "BootstrapFileEarmarkBinaryFill", + "BootstrapFileEarmarkBinary", + "BootstrapFileEarmarkBreakFill", + "BootstrapFileEarmarkBreak", + "BootstrapFileEarmarkCheckFill", + "BootstrapFileEarmarkCheck", + "BootstrapFileEarmarkCodeFill", + "BootstrapFileEarmarkCode", + "BootstrapFileEarmarkDiffFill", + "BootstrapFileEarmarkDiff", + "BootstrapFileEarmarkEaselFill", + "BootstrapFileEarmarkEasel", + "BootstrapFileEarmarkExcelFill", + "BootstrapFileEarmarkExcel", + "BootstrapFileEarmarkFill", + "BootstrapFileEarmarkFontFill", + "BootstrapFileEarmarkFont", + "BootstrapFileEarmarkImageFill", + "BootstrapFileEarmarkImage", + "BootstrapFileEarmarkLockFill", + "BootstrapFileEarmarkLock", + "BootstrapFileEarmarkLock2Fill", + "BootstrapFileEarmarkLock2", + "BootstrapFileEarmarkMedicalFill", + "BootstrapFileEarmarkMedical", + "BootstrapFileEarmarkMinusFill", + "BootstrapFileEarmarkMinus", + "BootstrapFileEarmarkMusicFill", + "BootstrapFileEarmarkMusic", + "BootstrapFileEarmarkPdfFill", + "BootstrapFileEarmarkPdf", + "BootstrapFileEarmarkPersonFill", + "BootstrapFileEarmarkPerson", + "BootstrapFileEarmarkPlayFill", + "BootstrapFileEarmarkPlay", + "BootstrapFileEarmarkPlusFill", + "BootstrapFileEarmarkPlus", + "BootstrapFileEarmarkPostFill", + "BootstrapFileEarmarkPost", + "BootstrapFileEarmarkPptFill", + "BootstrapFileEarmarkPpt", + "BootstrapFileEarmarkRichtextFill", + "BootstrapFileEarmarkRichtext", + "BootstrapFileEarmarkRuledFill", + "BootstrapFileEarmarkRuled", + "BootstrapFileEarmarkSlidesFill", + "BootstrapFileEarmarkSlides", + "BootstrapFileEarmarkSpreadsheetFill", + "BootstrapFileEarmarkSpreadsheet", + "BootstrapFileEarmarkTextFill", + "BootstrapFileEarmarkText", + "BootstrapFileEarmarkWordFill", + "BootstrapFileEarmarkWord", + "BootstrapFileEarmarkXFill", + "BootstrapFileEarmarkX", + "BootstrapFileEarmarkZipFill", + "BootstrapFileEarmarkZip", + "BootstrapFileEarmark", + "BootstrapFileEaselFill", + "BootstrapFileEasel", + "BootstrapFileExcelFill", + "BootstrapFileExcel", + "BootstrapFileFill", + "BootstrapFileFontFill", + "BootstrapFileFont", + "BootstrapFileImageFill", + "BootstrapFileImage", + "BootstrapFileLockFill", + "BootstrapFileLock", + "BootstrapFileLock2Fill", + "BootstrapFileLock2", + "BootstrapFileMedicalFill", + "BootstrapFileMedical", + "BootstrapFileMinusFill", + "BootstrapFileMinus", + "BootstrapFileMusicFill", + "BootstrapFileMusic", + "BootstrapFilePdfFill", + "BootstrapFilePdf", + "BootstrapFilePersonFill", + "BootstrapFilePerson", + "BootstrapFilePlayFill", + "BootstrapFilePlay", + "BootstrapFilePlusFill", + "BootstrapFilePlus", + "BootstrapFilePostFill", + "BootstrapFilePost", + "BootstrapFilePptFill", + "BootstrapFilePpt", + "BootstrapFileRichtextFill", + "BootstrapFileRichtext", + "BootstrapFileRuledFill", + "BootstrapFileRuled", + "BootstrapFileSlidesFill", + "BootstrapFileSlides", + "BootstrapFileSpreadsheetFill", + "BootstrapFileSpreadsheet", + "BootstrapFileTextFill", + "BootstrapFileText", + "BootstrapFileWordFill", + "BootstrapFileWord", + "BootstrapFileXFill", + "BootstrapFileX", + "BootstrapFileZipFill", + "BootstrapFileZip", + "BootstrapFile", + "BootstrapFilesAlt", + "BootstrapFiles", + "BootstrapFiletypeAac", + "BootstrapFiletypeAi", + "BootstrapFiletypeBmp", + "BootstrapFiletypeCs", + "BootstrapFiletypeCss", + "BootstrapFiletypeCsv", + "BootstrapFiletypeDoc", + "BootstrapFiletypeDocx", + "BootstrapFiletypeExe", + "BootstrapFiletypeGif", + "BootstrapFiletypeHeic", + "BootstrapFiletypeHtml", + "BootstrapFiletypeJava", + "BootstrapFiletypeJpg", + "BootstrapFiletypeJs", + "BootstrapFiletypeJson", + "BootstrapFiletypeJsx", + "BootstrapFiletypeKey", + "BootstrapFiletypeM4P", + "BootstrapFiletypeMd", + "BootstrapFiletypeMdx", + "BootstrapFiletypeMov", + "BootstrapFiletypeMp3", + "BootstrapFiletypeMp4", + "BootstrapFiletypeOtf", + "BootstrapFiletypePdf", + "BootstrapFiletypePhp", + "BootstrapFiletypePng", + "BootstrapFiletypePpt", + "BootstrapFiletypePptx", + "BootstrapFiletypePsd", + "BootstrapFiletypePy", + "BootstrapFiletypeRaw", + "BootstrapFiletypeRb", + "BootstrapFiletypeSass", + "BootstrapFiletypeScss", + "BootstrapFiletypeSh", + "BootstrapFiletypeSql", + "BootstrapFiletypeSvg", + "BootstrapFiletypeTiff", + "BootstrapFiletypeTsx", + "BootstrapFiletypeTtf", + "BootstrapFiletypeTxt", + "BootstrapFiletypeWav", + "BootstrapFiletypeWoff", + "BootstrapFiletypeXls", + "BootstrapFiletypeXlsx", + "BootstrapFiletypeXml", + "BootstrapFiletypeYml", + "BootstrapFilm", + "BootstrapFilterCircleFill", + "BootstrapFilterCircle", + "BootstrapFilterLeft", + "BootstrapFilterRight", + "BootstrapFilterSquareFill", + "BootstrapFilterSquare", + "BootstrapFilter", + "BootstrapFingerprint", + "BootstrapFire", + "BootstrapFlagFill", + "BootstrapFlag", + "BootstrapFlower1", + "BootstrapFlower2", + "BootstrapFlower3", + "BootstrapFolderCheck", + "BootstrapFolderFill", + "BootstrapFolderMinus", + "BootstrapFolderPlus", + "BootstrapFolderSymlinkFill", + "BootstrapFolderSymlink", + "BootstrapFolderX", + "BootstrapFolder", + "BootstrapFolder2Open", + "BootstrapFolder2", + "BootstrapFonts", + "BootstrapForwardFill", + "BootstrapForward", + "BootstrapFront", + "BootstrapFuelPumpDieselFill", + "BootstrapFuelPumpDiesel", + "BootstrapFuelPumpFill", + "BootstrapFuelPump", + "BootstrapFullscreenExit", + "BootstrapFullscreen", + "BootstrapFunnelFill", + "BootstrapFunnel", + "BootstrapGearFill", + "BootstrapGearWideConnected", + "BootstrapGearWide", + "BootstrapGear", + "BootstrapGem", + "BootstrapGenderAmbiguous", + "BootstrapGenderFemale", + "BootstrapGenderMale", + "BootstrapGenderTrans", + "BootstrapGeoAltFill", + "BootstrapGeoAlt", + "BootstrapGeoFill", + "BootstrapGeo", + "BootstrapGiftFill", + "BootstrapGift", + "BootstrapGit", + "BootstrapGithub", + "BootstrapGlobeAmericas", + "BootstrapGlobeAsiaAustralia", + "BootstrapGlobeCentralSouthAsia", + "BootstrapGlobeEuropeAfrica", + "BootstrapGlobe", + "BootstrapGlobe2", + "BootstrapGooglePlay", + "BootstrapGoogle", + "BootstrapGpuCard", + "BootstrapGraphDownArrow", + "BootstrapGraphDown", + "BootstrapGraphUpArrow", + "BootstrapGraphUp", + "BootstrapGrid1X2Fill", + "BootstrapGrid1X2", + "BootstrapGrid3X2GapFill", + "BootstrapGrid3X2Gap", + "BootstrapGrid3X2", + "BootstrapGrid3X3GapFill", + "BootstrapGrid3X3Gap", + "BootstrapGrid3X3", + "BootstrapGridFill", + "BootstrapGrid", + "BootstrapGripHorizontal", + "BootstrapGripVertical", + "BootstrapHCircleFill", + "BootstrapHCircle", + "BootstrapHSquareFill", + "BootstrapHSquare", + "BootstrapHammer", + "BootstrapHandIndexFill", + "BootstrapHandIndexThumbFill", + "BootstrapHandIndexThumb", + "BootstrapHandIndex", + "BootstrapHandThumbsDownFill", + "BootstrapHandThumbsDown", + "BootstrapHandThumbsUpFill", + "BootstrapHandThumbsUp", + "BootstrapHandbagFill", + "BootstrapHandbag", + "BootstrapHash", + "BootstrapHddFill", + "BootstrapHddNetworkFill", + "BootstrapHddNetwork", + "BootstrapHddRackFill", + "BootstrapHddRack", + "BootstrapHddStackFill", + "BootstrapHddStack", + "BootstrapHdd", + "BootstrapHdmiFill", + "BootstrapHdmi", + "BootstrapHeadphones", + "BootstrapHeadsetVr", + "BootstrapHeadset", + "BootstrapHeartArrow", + "BootstrapHeartFill", + "BootstrapHeartHalf", + "BootstrapHeartPulseFill", + "BootstrapHeartPulse", + "BootstrapHeart", + "BootstrapHeartbreakFill", + "BootstrapHeartbreak", + "BootstrapHearts", + "BootstrapHeptagonFill", + "BootstrapHeptagonHalf", + "BootstrapHeptagon", + "BootstrapHexagonFill", + "BootstrapHexagonHalf", + "BootstrapHexagon", + "BootstrapHospitalFill", + "BootstrapHospital", + "BootstrapHourglassBottom", + "BootstrapHourglassSplit", + "BootstrapHourglassTop", + "BootstrapHourglass", + "BootstrapHouseAddFill", + "BootstrapHouseAdd", + "BootstrapHouseCheckFill", + "BootstrapHouseCheck", + "BootstrapHouseDashFill", + "BootstrapHouseDash", + "BootstrapHouseDoorFill", + "BootstrapHouseDoor", + "BootstrapHouseDownFill", + "BootstrapHouseDown", + "BootstrapHouseExclamationFill", + "BootstrapHouseExclamation", + "BootstrapHouseFill", + "BootstrapHouseGearFill", + "BootstrapHouseGear", + "BootstrapHouseHeartFill", + "BootstrapHouseHeart", + "BootstrapHouseLockFill", + "BootstrapHouseLock", + "BootstrapHouseSlashFill", + "BootstrapHouseSlash", + "BootstrapHouseUpFill", + "BootstrapHouseUp", + "BootstrapHouseXFill", + "BootstrapHouseX", + "BootstrapHouse", + "BootstrapHousesFill", + "BootstrapHouses", + "BootstrapHr", + "BootstrapHurricane", + "BootstrapHypnotize", + "BootstrapImageAlt", + "BootstrapImageFill", + "BootstrapImage", + "BootstrapImages", + "BootstrapInboxFill", + "BootstrapInbox", + "BootstrapInboxesFill", + "BootstrapInboxes", + "BootstrapIncognito", + "BootstrapIndent", + "BootstrapInfinity", + "BootstrapInfoCircleFill", + "BootstrapInfoCircle", + "BootstrapInfoLg", + "BootstrapInfoSquareFill", + "BootstrapInfoSquare", + "BootstrapInfo", + "BootstrapInputCursorText", + "BootstrapInputCursor", + "BootstrapInstagram", + "BootstrapIntersect", + "BootstrapJournalAlbum", + "BootstrapJournalArrowDown", + "BootstrapJournalArrowUp", + "BootstrapJournalBookmarkFill", + "BootstrapJournalBookmark", + "BootstrapJournalCheck", + "BootstrapJournalCode", + "BootstrapJournalMedical", + "BootstrapJournalMinus", + "BootstrapJournalPlus", + "BootstrapJournalRichtext", + "BootstrapJournalText", + "BootstrapJournalX", + "BootstrapJournal", + "BootstrapJournals", + "BootstrapJoystick", + "BootstrapJustifyLeft", + "BootstrapJustifyRight", + "BootstrapJustify", + "BootstrapKanbanFill", + "BootstrapKanban", + "BootstrapKeyFill", + "BootstrapKey", + "BootstrapKeyboardFill", + "BootstrapKeyboard", + "BootstrapLadder", + "BootstrapLampFill", + "BootstrapLamp", + "BootstrapLaptopFill", + "BootstrapLaptop", + "BootstrapLayerBackward", + "BootstrapLayerForward", + "BootstrapLayersFill", + "BootstrapLayersHalf", + "BootstrapLayers", + "BootstrapLayoutSidebarInsetReverse", + "BootstrapLayoutSidebarInset", + "BootstrapLayoutSidebarReverse", + "BootstrapLayoutSidebar", + "BootstrapLayoutSplit", + "BootstrapLayoutTextSidebarReverse", + "BootstrapLayoutTextSidebar", + "BootstrapLayoutTextWindowReverse", + "BootstrapLayoutTextWindow", + "BootstrapLayoutThreeColumns", + "BootstrapLayoutWtf", + "BootstrapLifePreserver", + "BootstrapLightbulbFill", + "BootstrapLightbulbOffFill", + "BootstrapLightbulbOff", + "BootstrapLightbulb", + "BootstrapLightningChargeFill", + "BootstrapLightningCharge", + "BootstrapLightningFill", + "BootstrapLightning", + "BootstrapLine", + "BootstrapLink45Deg", + "BootstrapLink", + "BootstrapLinkedin", + "BootstrapListCheck", + "BootstrapListColumnsReverse", + "BootstrapListColumns", + "BootstrapListNested", + "BootstrapListOl", + "BootstrapListStars", + "BootstrapListTask", + "BootstrapListUl", + "BootstrapList", + "BootstrapLockFill", + "BootstrapLock", + "BootstrapLungsFill", + "BootstrapLungs", + "BootstrapMagic", + "BootstrapMagnetFill", + "BootstrapMagnet", + "BootstrapMailbox", + "BootstrapMailbox2", + "BootstrapMapFill", + "BootstrapMap", + "BootstrapMarkdownFill", + "BootstrapMarkdown", + "BootstrapMask", + "BootstrapMastodon", + "BootstrapMedium", + "BootstrapMegaphoneFill", + "BootstrapMegaphone", + "BootstrapMemory", + "BootstrapMenuAppFill", + "BootstrapMenuApp", + "BootstrapMenuButtonFill", + "BootstrapMenuButtonWideFill", + "BootstrapMenuButtonWide", + "BootstrapMenuButton", + "BootstrapMenuDown", + "BootstrapMenuUp", + "BootstrapMessenger", + "BootstrapMeta", + "BootstrapMicFill", + "BootstrapMicMuteFill", + "BootstrapMicMute", + "BootstrapMic", + "BootstrapMicrosoftTeams", + "BootstrapMicrosoft", + "BootstrapMinecartLoaded", + "BootstrapMinecart", + "BootstrapModemFill", + "BootstrapModem", + "BootstrapMoisture", + "BootstrapMoonFill", + "BootstrapMoonStarsFill", + "BootstrapMoonStars", + "BootstrapMoon", + "BootstrapMortarboardFill", + "BootstrapMortarboard", + "BootstrapMotherboardFill", + "BootstrapMotherboard", + "BootstrapMouseFill", + "BootstrapMouse", + "BootstrapMouse2Fill", + "BootstrapMouse2", + "BootstrapMouse3Fill", + "BootstrapMouse3", + "BootstrapMusicNoteBeamed", + "BootstrapMusicNoteList", + "BootstrapMusicNote", + "BootstrapMusicPlayerFill", + "BootstrapMusicPlayer", + "BootstrapNewspaper", + "BootstrapNintendoSwitch", + "BootstrapNodeMinusFill", + "BootstrapNodeMinus", + "BootstrapNodePlusFill", + "BootstrapNodePlus", + "BootstrapNutFill", + "BootstrapNut", + "BootstrapNvidia", + "BootstrapOctagonFill", + "BootstrapOctagonHalf", + "BootstrapOctagon", + "BootstrapOpticalAudioFill", + "BootstrapOpticalAudio", + "BootstrapOption", + "BootstrapOutlet", + "BootstrapPCircleFill", + "BootstrapPCircle", + "BootstrapPSquareFill", + "BootstrapPSquare", + "BootstrapPaintBucket", + "BootstrapPaletteFill", + "BootstrapPalette", + "BootstrapPalette2", + "BootstrapPaperclip", + "BootstrapParagraph", + "BootstrapPassFill", + "BootstrapPass", + "BootstrapPatchCheckFill", + "BootstrapPatchCheck", + "BootstrapPatchExclamationFill", + "BootstrapPatchExclamation", + "BootstrapPatchMinusFill", + "BootstrapPatchMinus", + "BootstrapPatchPlusFill", + "BootstrapPatchPlus", + "BootstrapPatchQuestionFill", + "BootstrapPatchQuestion", + "BootstrapPauseBtnFill", + "BootstrapPauseBtn", + "BootstrapPauseCircleFill", + "BootstrapPauseCircle", + "BootstrapPauseFill", + "BootstrapPause", + "BootstrapPaypal", + "BootstrapPcDisplayHorizontal", + "BootstrapPcDisplay", + "BootstrapPcHorizontal", + "BootstrapPc", + "BootstrapPciCard", + "BootstrapPeaceFill", + "BootstrapPeace", + "BootstrapPenFill", + "BootstrapPen", + "BootstrapPencilFill", + "BootstrapPencilSquare", + "BootstrapPencil", + "BootstrapPentagonFill", + "BootstrapPentagonHalf", + "BootstrapPentagon", + "BootstrapPeopleFill", + "BootstrapPeople", + "BootstrapPercent", + "BootstrapPersonAdd", + "BootstrapPersonBadgeFill", + "BootstrapPersonBadge", + "BootstrapPersonBoundingBox", + "BootstrapPersonCheckFill", + "BootstrapPersonCheck", + "BootstrapPersonCircle", + "BootstrapPersonDashFill", + "BootstrapPersonDash", + "BootstrapPersonDown", + "BootstrapPersonExclamation", + "BootstrapPersonFillAdd", + "BootstrapPersonFillCheck", + "BootstrapPersonFillDash", + "BootstrapPersonFillDown", + "BootstrapPersonFillExclamation", + "BootstrapPersonFillGear", + "BootstrapPersonFillLock", + "BootstrapPersonFillSlash", + "BootstrapPersonFillUp", + "BootstrapPersonFillX", + "BootstrapPersonFill", + "BootstrapPersonGear", + "BootstrapPersonHeart", + "BootstrapPersonHearts", + "BootstrapPersonLinesFill", + "BootstrapPersonLock", + "BootstrapPersonPlusFill", + "BootstrapPersonPlus", + "BootstrapPersonRolodex", + "BootstrapPersonSlash", + "BootstrapPersonSquare", + "BootstrapPersonUp", + "BootstrapPersonVcardFill", + "BootstrapPersonVcard", + "BootstrapPersonVideo", + "BootstrapPersonVideo2", + "BootstrapPersonVideo3", + "BootstrapPersonWorkspace", + "BootstrapPersonXFill", + "BootstrapPersonX", + "BootstrapPerson", + "BootstrapPhoneFill", + "BootstrapPhoneFlip", + "BootstrapPhoneLandscapeFill", + "BootstrapPhoneLandscape", + "BootstrapPhoneVibrateFill", + "BootstrapPhoneVibrate", + "BootstrapPhone", + "BootstrapPieChartFill", + "BootstrapPieChart", + "BootstrapPiggyBankFill", + "BootstrapPiggyBank", + "BootstrapPinAngleFill", + "BootstrapPinAngle", + "BootstrapPinFill", + "BootstrapPinMapFill", + "BootstrapPinMap", + "BootstrapPin", + "BootstrapPinterest", + "BootstrapPipFill", + "BootstrapPip", + "BootstrapPlayBtnFill", + "BootstrapPlayBtn", + "BootstrapPlayCircleFill", + "BootstrapPlayCircle", + "BootstrapPlayFill", + "BootstrapPlay", + "BootstrapPlaystation", + "BootstrapPlugFill", + "BootstrapPlug", + "BootstrapPlugin", + "BootstrapPlusCircleDotted", + "BootstrapPlusCircleFill", + "BootstrapPlusCircle", + "BootstrapPlusLg", + "BootstrapPlusSlashMinus", + "BootstrapPlusSquareDotted", + "BootstrapPlusSquareFill", + "BootstrapPlusSquare", + "BootstrapPlus", + "BootstrapPostageFill", + "BootstrapPostageHeartFill", + "BootstrapPostageHeart", + "BootstrapPostage", + "BootstrapPostcardFill", + "BootstrapPostcardHeartFill", + "BootstrapPostcardHeart", + "BootstrapPostcard", + "BootstrapPower", + "BootstrapPrescription", + "BootstrapPrescription2", + "BootstrapPrinterFill", + "BootstrapPrinter", + "BootstrapProjectorFill", + "BootstrapProjector", + "BootstrapPuzzleFill", + "BootstrapPuzzle", + "BootstrapQrCodeScan", + "BootstrapQrCode", + "BootstrapQuestionCircleFill", + "BootstrapQuestionCircle", + "BootstrapQuestionDiamondFill", + "BootstrapQuestionDiamond", + "BootstrapQuestionLg", + "BootstrapQuestionOctagonFill", + "BootstrapQuestionOctagon", + "BootstrapQuestionSquareFill", + "BootstrapQuestionSquare", + "BootstrapQuestion", + "BootstrapQuora", + "BootstrapQuote", + "BootstrapRCircleFill", + "BootstrapRCircle", + "BootstrapRSquareFill", + "BootstrapRSquare", + "BootstrapRadioactive", + "BootstrapRainbow", + "BootstrapReceiptCutoff", + "BootstrapReceipt", + "BootstrapReception0", + "BootstrapReception1", + "BootstrapReception2", + "BootstrapReception3", + "BootstrapReception4", + "BootstrapRecordBtnFill", + "BootstrapRecordBtn", + "BootstrapRecordCircleFill", + "BootstrapRecordCircle", + "BootstrapRecordFill", + "BootstrapRecord", + "BootstrapRecord2Fill", + "BootstrapRecord2", + "BootstrapRecycle", + "BootstrapReddit", + "BootstrapRegex", + "BootstrapRepeat1", + "BootstrapRepeat", + "BootstrapReplyAllFill", + "BootstrapReplyAll", + "BootstrapReplyFill", + "BootstrapReply", + "BootstrapRewindBtnFill", + "BootstrapRewindBtn", + "BootstrapRewindCircleFill", + "BootstrapRewindCircle", + "BootstrapRewindFill", + "BootstrapRewind", + "BootstrapRobot", + "BootstrapRocketFill", + "BootstrapRocketTakeoffFill", + "BootstrapRocketTakeoff", + "BootstrapRocket", + "BootstrapRouterFill", + "BootstrapRouter", + "BootstrapRssFill", + "BootstrapRss", + "BootstrapRulers", + "BootstrapSafeFill", + "BootstrapSafe", + "BootstrapSafe2Fill", + "BootstrapSafe2", + "BootstrapSaveFill", + "BootstrapSave", + "BootstrapSave2Fill", + "BootstrapSave2", + "BootstrapScissors", + "BootstrapScooter", + "BootstrapScrewdriver", + "BootstrapSdCardFill", + "BootstrapSdCard", + "BootstrapSearchHeartFill", + "BootstrapSearchHeart", + "BootstrapSearch", + "BootstrapSegmentedNav", + "BootstrapSendCheckFill", + "BootstrapSendCheck", + "BootstrapSendDashFill", + "BootstrapSendDash", + "BootstrapSendExclamationFill", + "BootstrapSendExclamation", + "BootstrapSendFill", + "BootstrapSendPlusFill", + "BootstrapSendPlus", + "BootstrapSendSlashFill", + "BootstrapSendSlash", + "BootstrapSendXFill", + "BootstrapSendX", + "BootstrapSend", + "BootstrapServer", + "BootstrapShareFill", + "BootstrapShare", + "BootstrapShieldCheck", + "BootstrapShieldExclamation", + "BootstrapShieldFillCheck", + "BootstrapShieldFillExclamation", + "BootstrapShieldFillMinus", + "BootstrapShieldFillPlus", + "BootstrapShieldFillX", + "BootstrapShieldFill", + "BootstrapShieldLockFill", + "BootstrapShieldLock", + "BootstrapShieldMinus", + "BootstrapShieldPlus", + "BootstrapShieldShaded", + "BootstrapShieldSlashFill", + "BootstrapShieldSlash", + "BootstrapShieldX", + "BootstrapShield", + "BootstrapShiftFill", + "BootstrapShift", + "BootstrapShopWindow", + "BootstrapShop", + "BootstrapShuffle", + "BootstrapSignDeadEndFill", + "BootstrapSignDeadEnd", + "BootstrapSignDoNotEnterFill", + "BootstrapSignDoNotEnter", + "BootstrapSignIntersectionFill", + "BootstrapSignIntersectionSideFill", + "BootstrapSignIntersectionSide", + "BootstrapSignIntersectionTFill", + "BootstrapSignIntersectionT", + "BootstrapSignIntersectionYFill", + "BootstrapSignIntersectionY", + "BootstrapSignIntersection", + "BootstrapSignMergeLeftFill", + "BootstrapSignMergeLeft", + "BootstrapSignMergeRightFill", + "BootstrapSignMergeRight", + "BootstrapSignNoLeftTurnFill", + "BootstrapSignNoLeftTurn", + "BootstrapSignNoParkingFill", + "BootstrapSignNoParking", + "BootstrapSignNoRightTurnFill", + "BootstrapSignNoRightTurn", + "BootstrapSignRailroadFill", + "BootstrapSignRailroad", + "BootstrapSignStopFill", + "BootstrapSignStopLightsFill", + "BootstrapSignStopLights", + "BootstrapSignStop", + "BootstrapSignTurnLeftFill", + "BootstrapSignTurnLeft", + "BootstrapSignTurnRightFill", + "BootstrapSignTurnRight", + "BootstrapSignTurnSlightLeftFill", + "BootstrapSignTurnSlightLeft", + "BootstrapSignTurnSlightRightFill", + "BootstrapSignTurnSlightRight", + "BootstrapSignYieldFill", + "BootstrapSignYield", + "BootstrapSignal", + "BootstrapSignpost2Fill", + "BootstrapSignpost2", + "BootstrapSignpostFill", + "BootstrapSignpostSplitFill", + "BootstrapSignpostSplit", + "BootstrapSignpost", + "BootstrapSimFill", + "BootstrapSim", + "BootstrapSinaWeibo", + "BootstrapSkipBackwardBtnFill", + "BootstrapSkipBackwardBtn", + "BootstrapSkipBackwardCircleFill", + "BootstrapSkipBackwardCircle", + "BootstrapSkipBackwardFill", + "BootstrapSkipBackward", + "BootstrapSkipEndBtnFill", + "BootstrapSkipEndBtn", + "BootstrapSkipEndCircleFill", + "BootstrapSkipEndCircle", + "BootstrapSkipEndFill", + "BootstrapSkipEnd", + "BootstrapSkipForwardBtnFill", + "BootstrapSkipForwardBtn", + "BootstrapSkipForwardCircleFill", + "BootstrapSkipForwardCircle", + "BootstrapSkipForwardFill", + "BootstrapSkipForward", + "BootstrapSkipStartBtnFill", + "BootstrapSkipStartBtn", + "BootstrapSkipStartCircleFill", + "BootstrapSkipStartCircle", + "BootstrapSkipStartFill", + "BootstrapSkipStart", + "BootstrapSkype", + "BootstrapSlack", + "BootstrapSlashCircleFill", + "BootstrapSlashCircle", + "BootstrapSlashLg", + "BootstrapSlashSquareFill", + "BootstrapSlashSquare", + "BootstrapSlash", + "BootstrapSliders", + "BootstrapSliders2Vertical", + "BootstrapSliders2", + "BootstrapSmartwatch", + "BootstrapSnapchat", + "BootstrapSnow", + "BootstrapSnow2", + "BootstrapSnow3", + "BootstrapSortAlphaDownAlt", + "BootstrapSortAlphaDown", + "BootstrapSortAlphaUpAlt", + "BootstrapSortAlphaUp", + "BootstrapSortDownAlt", + "BootstrapSortDown", + "BootstrapSortNumericDownAlt", + "BootstrapSortNumericDown", + "BootstrapSortNumericUpAlt", + "BootstrapSortNumericUp", + "BootstrapSortUpAlt", + "BootstrapSortUp", + "BootstrapSoundwave", + "BootstrapSpeakerFill", + "BootstrapSpeaker", + "BootstrapSpeedometer", + "BootstrapSpeedometer2", + "BootstrapSpellcheck", + "BootstrapSpotify", + "BootstrapSquareFill", + "BootstrapSquareHalf", + "BootstrapSquare", + "BootstrapStackOverflow", + "BootstrapStack", + "BootstrapStarFill", + "BootstrapStarHalf", + "BootstrapStar", + "BootstrapStars", + "BootstrapSteam", + "BootstrapStickiesFill", + "BootstrapStickies", + "BootstrapStickyFill", + "BootstrapSticky", + "BootstrapStopBtnFill", + "BootstrapStopBtn", + "BootstrapStopCircleFill", + "BootstrapStopCircle", + "BootstrapStopFill", + "BootstrapStop", + "BootstrapStoplightsFill", + "BootstrapStoplights", + "BootstrapStopwatchFill", + "BootstrapStopwatch", + "BootstrapStrava", + "BootstrapStripe", + "BootstrapSubscript", + "BootstrapSubtract", + "BootstrapSuitClubFill", + "BootstrapSuitClub", + "BootstrapSuitDiamondFill", + "BootstrapSuitDiamond", + "BootstrapSuitHeartFill", + "BootstrapSuitHeart", + "BootstrapSuitSpadeFill", + "BootstrapSuitSpade", + "BootstrapSunFill", + "BootstrapSun", + "BootstrapSunglasses", + "BootstrapSunriseFill", + "BootstrapSunrise", + "BootstrapSunsetFill", + "BootstrapSunset", + "BootstrapSuperscript", + "BootstrapSymmetryHorizontal", + "BootstrapSymmetryVertical", + "BootstrapTable", + "BootstrapTabletFill", + "BootstrapTabletLandscapeFill", + "BootstrapTabletLandscape", + "BootstrapTablet", + "BootstrapTagFill", + "BootstrapTag", + "BootstrapTagsFill", + "BootstrapTags", + "BootstrapTaxiFrontFill", + "BootstrapTaxiFront", + "BootstrapTelegram", + "BootstrapTelephoneFill", + "BootstrapTelephoneForwardFill", + "BootstrapTelephoneForward", + "BootstrapTelephoneInboundFill", + "BootstrapTelephoneInbound", + "BootstrapTelephoneMinusFill", + "BootstrapTelephoneMinus", + "BootstrapTelephoneOutboundFill", + "BootstrapTelephoneOutbound", + "BootstrapTelephonePlusFill", + "BootstrapTelephonePlus", + "BootstrapTelephoneXFill", + "BootstrapTelephoneX", + "BootstrapTelephone", + "BootstrapTencentQq", + "BootstrapTerminalDash", + "BootstrapTerminalFill", + "BootstrapTerminalPlus", + "BootstrapTerminalSplit", + "BootstrapTerminalX", + "BootstrapTerminal", + "BootstrapTextCenter", + "BootstrapTextIndentLeft", + "BootstrapTextIndentRight", + "BootstrapTextLeft", + "BootstrapTextParagraph", + "BootstrapTextRight", + "BootstrapTextWrap", + "BootstrapTextareaResize", + "BootstrapTextareaT", + "BootstrapTextarea", + "BootstrapThermometerHalf", + "BootstrapThermometerHigh", + "BootstrapThermometerLow", + "BootstrapThermometerSnow", + "BootstrapThermometerSun", + "BootstrapThermometer", + "BootstrapThreeDotsVertical", + "BootstrapThreeDots", + "BootstrapThunderboltFill", + "BootstrapThunderbolt", + "BootstrapTicketDetailedFill", + "BootstrapTicketDetailed", + "BootstrapTicketFill", + "BootstrapTicketPerforatedFill", + "BootstrapTicketPerforated", + "BootstrapTicket", + "BootstrapTiktok", + "BootstrapToggleOff", + "BootstrapToggleOn", + "BootstrapToggle2Off", + "BootstrapToggle2On", + "BootstrapToggles", + "BootstrapToggles2", + "BootstrapTools", + "BootstrapTornado", + "BootstrapTrainFreightFrontFill", + "BootstrapTrainFreightFront", + "BootstrapTrainFrontFill", + "BootstrapTrainFront", + "BootstrapTrainLightrailFrontFill", + "BootstrapTrainLightrailFront", + "BootstrapTranslate", + "BootstrapTrashFill", + "BootstrapTrash", + "BootstrapTrash2Fill", + "BootstrapTrash2", + "BootstrapTrash3Fill", + "BootstrapTrash3", + "BootstrapTreeFill", + "BootstrapTree", + "BootstrapTrello", + "BootstrapTriangleFill", + "BootstrapTriangleHalf", + "BootstrapTriangle", + "BootstrapTrophyFill", + "BootstrapTrophy", + "BootstrapTropicalStorm", + "BootstrapTruckFlatbed", + "BootstrapTruckFrontFill", + "BootstrapTruckFront", + "BootstrapTruck", + "BootstrapTsunami", + "BootstrapTvFill", + "BootstrapTv", + "BootstrapTwitch", + "BootstrapTwitter", + "BootstrapTypeBold", + "BootstrapTypeH1", + "BootstrapTypeH2", + "BootstrapTypeH3", + "BootstrapTypeItalic", + "BootstrapTypeStrikethrough", + "BootstrapTypeUnderline", + "BootstrapType", + "BootstrapUbuntu", + "BootstrapUiChecksGrid", + "BootstrapUiChecks", + "BootstrapUiRadiosGrid", + "BootstrapUiRadios", + "BootstrapUmbrellaFill", + "BootstrapUmbrella", + "BootstrapUnindent", + "BootstrapUnion", + "BootstrapUnity", + "BootstrapUniversalAccessCircle", + "BootstrapUniversalAccess", + "BootstrapUnlockFill", + "BootstrapUnlock", + "BootstrapUpcScan", + "BootstrapUpc", + "BootstrapUpload", + "BootstrapUsbCFill", + "BootstrapUsbC", + "BootstrapUsbDriveFill", + "BootstrapUsbDrive", + "BootstrapUsbFill", + "BootstrapUsbMicroFill", + "BootstrapUsbMicro", + "BootstrapUsbMiniFill", + "BootstrapUsbMini", + "BootstrapUsbPlugFill", + "BootstrapUsbPlug", + "BootstrapUsbSymbol", + "BootstrapUsb", + "BootstrapValentine", + "BootstrapValentine2", + "BootstrapVectorPen", + "BootstrapViewList", + "BootstrapViewStacked", + "BootstrapVimeo", + "BootstrapVinylFill", + "BootstrapVinyl", + "BootstrapVirus", + "BootstrapVirus2", + "BootstrapVoicemail", + "BootstrapVolumeDownFill", + "BootstrapVolumeDown", + "BootstrapVolumeMuteFill", + "BootstrapVolumeMute", + "BootstrapVolumeOffFill", + "BootstrapVolumeOff", + "BootstrapVolumeUpFill", + "BootstrapVolumeUp", + "BootstrapVr", + "BootstrapWalletFill", + "BootstrapWallet", + "BootstrapWallet2", + "BootstrapWatch", + "BootstrapWater", + "BootstrapWebcamFill", + "BootstrapWebcam", + "BootstrapWechat", + "BootstrapWhatsapp", + "BootstrapWifi1", + "BootstrapWifi2", + "BootstrapWifiOff", + "BootstrapWifi", + "BootstrapWikipedia", + "BootstrapWind", + "BootstrapWindowDash", + "BootstrapWindowDesktop", + "BootstrapWindowDock", + "BootstrapWindowFullscreen", + "BootstrapWindowPlus", + "BootstrapWindowSidebar", + "BootstrapWindowSplit", + "BootstrapWindowStack", + "BootstrapWindowX", + "BootstrapWindow", + "BootstrapWindows", + "BootstrapWordpress", + "BootstrapWrenchAdjustableCircleFill", + "BootstrapWrenchAdjustableCircle", + "BootstrapWrenchAdjustable", + "BootstrapWrench", + "BootstrapXCircleFill", + "BootstrapXCircle", + "BootstrapXDiamondFill", + "BootstrapXDiamond", + "BootstrapXLg", + "BootstrapXOctagonFill", + "BootstrapXOctagon", + "BootstrapXSquareFill", + "BootstrapXSquare", + "BootstrapX", + "BootstrapXbox", + "BootstrapYelp", + "BootstrapYinYang", + "BootstrapYoutube", + "BootstrapZoomIn", + "BootstrapZoomOut" + ], + "convert_case": [ + "dep:convert_case" + ], + "data_uri": [], + "default": [ + "data_uri" + ], + "enum-iterator": [ + "dep:enum-iterator" + ], + "extra": [ + "ExtraGooglePlay" + ], + "feather": [ + "FeatherActivity", + "FeatherAirplay", + "FeatherAlertCircle", + "FeatherAlertOctagon", + "FeatherAlertTriangle", + "FeatherAlignCenter", + "FeatherAlignJustify", + "FeatherAlignLeft", + "FeatherAlignRight", + "FeatherAnchor", + "FeatherAperture", + "FeatherArchive", + "FeatherArrowDownCircle", + "FeatherArrowDownLeft", + "FeatherArrowDownRight", + "FeatherArrowDown", + "FeatherArrowLeftCircle", + "FeatherArrowLeft", + "FeatherArrowRightCircle", + "FeatherArrowRight", + "FeatherArrowUpCircle", + "FeatherArrowUpLeft", + "FeatherArrowUpRight", + "FeatherArrowUp", + "FeatherAtSign", + "FeatherAward", + "FeatherBarChart2", + "FeatherBarChart", + "FeatherBatteryCharging", + "FeatherBattery", + "FeatherBellOff", + "FeatherBell", + "FeatherBluetooth", + "FeatherBold", + "FeatherBookOpen", + "FeatherBook", + "FeatherBookmark", + "FeatherBox", + "FeatherBriefcase", + "FeatherCalendar", + "FeatherCameraOff", + "FeatherCamera", + "FeatherCast", + "FeatherCheckCircle", + "FeatherCheckSquare", + "FeatherCheck", + "FeatherChevronDown", + "FeatherChevronLeft", + "FeatherChevronRight", + "FeatherChevronUp", + "FeatherChevronsDown", + "FeatherChevronsLeft", + "FeatherChevronsRight", + "FeatherChevronsUp", + "FeatherChrome", + "FeatherCircle", + "FeatherClipboard", + "FeatherClock", + "FeatherCloudDrizzle", + "FeatherCloudLightning", + "FeatherCloudOff", + "FeatherCloudRain", + "FeatherCloudSnow", + "FeatherCloud", + "FeatherCode", + "FeatherCodepen", + "FeatherCodesandbox", + "FeatherCoffee", + "FeatherColumns", + "FeatherCommand", + "FeatherCompass", + "FeatherCopy", + "FeatherCornerDownLeft", + "FeatherCornerDownRight", + "FeatherCornerLeftDown", + "FeatherCornerLeftUp", + "FeatherCornerRightDown", + "FeatherCornerRightUp", + "FeatherCornerUpLeft", + "FeatherCornerUpRight", + "FeatherCpu", + "FeatherCreditCard", + "FeatherCrop", + "FeatherCrosshair", + "FeatherDatabase", + "FeatherDelete", + "FeatherDisc", + "FeatherDivideCircle", + "FeatherDivideSquare", + "FeatherDivide", + "FeatherDollarSign", + "FeatherDownloadCloud", + "FeatherDownload", + "FeatherDribbble", + "FeatherDroplet", + "FeatherEdit2", + "FeatherEdit3", + "FeatherEdit", + "FeatherExternalLink", + "FeatherEyeOff", + "FeatherEye", + "FeatherFacebook", + "FeatherFastForward", + "FeatherFeather", + "FeatherFigma", + "FeatherFileMinus", + "FeatherFilePlus", + "FeatherFileText", + "FeatherFile", + "FeatherFilm", + "FeatherFilter", + "FeatherFlag", + "FeatherFolderMinus", + "FeatherFolderPlus", + "FeatherFolder", + "FeatherFramer", + "FeatherFrown", + "FeatherGift", + "FeatherGitBranch", + "FeatherGitCommit", + "FeatherGitMerge", + "FeatherGitPullRequest", + "FeatherGithub", + "FeatherGitlab", + "FeatherGlobe", + "FeatherGrid", + "FeatherHardDrive", + "FeatherHash", + "FeatherHeadphones", + "FeatherHeart", + "FeatherHelpCircle", + "FeatherHexagon", + "FeatherHome", + "FeatherImage", + "FeatherInbox", + "FeatherInfo", + "FeatherInstagram", + "FeatherItalic", + "FeatherKey", + "FeatherLayers", + "FeatherLayout", + "FeatherLifeBuoy", + "FeatherLink2", + "FeatherLink", + "FeatherLinkedin", + "FeatherList", + "FeatherLoader", + "FeatherLock", + "FeatherLogIn", + "FeatherLogOut", + "FeatherMail", + "FeatherMapPin", + "FeatherMap", + "FeatherMaximize2", + "FeatherMaximize", + "FeatherMeh", + "FeatherMenu", + "FeatherMessageCircle", + "FeatherMessageSquare", + "FeatherMicOff", + "FeatherMic", + "FeatherMinimize2", + "FeatherMinimize", + "FeatherMinusCircle", + "FeatherMinusSquare", + "FeatherMinus", + "FeatherMonitor", + "FeatherMoon", + "FeatherMoreHorizontal", + "FeatherMoreVertical", + "FeatherMousePointer", + "FeatherMove", + "FeatherMusic", + "FeatherNavigation2", + "FeatherNavigation", + "FeatherOctagon", + "FeatherPackage", + "FeatherPaperclip", + "FeatherPauseCircle", + "FeatherPause", + "FeatherPenTool", + "FeatherPercent", + "FeatherPhoneCall", + "FeatherPhoneForwarded", + "FeatherPhoneIncoming", + "FeatherPhoneMissed", + "FeatherPhoneOff", + "FeatherPhoneOutgoing", + "FeatherPhone", + "FeatherPieChart", + "FeatherPlayCircle", + "FeatherPlay", + "FeatherPlusCircle", + "FeatherPlusSquare", + "FeatherPlus", + "FeatherPocket", + "FeatherPower", + "FeatherPrinter", + "FeatherRadio", + "FeatherRefreshCcw", + "FeatherRefreshCw", + "FeatherRepeat", + "FeatherRewind", + "FeatherRotateCcw", + "FeatherRotateCw", + "FeatherRss", + "FeatherSave", + "FeatherScissors", + "FeatherSearch", + "FeatherSend", + "FeatherServer", + "FeatherSettings", + "FeatherShare2", + "FeatherShare", + "FeatherShieldOff", + "FeatherShield", + "FeatherShoppingBag", + "FeatherShoppingCart", + "FeatherShuffle", + "FeatherSidebar", + "FeatherSkipBack", + "FeatherSkipForward", + "FeatherSlack", + "FeatherSlash", + "FeatherSliders", + "FeatherSmartphone", + "FeatherSmile", + "FeatherSpeaker", + "FeatherSquare", + "FeatherStar", + "FeatherStopCircle", + "FeatherSun", + "FeatherSunrise", + "FeatherSunset", + "FeatherTable", + "FeatherTablet", + "FeatherTag", + "FeatherTarget", + "FeatherTerminal", + "FeatherThermometer", + "FeatherThumbsDown", + "FeatherThumbsUp", + "FeatherToggleLeft", + "FeatherToggleRight", + "FeatherTool", + "FeatherTrash2", + "FeatherTrash", + "FeatherTrello", + "FeatherTrendingDown", + "FeatherTrendingUp", + "FeatherTriangle", + "FeatherTruck", + "FeatherTv", + "FeatherTwitch", + "FeatherTwitter", + "FeatherType", + "FeatherUmbrella", + "FeatherUnderline", + "FeatherUnlock", + "FeatherUploadCloud", + "FeatherUpload", + "FeatherUserCheck", + "FeatherUserMinus", + "FeatherUserPlus", + "FeatherUserX", + "FeatherUser", + "FeatherUsers", + "FeatherVideoOff", + "FeatherVideo", + "FeatherVoicemail", + "FeatherVolume1", + "FeatherVolume2", + "FeatherVolumeX", + "FeatherVolume", + "FeatherWatch", + "FeatherWifiOff", + "FeatherWifi", + "FeatherWind", + "FeatherXCircle", + "FeatherXOctagon", + "FeatherXSquare", + "FeatherX", + "FeatherYoutube", + "FeatherZapOff", + "FeatherZap", + "FeatherZoomIn", + "FeatherZoomOut" + ], + "font_awesome_regular": [ + "FontAwesomeRegularAddressBook", + "FontAwesomeRegularAddressCard", + "FontAwesomeRegularBellSlash", + "FontAwesomeRegularBell", + "FontAwesomeRegularBookmark", + "FontAwesomeRegularBuilding", + "FontAwesomeRegularCalendarCheck", + "FontAwesomeRegularCalendarDays", + "FontAwesomeRegularCalendarMinus", + "FontAwesomeRegularCalendarPlus", + "FontAwesomeRegularCalendarXmark", + "FontAwesomeRegularCalendar", + "FontAwesomeRegularChartBar", + "FontAwesomeRegularChessBishop", + "FontAwesomeRegularChessKing", + "FontAwesomeRegularChessKnight", + "FontAwesomeRegularChessPawn", + "FontAwesomeRegularChessQueen", + "FontAwesomeRegularChessRook", + "FontAwesomeRegularCircleCheck", + "FontAwesomeRegularCircleDot", + "FontAwesomeRegularCircleDown", + "FontAwesomeRegularCircleLeft", + "FontAwesomeRegularCirclePause", + "FontAwesomeRegularCirclePlay", + "FontAwesomeRegularCircleQuestion", + "FontAwesomeRegularCircleRight", + "FontAwesomeRegularCircleStop", + "FontAwesomeRegularCircleUp", + "FontAwesomeRegularCircleUser", + "FontAwesomeRegularCircleXmark", + "FontAwesomeRegularCircle", + "FontAwesomeRegularClipboard", + "FontAwesomeRegularClock", + "FontAwesomeRegularClone", + "FontAwesomeRegularClosedCaptioning", + "FontAwesomeRegularCommentDots", + "FontAwesomeRegularComment", + "FontAwesomeRegularComments", + "FontAwesomeRegularCompass", + "FontAwesomeRegularCopy", + "FontAwesomeRegularCopyright", + "FontAwesomeRegularCreditCard", + "FontAwesomeRegularEnvelopeOpen", + "FontAwesomeRegularEnvelope", + "FontAwesomeRegularEyeSlash", + "FontAwesomeRegularEye", + "FontAwesomeRegularFaceAngry", + "FontAwesomeRegularFaceDizzy", + "FontAwesomeRegularFaceFlushed", + "FontAwesomeRegularFaceFrownOpen", + "FontAwesomeRegularFaceFrown", + "FontAwesomeRegularFaceGrimace", + "FontAwesomeRegularFaceGrinBeamSweat", + "FontAwesomeRegularFaceGrinBeam", + "FontAwesomeRegularFaceGrinHearts", + "FontAwesomeRegularFaceGrinSquintTears", + "FontAwesomeRegularFaceGrinSquint", + "FontAwesomeRegularFaceGrinStars", + "FontAwesomeRegularFaceGrinTears", + "FontAwesomeRegularFaceGrinTongueSquint", + "FontAwesomeRegularFaceGrinTongueWink", + "FontAwesomeRegularFaceGrinTongue", + "FontAwesomeRegularFaceGrinWide", + "FontAwesomeRegularFaceGrinWink", + "FontAwesomeRegularFaceGrin", + "FontAwesomeRegularFaceKissBeam", + "FontAwesomeRegularFaceKissWinkHeart", + "FontAwesomeRegularFaceKiss", + "FontAwesomeRegularFaceLaughBeam", + "FontAwesomeRegularFaceLaughSquint", + "FontAwesomeRegularFaceLaughWink", + "FontAwesomeRegularFaceLaugh", + "FontAwesomeRegularFaceMehBlank", + "FontAwesomeRegularFaceMeh", + "FontAwesomeRegularFaceRollingEyes", + "FontAwesomeRegularFaceSadCry", + "FontAwesomeRegularFaceSadTear", + "FontAwesomeRegularFaceSmileBeam", + "FontAwesomeRegularFaceSmileWink", + "FontAwesomeRegularFaceSmile", + "FontAwesomeRegularFaceSurprise", + "FontAwesomeRegularFaceTired", + "FontAwesomeRegularFileAudio", + "FontAwesomeRegularFileCode", + "FontAwesomeRegularFileExcel", + "FontAwesomeRegularFileImage", + "FontAwesomeRegularFileLines", + "FontAwesomeRegularFilePdf", + "FontAwesomeRegularFilePowerpoint", + "FontAwesomeRegularFileVideo", + "FontAwesomeRegularFileWord", + "FontAwesomeRegularFileZipper", + "FontAwesomeRegularFile", + "FontAwesomeRegularFlag", + "FontAwesomeRegularFloppyDisk", + "FontAwesomeRegularFolderClosed", + "FontAwesomeRegularFolderOpen", + "FontAwesomeRegularFolder", + "FontAwesomeRegularFontAwesome", + "FontAwesomeRegularFutbol", + "FontAwesomeRegularGem", + "FontAwesomeRegularHandBackFist", + "FontAwesomeRegularHandLizard", + "FontAwesomeRegularHandPeace", + "FontAwesomeRegularHandPointDown", + "FontAwesomeRegularHandPointLeft", + "FontAwesomeRegularHandPointRight", + "FontAwesomeRegularHandPointUp", + "FontAwesomeRegularHandPointer", + "FontAwesomeRegularHandScissors", + "FontAwesomeRegularHandSpock", + "FontAwesomeRegularHand", + "FontAwesomeRegularHandshake", + "FontAwesomeRegularHardDrive", + "FontAwesomeRegularHeart", + "FontAwesomeRegularHospital", + "FontAwesomeRegularHourglass", + "FontAwesomeRegularIdBadge", + "FontAwesomeRegularIdCard", + "FontAwesomeRegularImage", + "FontAwesomeRegularImages", + "FontAwesomeRegularKeyboard", + "FontAwesomeRegularLemon", + "FontAwesomeRegularLifeRing", + "FontAwesomeRegularLightbulb", + "FontAwesomeRegularMap", + "FontAwesomeRegularMessage", + "FontAwesomeRegularMoneyBill1", + "FontAwesomeRegularMoon", + "FontAwesomeRegularNewspaper", + "FontAwesomeRegularNoteSticky", + "FontAwesomeRegularObjectGroup", + "FontAwesomeRegularObjectUngroup", + "FontAwesomeRegularPaperPlane", + "FontAwesomeRegularPaste", + "FontAwesomeRegularPenToSquare", + "FontAwesomeRegularRectangleList", + "FontAwesomeRegularRectangleXmark", + "FontAwesomeRegularRegistered", + "FontAwesomeRegularShareFromSquare", + "FontAwesomeRegularSnowflake", + "FontAwesomeRegularSquareCaretDown", + "FontAwesomeRegularSquareCaretLeft", + "FontAwesomeRegularSquareCaretRight", + "FontAwesomeRegularSquareCaretUp", + "FontAwesomeRegularSquareCheck", + "FontAwesomeRegularSquareFull", + "FontAwesomeRegularSquareMinus", + "FontAwesomeRegularSquarePlus", + "FontAwesomeRegularSquare", + "FontAwesomeRegularStarHalfStroke", + "FontAwesomeRegularStarHalf", + "FontAwesomeRegularStar", + "FontAwesomeRegularSun", + "FontAwesomeRegularThumbsDown", + "FontAwesomeRegularThumbsUp", + "FontAwesomeRegularTrashCan", + "FontAwesomeRegularUser", + "FontAwesomeRegularWindowMaximize", + "FontAwesomeRegularWindowMinimize", + "FontAwesomeRegularWindowRestore" + ], + "font_awesome_solid": [ + "FontAwesomeSolid0", + "FontAwesomeSolid1", + "FontAwesomeSolid2", + "FontAwesomeSolid3", + "FontAwesomeSolid4", + "FontAwesomeSolid5", + "FontAwesomeSolid6", + "FontAwesomeSolid7", + "FontAwesomeSolid8", + "FontAwesomeSolid9", + "FontAwesomeSolidA", + "FontAwesomeSolidAddressBook", + "FontAwesomeSolidAddressCard", + "FontAwesomeSolidAlignCenter", + "FontAwesomeSolidAlignJustify", + "FontAwesomeSolidAlignLeft", + "FontAwesomeSolidAlignRight", + "FontAwesomeSolidAnchorCircleCheck", + "FontAwesomeSolidAnchorCircleExclamation", + "FontAwesomeSolidAnchorCircleXmark", + "FontAwesomeSolidAnchorLock", + "FontAwesomeSolidAnchor", + "FontAwesomeSolidAngleDown", + "FontAwesomeSolidAngleLeft", + "FontAwesomeSolidAngleRight", + "FontAwesomeSolidAngleUp", + "FontAwesomeSolidAnglesDown", + "FontAwesomeSolidAnglesLeft", + "FontAwesomeSolidAnglesRight", + "FontAwesomeSolidAnglesUp", + "FontAwesomeSolidAnkh", + "FontAwesomeSolidAppleWhole", + "FontAwesomeSolidArchway", + "FontAwesomeSolidArrowDown19", + "FontAwesomeSolidArrowDown91", + "FontAwesomeSolidArrowDownAZ", + "FontAwesomeSolidArrowDownLong", + "FontAwesomeSolidArrowDownShortWide", + "FontAwesomeSolidArrowDownUpAcrossLine", + "FontAwesomeSolidArrowDownUpLock", + "FontAwesomeSolidArrowDownWideShort", + "FontAwesomeSolidArrowDownZA", + "FontAwesomeSolidArrowDown", + "FontAwesomeSolidArrowLeftLong", + "FontAwesomeSolidArrowLeft", + "FontAwesomeSolidArrowPointer", + "FontAwesomeSolidArrowRightArrowLeft", + "FontAwesomeSolidArrowRightFromBracket", + "FontAwesomeSolidArrowRightLong", + "FontAwesomeSolidArrowRightToBracket", + "FontAwesomeSolidArrowRightToCity", + "FontAwesomeSolidArrowRight", + "FontAwesomeSolidArrowRotateLeft", + "FontAwesomeSolidArrowRotateRight", + "FontAwesomeSolidArrowTrendDown", + "FontAwesomeSolidArrowTrendUp", + "FontAwesomeSolidArrowTurnDown", + "FontAwesomeSolidArrowTurnUp", + "FontAwesomeSolidArrowUp19", + "FontAwesomeSolidArrowUp91", + "FontAwesomeSolidArrowUpAZ", + "FontAwesomeSolidArrowUpFromBracket", + "FontAwesomeSolidArrowUpFromGroundWater", + "FontAwesomeSolidArrowUpFromWaterPump", + "FontAwesomeSolidArrowUpLong", + "FontAwesomeSolidArrowUpRightDots", + "FontAwesomeSolidArrowUpRightFromSquare", + "FontAwesomeSolidArrowUpShortWide", + "FontAwesomeSolidArrowUpWideShort", + "FontAwesomeSolidArrowUpZA", + "FontAwesomeSolidArrowUp", + "FontAwesomeSolidArrowsDownToLine", + "FontAwesomeSolidArrowsDownToPeople", + "FontAwesomeSolidArrowsLeftRightToLine", + "FontAwesomeSolidArrowsLeftRight", + "FontAwesomeSolidArrowsRotate", + "FontAwesomeSolidArrowsSpin", + "FontAwesomeSolidArrowsSplitUpAndLeft", + "FontAwesomeSolidArrowsToCircle", + "FontAwesomeSolidArrowsToDot", + "FontAwesomeSolidArrowsToEye", + "FontAwesomeSolidArrowsTurnRight", + "FontAwesomeSolidArrowsTurnToDots", + "FontAwesomeSolidArrowsUpDownLeftRight", + "FontAwesomeSolidArrowsUpDown", + "FontAwesomeSolidArrowsUpToLine", + "FontAwesomeSolidAsterisk", + "FontAwesomeSolidAt", + "FontAwesomeSolidAtom", + "FontAwesomeSolidAudioDescription", + "FontAwesomeSolidAustralSign", + "FontAwesomeSolidAward", + "FontAwesomeSolidB", + "FontAwesomeSolidBabyCarriage", + "FontAwesomeSolidBaby", + "FontAwesomeSolidBackwardFast", + "FontAwesomeSolidBackwardStep", + "FontAwesomeSolidBackward", + "FontAwesomeSolidBacon", + "FontAwesomeSolidBacteria", + "FontAwesomeSolidBacterium", + "FontAwesomeSolidBagShopping", + "FontAwesomeSolidBahai", + "FontAwesomeSolidBahtSign", + "FontAwesomeSolidBanSmoking", + "FontAwesomeSolidBan", + "FontAwesomeSolidBandage", + "FontAwesomeSolidBarcode", + "FontAwesomeSolidBarsProgress", + "FontAwesomeSolidBarsStaggered", + "FontAwesomeSolidBars", + "FontAwesomeSolidBaseballBatBall", + "FontAwesomeSolidBaseball", + "FontAwesomeSolidBasketShopping", + "FontAwesomeSolidBasketball", + "FontAwesomeSolidBath", + "FontAwesomeSolidBatteryEmpty", + "FontAwesomeSolidBatteryFull", + "FontAwesomeSolidBatteryHalf", + "FontAwesomeSolidBatteryQuarter", + "FontAwesomeSolidBatteryThreeQuarters", + "FontAwesomeSolidBedPulse", + "FontAwesomeSolidBed", + "FontAwesomeSolidBeerMugEmpty", + "FontAwesomeSolidBellConcierge", + "FontAwesomeSolidBellSlash", + "FontAwesomeSolidBell", + "FontAwesomeSolidBezierCurve", + "FontAwesomeSolidBicycle", + "FontAwesomeSolidBinoculars", + "FontAwesomeSolidBiohazard", + "FontAwesomeSolidBitcoinSign", + "FontAwesomeSolidBlenderPhone", + "FontAwesomeSolidBlender", + "FontAwesomeSolidBlog", + "FontAwesomeSolidBold", + "FontAwesomeSolidBoltLightning", + "FontAwesomeSolidBolt", + "FontAwesomeSolidBomb", + "FontAwesomeSolidBone", + "FontAwesomeSolidBong", + "FontAwesomeSolidBookAtlas", + "FontAwesomeSolidBookBible", + "FontAwesomeSolidBookBookmark", + "FontAwesomeSolidBookJournalWhills", + "FontAwesomeSolidBookMedical", + "FontAwesomeSolidBookOpenReader", + "FontAwesomeSolidBookOpen", + "FontAwesomeSolidBookQuran", + "FontAwesomeSolidBookSkull", + "FontAwesomeSolidBook", + "FontAwesomeSolidBookmark", + "FontAwesomeSolidBorderAll", + "FontAwesomeSolidBorderNone", + "FontAwesomeSolidBorderTopLeft", + "FontAwesomeSolidBoreHole", + "FontAwesomeSolidBottleDroplet", + "FontAwesomeSolidBottleWater", + "FontAwesomeSolidBowlFood", + "FontAwesomeSolidBowlRice", + "FontAwesomeSolidBowlingBall", + "FontAwesomeSolidBoxArchive", + "FontAwesomeSolidBoxOpen", + "FontAwesomeSolidBoxTissue", + "FontAwesomeSolidBox", + "FontAwesomeSolidBoxesPacking", + "FontAwesomeSolidBoxesStacked", + "FontAwesomeSolidBraille", + "FontAwesomeSolidBrain", + "FontAwesomeSolidBrazilianRealSign", + "FontAwesomeSolidBreadSlice", + "FontAwesomeSolidBridgeCircleCheck", + "FontAwesomeSolidBridgeCircleExclamation", + "FontAwesomeSolidBridgeCircleXmark", + "FontAwesomeSolidBridgeLock", + "FontAwesomeSolidBridgeWater", + "FontAwesomeSolidBridge", + "FontAwesomeSolidBriefcaseMedical", + "FontAwesomeSolidBriefcase", + "FontAwesomeSolidBroomBall", + "FontAwesomeSolidBroom", + "FontAwesomeSolidBrush", + "FontAwesomeSolidBucket", + "FontAwesomeSolidBugSlash", + "FontAwesomeSolidBug", + "FontAwesomeSolidBugs", + "FontAwesomeSolidBuildingCircleArrowRight", + "FontAwesomeSolidBuildingCircleCheck", + "FontAwesomeSolidBuildingCircleExclamation", + "FontAwesomeSolidBuildingCircleXmark", + "FontAwesomeSolidBuildingColumns", + "FontAwesomeSolidBuildingFlag", + "FontAwesomeSolidBuildingLock", + "FontAwesomeSolidBuildingNgo", + "FontAwesomeSolidBuildingShield", + "FontAwesomeSolidBuildingUn", + "FontAwesomeSolidBuildingUser", + "FontAwesomeSolidBuildingWheat", + "FontAwesomeSolidBuilding", + "FontAwesomeSolidBullhorn", + "FontAwesomeSolidBullseye", + "FontAwesomeSolidBurger", + "FontAwesomeSolidBurst", + "FontAwesomeSolidBusSimple", + "FontAwesomeSolidBus", + "FontAwesomeSolidBusinessTime", + "FontAwesomeSolidC", + "FontAwesomeSolidCakeCandles", + "FontAwesomeSolidCalculator", + "FontAwesomeSolidCalendarCheck", + "FontAwesomeSolidCalendarDay", + "FontAwesomeSolidCalendarDays", + "FontAwesomeSolidCalendarMinus", + "FontAwesomeSolidCalendarPlus", + "FontAwesomeSolidCalendarWeek", + "FontAwesomeSolidCalendarXmark", + "FontAwesomeSolidCalendar", + "FontAwesomeSolidCameraRetro", + "FontAwesomeSolidCameraRotate", + "FontAwesomeSolidCamera", + "FontAwesomeSolidCampground", + "FontAwesomeSolidCandyCane", + "FontAwesomeSolidCannabis", + "FontAwesomeSolidCapsules", + "FontAwesomeSolidCarBattery", + "FontAwesomeSolidCarBurst", + "FontAwesomeSolidCarCrash", + "FontAwesomeSolidCarOn", + "FontAwesomeSolidCarRear", + "FontAwesomeSolidCarSide", + "FontAwesomeSolidCarTunnel", + "FontAwesomeSolidCar", + "FontAwesomeSolidCaravan", + "FontAwesomeSolidCaretDown", + "FontAwesomeSolidCaretLeft", + "FontAwesomeSolidCaretRight", + "FontAwesomeSolidCaretUp", + "FontAwesomeSolidCarrot", + "FontAwesomeSolidCartArrowDown", + "FontAwesomeSolidCartFlatbedSuitcase", + "FontAwesomeSolidCartFlatbed", + "FontAwesomeSolidCartPlus", + "FontAwesomeSolidCartShopping", + "FontAwesomeSolidCashRegister", + "FontAwesomeSolidCat", + "FontAwesomeSolidCediSign", + "FontAwesomeSolidCentSign", + "FontAwesomeSolidCertificate", + "FontAwesomeSolidChair", + "FontAwesomeSolidChalkboardUser", + "FontAwesomeSolidChalkboard", + "FontAwesomeSolidChampagneGlasses", + "FontAwesomeSolidChargingStation", + "FontAwesomeSolidChartArea", + "FontAwesomeSolidChartBar", + "FontAwesomeSolidChartColumn", + "FontAwesomeSolidChartGantt", + "FontAwesomeSolidChartLine", + "FontAwesomeSolidChartPie", + "FontAwesomeSolidChartSimple", + "FontAwesomeSolidCheckDouble", + "FontAwesomeSolidCheckToSlot", + "FontAwesomeSolidCheck", + "FontAwesomeSolidCheese", + "FontAwesomeSolidChessBishop", + "FontAwesomeSolidChessBoard", + "FontAwesomeSolidChessKing", + "FontAwesomeSolidChessKnight", + "FontAwesomeSolidChessPawn", + "FontAwesomeSolidChessQueen", + "FontAwesomeSolidChessRook", + "FontAwesomeSolidChess", + "FontAwesomeSolidChevronDown", + "FontAwesomeSolidChevronLeft", + "FontAwesomeSolidChevronRight", + "FontAwesomeSolidChevronUp", + "FontAwesomeSolidChildDress", + "FontAwesomeSolidChildReaching", + "FontAwesomeSolidChildRifle", + "FontAwesomeSolidChild", + "FontAwesomeSolidChildren", + "FontAwesomeSolidChurch", + "FontAwesomeSolidCircleArrowDown", + "FontAwesomeSolidCircleArrowLeft", + "FontAwesomeSolidCircleArrowRight", + "FontAwesomeSolidCircleArrowUp", + "FontAwesomeSolidCircleCheck", + "FontAwesomeSolidCircleChevronDown", + "FontAwesomeSolidCircleChevronLeft", + "FontAwesomeSolidCircleChevronRight", + "FontAwesomeSolidCircleChevronUp", + "FontAwesomeSolidCircleDollarToSlot", + "FontAwesomeSolidCircleDot", + "FontAwesomeSolidCircleDown", + "FontAwesomeSolidCircleExclamation", + "FontAwesomeSolidCircleH", + "FontAwesomeSolidCircleHalfStroke", + "FontAwesomeSolidCircleInfo", + "FontAwesomeSolidCircleLeft", + "FontAwesomeSolidCircleMinus", + "FontAwesomeSolidCircleNodes", + "FontAwesomeSolidCircleNotch", + "FontAwesomeSolidCirclePause", + "FontAwesomeSolidCirclePlay", + "FontAwesomeSolidCirclePlus", + "FontAwesomeSolidCircleQuestion", + "FontAwesomeSolidCircleRadiation", + "FontAwesomeSolidCircleRight", + "FontAwesomeSolidCircleStop", + "FontAwesomeSolidCircleUp", + "FontAwesomeSolidCircleUser", + "FontAwesomeSolidCircleXmark", + "FontAwesomeSolidCircle", + "FontAwesomeSolidCity", + "FontAwesomeSolidClapperboard", + "FontAwesomeSolidClipboardCheck", + "FontAwesomeSolidClipboardList", + "FontAwesomeSolidClipboardQuestion", + "FontAwesomeSolidClipboardUser", + "FontAwesomeSolidClipboard", + "FontAwesomeSolidClockRotateLeft", + "FontAwesomeSolidClock", + "FontAwesomeSolidClone", + "FontAwesomeSolidClosedCaptioning", + "FontAwesomeSolidCloudArrowDown", + "FontAwesomeSolidCloudArrowUp", + "FontAwesomeSolidCloudBolt", + "FontAwesomeSolidCloudMeatball", + "FontAwesomeSolidCloudMoonRain", + "FontAwesomeSolidCloudMoon", + "FontAwesomeSolidCloudRain", + "FontAwesomeSolidCloudShowersHeavy", + "FontAwesomeSolidCloudShowersWater", + "FontAwesomeSolidCloudSunRain", + "FontAwesomeSolidCloudSun", + "FontAwesomeSolidCloud", + "FontAwesomeSolidClover", + "FontAwesomeSolidCodeBranch", + "FontAwesomeSolidCodeCommit", + "FontAwesomeSolidCodeCompare", + "FontAwesomeSolidCodeFork", + "FontAwesomeSolidCodeMerge", + "FontAwesomeSolidCodePullRequest", + "FontAwesomeSolidCode", + "FontAwesomeSolidCoins", + "FontAwesomeSolidColonSign", + "FontAwesomeSolidCommentDollar", + "FontAwesomeSolidCommentDots", + "FontAwesomeSolidCommentMedical", + "FontAwesomeSolidCommentSlash", + "FontAwesomeSolidCommentSms", + "FontAwesomeSolidComment", + "FontAwesomeSolidCommentsDollar", + "FontAwesomeSolidComments", + "FontAwesomeSolidCompactDisc", + "FontAwesomeSolidCompassDrafting", + "FontAwesomeSolidCompass", + "FontAwesomeSolidCompress", + "FontAwesomeSolidComputerMouse", + "FontAwesomeSolidComputer", + "FontAwesomeSolidCookieBite", + "FontAwesomeSolidCookie", + "FontAwesomeSolidCopy", + "FontAwesomeSolidCopyright", + "FontAwesomeSolidCouch", + "FontAwesomeSolidCow", + "FontAwesomeSolidCreditCard", + "FontAwesomeSolidCropSimple", + "FontAwesomeSolidCrop", + "FontAwesomeSolidCross", + "FontAwesomeSolidCrosshairs", + "FontAwesomeSolidCrow", + "FontAwesomeSolidCrown", + "FontAwesomeSolidCrutch", + "FontAwesomeSolidCruzeiroSign", + "FontAwesomeSolidCube", + "FontAwesomeSolidCubesStacked", + "FontAwesomeSolidCubes", + "FontAwesomeSolidD", + "FontAwesomeSolidDatabase", + "FontAwesomeSolidDeleteLeft", + "FontAwesomeSolidDemocrat", + "FontAwesomeSolidDesktop", + "FontAwesomeSolidDharmachakra", + "FontAwesomeSolidDiagramNext", + "FontAwesomeSolidDiagramPredecessor", + "FontAwesomeSolidDiagramProject", + "FontAwesomeSolidDiagramSuccessor", + "FontAwesomeSolidDiamondTurnRight", + "FontAwesomeSolidDiamond", + "FontAwesomeSolidDiceD20", + "FontAwesomeSolidDiceD6", + "FontAwesomeSolidDiceFive", + "FontAwesomeSolidDiceFour", + "FontAwesomeSolidDiceOne", + "FontAwesomeSolidDiceSix", + "FontAwesomeSolidDiceThree", + "FontAwesomeSolidDiceTwo", + "FontAwesomeSolidDice", + "FontAwesomeSolidDisease", + "FontAwesomeSolidDisplay", + "FontAwesomeSolidDivide", + "FontAwesomeSolidDna", + "FontAwesomeSolidDog", + "FontAwesomeSolidDollarSign", + "FontAwesomeSolidDolly", + "FontAwesomeSolidDongSign", + "FontAwesomeSolidDoorClosed", + "FontAwesomeSolidDoorOpen", + "FontAwesomeSolidDove", + "FontAwesomeSolidDownLeftAndUpRightToCenter", + "FontAwesomeSolidDownLong", + "FontAwesomeSolidDownload", + "FontAwesomeSolidDragon", + "FontAwesomeSolidDrawPolygon", + "FontAwesomeSolidDropletSlash", + "FontAwesomeSolidDroplet", + "FontAwesomeSolidDrumSteelpan", + "FontAwesomeSolidDrum", + "FontAwesomeSolidDrumstickBite", + "FontAwesomeSolidDumbbell", + "FontAwesomeSolidDumpsterFire", + "FontAwesomeSolidDumpster", + "FontAwesomeSolidDungeon", + "FontAwesomeSolidE", + "FontAwesomeSolidEarDeaf", + "FontAwesomeSolidEarListen", + "FontAwesomeSolidEarthAfrica", + "FontAwesomeSolidEarthAmericas", + "FontAwesomeSolidEarthAsia", + "FontAwesomeSolidEarthEurope", + "FontAwesomeSolidEarthOceania", + "FontAwesomeSolidEgg", + "FontAwesomeSolidEject", + "FontAwesomeSolidElevator", + "FontAwesomeSolidEllipsisVertical", + "FontAwesomeSolidEllipsis", + "FontAwesomeSolidEnvelopeCircleCheck", + "FontAwesomeSolidEnvelopeOpenText", + "FontAwesomeSolidEnvelopeOpen", + "FontAwesomeSolidEnvelope", + "FontAwesomeSolidEnvelopesBulk", + "FontAwesomeSolidEquals", + "FontAwesomeSolidEraser", + "FontAwesomeSolidEthernet", + "FontAwesomeSolidEuroSign", + "FontAwesomeSolidExclamation", + "FontAwesomeSolidExpand", + "FontAwesomeSolidExplosion", + "FontAwesomeSolidEyeDropper", + "FontAwesomeSolidEyeLowVision", + "FontAwesomeSolidEyeSlash", + "FontAwesomeSolidEye", + "FontAwesomeSolidF", + "FontAwesomeSolidFaceAngry", + "FontAwesomeSolidFaceDizzy", + "FontAwesomeSolidFaceFlushed", + "FontAwesomeSolidFaceFrownOpen", + "FontAwesomeSolidFaceFrown", + "FontAwesomeSolidFaceGrimace", + "FontAwesomeSolidFaceGrinBeamSweat", + "FontAwesomeSolidFaceGrinBeam", + "FontAwesomeSolidFaceGrinHearts", + "FontAwesomeSolidFaceGrinSquintTears", + "FontAwesomeSolidFaceGrinSquint", + "FontAwesomeSolidFaceGrinStars", + "FontAwesomeSolidFaceGrinTears", + "FontAwesomeSolidFaceGrinTongueSquint", + "FontAwesomeSolidFaceGrinTongueWink", + "FontAwesomeSolidFaceGrinTongue", + "FontAwesomeSolidFaceGrinWide", + "FontAwesomeSolidFaceGrinWink", + "FontAwesomeSolidFaceGrin", + "FontAwesomeSolidFaceKissBeam", + "FontAwesomeSolidFaceKissWinkHeart", + "FontAwesomeSolidFaceKiss", + "FontAwesomeSolidFaceLaughBeam", + "FontAwesomeSolidFaceLaughSquint", + "FontAwesomeSolidFaceLaughWink", + "FontAwesomeSolidFaceLaugh", + "FontAwesomeSolidFaceMehBlank", + "FontAwesomeSolidFaceMeh", + "FontAwesomeSolidFaceRollingEyes", + "FontAwesomeSolidFaceSadCry", + "FontAwesomeSolidFaceSadTear", + "FontAwesomeSolidFaceSmileBeam", + "FontAwesomeSolidFaceSmileWink", + "FontAwesomeSolidFaceSmile", + "FontAwesomeSolidFaceSurprise", + "FontAwesomeSolidFaceTired", + "FontAwesomeSolidFan", + "FontAwesomeSolidFaucetDrip", + "FontAwesomeSolidFaucet", + "FontAwesomeSolidFax", + "FontAwesomeSolidFeatherPointed", + "FontAwesomeSolidFeather", + "FontAwesomeSolidFerry", + "FontAwesomeSolidFileArrowDown", + "FontAwesomeSolidFileArrowUp", + "FontAwesomeSolidFileAudio", + "FontAwesomeSolidFileCircleCheck", + "FontAwesomeSolidFileCircleExclamation", + "FontAwesomeSolidFileCircleMinus", + "FontAwesomeSolidFileCirclePlus", + "FontAwesomeSolidFileCircleQuestion", + "FontAwesomeSolidFileCircleXmark", + "FontAwesomeSolidFileCode", + "FontAwesomeSolidFileContract", + "FontAwesomeSolidFileCsv", + "FontAwesomeSolidFileExcel", + "FontAwesomeSolidFileExport", + "FontAwesomeSolidFileImage", + "FontAwesomeSolidFileImport", + "FontAwesomeSolidFileInvoiceDollar", + "FontAwesomeSolidFileInvoice", + "FontAwesomeSolidFileLines", + "FontAwesomeSolidFileMedical", + "FontAwesomeSolidFilePdf", + "FontAwesomeSolidFilePen", + "FontAwesomeSolidFilePowerpoint", + "FontAwesomeSolidFilePrescription", + "FontAwesomeSolidFileShield", + "FontAwesomeSolidFileSignature", + "FontAwesomeSolidFileVideo", + "FontAwesomeSolidFileWaveform", + "FontAwesomeSolidFileWord", + "FontAwesomeSolidFileZipper", + "FontAwesomeSolidFile", + "FontAwesomeSolidFillDrip", + "FontAwesomeSolidFill", + "FontAwesomeSolidFilm", + "FontAwesomeSolidFilterCircleDollar", + "FontAwesomeSolidFilterCircleXmark", + "FontAwesomeSolidFilter", + "FontAwesomeSolidFingerprint", + "FontAwesomeSolidFireBurner", + "FontAwesomeSolidFireExtinguisher", + "FontAwesomeSolidFireFlameCurved", + "FontAwesomeSolidFireFlameSimple", + "FontAwesomeSolidFire", + "FontAwesomeSolidFishFins", + "FontAwesomeSolidFish", + "FontAwesomeSolidFlagCheckered", + "FontAwesomeSolidFlagUsa", + "FontAwesomeSolidFlag", + "FontAwesomeSolidFlaskVial", + "FontAwesomeSolidFlask", + "FontAwesomeSolidFloppyDisk", + "FontAwesomeSolidFlorinSign", + "FontAwesomeSolidFolderClosed", + "FontAwesomeSolidFolderMinus", + "FontAwesomeSolidFolderOpen", + "FontAwesomeSolidFolderPlus", + "FontAwesomeSolidFolderTree", + "FontAwesomeSolidFolder", + "FontAwesomeSolidFontAwesome", + "FontAwesomeSolidFont", + "FontAwesomeSolidFootball", + "FontAwesomeSolidForwardFast", + "FontAwesomeSolidForwardStep", + "FontAwesomeSolidForward", + "FontAwesomeSolidFrancSign", + "FontAwesomeSolidFrog", + "FontAwesomeSolidFutbol", + "FontAwesomeSolidG", + "FontAwesomeSolidGamepad", + "FontAwesomeSolidGasPump", + "FontAwesomeSolidGaugeHigh", + "FontAwesomeSolidGaugeSimpleHigh", + "FontAwesomeSolidGaugeSimple", + "FontAwesomeSolidGauge", + "FontAwesomeSolidGavel", + "FontAwesomeSolidGear", + "FontAwesomeSolidGears", + "FontAwesomeSolidGem", + "FontAwesomeSolidGenderless", + "FontAwesomeSolidGhost", + "FontAwesomeSolidGift", + "FontAwesomeSolidGifts", + "FontAwesomeSolidGlassWaterDroplet", + "FontAwesomeSolidGlassWater", + "FontAwesomeSolidGlasses", + "FontAwesomeSolidGlobe", + "FontAwesomeSolidGolfBallTee", + "FontAwesomeSolidGopuram", + "FontAwesomeSolidGraduationCap", + "FontAwesomeSolidGreaterThanEqual", + "FontAwesomeSolidGreaterThan", + "FontAwesomeSolidGripLinesVertical", + "FontAwesomeSolidGripLines", + "FontAwesomeSolidGripVertical", + "FontAwesomeSolidGrip", + "FontAwesomeSolidGroupArrowsRotate", + "FontAwesomeSolidGuaraniSign", + "FontAwesomeSolidGuitar", + "FontAwesomeSolidGun", + "FontAwesomeSolidH", + "FontAwesomeSolidHammer", + "FontAwesomeSolidHamsa", + "FontAwesomeSolidHandBackFist", + "FontAwesomeSolidHandDots", + "FontAwesomeSolidHandFist", + "FontAwesomeSolidHandHoldingDollar", + "FontAwesomeSolidHandHoldingDroplet", + "FontAwesomeSolidHandHoldingHand", + "FontAwesomeSolidHandHoldingHeart", + "FontAwesomeSolidHandHoldingMedical", + "FontAwesomeSolidHandHolding", + "FontAwesomeSolidHandLizard", + "FontAwesomeSolidHandMiddleFinger", + "FontAwesomeSolidHandPeace", + "FontAwesomeSolidHandPointDown", + "FontAwesomeSolidHandPointLeft", + "FontAwesomeSolidHandPointRight", + "FontAwesomeSolidHandPointUp", + "FontAwesomeSolidHandPointer", + "FontAwesomeSolidHandScissors", + "FontAwesomeSolidHandSparkles", + "FontAwesomeSolidHandSpock", + "FontAwesomeSolidHand", + "FontAwesomeSolidHandcuffs", + "FontAwesomeSolidHandsAslInterpreting", + "FontAwesomeSolidHandsBound", + "FontAwesomeSolidHandsBubbles", + "FontAwesomeSolidHandsClapping", + "FontAwesomeSolidHandsHoldingChild", + "FontAwesomeSolidHandsHoldingCircle", + "FontAwesomeSolidHandsHolding", + "FontAwesomeSolidHandsPraying", + "FontAwesomeSolidHands", + "FontAwesomeSolidHandshakeAngle", + "FontAwesomeSolidHandshakeSimpleSlash", + "FontAwesomeSolidHandshakeSimple", + "FontAwesomeSolidHandshakeSlash", + "FontAwesomeSolidHandshake", + "FontAwesomeSolidHanukiah", + "FontAwesomeSolidHardDrive", + "FontAwesomeSolidHashtag", + "FontAwesomeSolidHatCowboySide", + "FontAwesomeSolidHatCowboy", + "FontAwesomeSolidHatWizard", + "FontAwesomeSolidHeadSideCoughSlash", + "FontAwesomeSolidHeadSideCough", + "FontAwesomeSolidHeadSideMask", + "FontAwesomeSolidHeadSideVirus", + "FontAwesomeSolidHeading", + "FontAwesomeSolidHeadphonesSimple", + "FontAwesomeSolidHeadphones", + "FontAwesomeSolidHeadset", + "FontAwesomeSolidHeartCircleBolt", + "FontAwesomeSolidHeartCircleCheck", + "FontAwesomeSolidHeartCircleExclamation", + "FontAwesomeSolidHeartCircleMinus", + "FontAwesomeSolidHeartCirclePlus", + "FontAwesomeSolidHeartCircleXmark", + "FontAwesomeSolidHeartCrack", + "FontAwesomeSolidHeartPulse", + "FontAwesomeSolidHeart", + "FontAwesomeSolidHelicopterSymbol", + "FontAwesomeSolidHelicopter", + "FontAwesomeSolidHelmetSafety", + "FontAwesomeSolidHelmetUn", + "FontAwesomeSolidHighlighter", + "FontAwesomeSolidHillAvalanche", + "FontAwesomeSolidHillRockslide", + "FontAwesomeSolidHippo", + "FontAwesomeSolidHockeyPuck", + "FontAwesomeSolidHollyBerry", + "FontAwesomeSolidHorseHead", + "FontAwesomeSolidHorse", + "FontAwesomeSolidHospitalUser", + "FontAwesomeSolidHospital", + "FontAwesomeSolidHotTubPerson", + "FontAwesomeSolidHotdog", + "FontAwesomeSolidHotel", + "FontAwesomeSolidHourglassEmpty", + "FontAwesomeSolidHourglassEnd", + "FontAwesomeSolidHourglassStart", + "FontAwesomeSolidHourglass", + "FontAwesomeSolidHouseChimneyCrack", + "FontAwesomeSolidHouseChimneyMedical", + "FontAwesomeSolidHouseChimneyUser", + "FontAwesomeSolidHouseChimneyWindow", + "FontAwesomeSolidHouseChimney", + "FontAwesomeSolidHouseCircleCheck", + "FontAwesomeSolidHouseCircleExclamation", + "FontAwesomeSolidHouseCircleXmark", + "FontAwesomeSolidHouseCrack", + "FontAwesomeSolidHouseFire", + "FontAwesomeSolidHouseFlag", + "FontAwesomeSolidHouseFloodWaterCircleArrowRight", + "FontAwesomeSolidHouseFloodWater", + "FontAwesomeSolidHouseLaptop", + "FontAwesomeSolidHouseLock", + "FontAwesomeSolidHouseMedicalCircleCheck", + "FontAwesomeSolidHouseMedicalCircleExclamation", + "FontAwesomeSolidHouseMedicalCircleXmark", + "FontAwesomeSolidHouseMedicalFlag", + "FontAwesomeSolidHouseMedical", + "FontAwesomeSolidHouseSignal", + "FontAwesomeSolidHouseTsunami", + "FontAwesomeSolidHouseUser", + "FontAwesomeSolidHouse", + "FontAwesomeSolidHryvniaSign", + "FontAwesomeSolidHurricane", + "FontAwesomeSolidICursor", + "FontAwesomeSolidI", + "FontAwesomeSolidIceCream", + "FontAwesomeSolidIcicles", + "FontAwesomeSolidIcons", + "FontAwesomeSolidIdBadge", + "FontAwesomeSolidIdCardClip", + "FontAwesomeSolidIdCard", + "FontAwesomeSolidIgloo", + "FontAwesomeSolidImagePortrait", + "FontAwesomeSolidImage", + "FontAwesomeSolidImages", + "FontAwesomeSolidInbox", + "FontAwesomeSolidIndent", + "FontAwesomeSolidIndianRupeeSign", + "FontAwesomeSolidIndustry", + "FontAwesomeSolidInfinity", + "FontAwesomeSolidInfo", + "FontAwesomeSolidItalic", + "FontAwesomeSolidJ", + "FontAwesomeSolidJarWheat", + "FontAwesomeSolidJar", + "FontAwesomeSolidJedi", + "FontAwesomeSolidJetFighterUp", + "FontAwesomeSolidJetFighter", + "FontAwesomeSolidJoint", + "FontAwesomeSolidJugDetergent", + "FontAwesomeSolidK", + "FontAwesomeSolidKaaba", + "FontAwesomeSolidKey", + "FontAwesomeSolidKeyboard", + "FontAwesomeSolidKhanda", + "FontAwesomeSolidKipSign", + "FontAwesomeSolidKitMedical", + "FontAwesomeSolidKitchenSet", + "FontAwesomeSolidKiwiBird", + "FontAwesomeSolidL", + "FontAwesomeSolidLandMineOn", + "FontAwesomeSolidLandmarkDome", + "FontAwesomeSolidLandmarkFlag", + "FontAwesomeSolidLandmark", + "FontAwesomeSolidLanguage", + "FontAwesomeSolidLaptopCode", + "FontAwesomeSolidLaptopFile", + "FontAwesomeSolidLaptopMedical", + "FontAwesomeSolidLaptop", + "FontAwesomeSolidLariSign", + "FontAwesomeSolidLayerGroup", + "FontAwesomeSolidLeaf", + "FontAwesomeSolidLeftLong", + "FontAwesomeSolidLeftRight", + "FontAwesomeSolidLemon", + "FontAwesomeSolidLessThanEqual", + "FontAwesomeSolidLessThan", + "FontAwesomeSolidLifeRing", + "FontAwesomeSolidLightbulb", + "FontAwesomeSolidLinesLeaning", + "FontAwesomeSolidLinkSlash", + "FontAwesomeSolidLink", + "FontAwesomeSolidLiraSign", + "FontAwesomeSolidListCheck", + "FontAwesomeSolidListOl", + "FontAwesomeSolidListUl", + "FontAwesomeSolidList", + "FontAwesomeSolidLitecoinSign", + "FontAwesomeSolidLocationArrow", + "FontAwesomeSolidLocationCrosshairs", + "FontAwesomeSolidLocationDot", + "FontAwesomeSolidLocationPinLock", + "FontAwesomeSolidLocationPin", + "FontAwesomeSolidLockOpen", + "FontAwesomeSolidLock", + "FontAwesomeSolidLocust", + "FontAwesomeSolidLungsVirus", + "FontAwesomeSolidLungs", + "FontAwesomeSolidM", + "FontAwesomeSolidMagnet", + "FontAwesomeSolidMagnifyingGlassArrowRight", + "FontAwesomeSolidMagnifyingGlassChart", + "FontAwesomeSolidMagnifyingGlassDollar", + "FontAwesomeSolidMagnifyingGlassLocation", + "FontAwesomeSolidMagnifyingGlassMinus", + "FontAwesomeSolidMagnifyingGlassPlus", + "FontAwesomeSolidMagnifyingGlass", + "FontAwesomeSolidManatSign", + "FontAwesomeSolidMapLocationDot", + "FontAwesomeSolidMapLocation", + "FontAwesomeSolidMapPin", + "FontAwesomeSolidMap", + "FontAwesomeSolidMarker", + "FontAwesomeSolidMarsAndVenusBurst", + "FontAwesomeSolidMarsAndVenus", + "FontAwesomeSolidMarsDouble", + "FontAwesomeSolidMarsStrokeRight", + "FontAwesomeSolidMarsStrokeUp", + "FontAwesomeSolidMarsStroke", + "FontAwesomeSolidMars", + "FontAwesomeSolidMartiniGlassCitrus", + "FontAwesomeSolidMartiniGlassEmpty", + "FontAwesomeSolidMartiniGlass", + "FontAwesomeSolidMaskFace", + "FontAwesomeSolidMaskVentilator", + "FontAwesomeSolidMask", + "FontAwesomeSolidMasksTheater", + "FontAwesomeSolidMattressPillow", + "FontAwesomeSolidMaximize", + "FontAwesomeSolidMedal", + "FontAwesomeSolidMemory", + "FontAwesomeSolidMenorah", + "FontAwesomeSolidMercury", + "FontAwesomeSolidMessage", + "FontAwesomeSolidMeteor", + "FontAwesomeSolidMicrochip", + "FontAwesomeSolidMicrophoneLinesSlash", + "FontAwesomeSolidMicrophoneLines", + "FontAwesomeSolidMicrophoneSlash", + "FontAwesomeSolidMicrophone", + "FontAwesomeSolidMicroscope", + "FontAwesomeSolidMillSign", + "FontAwesomeSolidMinimize", + "FontAwesomeSolidMinus", + "FontAwesomeSolidMitten", + "FontAwesomeSolidMobileButton", + "FontAwesomeSolidMobileRetro", + "FontAwesomeSolidMobileScreenButton", + "FontAwesomeSolidMobileScreen", + "FontAwesomeSolidMobile", + "FontAwesomeSolidMoneyBill1Wave", + "FontAwesomeSolidMoneyBill1", + "FontAwesomeSolidMoneyBillTransfer", + "FontAwesomeSolidMoneyBillTrendUp", + "FontAwesomeSolidMoneyBillWave", + "FontAwesomeSolidMoneyBillWheat", + "FontAwesomeSolidMoneyBill", + "FontAwesomeSolidMoneyBills", + "FontAwesomeSolidMoneyCheckDollar", + "FontAwesomeSolidMoneyCheck", + "FontAwesomeSolidMonument", + "FontAwesomeSolidMoon", + "FontAwesomeSolidMortarPestle", + "FontAwesomeSolidMosque", + "FontAwesomeSolidMosquitoNet", + "FontAwesomeSolidMosquito", + "FontAwesomeSolidMotorcycle", + "FontAwesomeSolidMound", + "FontAwesomeSolidMountainCity", + "FontAwesomeSolidMountainSun", + "FontAwesomeSolidMountain", + "FontAwesomeSolidMugHot", + "FontAwesomeSolidMugSaucer", + "FontAwesomeSolidMusic", + "FontAwesomeSolidN", + "FontAwesomeSolidNairaSign", + "FontAwesomeSolidNetworkWired", + "FontAwesomeSolidNeuter", + "FontAwesomeSolidNewspaper", + "FontAwesomeSolidNotEqual", + "FontAwesomeSolidNoteSticky", + "FontAwesomeSolidNotesMedical", + "FontAwesomeSolidO", + "FontAwesomeSolidObjectGroup", + "FontAwesomeSolidObjectUngroup", + "FontAwesomeSolidOilCan", + "FontAwesomeSolidOilWell", + "FontAwesomeSolidOm", + "FontAwesomeSolidOtter", + "FontAwesomeSolidOutdent", + "FontAwesomeSolidP", + "FontAwesomeSolidPager", + "FontAwesomeSolidPaintRoller", + "FontAwesomeSolidPaintbrush", + "FontAwesomeSolidPalette", + "FontAwesomeSolidPallet", + "FontAwesomeSolidPanorama", + "FontAwesomeSolidPaperPlane", + "FontAwesomeSolidPaperclip", + "FontAwesomeSolidParachuteBox", + "FontAwesomeSolidParagraph", + "FontAwesomeSolidPassport", + "FontAwesomeSolidPaste", + "FontAwesomeSolidPause", + "FontAwesomeSolidPaw", + "FontAwesomeSolidPeace", + "FontAwesomeSolidPenClip", + "FontAwesomeSolidPenFancy", + "FontAwesomeSolidPenNib", + "FontAwesomeSolidPenRuler", + "FontAwesomeSolidPenToSquare", + "FontAwesomeSolidPen", + "FontAwesomeSolidPencil", + "FontAwesomeSolidPeopleArrowsLeftRight", + "FontAwesomeSolidPeopleCarryBox", + "FontAwesomeSolidPeopleGroup", + "FontAwesomeSolidPeopleLine", + "FontAwesomeSolidPeoplePulling", + "FontAwesomeSolidPeopleRobbery", + "FontAwesomeSolidPeopleRoof", + "FontAwesomeSolidPepperHot", + "FontAwesomeSolidPercent", + "FontAwesomeSolidPersonArrowDownToLine", + "FontAwesomeSolidPersonArrowUpFromLine", + "FontAwesomeSolidPersonBiking", + "FontAwesomeSolidPersonBooth", + "FontAwesomeSolidPersonBreastfeeding", + "FontAwesomeSolidPersonBurst", + "FontAwesomeSolidPersonCane", + "FontAwesomeSolidPersonChalkboard", + "FontAwesomeSolidPersonCircleCheck", + "FontAwesomeSolidPersonCircleExclamation", + "FontAwesomeSolidPersonCircleMinus", + "FontAwesomeSolidPersonCirclePlus", + "FontAwesomeSolidPersonCircleQuestion", + "FontAwesomeSolidPersonCircleXmark", + "FontAwesomeSolidPersonDigging", + "FontAwesomeSolidPersonDotsFromLine", + "FontAwesomeSolidPersonDressBurst", + "FontAwesomeSolidPersonDress", + "FontAwesomeSolidPersonDrowning", + "FontAwesomeSolidPersonFallingBurst", + "FontAwesomeSolidPersonFalling", + "FontAwesomeSolidPersonHalfDress", + "FontAwesomeSolidPersonHarassing", + "FontAwesomeSolidPersonHiking", + "FontAwesomeSolidPersonMilitaryPointing", + "FontAwesomeSolidPersonMilitaryRifle", + "FontAwesomeSolidPersonMilitaryToPerson", + "FontAwesomeSolidPersonPraying", + "FontAwesomeSolidPersonPregnant", + "FontAwesomeSolidPersonRays", + "FontAwesomeSolidPersonRifle", + "FontAwesomeSolidPersonRunning", + "FontAwesomeSolidPersonShelter", + "FontAwesomeSolidPersonSkating", + "FontAwesomeSolidPersonSkiingNordic", + "FontAwesomeSolidPersonSkiing", + "FontAwesomeSolidPersonSnowboarding", + "FontAwesomeSolidPersonSwimming", + "FontAwesomeSolidPersonThroughWindow", + "FontAwesomeSolidPersonWalkingArrowLoopLeft", + "FontAwesomeSolidPersonWalkingArrowRight", + "FontAwesomeSolidPersonWalkingDashedLineArrowRight", + "FontAwesomeSolidPersonWalkingLuggage", + "FontAwesomeSolidPersonWalkingWithCane", + "FontAwesomeSolidPersonWalking", + "FontAwesomeSolidPerson", + "FontAwesomeSolidPesetaSign", + "FontAwesomeSolidPesoSign", + "FontAwesomeSolidPhoneFlip", + "FontAwesomeSolidPhoneSlash", + "FontAwesomeSolidPhoneVolume", + "FontAwesomeSolidPhone", + "FontAwesomeSolidPhotoFilm", + "FontAwesomeSolidPiggyBank", + "FontAwesomeSolidPills", + "FontAwesomeSolidPizzaSlice", + "FontAwesomeSolidPlaceOfWorship", + "FontAwesomeSolidPlaneArrival", + "FontAwesomeSolidPlaneCircleCheck", + "FontAwesomeSolidPlaneCircleExclamation", + "FontAwesomeSolidPlaneCircleXmark", + "FontAwesomeSolidPlaneDeparture", + "FontAwesomeSolidPlaneLock", + "FontAwesomeSolidPlaneSlash", + "FontAwesomeSolidPlaneUp", + "FontAwesomeSolidPlane", + "FontAwesomeSolidPlantWilt", + "FontAwesomeSolidPlateWheat", + "FontAwesomeSolidPlay", + "FontAwesomeSolidPlugCircleBolt", + "FontAwesomeSolidPlugCircleCheck", + "FontAwesomeSolidPlugCircleExclamation", + "FontAwesomeSolidPlugCircleMinus", + "FontAwesomeSolidPlugCirclePlus", + "FontAwesomeSolidPlugCircleXmark", + "FontAwesomeSolidPlug", + "FontAwesomeSolidPlusMinus", + "FontAwesomeSolidPlus", + "FontAwesomeSolidPodcast", + "FontAwesomeSolidPooStorm", + "FontAwesomeSolidPoo", + "FontAwesomeSolidPoop", + "FontAwesomeSolidPowerOff", + "FontAwesomeSolidPrescriptionBottleMedical", + "FontAwesomeSolidPrescriptionBottle", + "FontAwesomeSolidPrescription", + "FontAwesomeSolidPrint", + "FontAwesomeSolidPumpMedical", + "FontAwesomeSolidPumpSoap", + "FontAwesomeSolidPuzzlePiece", + "FontAwesomeSolidQ", + "FontAwesomeSolidQrcode", + "FontAwesomeSolidQuestion", + "FontAwesomeSolidQuoteLeft", + "FontAwesomeSolidQuoteRight", + "FontAwesomeSolidR", + "FontAwesomeSolidRadiation", + "FontAwesomeSolidRadio", + "FontAwesomeSolidRainbow", + "FontAwesomeSolidRankingStar", + "FontAwesomeSolidReceipt", + "FontAwesomeSolidRecordVinyl", + "FontAwesomeSolidRectangleAd", + "FontAwesomeSolidRectangleList", + "FontAwesomeSolidRectangleXmark", + "FontAwesomeSolidRecycle", + "FontAwesomeSolidRegistered", + "FontAwesomeSolidRepeat", + "FontAwesomeSolidReplyAll", + "FontAwesomeSolidReply", + "FontAwesomeSolidRepublican", + "FontAwesomeSolidRestroom", + "FontAwesomeSolidRetweet", + "FontAwesomeSolidRibbon", + "FontAwesomeSolidRightFromBracket", + "FontAwesomeSolidRightLeft", + "FontAwesomeSolidRightLong", + "FontAwesomeSolidRightToBracket", + "FontAwesomeSolidRing", + "FontAwesomeSolidRoadBarrier", + "FontAwesomeSolidRoadBridge", + "FontAwesomeSolidRoadCircleCheck", + "FontAwesomeSolidRoadCircleExclamation", + "FontAwesomeSolidRoadCircleXmark", + "FontAwesomeSolidRoadLock", + "FontAwesomeSolidRoadSpikes", + "FontAwesomeSolidRoad", + "FontAwesomeSolidRobot", + "FontAwesomeSolidRocket", + "FontAwesomeSolidRotateLeft", + "FontAwesomeSolidRotateRight", + "FontAwesomeSolidRotate", + "FontAwesomeSolidRoute", + "FontAwesomeSolidRss", + "FontAwesomeSolidRubleSign", + "FontAwesomeSolidRug", + "FontAwesomeSolidRulerCombined", + "FontAwesomeSolidRulerHorizontal", + "FontAwesomeSolidRulerVertical", + "FontAwesomeSolidRuler", + "FontAwesomeSolidRupeeSign", + "FontAwesomeSolidRupiahSign", + "FontAwesomeSolidS", + "FontAwesomeSolidSackDollar", + "FontAwesomeSolidSackXmark", + "FontAwesomeSolidSailboat", + "FontAwesomeSolidSatelliteDish", + "FontAwesomeSolidSatellite", + "FontAwesomeSolidScaleBalanced", + "FontAwesomeSolidScaleUnbalancedFlip", + "FontAwesomeSolidScaleUnbalanced", + "FontAwesomeSolidSchoolCircleCheck", + "FontAwesomeSolidSchoolCircleExclamation", + "FontAwesomeSolidSchoolCircleXmark", + "FontAwesomeSolidSchoolFlag", + "FontAwesomeSolidSchoolLock", + "FontAwesomeSolidSchool", + "FontAwesomeSolidScissors", + "FontAwesomeSolidScrewdriverWrench", + "FontAwesomeSolidScrewdriver", + "FontAwesomeSolidScrollTorah", + "FontAwesomeSolidScroll", + "FontAwesomeSolidSdCard", + "FontAwesomeSolidSection", + "FontAwesomeSolidSeedling", + "FontAwesomeSolidServer", + "FontAwesomeSolidShapes", + "FontAwesomeSolidShareFromSquare", + "FontAwesomeSolidShareNodes", + "FontAwesomeSolidShare", + "FontAwesomeSolidSheetPlastic", + "FontAwesomeSolidShekelSign", + "FontAwesomeSolidShieldBlank", + "FontAwesomeSolidShieldCat", + "FontAwesomeSolidShieldDog", + "FontAwesomeSolidShieldHalved", + "FontAwesomeSolidShieldHeart", + "FontAwesomeSolidShieldVirus", + "FontAwesomeSolidShield", + "FontAwesomeSolidShip", + "FontAwesomeSolidShirt", + "FontAwesomeSolidShoePrints", + "FontAwesomeSolidShopLock", + "FontAwesomeSolidShopSlash", + "FontAwesomeSolidShop", + "FontAwesomeSolidShower", + "FontAwesomeSolidShrimp", + "FontAwesomeSolidShuffle", + "FontAwesomeSolidShuttleSpace", + "FontAwesomeSolidSignHanging", + "FontAwesomeSolidSignal", + "FontAwesomeSolidSignature", + "FontAwesomeSolidSignsPost", + "FontAwesomeSolidSimCard", + "FontAwesomeSolidSink", + "FontAwesomeSolidSitemap", + "FontAwesomeSolidSkullCrossbones", + "FontAwesomeSolidSkull", + "FontAwesomeSolidSlash", + "FontAwesomeSolidSleigh", + "FontAwesomeSolidSliders", + "FontAwesomeSolidSmog", + "FontAwesomeSolidSmoking", + "FontAwesomeSolidSnowflake", + "FontAwesomeSolidSnowman", + "FontAwesomeSolidSnowplow", + "FontAwesomeSolidSoap", + "FontAwesomeSolidSocks", + "FontAwesomeSolidSolarPanel", + "FontAwesomeSolidSortDown", + "FontAwesomeSolidSortUp", + "FontAwesomeSolidSort", + "FontAwesomeSolidSpa", + "FontAwesomeSolidSpaghettiMonsterFlying", + "FontAwesomeSolidSpellCheck", + "FontAwesomeSolidSpider", + "FontAwesomeSolidSpinner", + "FontAwesomeSolidSplotch", + "FontAwesomeSolidSpoon", + "FontAwesomeSolidSprayCanSparkles", + "FontAwesomeSolidSprayCan", + "FontAwesomeSolidSquareArrowUpRight", + "FontAwesomeSolidSquareCaretDown", + "FontAwesomeSolidSquareCaretLeft", + "FontAwesomeSolidSquareCaretRight", + "FontAwesomeSolidSquareCaretUp", + "FontAwesomeSolidSquareCheck", + "FontAwesomeSolidSquareEnvelope", + "FontAwesomeSolidSquareFull", + "FontAwesomeSolidSquareH", + "FontAwesomeSolidSquareMinus", + "FontAwesomeSolidSquareNfi", + "FontAwesomeSolidSquareParking", + "FontAwesomeSolidSquarePen", + "FontAwesomeSolidSquarePersonConfined", + "FontAwesomeSolidSquarePhoneFlip", + "FontAwesomeSolidSquarePhone", + "FontAwesomeSolidSquarePlus", + "FontAwesomeSolidSquarePollHorizontal", + "FontAwesomeSolidSquarePollVertical", + "FontAwesomeSolidSquareRootVariable", + "FontAwesomeSolidSquareRss", + "FontAwesomeSolidSquareShareNodes", + "FontAwesomeSolidSquareUpRight", + "FontAwesomeSolidSquareVirus", + "FontAwesomeSolidSquareXmark", + "FontAwesomeSolidSquare", + "FontAwesomeSolidStaffAesculapius", + "FontAwesomeSolidStairs", + "FontAwesomeSolidStamp", + "FontAwesomeSolidStarAndCrescent", + "FontAwesomeSolidStarHalfStroke", + "FontAwesomeSolidStarHalf", + "FontAwesomeSolidStarOfDavid", + "FontAwesomeSolidStarOfLife", + "FontAwesomeSolidStar", + "FontAwesomeSolidSterlingSign", + "FontAwesomeSolidStethoscope", + "FontAwesomeSolidStop", + "FontAwesomeSolidStopwatch20", + "FontAwesomeSolidStopwatch", + "FontAwesomeSolidStoreSlash", + "FontAwesomeSolidStore", + "FontAwesomeSolidStreetView", + "FontAwesomeSolidStrikethrough", + "FontAwesomeSolidStroopwafel", + "FontAwesomeSolidSubscript", + "FontAwesomeSolidSuitcaseMedical", + "FontAwesomeSolidSuitcaseRolling", + "FontAwesomeSolidSuitcase", + "FontAwesomeSolidSunPlantWilt", + "FontAwesomeSolidSun", + "FontAwesomeSolidSuperscript", + "FontAwesomeSolidSwatchbook", + "FontAwesomeSolidSynagogue", + "FontAwesomeSolidSyringe", + "FontAwesomeSolidT", + "FontAwesomeSolidTableCellsLarge", + "FontAwesomeSolidTableCells", + "FontAwesomeSolidTableColumns", + "FontAwesomeSolidTableList", + "FontAwesomeSolidTableTennisPaddleBall", + "FontAwesomeSolidTable", + "FontAwesomeSolidTabletButton", + "FontAwesomeSolidTabletScreenButton", + "FontAwesomeSolidTablet", + "FontAwesomeSolidTablets", + "FontAwesomeSolidTachographDigital", + "FontAwesomeSolidTag", + "FontAwesomeSolidTags", + "FontAwesomeSolidTape", + "FontAwesomeSolidTarpDroplet", + "FontAwesomeSolidTarp", + "FontAwesomeSolidTaxi", + "FontAwesomeSolidTeethOpen", + "FontAwesomeSolidTeeth", + "FontAwesomeSolidTemperatureArrowDown", + "FontAwesomeSolidTemperatureArrowUp", + "FontAwesomeSolidTemperatureEmpty", + "FontAwesomeSolidTemperatureFull", + "FontAwesomeSolidTemperatureHalf", + "FontAwesomeSolidTemperatureHigh", + "FontAwesomeSolidTemperatureLow", + "FontAwesomeSolidTemperatureQuarter", + "FontAwesomeSolidTemperatureThreeQuarters", + "FontAwesomeSolidTengeSign", + "FontAwesomeSolidTentArrowDownToLine", + "FontAwesomeSolidTentArrowLeftRight", + "FontAwesomeSolidTentArrowTurnLeft", + "FontAwesomeSolidTentArrowsDown", + "FontAwesomeSolidTent", + "FontAwesomeSolidTents", + "FontAwesomeSolidTerminal", + "FontAwesomeSolidTextHeight", + "FontAwesomeSolidTextSlash", + "FontAwesomeSolidTextWidth", + "FontAwesomeSolidThermometer", + "FontAwesomeSolidThumbsDown", + "FontAwesomeSolidThumbsUp", + "FontAwesomeSolidThumbtack", + "FontAwesomeSolidTicketSimple", + "FontAwesomeSolidTicket", + "FontAwesomeSolidTimeline", + "FontAwesomeSolidToggleOff", + "FontAwesomeSolidToggleOn", + "FontAwesomeSolidToiletPaperSlash", + "FontAwesomeSolidToiletPaper", + "FontAwesomeSolidToiletPortable", + "FontAwesomeSolidToilet", + "FontAwesomeSolidToiletsPortable", + "FontAwesomeSolidToolbox", + "FontAwesomeSolidTooth", + "FontAwesomeSolidToriiGate", + "FontAwesomeSolidTornado", + "FontAwesomeSolidTowerBroadcast", + "FontAwesomeSolidTowerCell", + "FontAwesomeSolidTowerObservation", + "FontAwesomeSolidTractor", + "FontAwesomeSolidTrademark", + "FontAwesomeSolidTrafficLight", + "FontAwesomeSolidTrailer", + "FontAwesomeSolidTrainSubway", + "FontAwesomeSolidTrainTram", + "FontAwesomeSolidTrain", + "FontAwesomeSolidTransgender", + "FontAwesomeSolidTrashArrowUp", + "FontAwesomeSolidTrashCanArrowUp", + "FontAwesomeSolidTrashCan", + "FontAwesomeSolidTrash", + "FontAwesomeSolidTreeCity", + "FontAwesomeSolidTree", + "FontAwesomeSolidTriangleExclamation", + "FontAwesomeSolidTrophy", + "FontAwesomeSolidTrowelBricks", + "FontAwesomeSolidTrowel", + "FontAwesomeSolidTruckArrowRight", + "FontAwesomeSolidTruckDroplet", + "FontAwesomeSolidTruckFast", + "FontAwesomeSolidTruckFieldUn", + "FontAwesomeSolidTruckField", + "FontAwesomeSolidTruckFront", + "FontAwesomeSolidTruckMedical", + "FontAwesomeSolidTruckMonster", + "FontAwesomeSolidTruckMoving", + "FontAwesomeSolidTruckPickup", + "FontAwesomeSolidTruckPlane", + "FontAwesomeSolidTruckRampBox", + "FontAwesomeSolidTruck", + "FontAwesomeSolidTty", + "FontAwesomeSolidTurkishLiraSign", + "FontAwesomeSolidTurnDown", + "FontAwesomeSolidTurnUp", + "FontAwesomeSolidTv", + "FontAwesomeSolidU", + "FontAwesomeSolidUmbrellaBeach", + "FontAwesomeSolidUmbrella", + "FontAwesomeSolidUnderline", + "FontAwesomeSolidUniversalAccess", + "FontAwesomeSolidUnlockKeyhole", + "FontAwesomeSolidUnlock", + "FontAwesomeSolidUpDownLeftRight", + "FontAwesomeSolidUpDown", + "FontAwesomeSolidUpLong", + "FontAwesomeSolidUpRightAndDownLeftFromCenter", + "FontAwesomeSolidUpRightFromSquare", + "FontAwesomeSolidUpload", + "FontAwesomeSolidUserAstronaut", + "FontAwesomeSolidUserCheck", + "FontAwesomeSolidUserClock", + "FontAwesomeSolidUserDoctor", + "FontAwesomeSolidUserGear", + "FontAwesomeSolidUserGraduate", + "FontAwesomeSolidUserGroup", + "FontAwesomeSolidUserInjured", + "FontAwesomeSolidUserLargeSlash", + "FontAwesomeSolidUserLarge", + "FontAwesomeSolidUserLock", + "FontAwesomeSolidUserMinus", + "FontAwesomeSolidUserNinja", + "FontAwesomeSolidUserNurse", + "FontAwesomeSolidUserPen", + "FontAwesomeSolidUserPlus", + "FontAwesomeSolidUserSecret", + "FontAwesomeSolidUserShield", + "FontAwesomeSolidUserSlash", + "FontAwesomeSolidUserTag", + "FontAwesomeSolidUserTie", + "FontAwesomeSolidUserXmark", + "FontAwesomeSolidUser", + "FontAwesomeSolidUsersBetweenLines", + "FontAwesomeSolidUsersGear", + "FontAwesomeSolidUsersLine", + "FontAwesomeSolidUsersRays", + "FontAwesomeSolidUsersRectangle", + "FontAwesomeSolidUsersSlash", + "FontAwesomeSolidUsersViewfinder", + "FontAwesomeSolidUsers", + "FontAwesomeSolidUtensils", + "FontAwesomeSolidV", + "FontAwesomeSolidVanShuttle", + "FontAwesomeSolidVault", + "FontAwesomeSolidVectorSquare", + "FontAwesomeSolidVenusDouble", + "FontAwesomeSolidVenusMars", + "FontAwesomeSolidVenus", + "FontAwesomeSolidVestPatches", + "FontAwesomeSolidVest", + "FontAwesomeSolidVialCircleCheck", + "FontAwesomeSolidVialVirus", + "FontAwesomeSolidVial", + "FontAwesomeSolidVials", + "FontAwesomeSolidVideoSlash", + "FontAwesomeSolidVideo", + "FontAwesomeSolidVihara", + "FontAwesomeSolidVirusCovidSlash", + "FontAwesomeSolidVirusCovid", + "FontAwesomeSolidVirusSlash", + "FontAwesomeSolidVirus", + "FontAwesomeSolidViruses", + "FontAwesomeSolidVoicemail", + "FontAwesomeSolidVolcano", + "FontAwesomeSolidVolleyball", + "FontAwesomeSolidVolumeHigh", + "FontAwesomeSolidVolumeLow", + "FontAwesomeSolidVolumeOff", + "FontAwesomeSolidVolumeXmark", + "FontAwesomeSolidVrCardboard", + "FontAwesomeSolidW", + "FontAwesomeSolidWalkieTalkie", + "FontAwesomeSolidWallet", + "FontAwesomeSolidWandMagicSparkles", + "FontAwesomeSolidWandMagic", + "FontAwesomeSolidWandSparkles", + "FontAwesomeSolidWarehouse", + "FontAwesomeSolidWaterLadder", + "FontAwesomeSolidWater", + "FontAwesomeSolidWaveSquare", + "FontAwesomeSolidWeightHanging", + "FontAwesomeSolidWeightScale", + "FontAwesomeSolidWheatAwnCircleExclamation", + "FontAwesomeSolidWheatAwn", + "FontAwesomeSolidWheelchairMove", + "FontAwesomeSolidWheelchair", + "FontAwesomeSolidWhiskeyGlass", + "FontAwesomeSolidWifi", + "FontAwesomeSolidWind", + "FontAwesomeSolidWindowMaximize", + "FontAwesomeSolidWindowMinimize", + "FontAwesomeSolidWindowRestore", + "FontAwesomeSolidWineBottle", + "FontAwesomeSolidWineGlassEmpty", + "FontAwesomeSolidWineGlass", + "FontAwesomeSolidWonSign", + "FontAwesomeSolidWorm", + "FontAwesomeSolidWrench", + "FontAwesomeSolidXRay", + "FontAwesomeSolidX", + "FontAwesomeSolidXmark", + "FontAwesomeSolidXmarksLines", + "FontAwesomeSolidY", + "FontAwesomeSolidYenSign", + "FontAwesomeSolidYinYang", + "FontAwesomeSolidZ" + ], + "generator": [ + "quote", + "convert_case", + "proc-macro2", + "regex", + "base64" + ], + "heroicons_mini_solid": [ + "HeroiconsMiniSolidAcademicCap", + "HeroiconsMiniSolidAdjustmentsHorizontal", + "HeroiconsMiniSolidAdjustmentsVertical", + "HeroiconsMiniSolidArchiveBoxArrowDown", + "HeroiconsMiniSolidArchiveBoxXMark", + "HeroiconsMiniSolidArchiveBox", + "HeroiconsMiniSolidArrowDownCircle", + "HeroiconsMiniSolidArrowDownLeft", + "HeroiconsMiniSolidArrowDownOnSquareStack", + "HeroiconsMiniSolidArrowDownOnSquare", + "HeroiconsMiniSolidArrowDownRight", + "HeroiconsMiniSolidArrowDownTray", + "HeroiconsMiniSolidArrowDown", + "HeroiconsMiniSolidArrowLeftCircle", + "HeroiconsMiniSolidArrowLeftOnRectangle", + "HeroiconsMiniSolidArrowLeft", + "HeroiconsMiniSolidArrowLongDown", + "HeroiconsMiniSolidArrowLongLeft", + "HeroiconsMiniSolidArrowLongRight", + "HeroiconsMiniSolidArrowLongUp", + "HeroiconsMiniSolidArrowPathRoundedSquare", + "HeroiconsMiniSolidArrowPath", + "HeroiconsMiniSolidArrowRightCircle", + "HeroiconsMiniSolidArrowRightOnRectangle", + "HeroiconsMiniSolidArrowRight", + "HeroiconsMiniSolidArrowSmallDown", + "HeroiconsMiniSolidArrowSmallLeft", + "HeroiconsMiniSolidArrowSmallRight", + "HeroiconsMiniSolidArrowSmallUp", + "HeroiconsMiniSolidArrowTopRightOnSquare", + "HeroiconsMiniSolidArrowTrendingDown", + "HeroiconsMiniSolidArrowTrendingUp", + "HeroiconsMiniSolidArrowUpCircle", + "HeroiconsMiniSolidArrowUpLeft", + "HeroiconsMiniSolidArrowUpOnSquareStack", + "HeroiconsMiniSolidArrowUpOnSquare", + "HeroiconsMiniSolidArrowUpRight", + "HeroiconsMiniSolidArrowUpTray", + "HeroiconsMiniSolidArrowUp", + "HeroiconsMiniSolidArrowUturnDown", + "HeroiconsMiniSolidArrowUturnLeft", + "HeroiconsMiniSolidArrowUturnRight", + "HeroiconsMiniSolidArrowUturnUp", + "HeroiconsMiniSolidArrowsPointingIn", + "HeroiconsMiniSolidArrowsPointingOut", + "HeroiconsMiniSolidArrowsRightLeft", + "HeroiconsMiniSolidArrowsUpDown", + "HeroiconsMiniSolidAtSymbol", + "HeroiconsMiniSolidBackspace", + "HeroiconsMiniSolidBackward", + "HeroiconsMiniSolidBanknotes", + "HeroiconsMiniSolidBars2", + "HeroiconsMiniSolidBars3BottomLeft", + "HeroiconsMiniSolidBars3BottomRight", + "HeroiconsMiniSolidBars3CenterLeft", + "HeroiconsMiniSolidBars3", + "HeroiconsMiniSolidBars4", + "HeroiconsMiniSolidBarsArrowDown", + "HeroiconsMiniSolidBarsArrowUp", + "HeroiconsMiniSolidBattery0", + "HeroiconsMiniSolidBattery100", + "HeroiconsMiniSolidBattery50", + "HeroiconsMiniSolidBeaker", + "HeroiconsMiniSolidBellAlert", + "HeroiconsMiniSolidBellSlash", + "HeroiconsMiniSolidBellSnooze", + "HeroiconsMiniSolidBell", + "HeroiconsMiniSolidBoltSlash", + "HeroiconsMiniSolidBolt", + "HeroiconsMiniSolidBookOpen", + "HeroiconsMiniSolidBookmarkSlash", + "HeroiconsMiniSolidBookmarkSquare", + "HeroiconsMiniSolidBookmark", + "HeroiconsMiniSolidBriefcase", + "HeroiconsMiniSolidBugAnt", + "HeroiconsMiniSolidBuildingLibrary", + "HeroiconsMiniSolidBuildingOffice2", + "HeroiconsMiniSolidBuildingOffice", + "HeroiconsMiniSolidBuildingStorefront", + "HeroiconsMiniSolidCake", + "HeroiconsMiniSolidCalculator", + "HeroiconsMiniSolidCalendarDays", + "HeroiconsMiniSolidCalendar", + "HeroiconsMiniSolidCamera", + "HeroiconsMiniSolidChartBarSquare", + "HeroiconsMiniSolidChartBar", + "HeroiconsMiniSolidChartPie", + "HeroiconsMiniSolidChatBubbleBottomCenterText", + "HeroiconsMiniSolidChatBubbleBottomCenter", + "HeroiconsMiniSolidChatBubbleLeftEllipsis", + "HeroiconsMiniSolidChatBubbleLeftRight", + "HeroiconsMiniSolidChatBubbleLeft", + "HeroiconsMiniSolidChatBubbleOvalLeftEllipsis", + "HeroiconsMiniSolidChatBubbleOvalLeft", + "HeroiconsMiniSolidCheckBadge", + "HeroiconsMiniSolidCheckCircle", + "HeroiconsMiniSolidCheck", + "HeroiconsMiniSolidChevronDoubleDown", + "HeroiconsMiniSolidChevronDoubleLeft", + "HeroiconsMiniSolidChevronDoubleRight", + "HeroiconsMiniSolidChevronDoubleUp", + "HeroiconsMiniSolidChevronDown", + "HeroiconsMiniSolidChevronLeft", + "HeroiconsMiniSolidChevronRight", + "HeroiconsMiniSolidChevronUpDown", + "HeroiconsMiniSolidChevronUp", + "HeroiconsMiniSolidCircleStack", + "HeroiconsMiniSolidClipboardDocumentCheck", + "HeroiconsMiniSolidClipboardDocumentList", + "HeroiconsMiniSolidClipboardDocument", + "HeroiconsMiniSolidClipboard", + "HeroiconsMiniSolidClock", + "HeroiconsMiniSolidCloudArrowDown", + "HeroiconsMiniSolidCloudArrowUp", + "HeroiconsMiniSolidCloud", + "HeroiconsMiniSolidCodeBracketSquare", + "HeroiconsMiniSolidCodeBracket", + "HeroiconsMiniSolidCog6Tooth", + "HeroiconsMiniSolidCog8Tooth", + "HeroiconsMiniSolidCog", + "HeroiconsMiniSolidCommandLine", + "HeroiconsMiniSolidComputerDesktop", + "HeroiconsMiniSolidCpuChip", + "HeroiconsMiniSolidCreditCard", + "HeroiconsMiniSolidCubeTransparent", + "HeroiconsMiniSolidCube", + "HeroiconsMiniSolidCurrencyBangladeshi", + "HeroiconsMiniSolidCurrencyDollar", + "HeroiconsMiniSolidCurrencyEuro", + "HeroiconsMiniSolidCurrencyPound", + "HeroiconsMiniSolidCurrencyRupee", + "HeroiconsMiniSolidCurrencyYen", + "HeroiconsMiniSolidCursorArrowRays", + "HeroiconsMiniSolidCursorArrowRipple", + "HeroiconsMiniSolidDevicePhoneMobile", + "HeroiconsMiniSolidDeviceTablet", + "HeroiconsMiniSolidDocumentArrowDown", + "HeroiconsMiniSolidDocumentArrowUp", + "HeroiconsMiniSolidDocumentChartBar", + "HeroiconsMiniSolidDocumentCheck", + "HeroiconsMiniSolidDocumentDuplicate", + "HeroiconsMiniSolidDocumentMagnifyingGlass", + "HeroiconsMiniSolidDocumentMinus", + "HeroiconsMiniSolidDocumentPlus", + "HeroiconsMiniSolidDocumentText", + "HeroiconsMiniSolidDocument", + "HeroiconsMiniSolidEllipsisHorizontalCircle", + "HeroiconsMiniSolidEllipsisHorizontal", + "HeroiconsMiniSolidEllipsisVertical", + "HeroiconsMiniSolidEnvelopeOpen", + "HeroiconsMiniSolidEnvelope", + "HeroiconsMiniSolidExclamationCircle", + "HeroiconsMiniSolidExclamationTriangle", + "HeroiconsMiniSolidEyeDropper", + "HeroiconsMiniSolidEyeSlash", + "HeroiconsMiniSolidEye", + "HeroiconsMiniSolidFaceFrown", + "HeroiconsMiniSolidFaceSmile", + "HeroiconsMiniSolidFilm", + "HeroiconsMiniSolidFingerPrint", + "HeroiconsMiniSolidFire", + "HeroiconsMiniSolidFlag", + "HeroiconsMiniSolidFolderArrowDown", + "HeroiconsMiniSolidFolderMinus", + "HeroiconsMiniSolidFolderOpen", + "HeroiconsMiniSolidFolderPlus", + "HeroiconsMiniSolidFolder", + "HeroiconsMiniSolidForward", + "HeroiconsMiniSolidFunnel", + "HeroiconsMiniSolidGif", + "HeroiconsMiniSolidGiftTop", + "HeroiconsMiniSolidGift", + "HeroiconsMiniSolidGlobeAlt", + "HeroiconsMiniSolidGlobeAmericas", + "HeroiconsMiniSolidGlobeAsiaAustralia", + "HeroiconsMiniSolidGlobeEuropeAfrica", + "HeroiconsMiniSolidHandRaised", + "HeroiconsMiniSolidHandThumbDown", + "HeroiconsMiniSolidHandThumbUp", + "HeroiconsMiniSolidHashtag", + "HeroiconsMiniSolidHeart", + "HeroiconsMiniSolidHomeModern", + "HeroiconsMiniSolidHome", + "HeroiconsMiniSolidIdentification", + "HeroiconsMiniSolidInboxArrowDown", + "HeroiconsMiniSolidInboxStack", + "HeroiconsMiniSolidInbox", + "HeroiconsMiniSolidInformationCircle", + "HeroiconsMiniSolidKey", + "HeroiconsMiniSolidLanguage", + "HeroiconsMiniSolidLifebuoy", + "HeroiconsMiniSolidLightBulb", + "HeroiconsMiniSolidLink", + "HeroiconsMiniSolidListBullet", + "HeroiconsMiniSolidLockClosed", + "HeroiconsMiniSolidLockOpen", + "HeroiconsMiniSolidMagnifyingGlassCircle", + "HeroiconsMiniSolidMagnifyingGlassMinus", + "HeroiconsMiniSolidMagnifyingGlassPlus", + "HeroiconsMiniSolidMagnifyingGlass", + "HeroiconsMiniSolidMapPin", + "HeroiconsMiniSolidMap", + "HeroiconsMiniSolidMegaphone", + "HeroiconsMiniSolidMicrophone", + "HeroiconsMiniSolidMinusCircle", + "HeroiconsMiniSolidMinusSmall", + "HeroiconsMiniSolidMinus", + "HeroiconsMiniSolidMoon", + "HeroiconsMiniSolidMusicalNote", + "HeroiconsMiniSolidNewspaper", + "HeroiconsMiniSolidNoSymbol", + "HeroiconsMiniSolidPaintBrush", + "HeroiconsMiniSolidPaperAirplane", + "HeroiconsMiniSolidPaperClip", + "HeroiconsMiniSolidPauseCircle", + "HeroiconsMiniSolidPause", + "HeroiconsMiniSolidPencilSquare", + "HeroiconsMiniSolidPencil", + "HeroiconsMiniSolidPhoneArrowDownLeft", + "HeroiconsMiniSolidPhoneArrowUpRight", + "HeroiconsMiniSolidPhoneXMark", + "HeroiconsMiniSolidPhone", + "HeroiconsMiniSolidPhoto", + "HeroiconsMiniSolidPlayCircle", + "HeroiconsMiniSolidPlayPause", + "HeroiconsMiniSolidPlay", + "HeroiconsMiniSolidPlusCircle", + "HeroiconsMiniSolidPlusSmall", + "HeroiconsMiniSolidPlus", + "HeroiconsMiniSolidPower", + "HeroiconsMiniSolidPresentationChartBar", + "HeroiconsMiniSolidPresentationChartLine", + "HeroiconsMiniSolidPrinter", + "HeroiconsMiniSolidPuzzlePiece", + "HeroiconsMiniSolidQrCode", + "HeroiconsMiniSolidQuestionMarkCircle", + "HeroiconsMiniSolidQueueList", + "HeroiconsMiniSolidRadio", + "HeroiconsMiniSolidReceiptPercent", + "HeroiconsMiniSolidReceiptRefund", + "HeroiconsMiniSolidRectangleGroup", + "HeroiconsMiniSolidRectangleStack", + "HeroiconsMiniSolidRocketLaunch", + "HeroiconsMiniSolidRss", + "HeroiconsMiniSolidScale", + "HeroiconsMiniSolidScissors", + "HeroiconsMiniSolidServerStack", + "HeroiconsMiniSolidServer", + "HeroiconsMiniSolidShare", + "HeroiconsMiniSolidShieldCheck", + "HeroiconsMiniSolidShieldExclamation", + "HeroiconsMiniSolidShoppingBag", + "HeroiconsMiniSolidShoppingCart", + "HeroiconsMiniSolidSignalSlash", + "HeroiconsMiniSolidSignal", + "HeroiconsMiniSolidSparkles", + "HeroiconsMiniSolidSpeakerWave", + "HeroiconsMiniSolidSpeakerXMark", + "HeroiconsMiniSolidSquare2Stack", + "HeroiconsMiniSolidSquare3Stack3D", + "HeroiconsMiniSolidSquares2X2", + "HeroiconsMiniSolidSquaresPlus", + "HeroiconsMiniSolidStar", + "HeroiconsMiniSolidStopCircle", + "HeroiconsMiniSolidStop", + "HeroiconsMiniSolidSun", + "HeroiconsMiniSolidSwatch", + "HeroiconsMiniSolidTableCells", + "HeroiconsMiniSolidTag", + "HeroiconsMiniSolidTicket", + "HeroiconsMiniSolidTrash", + "HeroiconsMiniSolidTrophy", + "HeroiconsMiniSolidTruck", + "HeroiconsMiniSolidTv", + "HeroiconsMiniSolidUserCircle", + "HeroiconsMiniSolidUserGroup", + "HeroiconsMiniSolidUserMinus", + "HeroiconsMiniSolidUserPlus", + "HeroiconsMiniSolidUser", + "HeroiconsMiniSolidUsers", + "HeroiconsMiniSolidVariable", + "HeroiconsMiniSolidVideoCameraSlash", + "HeroiconsMiniSolidVideoCamera", + "HeroiconsMiniSolidViewColumns", + "HeroiconsMiniSolidViewfinderCircle", + "HeroiconsMiniSolidWallet", + "HeroiconsMiniSolidWifi", + "HeroiconsMiniSolidWindow", + "HeroiconsMiniSolidWrenchScrewdriver", + "HeroiconsMiniSolidWrench", + "HeroiconsMiniSolidXCircle", + "HeroiconsMiniSolidXMark" + ], + "heroicons_outline": [ + "HeroiconsOutlineAcademicCap", + "HeroiconsOutlineAdjustmentsHorizontal", + "HeroiconsOutlineAdjustmentsVertical", + "HeroiconsOutlineArchiveBoxArrowDown", + "HeroiconsOutlineArchiveBoxXMark", + "HeroiconsOutlineArchiveBox", + "HeroiconsOutlineArrowDownCircle", + "HeroiconsOutlineArrowDownLeft", + "HeroiconsOutlineArrowDownOnSquareStack", + "HeroiconsOutlineArrowDownOnSquare", + "HeroiconsOutlineArrowDownRight", + "HeroiconsOutlineArrowDownTray", + "HeroiconsOutlineArrowDown", + "HeroiconsOutlineArrowLeftCircle", + "HeroiconsOutlineArrowLeftOnRectangle", + "HeroiconsOutlineArrowLeft", + "HeroiconsOutlineArrowLongDown", + "HeroiconsOutlineArrowLongLeft", + "HeroiconsOutlineArrowLongRight", + "HeroiconsOutlineArrowLongUp", + "HeroiconsOutlineArrowPathRoundedSquare", + "HeroiconsOutlineArrowPath", + "HeroiconsOutlineArrowRightCircle", + "HeroiconsOutlineArrowRightOnRectangle", + "HeroiconsOutlineArrowRight", + "HeroiconsOutlineArrowSmallDown", + "HeroiconsOutlineArrowSmallLeft", + "HeroiconsOutlineArrowSmallRight", + "HeroiconsOutlineArrowSmallUp", + "HeroiconsOutlineArrowTopRightOnSquare", + "HeroiconsOutlineArrowTrendingDown", + "HeroiconsOutlineArrowTrendingUp", + "HeroiconsOutlineArrowUpCircle", + "HeroiconsOutlineArrowUpLeft", + "HeroiconsOutlineArrowUpOnSquareStack", + "HeroiconsOutlineArrowUpOnSquare", + "HeroiconsOutlineArrowUpRight", + "HeroiconsOutlineArrowUpTray", + "HeroiconsOutlineArrowUp", + "HeroiconsOutlineArrowUturnDown", + "HeroiconsOutlineArrowUturnLeft", + "HeroiconsOutlineArrowUturnRight", + "HeroiconsOutlineArrowUturnUp", + "HeroiconsOutlineArrowsPointingIn", + "HeroiconsOutlineArrowsPointingOut", + "HeroiconsOutlineArrowsRightLeft", + "HeroiconsOutlineArrowsUpDown", + "HeroiconsOutlineAtSymbol", + "HeroiconsOutlineBackspace", + "HeroiconsOutlineBackward", + "HeroiconsOutlineBanknotes", + "HeroiconsOutlineBars2", + "HeroiconsOutlineBars3BottomLeft", + "HeroiconsOutlineBars3BottomRight", + "HeroiconsOutlineBars3CenterLeft", + "HeroiconsOutlineBars3", + "HeroiconsOutlineBars4", + "HeroiconsOutlineBarsArrowDown", + "HeroiconsOutlineBarsArrowUp", + "HeroiconsOutlineBattery0", + "HeroiconsOutlineBattery100", + "HeroiconsOutlineBattery50", + "HeroiconsOutlineBeaker", + "HeroiconsOutlineBellAlert", + "HeroiconsOutlineBellSlash", + "HeroiconsOutlineBellSnooze", + "HeroiconsOutlineBell", + "HeroiconsOutlineBoltSlash", + "HeroiconsOutlineBolt", + "HeroiconsOutlineBookOpen", + "HeroiconsOutlineBookmarkSlash", + "HeroiconsOutlineBookmarkSquare", + "HeroiconsOutlineBookmark", + "HeroiconsOutlineBriefcase", + "HeroiconsOutlineBugAnt", + "HeroiconsOutlineBuildingLibrary", + "HeroiconsOutlineBuildingOffice2", + "HeroiconsOutlineBuildingOffice", + "HeroiconsOutlineBuildingStorefront", + "HeroiconsOutlineCake", + "HeroiconsOutlineCalculator", + "HeroiconsOutlineCalendarDays", + "HeroiconsOutlineCalendar", + "HeroiconsOutlineCamera", + "HeroiconsOutlineChartBarSquare", + "HeroiconsOutlineChartBar", + "HeroiconsOutlineChartPie", + "HeroiconsOutlineChatBubbleBottomCenterText", + "HeroiconsOutlineChatBubbleBottomCenter", + "HeroiconsOutlineChatBubbleLeftEllipsis", + "HeroiconsOutlineChatBubbleLeftRight", + "HeroiconsOutlineChatBubbleLeft", + "HeroiconsOutlineChatBubbleOvalLeftEllipsis", + "HeroiconsOutlineChatBubbleOvalLeft", + "HeroiconsOutlineCheckBadge", + "HeroiconsOutlineCheckCircle", + "HeroiconsOutlineCheck", + "HeroiconsOutlineChevronDoubleDown", + "HeroiconsOutlineChevronDoubleLeft", + "HeroiconsOutlineChevronDoubleRight", + "HeroiconsOutlineChevronDoubleUp", + "HeroiconsOutlineChevronDown", + "HeroiconsOutlineChevronLeft", + "HeroiconsOutlineChevronRight", + "HeroiconsOutlineChevronUpDown", + "HeroiconsOutlineChevronUp", + "HeroiconsOutlineCircleStack", + "HeroiconsOutlineClipboardDocumentCheck", + "HeroiconsOutlineClipboardDocumentList", + "HeroiconsOutlineClipboardDocument", + "HeroiconsOutlineClipboard", + "HeroiconsOutlineClock", + "HeroiconsOutlineCloudArrowDown", + "HeroiconsOutlineCloudArrowUp", + "HeroiconsOutlineCloud", + "HeroiconsOutlineCodeBracketSquare", + "HeroiconsOutlineCodeBracket", + "HeroiconsOutlineCog6Tooth", + "HeroiconsOutlineCog8Tooth", + "HeroiconsOutlineCog", + "HeroiconsOutlineCommandLine", + "HeroiconsOutlineComputerDesktop", + "HeroiconsOutlineCpuChip", + "HeroiconsOutlineCreditCard", + "HeroiconsOutlineCubeTransparent", + "HeroiconsOutlineCube", + "HeroiconsOutlineCurrencyBangladeshi", + "HeroiconsOutlineCurrencyDollar", + "HeroiconsOutlineCurrencyEuro", + "HeroiconsOutlineCurrencyPound", + "HeroiconsOutlineCurrencyRupee", + "HeroiconsOutlineCurrencyYen", + "HeroiconsOutlineCursorArrowRays", + "HeroiconsOutlineCursorArrowRipple", + "HeroiconsOutlineDevicePhoneMobile", + "HeroiconsOutlineDeviceTablet", + "HeroiconsOutlineDocumentArrowDown", + "HeroiconsOutlineDocumentArrowUp", + "HeroiconsOutlineDocumentChartBar", + "HeroiconsOutlineDocumentCheck", + "HeroiconsOutlineDocumentDuplicate", + "HeroiconsOutlineDocumentMagnifyingGlass", + "HeroiconsOutlineDocumentMinus", + "HeroiconsOutlineDocumentPlus", + "HeroiconsOutlineDocumentText", + "HeroiconsOutlineDocument", + "HeroiconsOutlineEllipsisHorizontalCircle", + "HeroiconsOutlineEllipsisHorizontal", + "HeroiconsOutlineEllipsisVertical", + "HeroiconsOutlineEnvelopeOpen", + "HeroiconsOutlineEnvelope", + "HeroiconsOutlineExclamationCircle", + "HeroiconsOutlineExclamationTriangle", + "HeroiconsOutlineEyeDropper", + "HeroiconsOutlineEyeSlash", + "HeroiconsOutlineEye", + "HeroiconsOutlineFaceFrown", + "HeroiconsOutlineFaceSmile", + "HeroiconsOutlineFilm", + "HeroiconsOutlineFingerPrint", + "HeroiconsOutlineFire", + "HeroiconsOutlineFlag", + "HeroiconsOutlineFolderArrowDown", + "HeroiconsOutlineFolderMinus", + "HeroiconsOutlineFolderOpen", + "HeroiconsOutlineFolderPlus", + "HeroiconsOutlineFolder", + "HeroiconsOutlineForward", + "HeroiconsOutlineFunnel", + "HeroiconsOutlineGif", + "HeroiconsOutlineGiftTop", + "HeroiconsOutlineGift", + "HeroiconsOutlineGlobeAlt", + "HeroiconsOutlineGlobeAmericas", + "HeroiconsOutlineGlobeAsiaAustralia", + "HeroiconsOutlineGlobeEuropeAfrica", + "HeroiconsOutlineHandRaised", + "HeroiconsOutlineHandThumbDown", + "HeroiconsOutlineHandThumbUp", + "HeroiconsOutlineHashtag", + "HeroiconsOutlineHeart", + "HeroiconsOutlineHomeModern", + "HeroiconsOutlineHome", + "HeroiconsOutlineIdentification", + "HeroiconsOutlineInboxArrowDown", + "HeroiconsOutlineInboxStack", + "HeroiconsOutlineInbox", + "HeroiconsOutlineInformationCircle", + "HeroiconsOutlineKey", + "HeroiconsOutlineLanguage", + "HeroiconsOutlineLifebuoy", + "HeroiconsOutlineLightBulb", + "HeroiconsOutlineLink", + "HeroiconsOutlineListBullet", + "HeroiconsOutlineLockClosed", + "HeroiconsOutlineLockOpen", + "HeroiconsOutlineMagnifyingGlassCircle", + "HeroiconsOutlineMagnifyingGlassMinus", + "HeroiconsOutlineMagnifyingGlassPlus", + "HeroiconsOutlineMagnifyingGlass", + "HeroiconsOutlineMapPin", + "HeroiconsOutlineMap", + "HeroiconsOutlineMegaphone", + "HeroiconsOutlineMicrophone", + "HeroiconsOutlineMinusCircle", + "HeroiconsOutlineMinusSmall", + "HeroiconsOutlineMinus", + "HeroiconsOutlineMoon", + "HeroiconsOutlineMusicalNote", + "HeroiconsOutlineNewspaper", + "HeroiconsOutlineNoSymbol", + "HeroiconsOutlinePaintBrush", + "HeroiconsOutlinePaperAirplane", + "HeroiconsOutlinePaperClip", + "HeroiconsOutlinePauseCircle", + "HeroiconsOutlinePause", + "HeroiconsOutlinePencilSquare", + "HeroiconsOutlinePencil", + "HeroiconsOutlinePhoneArrowDownLeft", + "HeroiconsOutlinePhoneArrowUpRight", + "HeroiconsOutlinePhoneXMark", + "HeroiconsOutlinePhone", + "HeroiconsOutlinePhoto", + "HeroiconsOutlinePlayCircle", + "HeroiconsOutlinePlayPause", + "HeroiconsOutlinePlay", + "HeroiconsOutlinePlusCircle", + "HeroiconsOutlinePlusSmall", + "HeroiconsOutlinePlus", + "HeroiconsOutlinePower", + "HeroiconsOutlinePresentationChartBar", + "HeroiconsOutlinePresentationChartLine", + "HeroiconsOutlinePrinter", + "HeroiconsOutlinePuzzlePiece", + "HeroiconsOutlineQrCode", + "HeroiconsOutlineQuestionMarkCircle", + "HeroiconsOutlineQueueList", + "HeroiconsOutlineRadio", + "HeroiconsOutlineReceiptPercent", + "HeroiconsOutlineReceiptRefund", + "HeroiconsOutlineRectangleGroup", + "HeroiconsOutlineRectangleStack", + "HeroiconsOutlineRocketLaunch", + "HeroiconsOutlineRss", + "HeroiconsOutlineScale", + "HeroiconsOutlineScissors", + "HeroiconsOutlineServerStack", + "HeroiconsOutlineServer", + "HeroiconsOutlineShare", + "HeroiconsOutlineShieldCheck", + "HeroiconsOutlineShieldExclamation", + "HeroiconsOutlineShoppingBag", + "HeroiconsOutlineShoppingCart", + "HeroiconsOutlineSignalSlash", + "HeroiconsOutlineSignal", + "HeroiconsOutlineSparkles", + "HeroiconsOutlineSpeakerWave", + "HeroiconsOutlineSpeakerXMark", + "HeroiconsOutlineSquare2Stack", + "HeroiconsOutlineSquare3Stack3D", + "HeroiconsOutlineSquares2X2", + "HeroiconsOutlineSquaresPlus", + "HeroiconsOutlineStar", + "HeroiconsOutlineStopCircle", + "HeroiconsOutlineStop", + "HeroiconsOutlineSun", + "HeroiconsOutlineSwatch", + "HeroiconsOutlineTableCells", + "HeroiconsOutlineTag", + "HeroiconsOutlineTicket", + "HeroiconsOutlineTrash", + "HeroiconsOutlineTrophy", + "HeroiconsOutlineTruck", + "HeroiconsOutlineTv", + "HeroiconsOutlineUserCircle", + "HeroiconsOutlineUserGroup", + "HeroiconsOutlineUserMinus", + "HeroiconsOutlineUserPlus", + "HeroiconsOutlineUser", + "HeroiconsOutlineUsers", + "HeroiconsOutlineVariable", + "HeroiconsOutlineVideoCameraSlash", + "HeroiconsOutlineVideoCamera", + "HeroiconsOutlineViewColumns", + "HeroiconsOutlineViewfinderCircle", + "HeroiconsOutlineWallet", + "HeroiconsOutlineWifi", + "HeroiconsOutlineWindow", + "HeroiconsOutlineWrenchScrewdriver", + "HeroiconsOutlineWrench", + "HeroiconsOutlineXCircle", + "HeroiconsOutlineXMark" + ], + "heroicons_solid": [ + "HeroiconsSolidAcademicCap", + "HeroiconsSolidAdjustmentsHorizontal", + "HeroiconsSolidAdjustmentsVertical", + "HeroiconsSolidArchiveBoxArrowDown", + "HeroiconsSolidArchiveBoxXMark", + "HeroiconsSolidArchiveBox", + "HeroiconsSolidArrowDownCircle", + "HeroiconsSolidArrowDownLeft", + "HeroiconsSolidArrowDownOnSquareStack", + "HeroiconsSolidArrowDownOnSquare", + "HeroiconsSolidArrowDownRight", + "HeroiconsSolidArrowDownTray", + "HeroiconsSolidArrowDown", + "HeroiconsSolidArrowLeftCircle", + "HeroiconsSolidArrowLeftOnRectangle", + "HeroiconsSolidArrowLeft", + "HeroiconsSolidArrowLongDown", + "HeroiconsSolidArrowLongLeft", + "HeroiconsSolidArrowLongRight", + "HeroiconsSolidArrowLongUp", + "HeroiconsSolidArrowPathRoundedSquare", + "HeroiconsSolidArrowPath", + "HeroiconsSolidArrowRightCircle", + "HeroiconsSolidArrowRightOnRectangle", + "HeroiconsSolidArrowRight", + "HeroiconsSolidArrowSmallDown", + "HeroiconsSolidArrowSmallLeft", + "HeroiconsSolidArrowSmallRight", + "HeroiconsSolidArrowSmallUp", + "HeroiconsSolidArrowTopRightOnSquare", + "HeroiconsSolidArrowTrendingDown", + "HeroiconsSolidArrowTrendingUp", + "HeroiconsSolidArrowUpCircle", + "HeroiconsSolidArrowUpLeft", + "HeroiconsSolidArrowUpOnSquareStack", + "HeroiconsSolidArrowUpOnSquare", + "HeroiconsSolidArrowUpRight", + "HeroiconsSolidArrowUpTray", + "HeroiconsSolidArrowUp", + "HeroiconsSolidArrowUturnDown", + "HeroiconsSolidArrowUturnLeft", + "HeroiconsSolidArrowUturnRight", + "HeroiconsSolidArrowUturnUp", + "HeroiconsSolidArrowsPointingIn", + "HeroiconsSolidArrowsPointingOut", + "HeroiconsSolidArrowsRightLeft", + "HeroiconsSolidArrowsUpDown", + "HeroiconsSolidAtSymbol", + "HeroiconsSolidBackspace", + "HeroiconsSolidBackward", + "HeroiconsSolidBanknotes", + "HeroiconsSolidBars2", + "HeroiconsSolidBars3BottomLeft", + "HeroiconsSolidBars3BottomRight", + "HeroiconsSolidBars3CenterLeft", + "HeroiconsSolidBars3", + "HeroiconsSolidBars4", + "HeroiconsSolidBarsArrowDown", + "HeroiconsSolidBarsArrowUp", + "HeroiconsSolidBattery0", + "HeroiconsSolidBattery100", + "HeroiconsSolidBattery50", + "HeroiconsSolidBeaker", + "HeroiconsSolidBellAlert", + "HeroiconsSolidBellSlash", + "HeroiconsSolidBellSnooze", + "HeroiconsSolidBell", + "HeroiconsSolidBoltSlash", + "HeroiconsSolidBolt", + "HeroiconsSolidBookOpen", + "HeroiconsSolidBookmarkSlash", + "HeroiconsSolidBookmarkSquare", + "HeroiconsSolidBookmark", + "HeroiconsSolidBriefcase", + "HeroiconsSolidBugAnt", + "HeroiconsSolidBuildingLibrary", + "HeroiconsSolidBuildingOffice2", + "HeroiconsSolidBuildingOffice", + "HeroiconsSolidBuildingStorefront", + "HeroiconsSolidCake", + "HeroiconsSolidCalculator", + "HeroiconsSolidCalendarDays", + "HeroiconsSolidCalendar", + "HeroiconsSolidCamera", + "HeroiconsSolidChartBarSquare", + "HeroiconsSolidChartBar", + "HeroiconsSolidChartPie", + "HeroiconsSolidChatBubbleBottomCenterText", + "HeroiconsSolidChatBubbleBottomCenter", + "HeroiconsSolidChatBubbleLeftEllipsis", + "HeroiconsSolidChatBubbleLeftRight", + "HeroiconsSolidChatBubbleLeft", + "HeroiconsSolidChatBubbleOvalLeftEllipsis", + "HeroiconsSolidChatBubbleOvalLeft", + "HeroiconsSolidCheckBadge", + "HeroiconsSolidCheckCircle", + "HeroiconsSolidCheck", + "HeroiconsSolidChevronDoubleDown", + "HeroiconsSolidChevronDoubleLeft", + "HeroiconsSolidChevronDoubleRight", + "HeroiconsSolidChevronDoubleUp", + "HeroiconsSolidChevronDown", + "HeroiconsSolidChevronLeft", + "HeroiconsSolidChevronRight", + "HeroiconsSolidChevronUpDown", + "HeroiconsSolidChevronUp", + "HeroiconsSolidCircleStack", + "HeroiconsSolidClipboardDocumentCheck", + "HeroiconsSolidClipboardDocumentList", + "HeroiconsSolidClipboardDocument", + "HeroiconsSolidClipboard", + "HeroiconsSolidClock", + "HeroiconsSolidCloudArrowDown", + "HeroiconsSolidCloudArrowUp", + "HeroiconsSolidCloud", + "HeroiconsSolidCodeBracketSquare", + "HeroiconsSolidCodeBracket", + "HeroiconsSolidCog6Tooth", + "HeroiconsSolidCog8Tooth", + "HeroiconsSolidCog", + "HeroiconsSolidCommandLine", + "HeroiconsSolidComputerDesktop", + "HeroiconsSolidCpuChip", + "HeroiconsSolidCreditCard", + "HeroiconsSolidCubeTransparent", + "HeroiconsSolidCube", + "HeroiconsSolidCurrencyBangladeshi", + "HeroiconsSolidCurrencyDollar", + "HeroiconsSolidCurrencyEuro", + "HeroiconsSolidCurrencyPound", + "HeroiconsSolidCurrencyRupee", + "HeroiconsSolidCurrencyYen", + "HeroiconsSolidCursorArrowRays", + "HeroiconsSolidCursorArrowRipple", + "HeroiconsSolidDevicePhoneMobile", + "HeroiconsSolidDeviceTablet", + "HeroiconsSolidDocumentArrowDown", + "HeroiconsSolidDocumentArrowUp", + "HeroiconsSolidDocumentChartBar", + "HeroiconsSolidDocumentCheck", + "HeroiconsSolidDocumentDuplicate", + "HeroiconsSolidDocumentMagnifyingGlass", + "HeroiconsSolidDocumentMinus", + "HeroiconsSolidDocumentPlus", + "HeroiconsSolidDocumentText", + "HeroiconsSolidDocument", + "HeroiconsSolidEllipsisHorizontalCircle", + "HeroiconsSolidEllipsisHorizontal", + "HeroiconsSolidEllipsisVertical", + "HeroiconsSolidEnvelopeOpen", + "HeroiconsSolidEnvelope", + "HeroiconsSolidExclamationCircle", + "HeroiconsSolidExclamationTriangle", + "HeroiconsSolidEyeDropper", + "HeroiconsSolidEyeSlash", + "HeroiconsSolidEye", + "HeroiconsSolidFaceFrown", + "HeroiconsSolidFaceSmile", + "HeroiconsSolidFilm", + "HeroiconsSolidFingerPrint", + "HeroiconsSolidFire", + "HeroiconsSolidFlag", + "HeroiconsSolidFolderArrowDown", + "HeroiconsSolidFolderMinus", + "HeroiconsSolidFolderOpen", + "HeroiconsSolidFolderPlus", + "HeroiconsSolidFolder", + "HeroiconsSolidForward", + "HeroiconsSolidFunnel", + "HeroiconsSolidGif", + "HeroiconsSolidGiftTop", + "HeroiconsSolidGift", + "HeroiconsSolidGlobeAlt", + "HeroiconsSolidGlobeAmericas", + "HeroiconsSolidGlobeAsiaAustralia", + "HeroiconsSolidGlobeEuropeAfrica", + "HeroiconsSolidHandRaised", + "HeroiconsSolidHandThumbDown", + "HeroiconsSolidHandThumbUp", + "HeroiconsSolidHashtag", + "HeroiconsSolidHeart", + "HeroiconsSolidHomeModern", + "HeroiconsSolidHome", + "HeroiconsSolidIdentification", + "HeroiconsSolidInboxArrowDown", + "HeroiconsSolidInboxStack", + "HeroiconsSolidInbox", + "HeroiconsSolidInformationCircle", + "HeroiconsSolidKey", + "HeroiconsSolidLanguage", + "HeroiconsSolidLifebuoy", + "HeroiconsSolidLightBulb", + "HeroiconsSolidLink", + "HeroiconsSolidListBullet", + "HeroiconsSolidLockClosed", + "HeroiconsSolidLockOpen", + "HeroiconsSolidMagnifyingGlassCircle", + "HeroiconsSolidMagnifyingGlassMinus", + "HeroiconsSolidMagnifyingGlassPlus", + "HeroiconsSolidMagnifyingGlass", + "HeroiconsSolidMapPin", + "HeroiconsSolidMap", + "HeroiconsSolidMegaphone", + "HeroiconsSolidMicrophone", + "HeroiconsSolidMinusCircle", + "HeroiconsSolidMinusSmall", + "HeroiconsSolidMinus", + "HeroiconsSolidMoon", + "HeroiconsSolidMusicalNote", + "HeroiconsSolidNewspaper", + "HeroiconsSolidNoSymbol", + "HeroiconsSolidPaintBrush", + "HeroiconsSolidPaperAirplane", + "HeroiconsSolidPaperClip", + "HeroiconsSolidPauseCircle", + "HeroiconsSolidPause", + "HeroiconsSolidPencilSquare", + "HeroiconsSolidPencil", + "HeroiconsSolidPhoneArrowDownLeft", + "HeroiconsSolidPhoneArrowUpRight", + "HeroiconsSolidPhoneXMark", + "HeroiconsSolidPhone", + "HeroiconsSolidPhoto", + "HeroiconsSolidPlayCircle", + "HeroiconsSolidPlayPause", + "HeroiconsSolidPlay", + "HeroiconsSolidPlusCircle", + "HeroiconsSolidPlusSmall", + "HeroiconsSolidPlus", + "HeroiconsSolidPower", + "HeroiconsSolidPresentationChartBar", + "HeroiconsSolidPresentationChartLine", + "HeroiconsSolidPrinter", + "HeroiconsSolidPuzzlePiece", + "HeroiconsSolidQrCode", + "HeroiconsSolidQuestionMarkCircle", + "HeroiconsSolidQueueList", + "HeroiconsSolidRadio", + "HeroiconsSolidReceiptPercent", + "HeroiconsSolidReceiptRefund", + "HeroiconsSolidRectangleGroup", + "HeroiconsSolidRectangleStack", + "HeroiconsSolidRocketLaunch", + "HeroiconsSolidRss", + "HeroiconsSolidScale", + "HeroiconsSolidScissors", + "HeroiconsSolidServerStack", + "HeroiconsSolidServer", + "HeroiconsSolidShare", + "HeroiconsSolidShieldCheck", + "HeroiconsSolidShieldExclamation", + "HeroiconsSolidShoppingBag", + "HeroiconsSolidShoppingCart", + "HeroiconsSolidSignalSlash", + "HeroiconsSolidSignal", + "HeroiconsSolidSparkles", + "HeroiconsSolidSpeakerWave", + "HeroiconsSolidSpeakerXMark", + "HeroiconsSolidSquare2Stack", + "HeroiconsSolidSquare3Stack3D", + "HeroiconsSolidSquares2X2", + "HeroiconsSolidSquaresPlus", + "HeroiconsSolidStar", + "HeroiconsSolidStopCircle", + "HeroiconsSolidStop", + "HeroiconsSolidSun", + "HeroiconsSolidSwatch", + "HeroiconsSolidTableCells", + "HeroiconsSolidTag", + "HeroiconsSolidTicket", + "HeroiconsSolidTrash", + "HeroiconsSolidTrophy", + "HeroiconsSolidTruck", + "HeroiconsSolidTv", + "HeroiconsSolidUserCircle", + "HeroiconsSolidUserGroup", + "HeroiconsSolidUserMinus", + "HeroiconsSolidUserPlus", + "HeroiconsSolidUser", + "HeroiconsSolidUsers", + "HeroiconsSolidVariable", + "HeroiconsSolidVideoCameraSlash", + "HeroiconsSolidVideoCamera", + "HeroiconsSolidViewColumns", + "HeroiconsSolidViewfinderCircle", + "HeroiconsSolidWallet", + "HeroiconsSolidWifi", + "HeroiconsSolidWindow", + "HeroiconsSolidWrenchScrewdriver", + "HeroiconsSolidWrench", + "HeroiconsSolidXCircle", + "HeroiconsSolidXMark" + ], + "iterate_icon_id": [ + "enum-iterator" + ], + "lipis_flag_icons_1_x_1": [ + "LipisFlagIcons1X1Ac", + "LipisFlagIcons1X1Ad", + "LipisFlagIcons1X1Ae", + "LipisFlagIcons1X1Af", + "LipisFlagIcons1X1Ag", + "LipisFlagIcons1X1Ai", + "LipisFlagIcons1X1Al", + "LipisFlagIcons1X1Am", + "LipisFlagIcons1X1Ao", + "LipisFlagIcons1X1Aq", + "LipisFlagIcons1X1Ar", + "LipisFlagIcons1X1As", + "LipisFlagIcons1X1At", + "LipisFlagIcons1X1Au", + "LipisFlagIcons1X1Aw", + "LipisFlagIcons1X1Ax", + "LipisFlagIcons1X1Az", + "LipisFlagIcons1X1Ba", + "LipisFlagIcons1X1Bb", + "LipisFlagIcons1X1Bd", + "LipisFlagIcons1X1Be", + "LipisFlagIcons1X1Bf", + "LipisFlagIcons1X1Bg", + "LipisFlagIcons1X1Bh", + "LipisFlagIcons1X1Bi", + "LipisFlagIcons1X1Bj", + "LipisFlagIcons1X1Bl", + "LipisFlagIcons1X1Bm", + "LipisFlagIcons1X1Bn", + "LipisFlagIcons1X1Bo", + "LipisFlagIcons1X1Bq", + "LipisFlagIcons1X1Br", + "LipisFlagIcons1X1Bs", + "LipisFlagIcons1X1Bt", + "LipisFlagIcons1X1Bv", + "LipisFlagIcons1X1Bw", + "LipisFlagIcons1X1By", + "LipisFlagIcons1X1Bz", + "LipisFlagIcons1X1Ca", + "LipisFlagIcons1X1Cc", + "LipisFlagIcons1X1Cd", + "LipisFlagIcons1X1Cefta", + "LipisFlagIcons1X1Cf", + "LipisFlagIcons1X1Cg", + "LipisFlagIcons1X1Ch", + "LipisFlagIcons1X1Ci", + "LipisFlagIcons1X1Ck", + "LipisFlagIcons1X1Cl", + "LipisFlagIcons1X1Cm", + "LipisFlagIcons1X1Cn", + "LipisFlagIcons1X1Co", + "LipisFlagIcons1X1Cp", + "LipisFlagIcons1X1Cr", + "LipisFlagIcons1X1Cu", + "LipisFlagIcons1X1Cv", + "LipisFlagIcons1X1Cw", + "LipisFlagIcons1X1Cx", + "LipisFlagIcons1X1Cy", + "LipisFlagIcons1X1Cz", + "LipisFlagIcons1X1De", + "LipisFlagIcons1X1Dg", + "LipisFlagIcons1X1Dj", + "LipisFlagIcons1X1Dk", + "LipisFlagIcons1X1Dm", + "LipisFlagIcons1X1Do", + "LipisFlagIcons1X1Dz", + "LipisFlagIcons1X1Ea", + "LipisFlagIcons1X1Ec", + "LipisFlagIcons1X1Ee", + "LipisFlagIcons1X1Eg", + "LipisFlagIcons1X1Eh", + "LipisFlagIcons1X1Er", + "LipisFlagIcons1X1EsCt", + "LipisFlagIcons1X1EsGa", + "LipisFlagIcons1X1Es", + "LipisFlagIcons1X1Et", + "LipisFlagIcons1X1Eu", + "LipisFlagIcons1X1Fi", + "LipisFlagIcons1X1Fj", + "LipisFlagIcons1X1Fk", + "LipisFlagIcons1X1Fm", + "LipisFlagIcons1X1Fo", + "LipisFlagIcons1X1Fr", + "LipisFlagIcons1X1Ga", + "LipisFlagIcons1X1GbEng", + "LipisFlagIcons1X1GbNir", + "LipisFlagIcons1X1GbSct", + "LipisFlagIcons1X1GbWls", + "LipisFlagIcons1X1Gb", + "LipisFlagIcons1X1Gd", + "LipisFlagIcons1X1Ge", + "LipisFlagIcons1X1Gf", + "LipisFlagIcons1X1Gg", + "LipisFlagIcons1X1Gh", + "LipisFlagIcons1X1Gi", + "LipisFlagIcons1X1Gl", + "LipisFlagIcons1X1Gm", + "LipisFlagIcons1X1Gn", + "LipisFlagIcons1X1Gp", + "LipisFlagIcons1X1Gq", + "LipisFlagIcons1X1Gr", + "LipisFlagIcons1X1Gs", + "LipisFlagIcons1X1Gt", + "LipisFlagIcons1X1Gu", + "LipisFlagIcons1X1Gw", + "LipisFlagIcons1X1Gy", + "LipisFlagIcons1X1Hk", + "LipisFlagIcons1X1Hm", + "LipisFlagIcons1X1Hn", + "LipisFlagIcons1X1Hr", + "LipisFlagIcons1X1Ht", + "LipisFlagIcons1X1Hu", + "LipisFlagIcons1X1Ic", + "LipisFlagIcons1X1Id", + "LipisFlagIcons1X1Ie", + "LipisFlagIcons1X1Il", + "LipisFlagIcons1X1Im", + "LipisFlagIcons1X1In", + "LipisFlagIcons1X1Io", + "LipisFlagIcons1X1Iq", + "LipisFlagIcons1X1Ir", + "LipisFlagIcons1X1Is", + "LipisFlagIcons1X1It", + "LipisFlagIcons1X1Je", + "LipisFlagIcons1X1Jm", + "LipisFlagIcons1X1Jo", + "LipisFlagIcons1X1Jp", + "LipisFlagIcons1X1Ke", + "LipisFlagIcons1X1Kg", + "LipisFlagIcons1X1Kh", + "LipisFlagIcons1X1Ki", + "LipisFlagIcons1X1Km", + "LipisFlagIcons1X1Kn", + "LipisFlagIcons1X1Kp", + "LipisFlagIcons1X1Kr", + "LipisFlagIcons1X1Kw", + "LipisFlagIcons1X1Ky", + "LipisFlagIcons1X1Kz", + "LipisFlagIcons1X1La", + "LipisFlagIcons1X1Lb", + "LipisFlagIcons1X1Lc", + "LipisFlagIcons1X1Li", + "LipisFlagIcons1X1Lk", + "LipisFlagIcons1X1Lr", + "LipisFlagIcons1X1Ls", + "LipisFlagIcons1X1Lt", + "LipisFlagIcons1X1Lu", + "LipisFlagIcons1X1Lv", + "LipisFlagIcons1X1Ly", + "LipisFlagIcons1X1Ma", + "LipisFlagIcons1X1Mc", + "LipisFlagIcons1X1Md", + "LipisFlagIcons1X1Me", + "LipisFlagIcons1X1Mf", + "LipisFlagIcons1X1Mg", + "LipisFlagIcons1X1Mh", + "LipisFlagIcons1X1Mk", + "LipisFlagIcons1X1Ml", + "LipisFlagIcons1X1Mm", + "LipisFlagIcons1X1Mn", + "LipisFlagIcons1X1Mo", + "LipisFlagIcons1X1Mp", + "LipisFlagIcons1X1Mq", + "LipisFlagIcons1X1Mr", + "LipisFlagIcons1X1Ms", + "LipisFlagIcons1X1Mt", + "LipisFlagIcons1X1Mu", + "LipisFlagIcons1X1Mv", + "LipisFlagIcons1X1Mw", + "LipisFlagIcons1X1Mx", + "LipisFlagIcons1X1My", + "LipisFlagIcons1X1Mz", + "LipisFlagIcons1X1Na", + "LipisFlagIcons1X1Nc", + "LipisFlagIcons1X1Ne", + "LipisFlagIcons1X1Nf", + "LipisFlagIcons1X1Ng", + "LipisFlagIcons1X1Ni", + "LipisFlagIcons1X1Nl", + "LipisFlagIcons1X1No", + "LipisFlagIcons1X1Np", + "LipisFlagIcons1X1Nr", + "LipisFlagIcons1X1Nu", + "LipisFlagIcons1X1Nz", + "LipisFlagIcons1X1Om", + "LipisFlagIcons1X1Pa", + "LipisFlagIcons1X1Pe", + "LipisFlagIcons1X1Pf", + "LipisFlagIcons1X1Pg", + "LipisFlagIcons1X1Ph", + "LipisFlagIcons1X1Pk", + "LipisFlagIcons1X1Pl", + "LipisFlagIcons1X1Pm", + "LipisFlagIcons1X1Pn", + "LipisFlagIcons1X1Pr", + "LipisFlagIcons1X1Ps", + "LipisFlagIcons1X1Pt", + "LipisFlagIcons1X1Pw", + "LipisFlagIcons1X1Py", + "LipisFlagIcons1X1Qa", + "LipisFlagIcons1X1Re", + "LipisFlagIcons1X1Ro", + "LipisFlagIcons1X1Rs", + "LipisFlagIcons1X1Ru", + "LipisFlagIcons1X1Rw", + "LipisFlagIcons1X1Sa", + "LipisFlagIcons1X1Sb", + "LipisFlagIcons1X1Sc", + "LipisFlagIcons1X1Sd", + "LipisFlagIcons1X1Se", + "LipisFlagIcons1X1Sg", + "LipisFlagIcons1X1Sh", + "LipisFlagIcons1X1Si", + "LipisFlagIcons1X1Sj", + "LipisFlagIcons1X1Sk", + "LipisFlagIcons1X1Sl", + "LipisFlagIcons1X1Sm", + "LipisFlagIcons1X1Sn", + "LipisFlagIcons1X1So", + "LipisFlagIcons1X1Sr", + "LipisFlagIcons1X1Ss", + "LipisFlagIcons1X1St", + "LipisFlagIcons1X1Sv", + "LipisFlagIcons1X1Sx", + "LipisFlagIcons1X1Sy", + "LipisFlagIcons1X1Sz", + "LipisFlagIcons1X1Ta", + "LipisFlagIcons1X1Tc", + "LipisFlagIcons1X1Td", + "LipisFlagIcons1X1Tf", + "LipisFlagIcons1X1Tg", + "LipisFlagIcons1X1Th", + "LipisFlagIcons1X1Tj", + "LipisFlagIcons1X1Tk", + "LipisFlagIcons1X1Tl", + "LipisFlagIcons1X1Tm", + "LipisFlagIcons1X1Tn", + "LipisFlagIcons1X1To", + "LipisFlagIcons1X1Tr", + "LipisFlagIcons1X1Tt", + "LipisFlagIcons1X1Tv", + "LipisFlagIcons1X1Tw", + "LipisFlagIcons1X1Tz", + "LipisFlagIcons1X1Ua", + "LipisFlagIcons1X1Ug", + "LipisFlagIcons1X1Um", + "LipisFlagIcons1X1Un", + "LipisFlagIcons1X1Us", + "LipisFlagIcons1X1Uy", + "LipisFlagIcons1X1Uz", + "LipisFlagIcons1X1Va", + "LipisFlagIcons1X1Vc", + "LipisFlagIcons1X1Ve", + "LipisFlagIcons1X1Vg", + "LipisFlagIcons1X1Vi", + "LipisFlagIcons1X1Vn", + "LipisFlagIcons1X1Vu", + "LipisFlagIcons1X1Wf", + "LipisFlagIcons1X1Ws", + "LipisFlagIcons1X1Xk", + "LipisFlagIcons1X1Xx", + "LipisFlagIcons1X1Ye", + "LipisFlagIcons1X1Yt", + "LipisFlagIcons1X1Za", + "LipisFlagIcons1X1Zm", + "LipisFlagIcons1X1Zw" + ], + "lipis_flag_icons_4_x_3": [ + "LipisFlagIcons4X3Ac", + "LipisFlagIcons4X3Ad", + "LipisFlagIcons4X3Ae", + "LipisFlagIcons4X3Af", + "LipisFlagIcons4X3Ag", + "LipisFlagIcons4X3Ai", + "LipisFlagIcons4X3Al", + "LipisFlagIcons4X3Am", + "LipisFlagIcons4X3Ao", + "LipisFlagIcons4X3Aq", + "LipisFlagIcons4X3Ar", + "LipisFlagIcons4X3As", + "LipisFlagIcons4X3At", + "LipisFlagIcons4X3Au", + "LipisFlagIcons4X3Aw", + "LipisFlagIcons4X3Ax", + "LipisFlagIcons4X3Az", + "LipisFlagIcons4X3Ba", + "LipisFlagIcons4X3Bb", + "LipisFlagIcons4X3Bd", + "LipisFlagIcons4X3Be", + "LipisFlagIcons4X3Bf", + "LipisFlagIcons4X3Bg", + "LipisFlagIcons4X3Bh", + "LipisFlagIcons4X3Bi", + "LipisFlagIcons4X3Bj", + "LipisFlagIcons4X3Bl", + "LipisFlagIcons4X3Bm", + "LipisFlagIcons4X3Bn", + "LipisFlagIcons4X3Bo", + "LipisFlagIcons4X3Bq", + "LipisFlagIcons4X3Br", + "LipisFlagIcons4X3Bs", + "LipisFlagIcons4X3Bt", + "LipisFlagIcons4X3Bv", + "LipisFlagIcons4X3Bw", + "LipisFlagIcons4X3By", + "LipisFlagIcons4X3Bz", + "LipisFlagIcons4X3Ca", + "LipisFlagIcons4X3Cc", + "LipisFlagIcons4X3Cd", + "LipisFlagIcons4X3Cefta", + "LipisFlagIcons4X3Cf", + "LipisFlagIcons4X3Cg", + "LipisFlagIcons4X3Ch", + "LipisFlagIcons4X3Ci", + "LipisFlagIcons4X3Ck", + "LipisFlagIcons4X3Cl", + "LipisFlagIcons4X3Cm", + "LipisFlagIcons4X3Cn", + "LipisFlagIcons4X3Co", + "LipisFlagIcons4X3Cp", + "LipisFlagIcons4X3Cr", + "LipisFlagIcons4X3Cu", + "LipisFlagIcons4X3Cv", + "LipisFlagIcons4X3Cw", + "LipisFlagIcons4X3Cx", + "LipisFlagIcons4X3Cy", + "LipisFlagIcons4X3Cz", + "LipisFlagIcons4X3De", + "LipisFlagIcons4X3Dg", + "LipisFlagIcons4X3Dj", + "LipisFlagIcons4X3Dk", + "LipisFlagIcons4X3Dm", + "LipisFlagIcons4X3Do", + "LipisFlagIcons4X3Dz", + "LipisFlagIcons4X3Ea", + "LipisFlagIcons4X3Ec", + "LipisFlagIcons4X3Ee", + "LipisFlagIcons4X3Eg", + "LipisFlagIcons4X3Eh", + "LipisFlagIcons4X3Er", + "LipisFlagIcons4X3EsCt", + "LipisFlagIcons4X3EsGa", + "LipisFlagIcons4X3Es", + "LipisFlagIcons4X3Et", + "LipisFlagIcons4X3Eu", + "LipisFlagIcons4X3Fi", + "LipisFlagIcons4X3Fj", + "LipisFlagIcons4X3Fk", + "LipisFlagIcons4X3Fm", + "LipisFlagIcons4X3Fo", + "LipisFlagIcons4X3Fr", + "LipisFlagIcons4X3Ga", + "LipisFlagIcons4X3GbEng", + "LipisFlagIcons4X3GbNir", + "LipisFlagIcons4X3GbSct", + "LipisFlagIcons4X3GbWls", + "LipisFlagIcons4X3Gb", + "LipisFlagIcons4X3Gd", + "LipisFlagIcons4X3Ge", + "LipisFlagIcons4X3Gf", + "LipisFlagIcons4X3Gg", + "LipisFlagIcons4X3Gh", + "LipisFlagIcons4X3Gi", + "LipisFlagIcons4X3Gl", + "LipisFlagIcons4X3Gm", + "LipisFlagIcons4X3Gn", + "LipisFlagIcons4X3Gp", + "LipisFlagIcons4X3Gq", + "LipisFlagIcons4X3Gr", + "LipisFlagIcons4X3Gs", + "LipisFlagIcons4X3Gt", + "LipisFlagIcons4X3Gu", + "LipisFlagIcons4X3Gw", + "LipisFlagIcons4X3Gy", + "LipisFlagIcons4X3Hk", + "LipisFlagIcons4X3Hm", + "LipisFlagIcons4X3Hn", + "LipisFlagIcons4X3Hr", + "LipisFlagIcons4X3Ht", + "LipisFlagIcons4X3Hu", + "LipisFlagIcons4X3Ic", + "LipisFlagIcons4X3Id", + "LipisFlagIcons4X3Ie", + "LipisFlagIcons4X3Il", + "LipisFlagIcons4X3Im", + "LipisFlagIcons4X3In", + "LipisFlagIcons4X3Io", + "LipisFlagIcons4X3Iq", + "LipisFlagIcons4X3Ir", + "LipisFlagIcons4X3Is", + "LipisFlagIcons4X3It", + "LipisFlagIcons4X3Je", + "LipisFlagIcons4X3Jm", + "LipisFlagIcons4X3Jo", + "LipisFlagIcons4X3Jp", + "LipisFlagIcons4X3Ke", + "LipisFlagIcons4X3Kg", + "LipisFlagIcons4X3Kh", + "LipisFlagIcons4X3Ki", + "LipisFlagIcons4X3Km", + "LipisFlagIcons4X3Kn", + "LipisFlagIcons4X3Kp", + "LipisFlagIcons4X3Kr", + "LipisFlagIcons4X3Kw", + "LipisFlagIcons4X3Ky", + "LipisFlagIcons4X3Kz", + "LipisFlagIcons4X3La", + "LipisFlagIcons4X3Lb", + "LipisFlagIcons4X3Lc", + "LipisFlagIcons4X3Li", + "LipisFlagIcons4X3Lk", + "LipisFlagIcons4X3Lr", + "LipisFlagIcons4X3Ls", + "LipisFlagIcons4X3Lt", + "LipisFlagIcons4X3Lu", + "LipisFlagIcons4X3Lv", + "LipisFlagIcons4X3Ly", + "LipisFlagIcons4X3Ma", + "LipisFlagIcons4X3Mc", + "LipisFlagIcons4X3Md", + "LipisFlagIcons4X3Me", + "LipisFlagIcons4X3Mf", + "LipisFlagIcons4X3Mg", + "LipisFlagIcons4X3Mh", + "LipisFlagIcons4X3Mk", + "LipisFlagIcons4X3Ml", + "LipisFlagIcons4X3Mm", + "LipisFlagIcons4X3Mn", + "LipisFlagIcons4X3Mo", + "LipisFlagIcons4X3Mp", + "LipisFlagIcons4X3Mq", + "LipisFlagIcons4X3Mr", + "LipisFlagIcons4X3Ms", + "LipisFlagIcons4X3Mt", + "LipisFlagIcons4X3Mu", + "LipisFlagIcons4X3Mv", + "LipisFlagIcons4X3Mw", + "LipisFlagIcons4X3Mx", + "LipisFlagIcons4X3My", + "LipisFlagIcons4X3Mz", + "LipisFlagIcons4X3Na", + "LipisFlagIcons4X3Nc", + "LipisFlagIcons4X3Ne", + "LipisFlagIcons4X3Nf", + "LipisFlagIcons4X3Ng", + "LipisFlagIcons4X3Ni", + "LipisFlagIcons4X3Nl", + "LipisFlagIcons4X3No", + "LipisFlagIcons4X3Np", + "LipisFlagIcons4X3Nr", + "LipisFlagIcons4X3Nu", + "LipisFlagIcons4X3Nz", + "LipisFlagIcons4X3Om", + "LipisFlagIcons4X3Pa", + "LipisFlagIcons4X3Pe", + "LipisFlagIcons4X3Pf", + "LipisFlagIcons4X3Pg", + "LipisFlagIcons4X3Ph", + "LipisFlagIcons4X3Pk", + "LipisFlagIcons4X3Pl", + "LipisFlagIcons4X3Pm", + "LipisFlagIcons4X3Pn", + "LipisFlagIcons4X3Pr", + "LipisFlagIcons4X3Ps", + "LipisFlagIcons4X3Pt", + "LipisFlagIcons4X3Pw", + "LipisFlagIcons4X3Py", + "LipisFlagIcons4X3Qa", + "LipisFlagIcons4X3Re", + "LipisFlagIcons4X3Ro", + "LipisFlagIcons4X3Rs", + "LipisFlagIcons4X3Ru", + "LipisFlagIcons4X3Rw", + "LipisFlagIcons4X3Sa", + "LipisFlagIcons4X3Sb", + "LipisFlagIcons4X3Sc", + "LipisFlagIcons4X3Sd", + "LipisFlagIcons4X3Se", + "LipisFlagIcons4X3Sg", + "LipisFlagIcons4X3Sh", + "LipisFlagIcons4X3Si", + "LipisFlagIcons4X3Sj", + "LipisFlagIcons4X3Sk", + "LipisFlagIcons4X3Sl", + "LipisFlagIcons4X3Sm", + "LipisFlagIcons4X3Sn", + "LipisFlagIcons4X3So", + "LipisFlagIcons4X3Sr", + "LipisFlagIcons4X3Ss", + "LipisFlagIcons4X3St", + "LipisFlagIcons4X3Sv", + "LipisFlagIcons4X3Sx", + "LipisFlagIcons4X3Sy", + "LipisFlagIcons4X3Sz", + "LipisFlagIcons4X3Ta", + "LipisFlagIcons4X3Tc", + "LipisFlagIcons4X3Td", + "LipisFlagIcons4X3Tf", + "LipisFlagIcons4X3Tg", + "LipisFlagIcons4X3Th", + "LipisFlagIcons4X3Tj", + "LipisFlagIcons4X3Tk", + "LipisFlagIcons4X3Tl", + "LipisFlagIcons4X3Tm", + "LipisFlagIcons4X3Tn", + "LipisFlagIcons4X3To", + "LipisFlagIcons4X3Tr", + "LipisFlagIcons4X3Tt", + "LipisFlagIcons4X3Tv", + "LipisFlagIcons4X3Tw", + "LipisFlagIcons4X3Tz", + "LipisFlagIcons4X3Ua", + "LipisFlagIcons4X3Ug", + "LipisFlagIcons4X3Um", + "LipisFlagIcons4X3Un", + "LipisFlagIcons4X3Us", + "LipisFlagIcons4X3Uy", + "LipisFlagIcons4X3Uz", + "LipisFlagIcons4X3Va", + "LipisFlagIcons4X3Vc", + "LipisFlagIcons4X3Ve", + "LipisFlagIcons4X3Vg", + "LipisFlagIcons4X3Vi", + "LipisFlagIcons4X3Vn", + "LipisFlagIcons4X3Vu", + "LipisFlagIcons4X3Wf", + "LipisFlagIcons4X3Ws", + "LipisFlagIcons4X3Xk", + "LipisFlagIcons4X3Xx", + "LipisFlagIcons4X3Ye", + "LipisFlagIcons4X3Yt", + "LipisFlagIcons4X3Za", + "LipisFlagIcons4X3Zm", + "LipisFlagIcons4X3Zw" + ], + "lucide": [ + "LucideAccessibility", + "LucideActivity", + "LucideAirVent", + "LucideAirplay", + "LucideAlarmCheck", + "LucideAlarmClockOff", + "LucideAlarmClock", + "LucideAlarmMinus", + "LucideAlarmPlus", + "LucideAlbum", + "LucideAlertCircle", + "LucideAlertOctagon", + "LucideAlertTriangle", + "LucideAlignCenterHorizontal", + "LucideAlignCenterVertical", + "LucideAlignCenter", + "LucideAlignEndHorizontal", + "LucideAlignEndVertical", + "LucideAlignHorizontalDistributeCenter", + "LucideAlignHorizontalDistributeEnd", + "LucideAlignHorizontalDistributeStart", + "LucideAlignHorizontalJustifyCenter", + "LucideAlignHorizontalJustifyEnd", + "LucideAlignHorizontalJustifyStart", + "LucideAlignHorizontalSpaceAround", + "LucideAlignHorizontalSpaceBetween", + "LucideAlignJustify", + "LucideAlignLeft", + "LucideAlignRight", + "LucideAlignStartHorizontal", + "LucideAlignStartVertical", + "LucideAlignVerticalDistributeCenter", + "LucideAlignVerticalDistributeEnd", + "LucideAlignVerticalDistributeStart", + "LucideAlignVerticalJustifyCenter", + "LucideAlignVerticalJustifyEnd", + "LucideAlignVerticalJustifyStart", + "LucideAlignVerticalSpaceAround", + "LucideAlignVerticalSpaceBetween", + "LucideAnchor", + "LucideAngry", + "LucideAnnoyed", + "LucideAperture", + "LucideApple", + "LucideArchiveRestore", + "LucideArchive", + "LucideArmchair", + "LucideArrowBigDown", + "LucideArrowBigLeft", + "LucideArrowBigRight", + "LucideArrowBigUp", + "LucideArrowDownCircle", + "LucideArrowDownLeft", + "LucideArrowDownRight", + "LucideArrowDown", + "LucideArrowLeftCircle", + "LucideArrowLeftRight", + "LucideArrowLeft", + "LucideArrowRightCircle", + "LucideArrowRight", + "LucideArrowUpCircle", + "LucideArrowUpDown", + "LucideArrowUpLeft", + "LucideArrowUpRight", + "LucideArrowUp", + "LucideAsterisk", + "LucideAtSign", + "LucideAward", + "LucideAxe", + "LucideAxis3D", + "LucideBaby", + "LucideBackpack", + "LucideBaggageClaim", + "LucideBanana", + "LucideBanknote", + "LucideBarChart2", + "LucideBarChart3", + "LucideBarChart4", + "LucideBarChartHorizontal", + "LucideBarChart", + "LucideBaseline", + "LucideBath", + "LucideBatteryCharging", + "LucideBatteryFull", + "LucideBatteryLow", + "LucideBatteryMedium", + "LucideBattery", + "LucideBeaker", + "LucideBedDouble", + "LucideBedSingle", + "LucideBed", + "LucideBeer", + "LucideBellMinus", + "LucideBellOff", + "LucideBellPlus", + "LucideBellRing", + "LucideBell", + "LucideBike", + "LucideBinary", + "LucideBitcoin", + "LucideBluetoothConnected", + "LucideBluetoothOff", + "LucideBluetoothSearching", + "LucideBluetooth", + "LucideBold", + "LucideBomb", + "LucideBone", + "LucideBookOpenCheck", + "LucideBookOpen", + "LucideBook", + "LucideBookmarkMinus", + "LucideBookmarkPlus", + "LucideBookmark", + "LucideBot", + "LucideBoxSelect", + "LucideBox", + "LucideBoxes", + "LucideBriefcase", + "LucideBrush", + "LucideBug", + "LucideBuilding2", + "LucideBuilding", + "LucideBus", + "LucideCake", + "LucideCalculator", + "LucideCalendarCheck2", + "LucideCalendarCheck", + "LucideCalendarClock", + "LucideCalendarDays", + "LucideCalendarHeart", + "LucideCalendarMinus", + "LucideCalendarOff", + "LucideCalendarPlus", + "LucideCalendarRange", + "LucideCalendarSearch", + "LucideCalendarX2", + "LucideCalendarX", + "LucideCalendar", + "LucideCameraOff", + "LucideCamera", + "LucideCar", + "LucideCarrot", + "LucideCast", + "LucideCheckCircle2", + "LucideCheckCircle", + "LucideCheckSquare", + "LucideCheck", + "LucideChefHat", + "LucideCherry", + "LucideChevronDown", + "LucideChevronFirst", + "LucideChevronLast", + "LucideChevronLeft", + "LucideChevronRight", + "LucideChevronUp", + "LucideChevronsDownUp", + "LucideChevronsDown", + "LucideChevronsLeftRight", + "LucideChevronsLeft", + "LucideChevronsRightLeft", + "LucideChevronsRight", + "LucideChevronsUpDown", + "LucideChevronsUp", + "LucideChrome", + "LucideCigaretteOff", + "LucideCigarette", + "LucideCircleDot", + "LucideCircleEllipsis", + "LucideCircleSlashed", + "LucideCircle", + "LucideCitrus", + "LucideClapperboard", + "LucideClipboardCheck", + "LucideClipboardCopy", + "LucideClipboardEdit", + "LucideClipboardList", + "LucideClipboardSignature", + "LucideClipboardType", + "LucideClipboardX", + "LucideClipboard", + "LucideClock1", + "LucideClock10", + "LucideClock11", + "LucideClock12", + "LucideClock2", + "LucideClock3", + "LucideClock4", + "LucideClock5", + "LucideClock6", + "LucideClock7", + "LucideClock8", + "LucideClock9", + "LucideClock", + "LucideCloudCog", + "LucideCloudDrizzle", + "LucideCloudFog", + "LucideCloudHail", + "LucideCloudLightning", + "LucideCloudMoonRain", + "LucideCloudMoon", + "LucideCloudOff", + "LucideCloudRainWind", + "LucideCloudRain", + "LucideCloudSnow", + "LucideCloudSunRain", + "LucideCloudSun", + "LucideCloud", + "LucideCloudy", + "LucideClover", + "LucideCode2", + "LucideCode", + "LucideCodepen", + "LucideCodesandbox", + "LucideCoffee", + "LucideCog", + "LucideCoins", + "LucideColumns", + "LucideCommand", + "LucideCompass", + "LucideComponent", + "LucideConciergeBell", + "LucideContact", + "LucideContrast", + "LucideCookie", + "LucideCopy", + "LucideCopyleft", + "LucideCopyright", + "LucideCornerDownLeft", + "LucideCornerDownRight", + "LucideCornerLeftDown", + "LucideCornerLeftUp", + "LucideCornerRightDown", + "LucideCornerRightUp", + "LucideCornerUpLeft", + "LucideCornerUpRight", + "LucideCpu", + "LucideCreditCard", + "LucideCroissant", + "LucideCrop", + "LucideCross", + "LucideCrosshair", + "LucideCrown", + "LucideCupSoda", + "LucideCurlyBraces", + "LucideCurrency", + "LucideDatabase", + "LucideDelete", + "LucideDiamond", + "LucideDice1", + "LucideDice2", + "LucideDice3", + "LucideDice4", + "LucideDice5", + "LucideDice6", + "LucideDices", + "LucideDiff", + "LucideDisc", + "LucideDivideCircle", + "LucideDivideSquare", + "LucideDivide", + "LucideDollarSign", + "LucideDownloadCloud", + "LucideDownload", + "LucideDribbble", + "LucideDroplet", + "LucideDroplets", + "LucideDrumstick", + "LucideEarOff", + "LucideEar", + "LucideEdit2", + "LucideEdit3", + "LucideEdit", + "LucideEggFried", + "LucideEgg", + "LucideEqualNot", + "LucideEqual", + "LucideEraser", + "LucideEuro", + "LucideExpand", + "LucideExternalLink", + "LucideEyeOff", + "LucideEye", + "LucideFacebook", + "LucideFactory", + "LucideFan", + "LucideFastForward", + "LucideFeather", + "LucideFigma", + "LucideFileArchive", + "LucideFileAudio2", + "LucideFileAudio", + "LucideFileAxis3D", + "LucideFileBadge2", + "LucideFileBadge", + "LucideFileBarChart2", + "LucideFileBarChart", + "LucideFileBox", + "LucideFileCheck2", + "LucideFileCheck", + "LucideFileClock", + "LucideFileCode", + "LucideFileCog2", + "LucideFileCog", + "LucideFileDiff", + "LucideFileDigit", + "LucideFileDown", + "LucideFileEdit", + "LucideFileHeart", + "LucideFileImage", + "LucideFileInput", + "LucideFileJson2", + "LucideFileJson", + "LucideFileKey2", + "LucideFileKey", + "LucideFileLineChart", + "LucideFileLock2", + "LucideFileLock", + "LucideFileMinus2", + "LucideFileMinus", + "LucideFileOutput", + "LucideFilePieChart", + "LucideFilePlus2", + "LucideFilePlus", + "LucideFileQuestion", + "LucideFileScan", + "LucideFileSearch2", + "LucideFileSearch", + "LucideFileSignature", + "LucideFileSpreadsheet", + "LucideFileSymlink", + "LucideFileTerminal", + "LucideFileText", + "LucideFileType2", + "LucideFileType", + "LucideFileUp", + "LucideFileVideo2", + "LucideFileVideo", + "LucideFileVolume2", + "LucideFileVolume", + "LucideFileWarning", + "LucideFileX2", + "LucideFileX", + "LucideFile", + "LucideFiles", + "LucideFilm", + "LucideFilter", + "LucideFingerprint", + "LucideFlagOff", + "LucideFlagTriangleLeft", + "LucideFlagTriangleRight", + "LucideFlag", + "LucideFlame", + "LucideFlashlightOff", + "LucideFlashlight", + "LucideFlaskConical", + "LucideFlaskRound", + "LucideFlipHorizontal2", + "LucideFlipHorizontal", + "LucideFlipVertical2", + "LucideFlipVertical", + "LucideFlower2", + "LucideFlower", + "LucideFocus", + "LucideFolderArchive", + "LucideFolderCheck", + "LucideFolderClock", + "LucideFolderClosed", + "LucideFolderCog2", + "LucideFolderCog", + "LucideFolderDown", + "LucideFolderEdit", + "LucideFolderHeart", + "LucideFolderInput", + "LucideFolderKey", + "LucideFolderLock", + "LucideFolderMinus", + "LucideFolderOpen", + "LucideFolderOutput", + "LucideFolderPlus", + "LucideFolderSearch2", + "LucideFolderSearch", + "LucideFolderSymlink", + "LucideFolderTree", + "LucideFolderUp", + "LucideFolderX", + "LucideFolder", + "LucideFolders", + "LucideFormInput", + "LucideForward", + "LucideFrame", + "LucideFramer", + "LucideFrown", + "LucideFuel", + "LucideFunctionSquare", + "LucideGamepad2", + "LucideGamepad", + "LucideGauge", + "LucideGavel", + "LucideGem", + "LucideGhost", + "LucideGift", + "LucideGitBranchPlus", + "LucideGitBranch", + "LucideGitCommit", + "LucideGitCompare", + "LucideGitFork", + "LucideGitMerge", + "LucideGitPullRequestClosed", + "LucideGitPullRequestDraft", + "LucideGitPullRequest", + "LucideGithub", + "LucideGitlab", + "LucideGlassWater", + "LucideGlasses", + "LucideGlobe2", + "LucideGlobe", + "LucideGrab", + "LucideGraduationCap", + "LucideGrape", + "LucideGrid", + "LucideGripHorizontal", + "LucideGripVertical", + "LucideHammer", + "LucideHandMetal", + "LucideHand", + "LucideHardDrive", + "LucideHardHat", + "LucideHash", + "LucideHaze", + "LucideHeadphones", + "LucideHeartCrack", + "LucideHeartHandshake", + "LucideHeartOff", + "LucideHeartPulse", + "LucideHeart", + "LucideHelpCircle", + "LucideHexagon", + "LucideHighlighter", + "LucideHistory", + "LucideHome", + "LucideHourglass", + "LucideIceCream", + "LucideImageMinus", + "LucideImageOff", + "LucideImagePlus", + "LucideImage", + "LucideImport", + "LucideInbox", + "LucideIndent", + "LucideIndianRupee", + "LucideInfinity", + "LucideInfo", + "LucideInspect", + "LucideInstagram", + "LucideItalic", + "LucideJapaneseYen", + "LucideJoystick", + "LucideKey", + "LucideKeyboard", + "LucideLampCeiling", + "LucideLampDesk", + "LucideLampFloor", + "LucideLampWallDown", + "LucideLampWallUp", + "LucideLamp", + "LucideLandmark", + "LucideLanguages", + "LucideLaptop2", + "LucideLaptop", + "LucideLassoSelect", + "LucideLasso", + "LucideLaugh", + "LucideLayers", + "LucideLayoutDashboard", + "LucideLayoutGrid", + "LucideLayoutList", + "LucideLayoutTemplate", + "LucideLayout", + "LucideLeaf", + "LucideLibrary", + "LucideLifeBuoy", + "LucideLightbulbOff", + "LucideLightbulb", + "LucideLineChart", + "LucideLink2Off", + "LucideLink2", + "LucideLink", + "LucideLinkedin", + "LucideListChecks", + "LucideListEnd", + "LucideListMinus", + "LucideListMusic", + "LucideListOrdered", + "LucideListPlus", + "LucideListStart", + "LucideListVideo", + "LucideListX", + "LucideList", + "LucideLoader2", + "LucideLoader", + "LucideLocateFixed", + "LucideLocateOff", + "LucideLocate", + "LucideLock", + "LucideLogIn", + "LucideLogOut", + "LucideLuggage", + "LucideMagnet", + "LucideMailCheck", + "LucideMailMinus", + "LucideMailOpen", + "LucideMailPlus", + "LucideMailQuestion", + "LucideMailSearch", + "LucideMailWarning", + "LucideMailX", + "LucideMail", + "LucideMails", + "LucideMapPinOff", + "LucideMapPin", + "LucideMap", + "LucideMartini", + "LucideMaximize2", + "LucideMaximize", + "LucideMedal", + "LucideMegaphoneOff", + "LucideMegaphone", + "LucideMeh", + "LucideMenu", + "LucideMessageCircle", + "LucideMessageSquare", + "LucideMic2", + "LucideMicOff", + "LucideMic", + "LucideMicroscope", + "LucideMicrowave", + "LucideMilestone", + "LucideMinimize2", + "LucideMinimize", + "LucideMinusCircle", + "LucideMinusSquare", + "LucideMinus", + "LucideMonitorOff", + "LucideMonitorSpeaker", + "LucideMonitor", + "LucideMoon", + "LucideMoreHorizontal", + "LucideMoreVertical", + "LucideMountainSnow", + "LucideMountain", + "LucideMousePointer2", + "LucideMousePointerClick", + "LucideMousePointer", + "LucideMouse", + "LucideMove3D", + "LucideMoveDiagonal2", + "LucideMoveDiagonal", + "LucideMoveHorizontal", + "LucideMoveVertical", + "LucideMove", + "LucideMusic2", + "LucideMusic3", + "LucideMusic4", + "LucideMusic", + "LucideNavigation2Off", + "LucideNavigation2", + "LucideNavigationOff", + "LucideNavigation", + "LucideNetwork", + "LucideNewspaper", + "LucideOctagon", + "LucideOption", + "LucideOutdent", + "LucidePackage2", + "LucidePackageCheck", + "LucidePackageMinus", + "LucidePackageOpen", + "LucidePackagePlus", + "LucidePackageSearch", + "LucidePackageX", + "LucidePackage", + "LucidePaintBucket", + "LucidePaintbrush2", + "LucidePaintbrush", + "LucidePalette", + "LucidePalmtree", + "LucidePaperclip", + "LucidePartyPopper", + "LucidePauseCircle", + "LucidePauseOctagon", + "LucidePause", + "LucidePenTool", + "LucidePencil", + "LucidePercent", + "LucidePersonStanding", + "LucidePhoneCall", + "LucidePhoneForwarded", + "LucidePhoneIncoming", + "LucidePhoneMissed", + "LucidePhoneOff", + "LucidePhoneOutgoing", + "LucidePhone", + "LucidePieChart", + "LucidePiggyBank", + "LucidePinOff", + "LucidePin", + "LucidePipette", + "LucidePizza", + "LucidePlane", + "LucidePlayCircle", + "LucidePlay", + "LucidePlug2", + "LucidePlugZap", + "LucidePlug", + "LucidePlusCircle", + "LucidePlusSquare", + "LucidePlus", + "LucidePocket", + "LucidePodcast", + "LucidePointer", + "LucidePoundSterling", + "LucidePowerOff", + "LucidePower", + "LucidePrinter", + "LucidePuzzle", + "LucideQrCode", + "LucideQuote", + "LucideRadioReceiver", + "LucideRadio", + "LucideRectangleHorizontal", + "LucideRectangleVertical", + "LucideRecycle", + "LucideRedo2", + "LucideRedo", + "LucideRefreshCcw", + "LucideRefreshCw", + "LucideRefrigerator", + "LucideRegex", + "LucideRepeat1", + "LucideRepeat", + "LucideReplyAll", + "LucideReply", + "LucideRewind", + "LucideRocket", + "LucideRockingChair", + "LucideRotate3D", + "LucideRotateCcw", + "LucideRotateCw", + "LucideRss", + "LucideRuler", + "LucideRussianRuble", + "LucideSailboat", + "LucideSave", + "LucideScale3D", + "LucideScale", + "LucideScaling", + "LucideScanFace", + "LucideScanLine", + "LucideScan", + "LucideScissors", + "LucideScreenShareOff", + "LucideScreenShare", + "LucideScroll", + "LucideSearch", + "LucideSend", + "LucideSeparatorHorizontal", + "LucideSeparatorVertical", + "LucideServerCog", + "LucideServerCrash", + "LucideServerOff", + "LucideServer", + "LucideSettings2", + "LucideSettings", + "LucideShare2", + "LucideShare", + "LucideSheet", + "LucideShieldAlert", + "LucideShieldCheck", + "LucideShieldClose", + "LucideShieldOff", + "LucideShield", + "LucideShirt", + "LucideShoppingBag", + "LucideShoppingCart", + "LucideShovel", + "LucideShowerHead", + "LucideShrink", + "LucideShrub", + "LucideShuffle", + "LucideSidebarClose", + "LucideSidebarOpen", + "LucideSidebar", + "LucideSigma", + "LucideSignalHigh", + "LucideSignalLow", + "LucideSignalMedium", + "LucideSignalZero", + "LucideSignal", + "LucideSiren", + "LucideSkipBack", + "LucideSkipForward", + "LucideSkull", + "LucideSlack", + "LucideSlash", + "LucideSlice", + "LucideSlidersHorizontal", + "LucideSliders", + "LucideSmartphoneCharging", + "LucideSmartphone", + "LucideSmilePlus", + "LucideSmile", + "LucideSnowflake", + "LucideSofa", + "LucideSortAsc", + "LucideSortDesc", + "LucideSpeaker", + "LucideSprout", + "LucideSquare", + "LucideStarHalf", + "LucideStarOff", + "LucideStar", + "LucideStethoscope", + "LucideSticker", + "LucideStickyNote", + "LucideStopCircle", + "LucideStretchHorizontal", + "LucideStretchVertical", + "LucideStrikethrough", + "LucideSubscript", + "LucideSunDim", + "LucideSunMedium", + "LucideSunMoon", + "LucideSunSnow", + "LucideSun", + "LucideSunrise", + "LucideSunset", + "LucideSuperscript", + "LucideSwissFranc", + "LucideSwitchCamera", + "LucideSword", + "LucideSwords", + "LucideSyringe", + "LucideTable2", + "LucideTable", + "LucideTablet", + "LucideTag", + "LucideTags", + "LucideTarget", + "LucideTent", + "LucideTerminalSquare", + "LucideTerminal", + "LucideTextCursorInput", + "LucideTextCursor", + "LucideThermometerSnowflake", + "LucideThermometerSun", + "LucideThermometer", + "LucideThumbsDown", + "LucideThumbsUp", + "LucideTicket", + "LucideTimerOff", + "LucideTimerReset", + "LucideTimer", + "LucideToggleLeft", + "LucideToggleRight", + "LucideTornado", + "LucideToyBrick", + "LucideTrain", + "LucideTrash2", + "LucideTrash", + "LucideTreeDeciduous", + "LucideTreePine", + "LucideTrees", + "LucideTrello", + "LucideTrendingDown", + "LucideTrendingUp", + "LucideTriangle", + "LucideTrophy", + "LucideTruck", + "LucideTv2", + "LucideTv", + "LucideTwitch", + "LucideTwitter", + "LucideType", + "LucideUmbrella", + "LucideUnderline", + "LucideUndo2", + "LucideUndo", + "LucideUnlink2", + "LucideUnlink", + "LucideUnlock", + "LucideUploadCloud", + "LucideUpload", + "LucideUsb", + "LucideUserCheck", + "LucideUserCog", + "LucideUserMinus", + "LucideUserPlus", + "LucideUserX", + "LucideUser", + "LucideUsers", + "LucideUtensilsCrossed", + "LucideUtensils", + "LucideVenetianMask", + "LucideVerified", + "LucideVibrateOff", + "LucideVibrate", + "LucideVideoOff", + "LucideVideo", + "LucideView", + "LucideVoicemail", + "LucideVolume1", + "LucideVolume2", + "LucideVolumeX", + "LucideVolume", + "LucideWallet", + "LucideWand2", + "LucideWand", + "LucideWatch", + "LucideWaves", + "LucideWebcam", + "LucideWebhook", + "LucideWifiOff", + "LucideWifi", + "LucideWind", + "LucideWine", + "LucideWrapText", + "LucideWrench", + "LucideXCircle", + "LucideXOctagon", + "LucideXSquare", + "LucideX", + "LucideYoutube", + "LucideZapOff", + "LucideZap", + "LucideZoomIn", + "LucideZoomOut" + ], + "octicons": [ + "OcticonsAccessibility16", + "OcticonsAlert16", + "OcticonsAlert24", + "OcticonsAlertFill12", + "OcticonsApps16", + "OcticonsArchive16", + "OcticonsArchive24", + "OcticonsArrowBoth16", + "OcticonsArrowBoth24", + "OcticonsArrowDown16", + "OcticonsArrowDown24", + "OcticonsArrowDownLeft24", + "OcticonsArrowDownRight24", + "OcticonsArrowLeft16", + "OcticonsArrowLeft24", + "OcticonsArrowRight16", + "OcticonsArrowRight24", + "OcticonsArrowSwitch16", + "OcticonsArrowSwitch24", + "OcticonsArrowUp16", + "OcticonsArrowUp24", + "OcticonsArrowUpLeft24", + "OcticonsArrowUpRight24", + "OcticonsBeaker16", + "OcticonsBeaker24", + "OcticonsBell16", + "OcticonsBell24", + "OcticonsBellFill16", + "OcticonsBellFill24", + "OcticonsBellSlash16", + "OcticonsBellSlash24", + "OcticonsBlocked16", + "OcticonsBlocked24", + "OcticonsBold16", + "OcticonsBold24", + "OcticonsBook16", + "OcticonsBook24", + "OcticonsBookmark16", + "OcticonsBookmark24", + "OcticonsBookmarkFill24", + "OcticonsBookmarkSlash16", + "OcticonsBookmarkSlash24", + "OcticonsBookmarkSlashFill24", + "OcticonsBriefcase16", + "OcticonsBriefcase24", + "OcticonsBroadcast16", + "OcticonsBroadcast24", + "OcticonsBrowser16", + "OcticonsBrowser24", + "OcticonsBug16", + "OcticonsBug24", + "OcticonsCalendar16", + "OcticonsCalendar24", + "OcticonsCheck16", + "OcticonsCheck24", + "OcticonsCheckCircle16", + "OcticonsCheckCircle24", + "OcticonsCheckCircleFill12", + "OcticonsCheckCircleFill16", + "OcticonsCheckCircleFill24", + "OcticonsChecklist16", + "OcticonsChecklist24", + "OcticonsChevronDown16", + "OcticonsChevronDown24", + "OcticonsChevronLeft16", + "OcticonsChevronLeft24", + "OcticonsChevronRight16", + "OcticonsChevronRight24", + "OcticonsChevronUp16", + "OcticonsChevronUp24", + "OcticonsCircle16", + "OcticonsCircle24", + "OcticonsCircleSlash16", + "OcticonsCircleSlash24", + "OcticonsClock16", + "OcticonsClock24", + "OcticonsCloud16", + "OcticonsCloud24", + "OcticonsCloudOffline16", + "OcticonsCloudOffline24", + "OcticonsCode16", + "OcticonsCode24", + "OcticonsCodeOfConduct16", + "OcticonsCodeOfConduct24", + "OcticonsCodeReview16", + "OcticonsCodeReview24", + "OcticonsCodeSquare16", + "OcticonsCodeSquare24", + "OcticonsCodescan16", + "OcticonsCodescan24", + "OcticonsCodescanCheckmark16", + "OcticonsCodescanCheckmark24", + "OcticonsCodespaces16", + "OcticonsCodespaces24", + "OcticonsColumns16", + "OcticonsColumns24", + "OcticonsComment16", + "OcticonsComment24", + "OcticonsCommentDiscussion16", + "OcticonsCommentDiscussion24", + "OcticonsCommit24", + "OcticonsContainer16", + "OcticonsContainer24", + "OcticonsCopy16", + "OcticonsCopy24", + "OcticonsCpu16", + "OcticonsCpu24", + "OcticonsCreditCard16", + "OcticonsCreditCard24", + "OcticonsCrossReference16", + "OcticonsCrossReference24", + "OcticonsDash16", + "OcticonsDash24", + "OcticonsDatabase16", + "OcticonsDatabase24", + "OcticonsDependabot16", + "OcticonsDependabot24", + "OcticonsDesktopDownload16", + "OcticonsDesktopDownload24", + "OcticonsDeviceCamera16", + "OcticonsDeviceCameraVideo16", + "OcticonsDeviceCameraVideo24", + "OcticonsDeviceDesktop16", + "OcticonsDeviceDesktop24", + "OcticonsDeviceMobile16", + "OcticonsDeviceMobile24", + "OcticonsDiamond16", + "OcticonsDiamond24", + "OcticonsDiff16", + "OcticonsDiff24", + "OcticonsDiffAdded16", + "OcticonsDiffIgnored16", + "OcticonsDiffModified16", + "OcticonsDiffRemoved16", + "OcticonsDiffRenamed16", + "OcticonsDot16", + "OcticonsDot24", + "OcticonsDotFill16", + "OcticonsDotFill24", + "OcticonsDownload16", + "OcticonsDownload24", + "OcticonsDuplicate16", + "OcticonsDuplicate24", + "OcticonsEllipsis16", + "OcticonsEye16", + "OcticonsEye24", + "OcticonsEyeClosed16", + "OcticonsEyeClosed24", + "OcticonsFeedDiscussion16", + "OcticonsFeedForked16", + "OcticonsFeedHeart16", + "OcticonsFeedMerged16", + "OcticonsFeedPerson16", + "OcticonsFeedRepo16", + "OcticonsFeedRocket16", + "OcticonsFeedStar16", + "OcticonsFeedTag16", + "OcticonsFeedTrophy16", + "OcticonsFile16", + "OcticonsFile24", + "OcticonsFileBadge16", + "OcticonsFileBinary16", + "OcticonsFileBinary24", + "OcticonsFileCode16", + "OcticonsFileCode24", + "OcticonsFileDiff16", + "OcticonsFileDiff24", + "OcticonsFileDirectory16", + "OcticonsFileDirectory24", + "OcticonsFileDirectoryFill16", + "OcticonsFileDirectoryFill24", + "OcticonsFileDirectoryOpenFill16", + "OcticonsFileMedia24", + "OcticonsFileSubmodule16", + "OcticonsFileSubmodule24", + "OcticonsFileSymlinkFile16", + "OcticonsFileSymlinkFile24", + "OcticonsFileZip16", + "OcticonsFileZip24", + "OcticonsFilter16", + "OcticonsFilter24", + "OcticonsFlame16", + "OcticonsFlame24", + "OcticonsFold16", + "OcticonsFold24", + "OcticonsFoldDown16", + "OcticonsFoldDown24", + "OcticonsFoldUp16", + "OcticonsFoldUp24", + "OcticonsGear16", + "OcticonsGear24", + "OcticonsGift16", + "OcticonsGift24", + "OcticonsGitBranch16", + "OcticonsGitBranch24", + "OcticonsGitCommit16", + "OcticonsGitCommit24", + "OcticonsGitCompare16", + "OcticonsGitCompare24", + "OcticonsGitMerge16", + "OcticonsGitMerge24", + "OcticonsGitPullRequest16", + "OcticonsGitPullRequest24", + "OcticonsGitPullRequestClosed16", + "OcticonsGitPullRequestClosed24", + "OcticonsGitPullRequestDraft16", + "OcticonsGitPullRequestDraft24", + "OcticonsGlobe16", + "OcticonsGlobe24", + "OcticonsGrabber16", + "OcticonsGrabber24", + "OcticonsGraph16", + "OcticonsGraph24", + "OcticonsHash16", + "OcticonsHash24", + "OcticonsHeading16", + "OcticonsHeading24", + "OcticonsHeart16", + "OcticonsHeart24", + "OcticonsHeartFill16", + "OcticonsHeartFill24", + "OcticonsHistory16", + "OcticonsHistory24", + "OcticonsHome16", + "OcticonsHome24", + "OcticonsHomeFill24", + "OcticonsHorizontalRule16", + "OcticonsHorizontalRule24", + "OcticonsHourglass16", + "OcticonsHourglass24", + "OcticonsHubot16", + "OcticonsHubot24", + "OcticonsIdBadge16", + "OcticonsImage16", + "OcticonsImage24", + "OcticonsInbox16", + "OcticonsInbox24", + "OcticonsInfinity16", + "OcticonsInfinity24", + "OcticonsInfo16", + "OcticonsInfo24", + "OcticonsIssueClosed16", + "OcticonsIssueClosed24", + "OcticonsIssueDraft16", + "OcticonsIssueDraft24", + "OcticonsIssueOpened16", + "OcticonsIssueOpened24", + "OcticonsIssueReopened16", + "OcticonsIssueReopened24", + "OcticonsItalic16", + "OcticonsItalic24", + "OcticonsIterations16", + "OcticonsIterations24", + "OcticonsKebabHorizontal16", + "OcticonsKebabHorizontal24", + "OcticonsKey16", + "OcticonsKey24", + "OcticonsKeyAsterisk16", + "OcticonsLaw16", + "OcticonsLaw24", + "OcticonsLightBulb16", + "OcticonsLightBulb24", + "OcticonsLink16", + "OcticonsLink24", + "OcticonsLinkExternal16", + "OcticonsLinkExternal24", + "OcticonsListOrdered16", + "OcticonsListOrdered24", + "OcticonsListUnordered16", + "OcticonsListUnordered24", + "OcticonsLocation16", + "OcticonsLocation24", + "OcticonsLock16", + "OcticonsLock24", + "OcticonsLog16", + "OcticonsLogoGist16", + "OcticonsLogoGithub16", + "OcticonsMail16", + "OcticonsMail24", + "OcticonsMarkGithub16", + "OcticonsMarkdown16", + "OcticonsMegaphone16", + "OcticonsMegaphone24", + "OcticonsMention16", + "OcticonsMention24", + "OcticonsMeter16", + "OcticonsMilestone16", + "OcticonsMilestone24", + "OcticonsMirror16", + "OcticonsMirror24", + "OcticonsMoon16", + "OcticonsMoon24", + "OcticonsMortarBoard16", + "OcticonsMortarBoard24", + "OcticonsMultiSelect16", + "OcticonsMultiSelect24", + "OcticonsMute16", + "OcticonsMute24", + "OcticonsNoEntry16", + "OcticonsNoEntry24", + "OcticonsNoEntryFill12", + "OcticonsNorthStar16", + "OcticonsNorthStar24", + "OcticonsNote16", + "OcticonsNote24", + "OcticonsNumber16", + "OcticonsNumber24", + "OcticonsOrganization16", + "OcticonsOrganization24", + "OcticonsPackage16", + "OcticonsPackage24", + "OcticonsPackageDependencies16", + "OcticonsPackageDependencies24", + "OcticonsPackageDependents16", + "OcticonsPackageDependents24", + "OcticonsPaintbrush16", + "OcticonsPaperAirplane16", + "OcticonsPaperAirplane24", + "OcticonsPaste16", + "OcticonsPaste24", + "OcticonsPencil16", + "OcticonsPencil24", + "OcticonsPeople16", + "OcticonsPeople24", + "OcticonsPerson16", + "OcticonsPerson24", + "OcticonsPersonAdd16", + "OcticonsPersonAdd24", + "OcticonsPersonFill16", + "OcticonsPersonFill24", + "OcticonsPin16", + "OcticonsPin24", + "OcticonsPlay16", + "OcticonsPlay24", + "OcticonsPlug16", + "OcticonsPlug24", + "OcticonsPlus16", + "OcticonsPlus24", + "OcticonsPlusCircle16", + "OcticonsPlusCircle24", + "OcticonsProject16", + "OcticonsProject24", + "OcticonsPulse16", + "OcticonsPulse24", + "OcticonsQuestion16", + "OcticonsQuestion24", + "OcticonsQuote16", + "OcticonsQuote24", + "OcticonsReply16", + "OcticonsReply24", + "OcticonsRepo16", + "OcticonsRepo24", + "OcticonsRepoClone16", + "OcticonsRepoDeleted16", + "OcticonsRepoForked16", + "OcticonsRepoForked24", + "OcticonsRepoLocked16", + "OcticonsRepoPull16", + "OcticonsRepoPush16", + "OcticonsRepoPush24", + "OcticonsRepoTemplate16", + "OcticonsRepoTemplate24", + "OcticonsReport16", + "OcticonsReport24", + "OcticonsRocket16", + "OcticonsRocket24", + "OcticonsRows16", + "OcticonsRows24", + "OcticonsRss16", + "OcticonsRss24", + "OcticonsRuby16", + "OcticonsRuby24", + "OcticonsScreenFull16", + "OcticonsScreenFull24", + "OcticonsScreenNormal16", + "OcticonsScreenNormal24", + "OcticonsSearch16", + "OcticonsSearch24", + "OcticonsServer16", + "OcticonsServer24", + "OcticonsShare16", + "OcticonsShare24", + "OcticonsShareAndroid16", + "OcticonsShareAndroid24", + "OcticonsShield16", + "OcticonsShield24", + "OcticonsShieldCheck16", + "OcticonsShieldCheck24", + "OcticonsShieldLock16", + "OcticonsShieldLock24", + "OcticonsShieldX16", + "OcticonsShieldX24", + "OcticonsSidebarCollapse16", + "OcticonsSidebarCollapse24", + "OcticonsSidebarExpand16", + "OcticonsSidebarExpand24", + "OcticonsSignIn16", + "OcticonsSignIn24", + "OcticonsSignOut16", + "OcticonsSignOut24", + "OcticonsSingleSelect16", + "OcticonsSingleSelect24", + "OcticonsSkip16", + "OcticonsSkip24", + "OcticonsSmiley16", + "OcticonsSmiley24", + "OcticonsSortAsc16", + "OcticonsSortAsc24", + "OcticonsSortDesc16", + "OcticonsSortDesc24", + "OcticonsSquare16", + "OcticonsSquare24", + "OcticonsSquareFill16", + "OcticonsSquareFill24", + "OcticonsSquirrel16", + "OcticonsSquirrel24", + "OcticonsStack16", + "OcticonsStack24", + "OcticonsStar16", + "OcticonsStar24", + "OcticonsStarFill16", + "OcticonsStarFill24", + "OcticonsStop16", + "OcticonsStop24", + "OcticonsStopwatch16", + "OcticonsStopwatch24", + "OcticonsStrikethrough16", + "OcticonsStrikethrough24", + "OcticonsSun16", + "OcticonsSun24", + "OcticonsSync16", + "OcticonsSync24", + "OcticonsTab24", + "OcticonsTabExternal16", + "OcticonsTable16", + "OcticonsTable24", + "OcticonsTag16", + "OcticonsTag24", + "OcticonsTasklist16", + "OcticonsTasklist24", + "OcticonsTelescope16", + "OcticonsTelescope24", + "OcticonsTelescopeFill16", + "OcticonsTelescopeFill24", + "OcticonsTerminal16", + "OcticonsTerminal24", + "OcticonsThreeBars16", + "OcticonsThumbsdown16", + "OcticonsThumbsdown24", + "OcticonsThumbsup16", + "OcticonsThumbsup24", + "OcticonsTools16", + "OcticonsTools24", + "OcticonsTrash16", + "OcticonsTrash24", + "OcticonsTriangleDown16", + "OcticonsTriangleDown24", + "OcticonsTriangleLeft16", + "OcticonsTriangleLeft24", + "OcticonsTriangleRight16", + "OcticonsTriangleRight24", + "OcticonsTriangleUp16", + "OcticonsTriangleUp24", + "OcticonsTrophy16", + "OcticonsTrophy24", + "OcticonsTypography16", + "OcticonsTypography24", + "OcticonsUnfold16", + "OcticonsUnfold24", + "OcticonsUnlock16", + "OcticonsUnlock24", + "OcticonsUnmute16", + "OcticonsUnmute24", + "OcticonsUnverified16", + "OcticonsUnverified24", + "OcticonsUpload16", + "OcticonsUpload24", + "OcticonsVerified16", + "OcticonsVerified24", + "OcticonsVersions16", + "OcticonsVersions24", + "OcticonsVideo16", + "OcticonsVideo24", + "OcticonsWebhook16", + "OcticonsWorkflow16", + "OcticonsWorkflow24", + "OcticonsX16", + "OcticonsX24", + "OcticonsXCircle16", + "OcticonsXCircle24", + "OcticonsXCircleFill12", + "OcticonsXCircleFill16", + "OcticonsXCircleFill24", + "OcticonsZap16", + "OcticonsZap24" + ], + "proc-macro2": [ + "dep:proc-macro2" + ], + "quote": [ + "dep:quote" + ], + "regex": [ + "dep:regex" + ], + "simple_icons": [ + "SimpleIcons1001Tracklists", + "SimpleIcons1Password", + "SimpleIcons3M", + "SimpleIcons42", + "SimpleIcons4Chan", + "SimpleIcons4D", + "SimpleIcons500Px", + "SimpleIconsAbbott", + "SimpleIconsAbbrobotstudio", + "SimpleIconsAbbvie", + "SimpleIconsAbletonlive", + "SimpleIconsAboutdotme", + "SimpleIconsAbstract", + "SimpleIconsAcademia", + "SimpleIconsAccenture", + "SimpleIconsAcclaim", + "SimpleIconsAccusoft", + "SimpleIconsAcer", + "SimpleIconsAcm", + "SimpleIconsActigraph", + "SimpleIconsActivision", + "SimpleIconsAdafruit", + "SimpleIconsAdblock", + "SimpleIconsAdblockplus", + "SimpleIconsAddthis", + "SimpleIconsAdguard", + "SimpleIconsAdidas", + "SimpleIconsAdminer", + "SimpleIconsAdobe", + "SimpleIconsAdobeacrobatreader", + "SimpleIconsAdobeaftereffects", + "SimpleIconsAdobeaudition", + "SimpleIconsAdobecreativecloud", + "SimpleIconsAdobedreamweaver", + "SimpleIconsAdobefonts", + "SimpleIconsAdobeillustrator", + "SimpleIconsAdobeindesign", + "SimpleIconsAdobelightroom", + "SimpleIconsAdobelightroomclassic", + "SimpleIconsAdobephotoshop", + "SimpleIconsAdobepremierepro", + "SimpleIconsAdobexd", + "SimpleIconsAdonisjs", + "SimpleIconsAdp", + "SimpleIconsAdyen", + "SimpleIconsAerlingus", + "SimpleIconsAeroflot", + "SimpleIconsAeromexico", + "SimpleIconsAerospike", + "SimpleIconsAew", + "SimpleIconsAffinity", + "SimpleIconsAffinitydesigner", + "SimpleIconsAffinityphoto", + "SimpleIconsAffinitypublisher", + "SimpleIconsAframe", + "SimpleIconsAgora", + "SimpleIconsAib", + "SimpleIconsAidungeon", + "SimpleIconsAiohttp", + "SimpleIconsAiqfome", + "SimpleIconsAirasia", + "SimpleIconsAirbnb", + "SimpleIconsAirbus", + "SimpleIconsAirbyte", + "SimpleIconsAircall", + "SimpleIconsAircanada", + "SimpleIconsAirchina", + "SimpleIconsAirfrance", + "SimpleIconsAirplayaudio", + "SimpleIconsAirplayvideo", + "SimpleIconsAirtable", + "SimpleIconsAjv", + "SimpleIconsAkamai", + "SimpleIconsAlacritty", + "SimpleIconsAlbertheijn", + "SimpleIconsAlchemy", + "SimpleIconsAldinord", + "SimpleIconsAldisud", + "SimpleIconsAlfaromeo", + "SimpleIconsAlfred", + "SimpleIconsAlgolia", + "SimpleIconsAlgorand", + "SimpleIconsAlibabacloud", + "SimpleIconsAlibabadotcom", + "SimpleIconsAliexpress", + "SimpleIconsAlipay", + "SimpleIconsAlitalia", + "SimpleIconsAllegro", + "SimpleIconsAlliedmodders", + "SimpleIconsAllocine", + "SimpleIconsAlltrails", + "SimpleIconsAlpinedotjs", + "SimpleIconsAlpinelinux", + "SimpleIconsAltiumdesigner", + "SimpleIconsAlwaysdata", + "SimpleIconsAmazon", + "SimpleIconsAmazonalexa", + "SimpleIconsAmazonapigateway", + "SimpleIconsAmazonaws", + "SimpleIconsAmazoncloudwatch", + "SimpleIconsAmazondynamodb", + "SimpleIconsAmazonec2", + "SimpleIconsAmazonecs", + "SimpleIconsAmazoneks", + "SimpleIconsAmazonfiretv", + "SimpleIconsAmazongames", + "SimpleIconsAmazonlumberyard", + "SimpleIconsAmazonpay", + "SimpleIconsAmazonprime", + "SimpleIconsAmazonrds", + "SimpleIconsAmazons3", + "SimpleIconsAmazonsqs", + "SimpleIconsAmd", + "SimpleIconsAmericanairlines", + "SimpleIconsAmericanexpress", + "SimpleIconsAmg", + "SimpleIconsAmp", + "SimpleIconsAmul", + "SimpleIconsAna", + "SimpleIconsAnaconda", + "SimpleIconsAnalogue", + "SimpleIconsAnchor", + "SimpleIconsAndela", + "SimpleIconsAndroid", + "SimpleIconsAndroidauto", + "SimpleIconsAndroidstudio", + "SimpleIconsAngellist", + "SimpleIconsAngular", + "SimpleIconsAngularjs", + "SimpleIconsAngularuniversal", + "SimpleIconsAnilist", + "SimpleIconsAnsible", + "SimpleIconsAnswer", + "SimpleIconsAnsys", + "SimpleIconsAnta", + "SimpleIconsAntdesign", + "SimpleIconsAntena3", + "SimpleIconsAnydesk", + "SimpleIconsAol", + "SimpleIconsApache", + "SimpleIconsApacheairflow", + "SimpleIconsApacheant", + "SimpleIconsApachecassandra", + "SimpleIconsApachecloudstack", + "SimpleIconsApachecordova", + "SimpleIconsApachecouchdb", + "SimpleIconsApachedruid", + "SimpleIconsApacheecharts", + "SimpleIconsApacheflink", + "SimpleIconsApachegroovy", + "SimpleIconsApachehadoop", + "SimpleIconsApachehive", + "SimpleIconsApachejmeter", + "SimpleIconsApachekafka", + "SimpleIconsApachekylin", + "SimpleIconsApachemaven", + "SimpleIconsApachenetbeanside", + "SimpleIconsApacheopenoffice", + "SimpleIconsApachepulsar", + "SimpleIconsApacherocketmq", + "SimpleIconsApachesolr", + "SimpleIconsApachespark", + "SimpleIconsApachetomcat", + "SimpleIconsAparat", + "SimpleIconsApollographql", + "SimpleIconsApostrophe", + "SimpleIconsAppian", + "SimpleIconsApple", + "SimpleIconsApplearcade", + "SimpleIconsApplemusic", + "SimpleIconsApplenews", + "SimpleIconsApplepay", + "SimpleIconsApplepodcasts", + "SimpleIconsAppletv", + "SimpleIconsAppsignal", + "SimpleIconsAppstore", + "SimpleIconsAppveyor", + "SimpleIconsAppwrite", + "SimpleIconsAqua", + "SimpleIconsAral", + "SimpleIconsArangodb", + "SimpleIconsArchicad", + "SimpleIconsArchiveofourown", + "SimpleIconsArchlinux", + "SimpleIconsArdour", + "SimpleIconsArduino", + "SimpleIconsArgo", + "SimpleIconsArgos", + "SimpleIconsArkecosystem", + "SimpleIconsArlo", + "SimpleIconsArm", + "SimpleIconsArtifacthub", + "SimpleIconsArtixlinux", + "SimpleIconsArtstation", + "SimpleIconsArxiv", + "SimpleIconsAsana", + "SimpleIconsAsciidoctor", + "SimpleIconsAsciinema", + "SimpleIconsAsda", + "SimpleIconsAseprite", + "SimpleIconsAskfm", + "SimpleIconsAskubuntu", + "SimpleIconsAssemblyscript", + "SimpleIconsAstonmartin", + "SimpleIconsAstro", + "SimpleIconsAsus", + "SimpleIconsAtandt", + "SimpleIconsAtari", + "SimpleIconsAtlassian", + "SimpleIconsAtom", + "SimpleIconsAuchan", + "SimpleIconsAudacity", + "SimpleIconsAudi", + "SimpleIconsAudible", + "SimpleIconsAudioboom", + "SimpleIconsAudiomack", + "SimpleIconsAudiotechnica", + "SimpleIconsAurelia", + "SimpleIconsAuth0", + "SimpleIconsAuthy", + "SimpleIconsAutodesk", + "SimpleIconsAutohotkey", + "SimpleIconsAutomattic", + "SimpleIconsAutoprefixer", + "SimpleIconsAvajs", + "SimpleIconsAvast", + "SimpleIconsAwesomelists", + "SimpleIconsAwesomewm", + "SimpleIconsAwsamplify", + "SimpleIconsAwsfargate", + "SimpleIconsAwslambda", + "SimpleIconsAxios", + "SimpleIconsAzureartifacts", + "SimpleIconsAzuredataexplorer", + "SimpleIconsAzuredevops", + "SimpleIconsAzurefunctions", + "SimpleIconsAzurepipelines", + "SimpleIconsBabel", + "SimpleIconsBackblaze", + "SimpleIconsBackbonedotjs", + "SimpleIconsBackendless", + "SimpleIconsBackstage", + "SimpleIconsBadgr", + "SimpleIconsBadoo", + "SimpleIconsBaidu", + "SimpleIconsBamboo", + "SimpleIconsBandcamp", + "SimpleIconsBandlab", + "SimpleIconsBandrautomation", + "SimpleIconsBandsintown", + "SimpleIconsBankofamerica", + "SimpleIconsBarclays", + "SimpleIconsBaremetrics", + "SimpleIconsBasecamp", + "SimpleIconsBastyon", + "SimpleIconsBata", + "SimpleIconsBathasu", + "SimpleIconsBattledotnet", + "SimpleIconsBbc", + "SimpleIconsBbciplayer", + "SimpleIconsBeatport", + "SimpleIconsBeats", + "SimpleIconsBeatsbydre", + "SimpleIconsBehance", + "SimpleIconsBeijingsubway", + "SimpleIconsBem", + "SimpleIconsBentley", + "SimpleIconsBetfair", + "SimpleIconsBigbasket", + "SimpleIconsBigbluebutton", + "SimpleIconsBigcartel", + "SimpleIconsBigcommerce", + "SimpleIconsBilibili", + "SimpleIconsBillboard", + "SimpleIconsBim", + "SimpleIconsBinance", + "SimpleIconsBiolink", + "SimpleIconsBit", + "SimpleIconsBitbucket", + "SimpleIconsBitcoin", + "SimpleIconsBitcoincash", + "SimpleIconsBitcoinsv", + "SimpleIconsBitdefender", + "SimpleIconsBitly", + "SimpleIconsBitrise", + "SimpleIconsBitwarden", + "SimpleIconsBitwig", + "SimpleIconsBlackberry", + "SimpleIconsBlazemeter", + "SimpleIconsBlazor", + "SimpleIconsBlender", + "SimpleIconsBlockchaindotcom", + "SimpleIconsBlogger", + "SimpleIconsBloglovin", + "SimpleIconsBlueprint", + "SimpleIconsBluetooth", + "SimpleIconsBmcsoftware", + "SimpleIconsBmw", + "SimpleIconsBoardgamegeek", + "SimpleIconsBoehringeringelheim", + "SimpleIconsBoeing", + "SimpleIconsBookalope", + "SimpleIconsBookbub", + "SimpleIconsBookmeter", + "SimpleIconsBookmyshow", + "SimpleIconsBookstack", + "SimpleIconsBoost", + "SimpleIconsBoots", + "SimpleIconsBootstrap", + "SimpleIconsBorgbackup", + "SimpleIconsBosch", + "SimpleIconsBose", + "SimpleIconsBoulanger", + "SimpleIconsBower", + "SimpleIconsBox", + "SimpleIconsBoxysvg", + "SimpleIconsBrandfolder", + "SimpleIconsBrave", + "SimpleIconsBreaker", + "SimpleIconsBritishairways", + "SimpleIconsBroadcom", + "SimpleIconsBt", + "SimpleIconsBuddy", + "SimpleIconsBudibase", + "SimpleIconsBuefy", + "SimpleIconsBuffer", + "SimpleIconsBugatti", + "SimpleIconsBugcrowd", + "SimpleIconsBugsnag", + "SimpleIconsBuildkite", + "SimpleIconsBukalapak", + "SimpleIconsBulma", + "SimpleIconsBun", + "SimpleIconsBunq", + "SimpleIconsBurgerking", + "SimpleIconsBurton", + "SimpleIconsBuymeacoffee", + "SimpleIconsBuzzfeed", + "SimpleIconsBvg", + "SimpleIconsByjus", + "SimpleIconsByte", + "SimpleIconsBytedance", + "SimpleIconsC", + "SimpleIconsCachet", + "SimpleIconsCafepress", + "SimpleIconsCaffeine", + "SimpleIconsCairographics", + "SimpleIconsCairometro", + "SimpleIconsCakephp", + "SimpleIconsCampaignmonitor", + "SimpleIconsCanonical", + "SimpleIconsCanva", + "SimpleIconsCapacitor", + "SimpleIconsCarrefour", + "SimpleIconsCarthrottle", + "SimpleIconsCarto", + "SimpleIconsCashapp", + "SimpleIconsCastbox", + "SimpleIconsCastorama", + "SimpleIconsCastro", + "SimpleIconsCaterpillar", + "SimpleIconsCbs", + "SimpleIconsCdprojekt", + "SimpleIconsCelery", + "SimpleIconsCentos", + "SimpleIconsCeph", + "SimpleIconsCesium", + "SimpleIconsChai", + "SimpleIconsChainguard", + "SimpleIconsChainlink", + "SimpleIconsChakraui", + "SimpleIconsChartdotjs", + "SimpleIconsChartmogul", + "SimpleIconsChase", + "SimpleIconsChatbot", + "SimpleIconsCheckio", + "SimpleIconsCheckmarx", + "SimpleIconsChef", + "SimpleIconsChemex", + "SimpleIconsChevrolet", + "SimpleIconsChinaeasternairlines", + "SimpleIconsChinasouthernairlines", + "SimpleIconsChocolatey", + "SimpleIconsChromecast", + "SimpleIconsChrysler", + "SimpleIconsChupachups", + "SimpleIconsCilium", + "SimpleIconsCinema4D", + "SimpleIconsCircle", + "SimpleIconsCircleci", + "SimpleIconsCirrusci", + "SimpleIconsCisco", + "SimpleIconsCitrix", + "SimpleIconsCitroen", + "SimpleIconsCivicrm", + "SimpleIconsCivo", + "SimpleIconsCkeditor4", + "SimpleIconsClaris", + "SimpleIconsClickhouse", + "SimpleIconsClickup", + "SimpleIconsClion", + "SimpleIconsCliqz", + "SimpleIconsClockify", + "SimpleIconsClojure", + "SimpleIconsCloud66", + "SimpleIconsCloudbees", + "SimpleIconsCloudcannon", + "SimpleIconsCloudera", + "SimpleIconsCloudflare", + "SimpleIconsCloudflarepages", + "SimpleIconsCloudfoundry", + "SimpleIconsCloudsmith", + "SimpleIconsCloudways", + "SimpleIconsClubhouse", + "SimpleIconsClyp", + "SimpleIconsCmake", + "SimpleIconsCncf", + "SimpleIconsCnn", + "SimpleIconsCockpit", + "SimpleIconsCockroachlabs", + "SimpleIconsCocoapods", + "SimpleIconsCocos", + "SimpleIconsCoda", + "SimpleIconsCodacy", + "SimpleIconsCodeberg", + "SimpleIconsCodecademy", + "SimpleIconsCodeceptjs", + "SimpleIconsCodechef", + "SimpleIconsCodeclimate", + "SimpleIconsCodecov", + "SimpleIconsCodefactor", + "SimpleIconsCodeforces", + "SimpleIconsCodeigniter", + "SimpleIconsCodemagic", + "SimpleIconsCodemirror", + "SimpleIconsCodenewbie", + "SimpleIconsCodepen", + "SimpleIconsCodeproject", + "SimpleIconsCodereview", + "SimpleIconsCodersrank", + "SimpleIconsCoderwall", + "SimpleIconsCodesandbox", + "SimpleIconsCodeship", + "SimpleIconsCodewars", + "SimpleIconsCodingame", + "SimpleIconsCodingninjas", + "SimpleIconsCodio", + "SimpleIconsCoffeescript", + "SimpleIconsCognizant", + "SimpleIconsCoil", + "SimpleIconsCoinbase", + "SimpleIconsCoinmarketcap", + "SimpleIconsCommerzbank", + "SimpleIconsCommitlint", + "SimpleIconsCommodore", + "SimpleIconsCommonworkflowlanguage", + "SimpleIconsComposer", + "SimpleIconsComsol", + "SimpleIconsConan", + "SimpleIconsConcourse", + "SimpleIconsCondaforge", + "SimpleIconsConekta", + "SimpleIconsConfluence", + "SimpleIconsConstruct3", + "SimpleIconsConsul", + "SimpleIconsContactlesspayment", + "SimpleIconsContainerd", + "SimpleIconsContentful", + "SimpleIconsConventionalcommits", + "SimpleIconsConvertio", + "SimpleIconsCookiecutter", + "SimpleIconsCoop", + "SimpleIconsCora", + "SimpleIconsCoronaengine", + "SimpleIconsCoronarenderer", + "SimpleIconsCorsair", + "SimpleIconsCouchbase", + "SimpleIconsCounterstrike", + "SimpleIconsCountingworkspro", + "SimpleIconsCoursera", + "SimpleIconsCoveralls", + "SimpleIconsCpanel", + "SimpleIconsCplusplus", + "SimpleIconsCraftcms", + "SimpleIconsCratedb", + "SimpleIconsCrayon", + "SimpleIconsCreatereactapp", + "SimpleIconsCreativecommons", + "SimpleIconsCreativetechnology", + "SimpleIconsCredly", + "SimpleIconsCrehana", + "SimpleIconsCriticalrole", + "SimpleIconsCrowdin", + "SimpleIconsCrowdsource", + "SimpleIconsCrunchbase", + "SimpleIconsCrunchyroll", + "SimpleIconsCryengine", + "SimpleIconsCrystal", + "SimpleIconsCsharp", + "SimpleIconsCss3", + "SimpleIconsCssmodules", + "SimpleIconsCsswizardry", + "SimpleIconsCts", + "SimpleIconsCucumber", + "SimpleIconsCultura", + "SimpleIconsCurl", + "SimpleIconsCurseforge", + "SimpleIconsCycling74", + "SimpleIconsCypress", + "SimpleIconsCytoscapedotjs", + "SimpleIconsD", + "SimpleIconsD3Dotjs", + "SimpleIconsDacia", + "SimpleIconsDaf", + "SimpleIconsDailymotion", + "SimpleIconsDaimler", + "SimpleIconsDaisyui", + "SimpleIconsDapr", + "SimpleIconsDarkreader", + "SimpleIconsDart", + "SimpleIconsDarty", + "SimpleIconsDaserste", + "SimpleIconsDash", + "SimpleIconsDashlane", + "SimpleIconsDask", + "SimpleIconsDassaultsystemes", + "SimpleIconsDatabricks", + "SimpleIconsDatacamp", + "SimpleIconsDatadog", + "SimpleIconsDatadotai", + "SimpleIconsDatagrip", + "SimpleIconsDataiku", + "SimpleIconsDatastax", + "SimpleIconsDataverse", + "SimpleIconsDatocms", + "SimpleIconsDatto", + "SimpleIconsDazn", + "SimpleIconsDblp", + "SimpleIconsDbt", + "SimpleIconsDcentertainment", + "SimpleIconsDebian", + "SimpleIconsDedge", + "SimpleIconsDeepin", + "SimpleIconsDeepnote", + "SimpleIconsDeezer", + "SimpleIconsDelicious", + "SimpleIconsDeliveroo", + "SimpleIconsDell", + "SimpleIconsDelonghi", + "SimpleIconsDelphi", + "SimpleIconsDelta", + "SimpleIconsDeno", + "SimpleIconsDependabot", + "SimpleIconsDerspiegel", + "SimpleIconsDesignernews", + "SimpleIconsDeutschebahn", + "SimpleIconsDeutschebank", + "SimpleIconsDevdotto", + "SimpleIconsDevexpress", + "SimpleIconsDeviantart", + "SimpleIconsDevpost", + "SimpleIconsDevrant", + "SimpleIconsDgraph", + "SimpleIconsDhl", + "SimpleIconsDiagramsdotnet", + "SimpleIconsDialogflow", + "SimpleIconsDiaspora", + "SimpleIconsDigg", + "SimpleIconsDigikeyelectronics", + "SimpleIconsDigitalocean", + "SimpleIconsDior", + "SimpleIconsDirectus", + "SimpleIconsDiscogs", + "SimpleIconsDiscord", + "SimpleIconsDiscourse", + "SimpleIconsDiscover", + "SimpleIconsDisqus", + "SimpleIconsDisroot", + "SimpleIconsDjango", + "SimpleIconsDlib", + "SimpleIconsDlna", + "SimpleIconsDm", + "SimpleIconsDocker", + "SimpleIconsDocsdotrs", + "SimpleIconsDocusign", + "SimpleIconsDogecoin", + "SimpleIconsDolby", + "SimpleIconsDoordash", + "SimpleIconsDotenv", + "SimpleIconsDotnet", + "SimpleIconsDouban", + "SimpleIconsDoubanread", + "SimpleIconsDovecot", + "SimpleIconsDpd", + "SimpleIconsDragonframe", + "SimpleIconsDraugiemdotlv", + "SimpleIconsDribbble", + "SimpleIconsDrone", + "SimpleIconsDrooble", + "SimpleIconsDropbox", + "SimpleIconsDrupal", + "SimpleIconsDsautomobiles", + "SimpleIconsDtube", + "SimpleIconsDucati", + "SimpleIconsDuckdb", + "SimpleIconsDuckduckgo", + "SimpleIconsDungeonsanddragons", + "SimpleIconsDunked", + "SimpleIconsDuolingo", + "SimpleIconsDvc", + "SimpleIconsDwavesystems", + "SimpleIconsDwm", + "SimpleIconsDynamics365", + "SimpleIconsDynatrace", + "SimpleIconsE", + "SimpleIconsE3", + "SimpleIconsEa", + "SimpleIconsEagle", + "SimpleIconsEasyjet", + "SimpleIconsEbay", + "SimpleIconsEclipseche", + "SimpleIconsEclipseide", + "SimpleIconsEclipsejetty", + "SimpleIconsEclipsemosquitto", + "SimpleIconsEclipsevertdotx", + "SimpleIconsEdeka", + "SimpleIconsEditorconfig", + "SimpleIconsEdotleclerc", + "SimpleIconsEdx", + "SimpleIconsEgghead", + "SimpleIconsEgnyte", + "SimpleIconsEightsleep", + "SimpleIconsElastic", + "SimpleIconsElasticcloud", + "SimpleIconsElasticsearch", + "SimpleIconsElasticstack", + "SimpleIconsElectron", + "SimpleIconsElectronbuilder", + "SimpleIconsElectronfiddle", + "SimpleIconsElement", + "SimpleIconsElementary", + "SimpleIconsElementor", + "SimpleIconsEleventy", + "SimpleIconsElgato", + "SimpleIconsElixir", + "SimpleIconsEljueves", + "SimpleIconsEllo", + "SimpleIconsElm", + "SimpleIconsElsevier", + "SimpleIconsEmbarcadero", + "SimpleIconsEmberdotjs", + "SimpleIconsEmby", + "SimpleIconsEmirates", + "SimpleIconsEmlakjet", + "SimpleIconsEmpirekred", + "SimpleIconsEngadget", + "SimpleIconsEnpass", + "SimpleIconsEnterprisedb", + "SimpleIconsEnvato", + "SimpleIconsEnvoyproxy", + "SimpleIconsEpel", + "SimpleIconsEpicgames", + "SimpleIconsEpson", + "SimpleIconsEquinixmetal", + "SimpleIconsErlang", + "SimpleIconsEsbuild", + "SimpleIconsEsea", + "SimpleIconsEslgaming", + "SimpleIconsEslint", + "SimpleIconsEsphome", + "SimpleIconsEspressif", + "SimpleIconsEtcd", + "SimpleIconsEthereum", + "SimpleIconsEthiopianairlines", + "SimpleIconsEtihadairways", + "SimpleIconsEtsy", + "SimpleIconsEventbrite", + "SimpleIconsEventstore", + "SimpleIconsEvernote", + "SimpleIconsExercism", + "SimpleIconsExordo", + "SimpleIconsExoscale", + "SimpleIconsExpensify", + "SimpleIconsExpertsexchange", + "SimpleIconsExpo", + "SimpleIconsExpress", + "SimpleIconsExpressvpn", + "SimpleIconsEyeem", + "SimpleIconsF1", + "SimpleIconsF5", + "SimpleIconsFacebook", + "SimpleIconsFacebookgaming", + "SimpleIconsFacebooklive", + "SimpleIconsFaceit", + "SimpleIconsFacepunch", + "SimpleIconsFalcon", + "SimpleIconsFampay", + "SimpleIconsFandango", + "SimpleIconsFandom", + "SimpleIconsFanfou", + "SimpleIconsFantom", + "SimpleIconsFarfetch", + "SimpleIconsFastapi", + "SimpleIconsFastify", + "SimpleIconsFastlane", + "SimpleIconsFastly", + "SimpleIconsFathom", + "SimpleIconsFauna", + "SimpleIconsFavro", + "SimpleIconsFdroid", + "SimpleIconsFeathub", + "SimpleIconsFedex", + "SimpleIconsFedora", + "SimpleIconsFeedly", + "SimpleIconsFerrari", + "SimpleIconsFerrarinv", + "SimpleIconsFfmpeg", + "SimpleIconsFiat", + "SimpleIconsFidoalliance", + "SimpleIconsFifa", + "SimpleIconsFig", + "SimpleIconsFigma", + "SimpleIconsFigshare", + "SimpleIconsFila", + "SimpleIconsFiles", + "SimpleIconsFilezilla", + "SimpleIconsFing", + "SimpleIconsFirebase", + "SimpleIconsFirefox", + "SimpleIconsFirefoxbrowser", + "SimpleIconsFireship", + "SimpleIconsFirewalla", + "SimpleIconsFirst", + "SimpleIconsFitbit", + "SimpleIconsFite", + "SimpleIconsFivem", + "SimpleIconsFiverr", + "SimpleIconsFlask", + "SimpleIconsFlat", + "SimpleIconsFlathub", + "SimpleIconsFlatpak", + "SimpleIconsFlattr", + "SimpleIconsFlickr", + "SimpleIconsFlipboard", + "SimpleIconsFlipkart", + "SimpleIconsFloatplane", + "SimpleIconsFlood", + "SimpleIconsFluentbit", + "SimpleIconsFluentd", + "SimpleIconsFlutter", + "SimpleIconsFluxus", + "SimpleIconsFlyway", + "SimpleIconsFmod", + "SimpleIconsFnac", + "SimpleIconsFolium", + "SimpleIconsFonoma", + "SimpleIconsFontawesome", + "SimpleIconsFontbase", + "SimpleIconsFontforge", + "SimpleIconsFoodpanda", + "SimpleIconsFord", + "SimpleIconsForestry", + "SimpleIconsFormstack", + "SimpleIconsFortinet", + "SimpleIconsFortran", + "SimpleIconsFossa", + "SimpleIconsFossilscm", + "SimpleIconsFoursquare", + "SimpleIconsFoursquarecityguide", + "SimpleIconsFox", + "SimpleIconsFoxtel", + "SimpleIconsFozzy", + "SimpleIconsFramer", + "SimpleIconsFramework7", + "SimpleIconsFranprix", + "SimpleIconsFraunhofergesellschaft", + "SimpleIconsFreebsd", + "SimpleIconsFreecodecamp", + "SimpleIconsFreedesktopdotorg", + "SimpleIconsFreelancer", + "SimpleIconsFreenas", + "SimpleIconsFrontendmentor", + "SimpleIconsFsecure", + "SimpleIconsFugacloud", + "SimpleIconsFujifilm", + "SimpleIconsFujitsu", + "SimpleIconsFunimation", + "SimpleIconsFuraffinity", + "SimpleIconsFurrynetwork", + "SimpleIconsFuturelearn", + "SimpleIconsG2", + "SimpleIconsG2A", + "SimpleIconsGameandwatch", + "SimpleIconsGamedeveloper", + "SimpleIconsGamejolt", + "SimpleIconsGarmin", + "SimpleIconsGatling", + "SimpleIconsGatsby", + "SimpleIconsGeant", + "SimpleIconsGeeksforgeeks", + "SimpleIconsGeneralelectric", + "SimpleIconsGeneralmotors", + "SimpleIconsGenius", + "SimpleIconsGentoo", + "SimpleIconsGeocaching", + "SimpleIconsGerrit", + "SimpleIconsGhost", + "SimpleIconsGhostery", + "SimpleIconsGimp", + "SimpleIconsGiphy", + "SimpleIconsGit", + "SimpleIconsGitbook", + "SimpleIconsGitea", + "SimpleIconsGitee", + "SimpleIconsGitextensions", + "SimpleIconsGithub", + "SimpleIconsGithubactions", + "SimpleIconsGithubpages", + "SimpleIconsGithubsponsors", + "SimpleIconsGitignoredotio", + "SimpleIconsGitkraken", + "SimpleIconsGitlab", + "SimpleIconsGitlfs", + "SimpleIconsGitpod", + "SimpleIconsGitter", + "SimpleIconsGlassdoor", + "SimpleIconsGlitch", + "SimpleIconsGlobus", + "SimpleIconsGmail", + "SimpleIconsGnome", + "SimpleIconsGnometerminal", + "SimpleIconsGnu", + "SimpleIconsGnubash", + "SimpleIconsGnuemacs", + "SimpleIconsGnuicecat", + "SimpleIconsGnuprivacyguard", + "SimpleIconsGnusocial", + "SimpleIconsGo", + "SimpleIconsGocd", + "SimpleIconsGodaddy", + "SimpleIconsGodotengine", + "SimpleIconsGofundme", + "SimpleIconsGogdotcom", + "SimpleIconsGoland", + "SimpleIconsGoldenline", + "SimpleIconsGoodreads", + "SimpleIconsGoogle", + "SimpleIconsGoogleadmob", + "SimpleIconsGoogleads", + "SimpleIconsGoogleadsense", + "SimpleIconsGoogleanalytics", + "SimpleIconsGoogleassistant", + "SimpleIconsGooglecalendar", + "SimpleIconsGooglecardboard", + "SimpleIconsGooglechat", + "SimpleIconsGooglechrome", + "SimpleIconsGoogleclassroom", + "SimpleIconsGooglecloud", + "SimpleIconsGooglecolab", + "SimpleIconsGoogledomains", + "SimpleIconsGoogledrive", + "SimpleIconsGoogleearth", + "SimpleIconsGooglefit", + "SimpleIconsGooglefonts", + "SimpleIconsGooglehangouts", + "SimpleIconsGooglehome", + "SimpleIconsGooglekeep", + "SimpleIconsGooglelens", + "SimpleIconsGooglemaps", + "SimpleIconsGooglemarketingplatform", + "SimpleIconsGooglemeet", + "SimpleIconsGooglemessages", + "SimpleIconsGooglemybusiness", + "SimpleIconsGooglenearby", + "SimpleIconsGooglenews", + "SimpleIconsGoogleoptimize", + "SimpleIconsGooglepay", + "SimpleIconsGooglephotos", + "SimpleIconsGoogleplay", + "SimpleIconsGooglepodcasts", + "SimpleIconsGooglescholar", + "SimpleIconsGooglesearchconsole", + "SimpleIconsGooglesheets", + "SimpleIconsGooglestreetview", + "SimpleIconsGoogletagmanager", + "SimpleIconsGoogletranslate", + "SimpleIconsGotomeeting", + "SimpleIconsGrab", + "SimpleIconsGradle", + "SimpleIconsGrafana", + "SimpleIconsGrammarly", + "SimpleIconsGrandfrais", + "SimpleIconsGraphql", + "SimpleIconsGrav", + "SimpleIconsGravatar", + "SimpleIconsGraylog", + "SimpleIconsGreenhouse", + "SimpleIconsGreensock", + "SimpleIconsGriddotai", + "SimpleIconsGridsome", + "SimpleIconsGroupme", + "SimpleIconsGroupon", + "SimpleIconsGrubhub", + "SimpleIconsGrunt", + "SimpleIconsGsk", + "SimpleIconsGtk", + "SimpleIconsGuangzhoumetro", + "SimpleIconsGuilded", + "SimpleIconsGulp", + "SimpleIconsGumroad", + "SimpleIconsGumtree", + "SimpleIconsGunicorn", + "SimpleIconsGurobi", + "SimpleIconsGutenberg", + "SimpleIconsHabr", + "SimpleIconsHackaday", + "SimpleIconsHackclub", + "SimpleIconsHackerearth", + "SimpleIconsHackernoon", + "SimpleIconsHackerone", + "SimpleIconsHackerrank", + "SimpleIconsHackster", + "SimpleIconsHackthebox", + "SimpleIconsHandlebarsdotjs", + "SimpleIconsHandshake", + "SimpleIconsHandshakeProtocol", + "SimpleIconsHappycow", + "SimpleIconsHarbor", + "SimpleIconsHarmonyos", + "SimpleIconsHashnode", + "SimpleIconsHaskell", + "SimpleIconsHasura", + "SimpleIconsHatenabookmark", + "SimpleIconsHaveibeenpwned", + "SimpleIconsHaxe", + "SimpleIconsHbo", + "SimpleIconsHcl", + "SimpleIconsHeadlessui", + "SimpleIconsHeadspace", + "SimpleIconsHedera", + "SimpleIconsHellofresh", + "SimpleIconsHellyhansen", + "SimpleIconsHelm", + "SimpleIconsHelpdesk", + "SimpleIconsHelpscout", + "SimpleIconsHere", + "SimpleIconsHeroku", + "SimpleIconsHetzner", + "SimpleIconsHexo", + "SimpleIconsHey", + "SimpleIconsHibernate", + "SimpleIconsHibob", + "SimpleIconsHilton", + "SimpleIconsHitachi", + "SimpleIconsHive", + "SimpleIconsHiveBlockchain", + "SimpleIconsHomeadvisor", + "SimpleIconsHomeassistant", + "SimpleIconsHomeassistantcommunitystore", + "SimpleIconsHomebrew", + "SimpleIconsHomebridge", + "SimpleIconsHomify", + "SimpleIconsHonda", + "SimpleIconsHoney", + "SimpleIconsHootsuite", + "SimpleIconsHoppscotch", + "SimpleIconsHotelsdotcom", + "SimpleIconsHotjar", + "SimpleIconsHoudini", + "SimpleIconsHouzz", + "SimpleIconsHp", + "SimpleIconsHtml5", + "SimpleIconsHtmlacademy", + "SimpleIconsHttpie", + "SimpleIconsHuawei", + "SimpleIconsHubspot", + "SimpleIconsHugo", + "SimpleIconsHulu", + "SimpleIconsHumblebundle", + "SimpleIconsHungryjacks", + "SimpleIconsHurriyetemlak", + "SimpleIconsHusqvarna", + "SimpleIconsHyper", + "SimpleIconsHyperledger", + "SimpleIconsHypothesis", + "SimpleIconsHyundai", + "SimpleIconsI18Next", + "SimpleIconsIata", + "SimpleIconsIbeacon", + "SimpleIconsIbm", + "SimpleIconsIbmcloud", + "SimpleIconsIbmwatson", + "SimpleIconsIced", + "SimpleIconsIceland", + "SimpleIconsIcinga", + "SimpleIconsIcloud", + "SimpleIconsIcomoon", + "SimpleIconsIcon", + "SimpleIconsIconfinder", + "SimpleIconsIconify", + "SimpleIconsIconjar", + "SimpleIconsIcons8", + "SimpleIconsIcq", + "SimpleIconsIeee", + "SimpleIconsIfixit", + "SimpleIconsIfood", + "SimpleIconsIfttt", + "SimpleIconsIheartradio", + "SimpleIconsIkea", + "SimpleIconsIledefrancemobilites", + "SimpleIconsImagej", + "SimpleIconsImdb", + "SimpleIconsImgur", + "SimpleIconsImmer", + "SimpleIconsImou", + "SimpleIconsIndeed", + "SimpleIconsInfiniti", + "SimpleIconsInfluxdb", + "SimpleIconsInformatica", + "SimpleIconsInfosys", + "SimpleIconsInfracost", + "SimpleIconsIngress", + "SimpleIconsInkdrop", + "SimpleIconsInkscape", + "SimpleIconsInsomnia", + "SimpleIconsInstacart", + "SimpleIconsInstagram", + "SimpleIconsInstapaper", + "SimpleIconsInstatus", + "SimpleIconsInstructables", + "SimpleIconsInstructure", + "SimpleIconsIntegromat", + "SimpleIconsIntel", + "SimpleIconsIntellijidea", + "SimpleIconsInteractiondesignfoundation", + "SimpleIconsInteractjs", + "SimpleIconsIntercom", + "SimpleIconsIntermarche", + "SimpleIconsInternetarchive", + "SimpleIconsInternetexplorer", + "SimpleIconsIntigriti", + "SimpleIconsInvision", + "SimpleIconsInvoiceninja", + "SimpleIconsIobroker", + "SimpleIconsIonic", + "SimpleIconsIonos", + "SimpleIconsIos", + "SimpleIconsIota", + "SimpleIconsIpfs", + "SimpleIconsIssuu", + "SimpleIconsIstio", + "SimpleIconsItchdotio", + "SimpleIconsIterm2", + "SimpleIconsItunes", + "SimpleIconsItvx", + "SimpleIconsIveco", + "SimpleIconsJabber", + "SimpleIconsJaguar", + "SimpleIconsJamboard", + "SimpleIconsJameson", + "SimpleIconsJamstack", + "SimpleIconsJasmine", + "SimpleIconsJavascript", + "SimpleIconsJbl", + "SimpleIconsJcb", + "SimpleIconsJeep", + "SimpleIconsJekyll", + "SimpleIconsJellyfin", + "SimpleIconsJenkins", + "SimpleIconsJenkinsx", + "SimpleIconsJest", + "SimpleIconsJet", + "SimpleIconsJetbrains", + "SimpleIconsJetpackcompose", + "SimpleIconsJfrog", + "SimpleIconsJfrogbintray", + "SimpleIconsJinja", + "SimpleIconsJira", + "SimpleIconsJirasoftware", + "SimpleIconsJitsi", + "SimpleIconsJohndeere", + "SimpleIconsJoomla", + "SimpleIconsJoplin", + "SimpleIconsJordan", + "SimpleIconsJpeg", + "SimpleIconsJquery", + "SimpleIconsJrgroup", + "SimpleIconsJsdelivr", + "SimpleIconsJsfiddle", + "SimpleIconsJson", + "SimpleIconsJsonwebtokens", + "SimpleIconsJss", + "SimpleIconsJuke", + "SimpleIconsJulia", + "SimpleIconsJunipernetworks", + "SimpleIconsJunit5", + "SimpleIconsJupyter", + "SimpleIconsJusteat", + "SimpleIconsJustgiving", + "SimpleIconsK3S", + "SimpleIconsK6", + "SimpleIconsKaggle", + "SimpleIconsKahoot", + "SimpleIconsKaios", + "SimpleIconsKakao", + "SimpleIconsKakaotalk", + "SimpleIconsKalilinux", + "SimpleIconsKaniko", + "SimpleIconsKarlsruherverkehrsverbund", + "SimpleIconsKasasmart", + "SimpleIconsKashflow", + "SimpleIconsKaspersky", + "SimpleIconsKatacoda", + "SimpleIconsKatana", + "SimpleIconsKaufland", + "SimpleIconsKde", + "SimpleIconsKdenlive", + "SimpleIconsKeepachangelog", + "SimpleIconsKeepassxc", + "SimpleIconsKentico", + "SimpleIconsKeras", + "SimpleIconsKeybase", + "SimpleIconsKeycdn", + "SimpleIconsKeystone", + "SimpleIconsKfc", + "SimpleIconsKhanacademy", + "SimpleIconsKhronosgroup", + "SimpleIconsKia", + "SimpleIconsKibana", + "SimpleIconsKicad", + "SimpleIconsKickstarter", + "SimpleIconsKik", + "SimpleIconsKingstontechnology", + "SimpleIconsKinopoisk", + "SimpleIconsKirby", + "SimpleIconsKitsu", + "SimpleIconsKlarna", + "SimpleIconsKlm", + "SimpleIconsKlook", + "SimpleIconsKnative", + "SimpleIconsKnowledgebase", + "SimpleIconsKnown", + "SimpleIconsKoa", + "SimpleIconsKoc", + "SimpleIconsKodi", + "SimpleIconsKofax", + "SimpleIconsKofi", + "SimpleIconsKomoot", + "SimpleIconsKonami", + "SimpleIconsKong", + "SimpleIconsKongregate", + "SimpleIconsKonva", + "SimpleIconsKotlin", + "SimpleIconsKoyeb", + "SimpleIconsKrita", + "SimpleIconsKtm", + "SimpleIconsKuaishou", + "SimpleIconsKubernetes", + "SimpleIconsKubuntu", + "SimpleIconsKuma", + "SimpleIconsKuula", + "SimpleIconsKyocera", + "SimpleIconsLabview", + "SimpleIconsLada", + "SimpleIconsLamborghini", + "SimpleIconsLandrover", + "SimpleIconsLapce", + "SimpleIconsLaragon", + "SimpleIconsLaravel", + "SimpleIconsLaravelhorizon", + "SimpleIconsLaravelnova", + "SimpleIconsLastdotfm", + "SimpleIconsLastpass", + "SimpleIconsLatex", + "SimpleIconsLaunchpad", + "SimpleIconsLazarus", + "SimpleIconsLbry", + "SimpleIconsLeaderprice", + "SimpleIconsLeaflet", + "SimpleIconsLeanpub", + "SimpleIconsLeetcode", + "SimpleIconsLegacygames", + "SimpleIconsLemmy", + "SimpleIconsLenovo", + "SimpleIconsLens", + "SimpleIconsLerna", + "SimpleIconsLeroymerlin", + "SimpleIconsLess", + "SimpleIconsLetsencrypt", + "SimpleIconsLetterboxd", + "SimpleIconsLevelsdotfyi", + "SimpleIconsLg", + "SimpleIconsLgtm", + "SimpleIconsLiberapay", + "SimpleIconsLibrariesdotio", + "SimpleIconsLibrarything", + "SimpleIconsLibreoffice", + "SimpleIconsLibuv", + "SimpleIconsLichess", + "SimpleIconsLidl", + "SimpleIconsLifx", + "SimpleIconsLighthouse", + "SimpleIconsLine", + "SimpleIconsLineageos", + "SimpleIconsLinear", + "SimpleIconsLinkedin", + "SimpleIconsLinkerd", + "SimpleIconsLinkfire", + "SimpleIconsLinktree", + "SimpleIconsLinode", + "SimpleIconsLinux", + "SimpleIconsLinuxcontainers", + "SimpleIconsLinuxfoundation", + "SimpleIconsLinuxmint", + "SimpleIconsLionair", + "SimpleIconsLiquibase", + "SimpleIconsLit", + "SimpleIconsLitecoin", + "SimpleIconsLitiengine", + "SimpleIconsLivechat", + "SimpleIconsLivejournal", + "SimpleIconsLivewire", + "SimpleIconsLlvm", + "SimpleIconsLmms", + "SimpleIconsLodash", + "SimpleIconsLogitech", + "SimpleIconsLogmein", + "SimpleIconsLogstash", + "SimpleIconsLooker", + "SimpleIconsLoom", + "SimpleIconsLoop", + "SimpleIconsLoopback", + "SimpleIconsLospec", + "SimpleIconsLotpolishairlines", + "SimpleIconsLua", + "SimpleIconsLubuntu", + "SimpleIconsLudwig", + "SimpleIconsLufthansa", + "SimpleIconsLumen", + "SimpleIconsLunacy", + "SimpleIconsLydia", + "SimpleIconsLyft", + "SimpleIconsMaas", + "SimpleIconsMacos", + "SimpleIconsMacpaw", + "SimpleIconsMacys", + "SimpleIconsMagasinsu", + "SimpleIconsMagento", + "SimpleIconsMagisk", + "SimpleIconsMailchimp", + "SimpleIconsMaildotru", + "SimpleIconsMailgun", + "SimpleIconsMajorleaguehacking", + "SimpleIconsMakerbot", + "SimpleIconsMamp", + "SimpleIconsMan", + "SimpleIconsManageiq", + "SimpleIconsManjaro", + "SimpleIconsMapbox", + "SimpleIconsMariadb", + "SimpleIconsMariadbfoundation", + "SimpleIconsMarkdown", + "SimpleIconsMarketo", + "SimpleIconsMarko", + "SimpleIconsMarriott", + "SimpleIconsMaserati", + "SimpleIconsMastercard", + "SimpleIconsMastercomfig", + "SimpleIconsMastodon", + "SimpleIconsMaterialdesign", + "SimpleIconsMaterialdesignicons", + "SimpleIconsMatomo", + "SimpleIconsMatrix", + "SimpleIconsMatterdotjs", + "SimpleIconsMattermost", + "SimpleIconsMatternet", + "SimpleIconsMax", + "SimpleIconsMaxplanckgesellschaft", + "SimpleIconsMaytag", + "SimpleIconsMazda", + "SimpleIconsMcafee", + "SimpleIconsMcdonalds", + "SimpleIconsMclaren", + "SimpleIconsMdbook", + "SimpleIconsMdnwebdocs", + "SimpleIconsMdx", + "SimpleIconsMediafire", + "SimpleIconsMediamarkt", + "SimpleIconsMediatek", + "SimpleIconsMediatemple", + "SimpleIconsMedium", + "SimpleIconsMeetup", + "SimpleIconsMega", + "SimpleIconsMendeley", + "SimpleIconsMercadopago", + "SimpleIconsMercedes", + "SimpleIconsMerck", + "SimpleIconsMercurial", + "SimpleIconsMessenger", + "SimpleIconsMeta", + "SimpleIconsMetabase", + "SimpleIconsMetafilter", + "SimpleIconsMeteor", + "SimpleIconsMetro", + "SimpleIconsMetrodelaciudaddemexico", + "SimpleIconsMetrodemadrid", + "SimpleIconsMetrodeparis", + "SimpleIconsMewe", + "SimpleIconsMicrobit", + "SimpleIconsMicrodotblog", + "SimpleIconsMicrogenetics", + "SimpleIconsMicropython", + "SimpleIconsMicrosoft", + "SimpleIconsMicrosoftacademic", + "SimpleIconsMicrosoftaccess", + "SimpleIconsMicrosoftazure", + "SimpleIconsMicrosoftbing", + "SimpleIconsMicrosoftedge", + "SimpleIconsMicrosoftexcel", + "SimpleIconsMicrosoftexchange", + "SimpleIconsMicrosoftoffice", + "SimpleIconsMicrosoftonedrive", + "SimpleIconsMicrosoftonenote", + "SimpleIconsMicrosoftoutlook", + "SimpleIconsMicrosoftpowerpoint", + "SimpleIconsMicrosoftsharepoint", + "SimpleIconsMicrosoftsqlserver", + "SimpleIconsMicrosoftteams", + "SimpleIconsMicrosofttranslator", + "SimpleIconsMicrosoftvisio", + "SimpleIconsMicrosoftword", + "SimpleIconsMicrostrategy", + "SimpleIconsMidi", + "SimpleIconsMinds", + "SimpleIconsMinecraft", + "SimpleIconsMinetest", + "SimpleIconsMini", + "SimpleIconsMinutemailer", + "SimpleIconsMiro", + "SimpleIconsMitsubishi", + "SimpleIconsMix", + "SimpleIconsMixcloud", + "SimpleIconsMlb", + "SimpleIconsMlflow", + "SimpleIconsMobx", + "SimpleIconsMobxstatetree", + "SimpleIconsMocha", + "SimpleIconsModin", + "SimpleIconsModrinth", + "SimpleIconsModx", + "SimpleIconsMojangstudios", + "SimpleIconsMoleculer", + "SimpleIconsMomenteo", + "SimpleIconsMonero", + "SimpleIconsMoneygram", + "SimpleIconsMongodb", + "SimpleIconsMonica", + "SimpleIconsMonkeytie", + "SimpleIconsMonogames", + "SimpleIconsMonoprix", + "SimpleIconsMonster", + "SimpleIconsMonzo", + "SimpleIconsMoo", + "SimpleIconsMoonrepo", + "SimpleIconsMorrisons", + "SimpleIconsMoscowmetro", + "SimpleIconsMotorola", + "SimpleIconsMozilla", + "SimpleIconsMqtt", + "SimpleIconsMsi", + "SimpleIconsMsibusiness", + "SimpleIconsMta", + "SimpleIconsMtr", + "SimpleIconsMui", + "SimpleIconsMulesoft", + "SimpleIconsMuller", + "SimpleIconsMumble", + "SimpleIconsMusescore", + "SimpleIconsMusicbrainz", + "SimpleIconsMxlinux", + "SimpleIconsMyanimelist", + "SimpleIconsMyob", + "SimpleIconsMyspace", + "SimpleIconsMysql", + "SimpleIconsN26", + "SimpleIconsNamebase", + "SimpleIconsNamecheap", + "SimpleIconsNano", + "SimpleIconsNasa", + "SimpleIconsNationalgrid", + "SimpleIconsNativescript", + "SimpleIconsNaver", + "SimpleIconsNba", + "SimpleIconsNbb", + "SimpleIconsNdr", + "SimpleIconsNec", + "SimpleIconsNeo4J", + "SimpleIconsNeovim", + "SimpleIconsNestjs", + "SimpleIconsNetapp", + "SimpleIconsNetbsd", + "SimpleIconsNetflix", + "SimpleIconsNetlify", + "SimpleIconsNette", + "SimpleIconsNetto", + "SimpleIconsNeutralinojs", + "SimpleIconsNewbalance", + "SimpleIconsNewjapanprowrestling", + "SimpleIconsNewrelic", + "SimpleIconsNewyorktimes", + "SimpleIconsNextbilliondotai", + "SimpleIconsNextcloud", + "SimpleIconsNextdoor", + "SimpleIconsNextdotjs", + "SimpleIconsNfc", + "SimpleIconsNginx", + "SimpleIconsNgrok", + "SimpleIconsNiconico", + "SimpleIconsNike", + "SimpleIconsNim", + "SimpleIconsNintendo", + "SimpleIconsNintendo3Ds", + "SimpleIconsNintendogamecube", + "SimpleIconsNintendonetwork", + "SimpleIconsNintendoswitch", + "SimpleIconsNissan", + "SimpleIconsNixos", + "SimpleIconsNodedotjs", + "SimpleIconsNodemon", + "SimpleIconsNodered", + "SimpleIconsNokia", + "SimpleIconsNorco", + "SimpleIconsNordvpn", + "SimpleIconsNorwegian", + "SimpleIconsNotepadplusplus", + "SimpleIconsNotion", + "SimpleIconsNotist", + "SimpleIconsNounproject", + "SimpleIconsNovu", + "SimpleIconsNow", + "SimpleIconsNpm", + "SimpleIconsNrwl", + "SimpleIconsNubank", + "SimpleIconsNucleo", + "SimpleIconsNuget", + "SimpleIconsNuke", + "SimpleIconsNumba", + "SimpleIconsNumpy", + "SimpleIconsNunjucks", + "SimpleIconsNutanix", + "SimpleIconsNuxtdotjs", + "SimpleIconsNvidia", + "SimpleIconsNx", + "SimpleIconsNzxt", + "SimpleIconsObservable", + "SimpleIconsObsidian", + "SimpleIconsObsstudio", + "SimpleIconsOcaml", + "SimpleIconsOctanerender", + "SimpleIconsOctave", + "SimpleIconsOctoprint", + "SimpleIconsOctopusdeploy", + "SimpleIconsOculus", + "SimpleIconsOdnoklassniki", + "SimpleIconsOdysee", + "SimpleIconsOhdear", + "SimpleIconsOkcupid", + "SimpleIconsOkta", + "SimpleIconsOneplus", + "SimpleIconsOnlyfans", + "SimpleIconsOnlyoffice", + "SimpleIconsOnnx", + "SimpleIconsOnstar", + "SimpleIconsOpel", + "SimpleIconsOpenaccess", + "SimpleIconsOpenai", + "SimpleIconsOpenaigym", + "SimpleIconsOpenapiinitiative", + "SimpleIconsOpenbadges", + "SimpleIconsOpenbsd", + "SimpleIconsOpenbugbounty", + "SimpleIconsOpencollective", + "SimpleIconsOpencontainersinitiative", + "SimpleIconsOpencv", + "SimpleIconsOpenfaas", + "SimpleIconsOpengl", + "SimpleIconsOpenid", + "SimpleIconsOpenjdk", + "SimpleIconsOpenlayers", + "SimpleIconsOpenmined", + "SimpleIconsOpennebula", + "SimpleIconsOpenproject", + "SimpleIconsOpensea", + "SimpleIconsOpensearch", + "SimpleIconsOpensourceinitiative", + "SimpleIconsOpenssl", + "SimpleIconsOpenstack", + "SimpleIconsOpenstreetmap", + "SimpleIconsOpensuse", + "SimpleIconsOpentelemetry", + "SimpleIconsOpenverse", + "SimpleIconsOpenvpn", + "SimpleIconsOpenwrt", + "SimpleIconsOpenzeppelin", + "SimpleIconsOpenzfs", + "SimpleIconsOpera", + "SimpleIconsOpnsense", + "SimpleIconsOpsgenie", + "SimpleIconsOpslevel", + "SimpleIconsOracle", + "SimpleIconsOrcid", + "SimpleIconsOreilly", + "SimpleIconsOrg", + "SimpleIconsOrigin", + "SimpleIconsOsano", + "SimpleIconsOshkosh", + "SimpleIconsOsmc", + "SimpleIconsOsu", + "SimpleIconsOtto", + "SimpleIconsOvercast", + "SimpleIconsOverleaf", + "SimpleIconsOvh", + "SimpleIconsOwasp", + "SimpleIconsOxygen", + "SimpleIconsOyo", + "SimpleIconsP5Dotjs", + "SimpleIconsPackagist", + "SimpleIconsPacker", + "SimpleIconsPaddypower", + "SimpleIconsPagekit", + "SimpleIconsPagerduty", + "SimpleIconsPagespeedinsights", + "SimpleIconsPagseguro", + "SimpleIconsPalantir", + "SimpleIconsPaloaltosoftware", + "SimpleIconsPandas", + "SimpleIconsPandora", + "SimpleIconsPantheon", + "SimpleIconsPaperspace", + "SimpleIconsParitysubstrate", + "SimpleIconsParsedotly", + "SimpleIconsPassport", + "SimpleIconsPastebin", + "SimpleIconsPatreon", + "SimpleIconsPayoneer", + "SimpleIconsPaypal", + "SimpleIconsPaytm", + "SimpleIconsPcgamingwiki", + "SimpleIconsPeakdesign", + "SimpleIconsPeertube", + "SimpleIconsPegasusairlines", + "SimpleIconsPelican", + "SimpleIconsPeloton", + "SimpleIconsPenny", + "SimpleIconsPenpot", + "SimpleIconsPepsi", + "SimpleIconsPercy", + "SimpleIconsPerforce", + "SimpleIconsPerl", + "SimpleIconsPersistent", + "SimpleIconsPersonio", + "SimpleIconsPetsathome", + "SimpleIconsPeugeot", + "SimpleIconsPexels", + "SimpleIconsPfsense", + "SimpleIconsPhabricator", + "SimpleIconsPhilipshue", + "SimpleIconsPhonepe", + "SimpleIconsPhotobucket", + "SimpleIconsPhotocrowd", + "SimpleIconsPhotopea", + "SimpleIconsPhp", + "SimpleIconsPhpmyadmin", + "SimpleIconsPhpstorm", + "SimpleIconsPicardsurgeles", + "SimpleIconsPicartodottv", + "SimpleIconsPicnic", + "SimpleIconsPicpay", + "SimpleIconsPihole", + "SimpleIconsPimcore", + "SimpleIconsPinboard", + "SimpleIconsPingdom", + "SimpleIconsPinterest", + "SimpleIconsPioneerdj", + "SimpleIconsPivotaltracker", + "SimpleIconsPiwigo", + "SimpleIconsPix", + "SimpleIconsPixabay", + "SimpleIconsPixiv", + "SimpleIconsPkgsrc", + "SimpleIconsPlanet", + "SimpleIconsPlanetscale", + "SimpleIconsPlangrid", + "SimpleIconsPlatformdotsh", + "SimpleIconsPlatzi", + "SimpleIconsPlausibleanalytics", + "SimpleIconsPlaycanvas", + "SimpleIconsPlayerdotme", + "SimpleIconsPlayerfm", + "SimpleIconsPlaystation", + "SimpleIconsPlaystation2", + "SimpleIconsPlaystation3", + "SimpleIconsPlaystation4", + "SimpleIconsPlaystation5", + "SimpleIconsPlaystationvita", + "SimpleIconsPlaywright", + "SimpleIconsPleroma", + "SimpleIconsPlesk", + "SimpleIconsPlex", + "SimpleIconsPlotly", + "SimpleIconsPluralsight", + "SimpleIconsPlurk", + "SimpleIconsPluscodes", + "SimpleIconsPm2", + "SimpleIconsPnpm", + "SimpleIconsPocket", + "SimpleIconsPocketbase", + "SimpleIconsPocketcasts", + "SimpleIconsPodcastaddict", + "SimpleIconsPodman", + "SimpleIconsPoetry", + "SimpleIconsPointy", + "SimpleIconsPokemon", + "SimpleIconsPolars", + "SimpleIconsPolkadot", + "SimpleIconsPoly", + "SimpleIconsPolymerproject", + "SimpleIconsPolywork", + "SimpleIconsPopos", + "SimpleIconsPorsche", + "SimpleIconsPortainer", + "SimpleIconsPostcss", + "SimpleIconsPostgresql", + "SimpleIconsPostman", + "SimpleIconsPostmates", + "SimpleIconsPowerapps", + "SimpleIconsPowerautomate", + "SimpleIconsPowerbi", + "SimpleIconsPowerfx", + "SimpleIconsPowerpages", + "SimpleIconsPowers", + "SimpleIconsPowershell", + "SimpleIconsPowervirtualagents", + "SimpleIconsPrdotco", + "SimpleIconsPreact", + "SimpleIconsPrecommit", + "SimpleIconsPremierleague", + "SimpleIconsPrestashop", + "SimpleIconsPresto", + "SimpleIconsPrettier", + "SimpleIconsPrevention", + "SimpleIconsPrezi", + "SimpleIconsPrime", + "SimpleIconsPrimevideo", + "SimpleIconsPrisma", + "SimpleIconsPrismic", + "SimpleIconsPrivateinternetaccess", + "SimpleIconsProbot", + "SimpleIconsProcessingfoundation", + "SimpleIconsProcesswire", + "SimpleIconsProducthunt", + "SimpleIconsProgate", + "SimpleIconsProgress", + "SimpleIconsPrometheus", + "SimpleIconsProsieben", + "SimpleIconsProtocolsdotio", + "SimpleIconsProtodotio", + "SimpleIconsProtondb", + "SimpleIconsProtonmail", + "SimpleIconsProtonvpn", + "SimpleIconsProtools", + "SimpleIconsProtractor", + "SimpleIconsProxmox", + "SimpleIconsPubg", + "SimpleIconsPublons", + "SimpleIconsPubmed", + "SimpleIconsPug", + "SimpleIconsPulumi", + "SimpleIconsPuma", + "SimpleIconsPuppet", + "SimpleIconsPuppeteer", + "SimpleIconsPurescript", + "SimpleIconsPurgecss", + "SimpleIconsPurism", + "SimpleIconsPusher", + "SimpleIconsPwa", + "SimpleIconsPycharm", + "SimpleIconsPyg", + "SimpleIconsPypi", + "SimpleIconsPypy", + "SimpleIconsPyscaffold", + "SimpleIconsPysyft", + "SimpleIconsPytest", + "SimpleIconsPython", + "SimpleIconsPytorch", + "SimpleIconsPytorchlightning", + "SimpleIconsPyup", + "SimpleIconsQantas", + "SimpleIconsQatarairways", + "SimpleIconsQemu", + "SimpleIconsQgis", + "SimpleIconsQi", + "SimpleIconsQiita", + "SimpleIconsQiskit", + "SimpleIconsQiwi", + "SimpleIconsQmk", + "SimpleIconsQt", + "SimpleIconsQualcomm", + "SimpleIconsQualtrics", + "SimpleIconsQualys", + "SimpleIconsQuantcast", + "SimpleIconsQuantconnect", + "SimpleIconsQuarkus", + "SimpleIconsQuasar", + "SimpleIconsQubesos", + "SimpleIconsQuest", + "SimpleIconsQuickbooks", + "SimpleIconsQuicklook", + "SimpleIconsQuicktime", + "SimpleIconsQuip", + "SimpleIconsQuora", + "SimpleIconsQwiklabs", + "SimpleIconsQzone", + "SimpleIconsR", + "SimpleIconsR3", + "SimpleIconsRabbitmq", + "SimpleIconsRacket", + "SimpleIconsRadar", + "SimpleIconsRadiopublic", + "SimpleIconsRailway", + "SimpleIconsRainmeter", + "SimpleIconsRakuten", + "SimpleIconsRam", + "SimpleIconsRancher", + "SimpleIconsRarible", + "SimpleIconsRasa", + "SimpleIconsRaspberrypi", + "SimpleIconsRavelry", + "SimpleIconsRay", + "SimpleIconsRazer", + "SimpleIconsRazorpay", + "SimpleIconsReact", + "SimpleIconsReacthookform", + "SimpleIconsReactivex", + "SimpleIconsReactos", + "SimpleIconsReactquery", + "SimpleIconsReactrouter", + "SimpleIconsReacttable", + "SimpleIconsReadme", + "SimpleIconsReadthedocs", + "SimpleIconsRealm", + "SimpleIconsReason", + "SimpleIconsReasonstudios", + "SimpleIconsRed", + "SimpleIconsRedbubble", + "SimpleIconsReddit", + "SimpleIconsRedhat", + "SimpleIconsRedhatopenshift", + "SimpleIconsRedis", + "SimpleIconsRedmine", + "SimpleIconsRedox", + "SimpleIconsRedux", + "SimpleIconsReduxsaga", + "SimpleIconsRedwoodjs", + "SimpleIconsReebok", + "SimpleIconsRelay", + "SimpleIconsRelianceindustrieslimited", + "SimpleIconsRemix", + "SimpleIconsRenault", + "SimpleIconsRender", + "SimpleIconsRenovatebot", + "SimpleIconsRenpy", + "SimpleIconsRenren", + "SimpleIconsReplit", + "SimpleIconsRepublicofgamers", + "SimpleIconsRescript", + "SimpleIconsRescuetime", + "SimpleIconsResearchgate", + "SimpleIconsResharper", + "SimpleIconsResurrectionremixos", + "SimpleIconsRetroarch", + "SimpleIconsRetropie", + "SimpleIconsRevealdotjs", + "SimpleIconsReverbnation", + "SimpleIconsRevoltdotchat", + "SimpleIconsRevolut", + "SimpleIconsRevue", + "SimpleIconsRewe", + "SimpleIconsRezgo", + "SimpleIconsRhinoceros", + "SimpleIconsRider", + "SimpleIconsRimacautomobili", + "SimpleIconsRing", + "SimpleIconsRiotgames", + "SimpleIconsRipple", + "SimpleIconsRiseup", + "SimpleIconsRoamresearch", + "SimpleIconsRoblox", + "SimpleIconsRobotframework", + "SimpleIconsRocketdotchat", + "SimpleIconsRocksdb", + "SimpleIconsRockylinux", + "SimpleIconsRoku", + "SimpleIconsRollsroyce", + "SimpleIconsRollupdotjs", + "SimpleIconsRome", + "SimpleIconsRoots", + "SimpleIconsRootsbedrock", + "SimpleIconsRootssage", + "SimpleIconsRos", + "SimpleIconsRossmann", + "SimpleIconsRotaryinternational", + "SimpleIconsRottentomatoes", + "SimpleIconsRoundcube", + "SimpleIconsRsocket", + "SimpleIconsRss", + "SimpleIconsRstudio", + "SimpleIconsRte", + "SimpleIconsRtl", + "SimpleIconsRtlzwei", + "SimpleIconsRubocop", + "SimpleIconsRuby", + "SimpleIconsRubygems", + "SimpleIconsRubyonrails", + "SimpleIconsRubysinatra", + "SimpleIconsRunkeeper", + "SimpleIconsRunkit", + "SimpleIconsRust", + "SimpleIconsRxdb", + "SimpleIconsRyanair", + "SimpleIconsS7Airlines", + "SimpleIconsSabanci", + "SimpleIconsSafari", + "SimpleIconsSahibinden", + "SimpleIconsSailfishos", + "SimpleIconsSalesforce", + "SimpleIconsSaltproject", + "SimpleIconsSamsung", + "SimpleIconsSamsungpay", + "SimpleIconsSandisk", + "SimpleIconsSanfranciscomunicipalrailway", + "SimpleIconsSaopaulometro", + "SimpleIconsSap", + "SimpleIconsSass", + "SimpleIconsSat1", + "SimpleIconsSaturn", + "SimpleIconsSaucelabs", + "SimpleIconsScala", + "SimpleIconsScaleway", + "SimpleIconsScania", + "SimpleIconsSchneiderelectric", + "SimpleIconsScikitlearn", + "SimpleIconsScipy", + "SimpleIconsScopus", + "SimpleIconsScpfoundation", + "SimpleIconsScratch", + "SimpleIconsScreencastify", + "SimpleIconsScribd", + "SimpleIconsScrimba", + "SimpleIconsScrollreveal", + "SimpleIconsScrumalliance", + "SimpleIconsScrutinizerci", + "SimpleIconsSeagate", + "SimpleIconsSeat", + "SimpleIconsSecurityscorecard", + "SimpleIconsSefaria", + "SimpleIconsSega", + "SimpleIconsSelenium", + "SimpleIconsSellfy", + "SimpleIconsSemanticrelease", + "SimpleIconsSemanticscholar", + "SimpleIconsSemanticuireact", + "SimpleIconsSemanticweb", + "SimpleIconsSemaphoreci", + "SimpleIconsSemver", + "SimpleIconsSencha", + "SimpleIconsSendinblue", + "SimpleIconsSennheiser", + "SimpleIconsSensu", + "SimpleIconsSentry", + "SimpleIconsSepa", + "SimpleIconsSequelize", + "SimpleIconsServerfault", + "SimpleIconsServerless", + "SimpleIconsSessionize", + "SimpleIconsSetapp", + "SimpleIconsSfml", + "SimpleIconsShadow", + "SimpleIconsShanghaimetro", + "SimpleIconsSharp", + "SimpleIconsShazam", + "SimpleIconsShell", + "SimpleIconsShelly", + "SimpleIconsShenzhenmetro", + "SimpleIconsShieldsdotio", + "SimpleIconsShikimori", + "SimpleIconsShopee", + "SimpleIconsShopify", + "SimpleIconsShopware", + "SimpleIconsShotcut", + "SimpleIconsShowpad", + "SimpleIconsShowtime", + "SimpleIconsShutterstock", + "SimpleIconsSiemens", + "SimpleIconsSignal", + "SimpleIconsSimilarweb", + "SimpleIconsSimkl", + "SimpleIconsSimpleanalytics", + "SimpleIconsSimpleicons", + "SimpleIconsSimplenote", + "SimpleIconsSinaweibo", + "SimpleIconsSinglestore", + "SimpleIconsSitepoint", + "SimpleIconsSketch", + "SimpleIconsSketchfab", + "SimpleIconsSketchup", + "SimpleIconsSkillshare", + "SimpleIconsSkoda", + "SimpleIconsSky", + "SimpleIconsSkynet", + "SimpleIconsSkypack", + "SimpleIconsSkype", + "SimpleIconsSkypeforbusiness", + "SimpleIconsSlack", + "SimpleIconsSlackware", + "SimpleIconsSlashdot", + "SimpleIconsSlickpic", + "SimpleIconsSlides", + "SimpleIconsSlideshare", + "SimpleIconsSmart", + "SimpleIconsSmartthings", + "SimpleIconsSmashdotgg", + "SimpleIconsSmashingmagazine", + "SimpleIconsSmrt", + "SimpleIconsSmugmug", + "SimpleIconsSnapchat", + "SimpleIconsSnapcraft", + "SimpleIconsSncf", + "SimpleIconsSnowflake", + "SimpleIconsSnowpack", + "SimpleIconsSnyk", + "SimpleIconsSocialblade", + "SimpleIconsSociety6", + "SimpleIconsSocketdotio", + "SimpleIconsSogou", + "SimpleIconsSolid", + "SimpleIconsSolidity", + "SimpleIconsSololearn", + "SimpleIconsSolus", + "SimpleIconsSonar", + "SimpleIconsSonarcloud", + "SimpleIconsSonarlint", + "SimpleIconsSonarqube", + "SimpleIconsSonarsource", + "SimpleIconsSongkick", + "SimpleIconsSongoda", + "SimpleIconsSonicwall", + "SimpleIconsSonos", + "SimpleIconsSony", + "SimpleIconsSoundcharts", + "SimpleIconsSoundcloud", + "SimpleIconsSourceengine", + "SimpleIconsSourceforge", + "SimpleIconsSourcegraph", + "SimpleIconsSourcetree", + "SimpleIconsSouthwestairlines", + "SimpleIconsSpacemacs", + "SimpleIconsSpacex", + "SimpleIconsSpacy", + "SimpleIconsSparkar", + "SimpleIconsSparkasse", + "SimpleIconsSparkfun", + "SimpleIconsSparkpost", + "SimpleIconsSpdx", + "SimpleIconsSpeakerdeck", + "SimpleIconsSpectrum", + "SimpleIconsSpeedtest", + "SimpleIconsSpinnaker", + "SimpleIconsSpinrilla", + "SimpleIconsSplunk", + "SimpleIconsSpond", + "SimpleIconsSpotify", + "SimpleIconsSpotlight", + "SimpleIconsSpreadshirt", + "SimpleIconsSpreaker", + "SimpleIconsSpring", + "SimpleIconsSpringCreators", + "SimpleIconsSpringboot", + "SimpleIconsSpringsecurity", + "SimpleIconsSpyderide", + "SimpleIconsSqlite", + "SimpleIconsSquare", + "SimpleIconsSquareenix", + "SimpleIconsSquarespace", + "SimpleIconsSsrn", + "SimpleIconsStackbit", + "SimpleIconsStackblitz", + "SimpleIconsStackedit", + "SimpleIconsStackexchange", + "SimpleIconsStackoverflow", + "SimpleIconsStackpath", + "SimpleIconsStackshare", + "SimpleIconsStadia", + "SimpleIconsStaffbase", + "SimpleIconsStandardjs", + "SimpleIconsStarbucks", + "SimpleIconsStardock", + "SimpleIconsStarlingbank", + "SimpleIconsStarship", + "SimpleIconsStartrek", + "SimpleIconsStarz", + "SimpleIconsStatamic", + "SimpleIconsStatuspage", + "SimpleIconsStatuspal", + "SimpleIconsSteam", + "SimpleIconsSteamdb", + "SimpleIconsSteamdeck", + "SimpleIconsSteamworks", + "SimpleIconsSteelseries", + "SimpleIconsSteem", + "SimpleIconsSteemit", + "SimpleIconsSteinberg", + "SimpleIconsStellar", + "SimpleIconsStencyl", + "SimpleIconsStimulus", + "SimpleIconsStitcher", + "SimpleIconsStmicroelectronics", + "SimpleIconsStopstalk", + "SimpleIconsStoryblok", + "SimpleIconsStorybook", + "SimpleIconsStrapi", + "SimpleIconsStrava", + "SimpleIconsStreamlit", + "SimpleIconsStripe", + "SimpleIconsStrongswan", + "SimpleIconsStubhub", + "SimpleIconsStyledcomponents", + "SimpleIconsStylelint", + "SimpleIconsStyleshare", + "SimpleIconsStylus", + "SimpleIconsSubaru", + "SimpleIconsSublimetext", + "SimpleIconsSubstack", + "SimpleIconsSubversion", + "SimpleIconsSuckless", + "SimpleIconsSumologic", + "SimpleIconsSupabase", + "SimpleIconsSupermicro", + "SimpleIconsSuperuser", + "SimpleIconsSurrealdb", + "SimpleIconsSurveymonkey", + "SimpleIconsSuse", + "SimpleIconsSuzuki", + "SimpleIconsSvelte", + "SimpleIconsSvg", + "SimpleIconsSvgo", + "SimpleIconsSwagger", + "SimpleIconsSwarm", + "SimpleIconsSwc", + "SimpleIconsSwift", + "SimpleIconsSwiggy", + "SimpleIconsSwiper", + "SimpleIconsSymantec", + "SimpleIconsSymfony", + "SimpleIconsSymphony", + "SimpleIconsSympy", + "SimpleIconsSynology", + "SimpleIconsSystem76", + "SimpleIconsTableau", + "SimpleIconsTablecheck", + "SimpleIconsTacobell", + "SimpleIconsTado", + "SimpleIconsTaichigraphics", + "SimpleIconsTaichilang", + "SimpleIconsTails", + "SimpleIconsTailwindcss", + "SimpleIconsTalend", + "SimpleIconsTalenthouse", + "SimpleIconsTamiya", + "SimpleIconsTampermonkey", + "SimpleIconsTaobao", + "SimpleIconsTapas", + "SimpleIconsTarget", + "SimpleIconsTask", + "SimpleIconsTasmota", + "SimpleIconsTata", + "SimpleIconsTauri", + "SimpleIconsTaxbuzz", + "SimpleIconsTeamcity", + "SimpleIconsTeamspeak", + "SimpleIconsTeamviewer", + "SimpleIconsTed", + "SimpleIconsTeespring", + "SimpleIconsTekton", + "SimpleIconsTele5", + "SimpleIconsTelegram", + "SimpleIconsTelegraph", + "SimpleIconsTemporal", + "SimpleIconsTencentqq", + "SimpleIconsTensorflow", + "SimpleIconsTeradata", + "SimpleIconsTeratail", + "SimpleIconsTerraform", + "SimpleIconsTesco", + "SimpleIconsTesla", + "SimpleIconsTestcafe", + "SimpleIconsTestin", + "SimpleIconsTestinglibrary", + "SimpleIconsTether", + "SimpleIconsTextpattern", + "SimpleIconsTga", + "SimpleIconsThealgorithms", + "SimpleIconsTheconversation", + "SimpleIconsTheirishtimes", + "SimpleIconsThemighty", + "SimpleIconsThemodelsresource", + "SimpleIconsThemoviedatabase", + "SimpleIconsThenorthface", + "SimpleIconsTheregister", + "SimpleIconsThesoundsresource", + "SimpleIconsThespritersresource", + "SimpleIconsThewashingtonpost", + "SimpleIconsThingiverse", + "SimpleIconsThinkpad", + "SimpleIconsThreadless", + "SimpleIconsThreedotjs", + "SimpleIconsThreema", + "SimpleIconsThumbtack", + "SimpleIconsThunderbird", + "SimpleIconsThymeleaf", + "SimpleIconsTicketmaster", + "SimpleIconsTidal", + "SimpleIconsTide", + "SimpleIconsTidyverse", + "SimpleIconsTietoevry", + "SimpleIconsTiktok", + "SimpleIconsTile", + "SimpleIconsTimescale", + "SimpleIconsTinder", + "SimpleIconsTinyletter", + "SimpleIconsTistory", + "SimpleIconsTmobile", + "SimpleIconsTmux", + "SimpleIconsTnt", + "SimpleIconsTodoist", + "SimpleIconsToggl", + "SimpleIconsTokyometro", + "SimpleIconsToml", + "SimpleIconsTomorrowland", + "SimpleIconsTopcoder", + "SimpleIconsToptal", + "SimpleIconsTorbrowser", + "SimpleIconsTorproject", + "SimpleIconsToshiba", + "SimpleIconsToyota", + "SimpleIconsTplink", + "SimpleIconsTqdm", + "SimpleIconsTraefikmesh", + "SimpleIconsTraefikproxy", + "SimpleIconsTrainerroad", + "SimpleIconsTrakt", + "SimpleIconsTransportforireland", + "SimpleIconsTransportforlondon", + "SimpleIconsTravisci", + "SimpleIconsTreehouse", + "SimpleIconsTrello", + "SimpleIconsTrendmicro", + "SimpleIconsTreyarch", + "SimpleIconsTriller", + "SimpleIconsTrino", + "SimpleIconsTripadvisor", + "SimpleIconsTripdotcom", + "SimpleIconsTrove", + "SimpleIconsTrpc", + "SimpleIconsTruenas", + "SimpleIconsTrulia", + "SimpleIconsTrustedshops", + "SimpleIconsTrustpilot", + "SimpleIconsTryhackme", + "SimpleIconsTryitonline", + "SimpleIconsTsnode", + "SimpleIconsTubi", + "SimpleIconsTui", + "SimpleIconsTumblr", + "SimpleIconsTunein", + "SimpleIconsTurborepo", + "SimpleIconsTurbosquid", + "SimpleIconsTurkishairlines", + "SimpleIconsTutanota", + "SimpleIconsTvtime", + "SimpleIconsTwilio", + "SimpleIconsTwitch", + "SimpleIconsTwitter", + "SimpleIconsTwoo", + "SimpleIconsTypeform", + "SimpleIconsTypescript", + "SimpleIconsTypo3", + "SimpleIconsUber", + "SimpleIconsUbereats", + "SimpleIconsUbiquiti", + "SimpleIconsUbisoft", + "SimpleIconsUblockorigin", + "SimpleIconsUbuntu", + "SimpleIconsUdacity", + "SimpleIconsUdemy", + "SimpleIconsUfc", + "SimpleIconsUikit", + "SimpleIconsUlule", + "SimpleIconsUmbraco", + "SimpleIconsUnacademy", + "SimpleIconsUnderarmour", + "SimpleIconsUnderscoredotjs", + "SimpleIconsUndertale", + "SimpleIconsUnicode", + "SimpleIconsUnilever", + "SimpleIconsUnitedairlines", + "SimpleIconsUnity", + "SimpleIconsUnlicense", + "SimpleIconsUnocss", + "SimpleIconsUnraid", + "SimpleIconsUnrealengine", + "SimpleIconsUnsplash", + "SimpleIconsUntangle", + "SimpleIconsUntappd", + "SimpleIconsUpcloud", + "SimpleIconsUplabs", + "SimpleIconsUploaded", + "SimpleIconsUps", + "SimpleIconsUpstash", + "SimpleIconsUptimekuma", + "SimpleIconsUptobox", + "SimpleIconsUpwork", + "SimpleIconsUsps", + "SimpleIconsV", + "SimpleIconsV2Ex", + "SimpleIconsV8", + "SimpleIconsVaadin", + "SimpleIconsVagrant", + "SimpleIconsVala", + "SimpleIconsValorant", + "SimpleIconsValve", + "SimpleIconsVapor", + "SimpleIconsVault", + "SimpleIconsVauxhall", + "SimpleIconsVbulletin", + "SimpleIconsVectorlogozone", + "SimpleIconsVectorworks", + "SimpleIconsVeeam", + "SimpleIconsVeepee", + "SimpleIconsVelog", + "SimpleIconsVenmo", + "SimpleIconsVercel", + "SimpleIconsVerdaccio", + "SimpleIconsVeritas", + "SimpleIconsVerizon", + "SimpleIconsVexxhost", + "SimpleIconsVfairs", + "SimpleIconsViadeo", + "SimpleIconsViber", + "SimpleIconsVim", + "SimpleIconsVimeo", + "SimpleIconsVimeolivestream", + "SimpleIconsVirgin", + "SimpleIconsVirginmedia", + "SimpleIconsVirtualbox", + "SimpleIconsVirustotal", + "SimpleIconsVisa", + "SimpleIconsVisualstudio", + "SimpleIconsVisualstudiocode", + "SimpleIconsVite", + "SimpleIconsVitess", + "SimpleIconsVitest", + "SimpleIconsVivaldi", + "SimpleIconsVivino", + "SimpleIconsVk", + "SimpleIconsVlcmediaplayer", + "SimpleIconsVmware", + "SimpleIconsVodafone", + "SimpleIconsVolkswagen", + "SimpleIconsVolvo", + "SimpleIconsVonage", + "SimpleIconsVowpalwabbit", + "SimpleIconsVox", + "SimpleIconsVsco", + "SimpleIconsVscodium", + "SimpleIconsVtex", + "SimpleIconsVuedotjs", + "SimpleIconsVuetify", + "SimpleIconsVulkan", + "SimpleIconsVultr", + "SimpleIconsW3C", + "SimpleIconsWacom", + "SimpleIconsWagtail", + "SimpleIconsWails", + "SimpleIconsWakatime", + "SimpleIconsWalkman", + "SimpleIconsWallabag", + "SimpleIconsWalmart", + "SimpleIconsWantedly", + "SimpleIconsWappalyzer", + "SimpleIconsWarnerbros", + "SimpleIconsWarp", + "SimpleIconsWasmcloud", + "SimpleIconsWasmer", + "SimpleIconsWattpad", + "SimpleIconsWayland", + "SimpleIconsWaze", + "SimpleIconsWearos", + "SimpleIconsWeasyl", + "SimpleIconsWeb3Dotjs", + "SimpleIconsWebassembly", + "SimpleIconsWebauthn", + "SimpleIconsWebcomponentsdotorg", + "SimpleIconsWebdriverio", + "SimpleIconsWebflow", + "SimpleIconsWebgl", + "SimpleIconsWebhint", + "SimpleIconsWeblate", + "SimpleIconsWebmin", + "SimpleIconsWebmoney", + "SimpleIconsWebpack", + "SimpleIconsWebrtc", + "SimpleIconsWebstorm", + "SimpleIconsWebtoon", + "SimpleIconsWechat", + "SimpleIconsWegame", + "SimpleIconsWeightsandbiases", + "SimpleIconsWelcometothejungle", + "SimpleIconsWemo", + "SimpleIconsWesterndigital", + "SimpleIconsWetransfer", + "SimpleIconsWhatsapp", + "SimpleIconsWheniwork", + "SimpleIconsWhitesource", + "SimpleIconsWii", + "SimpleIconsWiiu", + "SimpleIconsWikidata", + "SimpleIconsWikidotjs", + "SimpleIconsWikimediacommons", + "SimpleIconsWikipedia", + "SimpleIconsWikiquote", + "SimpleIconsWikivoyage", + "SimpleIconsWinamp", + "SimpleIconsWindicss", + "SimpleIconsWindows", + "SimpleIconsWindows11", + "SimpleIconsWindows95", + "SimpleIconsWindowsterminal", + "SimpleIconsWindowsxp", + "SimpleIconsWinmate", + "SimpleIconsWipro", + "SimpleIconsWire", + "SimpleIconsWireguard", + "SimpleIconsWireshark", + "SimpleIconsWise", + "SimpleIconsWish", + "SimpleIconsWistia", + "SimpleIconsWix", + "SimpleIconsWizzair", + "SimpleIconsWolfram", + "SimpleIconsWolframlanguage", + "SimpleIconsWolframmathematica", + "SimpleIconsWoo", + "SimpleIconsWoocommerce", + "SimpleIconsWordpress", + "SimpleIconsWorkplace", + "SimpleIconsWorldhealthorganization", + "SimpleIconsWpengine", + "SimpleIconsWpexplorer", + "SimpleIconsWprocket", + "SimpleIconsWritedotas", + "SimpleIconsWwe", + "SimpleIconsWwise", + "SimpleIconsXamarin", + "SimpleIconsXaml", + "SimpleIconsXampp", + "SimpleIconsXbox", + "SimpleIconsXcode", + "SimpleIconsXdadevelopers", + "SimpleIconsXdotorg", + "SimpleIconsXero", + "SimpleIconsXfce", + "SimpleIconsXiaomi", + "SimpleIconsXilinx", + "SimpleIconsXing", + "SimpleIconsXmpp", + "SimpleIconsXo", + "SimpleIconsXrp", + "SimpleIconsXsplit", + "SimpleIconsXstate", + "SimpleIconsYahoo", + "SimpleIconsYale", + "SimpleIconsYamahacorporation", + "SimpleIconsYamahamotorcorporation", + "SimpleIconsYammer", + "SimpleIconsYarn", + "SimpleIconsYcombinator", + "SimpleIconsYelp", + "SimpleIconsYoast", + "SimpleIconsYolo", + "SimpleIconsYourtraveldottv", + "SimpleIconsYoutube", + "SimpleIconsYoutubegaming", + "SimpleIconsYoutubemusic", + "SimpleIconsYoutubestudio", + "SimpleIconsYoutubetv", + "SimpleIconsYubico", + "SimpleIconsZabka", + "SimpleIconsZalando", + "SimpleIconsZalo", + "SimpleIconsZapier", + "SimpleIconsZara", + "SimpleIconsZazzle", + "SimpleIconsZcash", + "SimpleIconsZdf", + "SimpleIconsZebratechnologies", + "SimpleIconsZelle", + "SimpleIconsZend", + "SimpleIconsZendesk", + "SimpleIconsZendframework", + "SimpleIconsZenn", + "SimpleIconsZenodo", + "SimpleIconsZerodha", + "SimpleIconsZeromq", + "SimpleIconsZerply", + "SimpleIconsZettlr", + "SimpleIconsZhihu", + "SimpleIconsZig", + "SimpleIconsZigbee", + "SimpleIconsZillow", + "SimpleIconsZincsearch", + "SimpleIconsZingat", + "SimpleIconsZoho", + "SimpleIconsZoiper", + "SimpleIconsZomato", + "SimpleIconsZoom", + "SimpleIconsZorin", + "SimpleIconsZotero", + "SimpleIconsZulip", + "SimpleIconsZwave", + "SimpleIconsZyte" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Finn Bear" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/finnbear/yew_icons/", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "yoke", + "version": "0.7.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "license": "Unicode-3.0", + "license_file": null, + "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yoke-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bincode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/tests/bincode.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "miri", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/tests/miri.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "stable_deref_trait/alloc", + "serde?/alloc", + "zerofrom/alloc" + ], + "default": [ + "alloc", + "zerofrom" + ], + "derive": [ + "dep:yoke-derive", + "zerofrom/derive" + ], + "serde": [ + "dep:serde" + ], + "zerofrom": [ + "dep:zerofrom" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/Cargo.toml", + "metadata": { + "cargo-all-features": { + "max_combination_size": 3 + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "memory-management", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow", + "self-referential" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71.1" + }, + { + "name": "yoke-derive", + "version": "0.7.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", + "license": "Unicode-3.0", + "license_file": null, + "description": "Custom derive for the yoke crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fold" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "yoke_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "yoke_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/examples/yoke_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/Cargo.toml", + "metadata": { + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "memory-management", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow", + "self-referential" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zerocopy", + "version": "0.7.35", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Utilities for zero-copy parsing and serialization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.35", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "assert_matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "elain", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.85", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.35", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerocopy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trybuild", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/tests/trybuild.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__internal_use_only_features_that_work_on_stable": [ + "alloc", + "derive", + "simd" + ], + "alloc": [], + "byteorder": [ + "dep:byteorder" + ], + "default": [ + "byteorder" + ], + "derive": [ + "zerocopy-derive" + ], + "simd": [], + "simd-nightly": [ + "simd" + ], + "zerocopy-derive": [ + "dep:zerocopy-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/Cargo.toml", + "metadata": { + "ci": { + "pinned-nightly": "nightly-2024-06-19", + "pinned-stable": "1.79.0" + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg", + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "__internal_use_only_features_that_work_on_stable" + ] + } + }, + "publish": null, + "authors": [ + "Joshua Liebow-Feeser " + ], + "categories": [ + "embedded", + "encoding", + "no-std::no-alloc", + "parsing", + "rust-patterns" + ], + "keywords": [ + "cast", + "convert", + "transmute", + "transmutation", + "type-punning" + ], + "readme": "README.md", + "repository": "https://github.com/google/zerocopy", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "zerocopy", + "version": "0.8.25", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "elain", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.89", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.25", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerocopy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trybuild", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/tests/trybuild.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "__internal_use_only_features_that_work_on_stable": [ + "alloc", + "derive", + "simd", + "std" + ], + "alloc": [], + "derive": [ + "zerocopy-derive" + ], + "float-nightly": [], + "simd": [], + "simd-nightly": [ + "simd" + ], + "std": [ + "alloc" + ], + "zerocopy-derive": [ + "dep:zerocopy-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/Cargo.toml", + "metadata": { + "build-rs": { + "zerocopy-aarch64-simd-1-59-0": "1.59.0", + "zerocopy-core-error-1-81-0": "1.81.0", + "zerocopy-diagnostic-on-unimplemented-1-78-0": "1.78.0", + "zerocopy-generic-bounds-in-const-fn-1-61-0": "1.61.0", + "zerocopy-panic-in-const-and-vec-try-reserve-1-57-0": "1.57.0", + "zerocopy-target-has-atomics-1-60-0": "1.60.0" + }, + "ci": { + "pinned-nightly": "nightly-2025-04-23", + "pinned-stable": "1.86.0" + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg", + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "__internal_use_only_features_that_work_on_stable" + ] + } + }, + "publish": null, + "authors": [ + "Joshua Liebow-Feeser ", + "Jack Wrenn " + ], + "categories": [ + "embedded", + "encoding", + "no-std::no-alloc", + "parsing", + "rust-patterns" + ], + "keywords": [ + "cast", + "convert", + "transmute", + "transmutation", + "type-punning" + ], + "readme": "README.md", + "repository": "https://github.com/google/zerocopy", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "zerocopy-derive", + "version": "0.7.35", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.35", + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Custom derive for traits from the zerocopy crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.85", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "zerocopy_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_as_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/enum_as_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_from_zeroes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/enum_from_zeroes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_known_layout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/enum_known_layout.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_unaligned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/enum_unaligned.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hygiene", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/hygiene.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "paths_and_modules", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/paths_and_modules.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "priv_in_pub", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/priv_in_pub.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_as_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_as_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_from_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_from_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_from_zeroes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_from_zeroes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_known_layout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_known_layout.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_unaligned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_unaligned.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trybuild", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/trybuild.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_as_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_as_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_from_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_from_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_from_zeroes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_from_zeroes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_known_layout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_known_layout.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_unaligned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_unaligned.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/util.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Joshua Liebow-Feeser " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/google/zerocopy", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zerocopy-derive", + "version": "0.8.25", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25", + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Custom derive for traits from the zerocopy crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.46", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "dissimilar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.163", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "prettyplease", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.89", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "zerocopy_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crate_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/crate_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deprecated", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/deprecated.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_from_zeros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_from_zeros.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_known_layout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_known_layout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_no_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_no_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_to_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_to_bytes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_try_from_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_try_from_bytes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_unaligned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_unaligned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "eq", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/eq.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/hash.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hygiene", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/hygiene.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "include", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/include.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue_2117", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/issue_2117.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "paths_and_modules", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/paths_and_modules.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "priv_in_pub", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/priv_in_pub.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_from_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_from_bytes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_from_zeros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_from_zeros.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_known_layout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_known_layout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_no_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_no_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_to_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_to_bytes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_try_from_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_try_from_bytes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_unaligned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_unaligned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trybuild", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/trybuild.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_from_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_from_bytes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_from_zeros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_from_zeros.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_known_layout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_known_layout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_no_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_no_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_to_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_to_bytes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_try_from_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_try_from_bytes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_unaligned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_unaligned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unsafe_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/unsafe_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Joshua Liebow-Feeser ", + "Jack Wrenn " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/google/zerocopy", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zerofrom", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "license": "Unicode-3.0", + "license_file": null, + "description": "ZeroFrom trait for constructing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zerofrom-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerofrom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ], + "derive": [ + "dep:zerofrom-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "zerofrom-derive", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", + "license": "Unicode-3.0", + "license_file": null, + "description": "Custom derive for the zerofrom crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fold" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "zerofrom_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zf_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/examples/zf_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/Cargo.toml", + "metadata": { + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "memory-management", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zeroize", + "version": "1.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Securely clear secrets from memory with a simple trait built on\nstable Rust primitives which guarantee memory is zeroed using an\noperation will not be 'optimized away' by the compiler.\nUses a portable pure Rust implementation that works everywhere,\neven WASM!\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zeroize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zeroize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/tests/zeroize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zeroize_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/tests/zeroize_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "aarch64": [], + "alloc": [], + "default": [ + "alloc" + ], + "derive": [ + "zeroize_derive" + ], + "serde": [ + "dep:serde" + ], + "simd": [], + "std": [ + "alloc" + ], + "zeroize_derive": [ + "dep:zeroize_derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The RustCrypto Project Developers" + ], + "categories": [ + "cryptography", + "memory-management", + "no-std", + "os" + ], + "keywords": [ + "memory", + "memset", + "secure", + "volatile", + "zero" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils/tree/master/zeroize", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "zerovec", + "version": "0.10.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "license": "Unicode-3.0", + "license_file": null, + "description": "Zero-copy vector backed by a byte array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "twox-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.6.0, <0.8.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerovec-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "iai", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_distr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_pcg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rmp-serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerovec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zv_serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/examples/zv_serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "vzv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/vzv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zeromap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zeromap.rs", + "edition": "2021", + "required-features": [ + "serde", + "hashmap", + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zerovec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zerovec_iai", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec_iai.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zerovec_serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec_serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [ + "serde", + "databake" + ], + "databake": [ + "dep:databake" + ], + "derive": [ + "dep:zerovec-derive" + ], + "hashmap": [ + "dep:twox-hash" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "yoke": [ + "dep:yoke" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ], + "max_combination_size": 3 + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "rust-patterns", + "memory-management", + "caching", + "no-std", + "data-structures" + ], + "keywords": [ + "zerocopy", + "serialization", + "zero-copy", + "serde" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "zerovec-derive", + "version": "0.10.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", + "license": "Unicode-3.0", + "license_file": null, + "description": "Custom derive for the zerovec crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "zerovec_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "derives", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/derives.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "make", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/make.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "make_var", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/make_var.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/Cargo.toml", + "metadata": { + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "rust-patterns", + "memory-management", + "caching", + "no-std", + "data-structures" + ], + "keywords": [ + "zerocopy", + "serialization", + "zero-copy", + "serde" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zip", + "version": "2.6.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", + "license": "MIT", + "license_file": null, + "description": "Library to support the reading and writing of zip files.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bzip2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "constant_time_eq", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "deflate64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "wasm_js", + "std" + ], + "target": null, + "registry": null + }, + { + "name": "hmac", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "reset" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lzma-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nt-time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pbkdf2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=1.0.60", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.37", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "xz2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "zeroize_derive" + ], + "target": null, + "registry": null + }, + { + "name": "zopfli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zstd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.95", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=4.4.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasm_js", + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.15", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.37", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "formatting", + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))", + "registry": null + }, + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": "cfg(fuzzing)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "merge_archive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/merge_archive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "read_entry", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/read_entry.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "read_metadata", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/read_metadata.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/src/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "_all-features": [], + "_deflate-any": [], + "aes": [ + "dep:aes" + ], + "aes-crypto": [ + "aes", + "constant_time_eq", + "hmac", + "pbkdf2", + "sha1", + "getrandom", + "zeroize" + ], + "bzip2": [ + "dep:bzip2" + ], + "chrono": [ + "chrono/default" + ], + "constant_time_eq": [ + "dep:constant_time_eq" + ], + "default": [ + "aes-crypto", + "bzip2", + "deflate64", + "deflate", + "lzma", + "time", + "zstd", + "xz" + ], + "deflate": [ + "flate2/rust_backend", + "deflate-zopfli", + "deflate-flate2" + ], + "deflate-flate2": [ + "_deflate-any" + ], + "deflate-miniz": [ + "deflate", + "deflate-flate2" + ], + "deflate-zlib": [ + "flate2/zlib", + "deflate-flate2" + ], + "deflate-zlib-ng": [ + "flate2/zlib-ng", + "deflate-flate2" + ], + "deflate-zopfli": [ + "zopfli", + "_deflate-any" + ], + "deflate64": [ + "dep:deflate64" + ], + "flate2": [ + "dep:flate2" + ], + "getrandom": [ + "dep:getrandom" + ], + "hmac": [ + "dep:hmac" + ], + "jiff-02": [ + "dep:jiff" + ], + "lzma": [ + "lzma-rs/stream" + ], + "lzma-rs": [ + "dep:lzma-rs" + ], + "nt-time": [ + "dep:nt-time" + ], + "pbkdf2": [ + "dep:pbkdf2" + ], + "proc-macro2": [ + "dep:proc-macro2" + ], + "sha1": [ + "dep:sha1" + ], + "time": [ + "dep:time" + ], + "unreserved": [], + "xz": [ + "dep:xz2" + ], + "zeroize": [ + "dep:zeroize" + ], + "zopfli": [ + "dep:zopfli" + ], + "zstd": [ + "dep:zstd" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Mathijs van de Nes ", + "Marli Frost ", + "Ryan Levick ", + "Chris Hennick " + ], + "categories": [], + "keywords": [ + "zip", + "archive", + "compression" + ], + "readme": "README.md", + "repository": "https://github.com/zip-rs/zip2.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.73.0" + }, + { + "name": "zopfli", + "version": "0.8.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", + "license": "Apache-2.0", + "license_file": null, + "description": "A Rust implementation of the Zopfli compression algorithm.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.17.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "simd-adler32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zopfli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "zopfli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/src/main.rs", + "edition": "2021", + "required-features": [ + "gzip", + "std", + "zlib" + ], + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "gzip", + "std", + "zlib" + ], + "gzip": [ + "dep:crc32fast" + ], + "nightly": [ + "crc32fast?/nightly" + ], + "std": [ + "crc32fast?/std", + "dep:log", + "simd-adler32?/std" + ], + "zlib": [ + "dep:simd-adler32" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "--all-features" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "compression", + "no-std" + ], + "keywords": [ + "compression" + ], + "readme": "README.md", + "repository": "https://github.com/zopfli-rs/zopfli", + "homepage": "https://github.com/zopfli-rs/zopfli", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.73.0" + } + ], + "workspace_members": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0" + ], + "workspace_default_members": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0" + ], + "resolve": { + "nodes": [ + { + "id": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" + ], + "deps": [ + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "heavyweight", + "lazy_static", + "regex" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "abi_tester", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "adder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1" + ], + "deps": [ + { + "name": "gimli", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cipher", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cpufeatures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))" + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "zerocopy", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "perf-literal", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "alloc_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", + "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", + "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.7", + "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", + "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", + "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" + ], + "deps": [ + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle_parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle_query", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle_wincon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.7", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + }, + { + "name": "colorchoice", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "is_terminal_polyfill", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "auto", + "default", + "wincon" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" + ], + "deps": [ + { + "name": "utf8parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "utf8" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#arbitrary@1.4.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#derive_arbitrary@1.4.1" + ], + "deps": [ + { + "name": "derive_arbitrary", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_arbitrary@1.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "derive", + "derive_arbitrary" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", + "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" + ], + "deps": [ + { + "name": "addr2line", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" + } + ] + }, + { + "name": "miniz_oxide", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" + } + ] + }, + { + "name": "object", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" + } + ] + }, + { + "name": "rustc_demangle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "basic_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serial_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "system_sc_interact", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "basic_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "adder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serial_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "big_float_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", + "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cexpr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clang_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "prettyplease", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "shlex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "logging", + "prettyplease", + "runtime", + "static" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22" + ], + "deps": [ + { + "name": "bitcoin_hashes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crate_rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_normalization", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "crate_rand", + "default", + "rand", + "rand_core", + "serde", + "std", + "unicode-normalization" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2" + ], + "deps": [ + { + "name": "internals", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" + ], + "deps": [ + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "bonding_curve_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "builtin_func_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5" + ], + "deps": [ + { + "name": "bytecheck_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ptr_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "simdutf8", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "simdutf8", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5" + ], + "deps": [ + { + "name": "bytecheck_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ptr_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rancor", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "simdutf8", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "simdutf8" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0" + ], + "deps": [ + { + "name": "shlex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3" + ], + "deps": [ + { + "name": "nom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "check_pause", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "child", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1" + ], + "deps": [ + { + "name": "android_tzdata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"android\")" + } + ] + }, + { + "name": "iana_time_zone", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))" + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))" + } + ] + }, + { + "name": "windows_link", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "alloc", + "android-tzdata", + "clock", + "default", + "iana-time-zone", + "js-sys", + "now", + "oldtime", + "std", + "wasm-bindgen", + "wasmbind", + "winapi", + "windows-link" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4" + ], + "deps": [ + { + "name": "crypto_common", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "inout", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6" + ], + "deps": [ + { + "name": "glob", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libloading", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clang_3_5", + "clang_3_6", + "clang_3_7", + "clang_3_8", + "clang_3_9", + "clang_4_0", + "clang_5_0", + "clang_6_0", + "libloading", + "runtime", + "static" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32" + ], + "deps": [ + { + "name": "clap_builder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "color", + "default", + "derive", + "error-context", + "help", + "std", + "suggestions", + "usage" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", + "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1" + ], + "deps": [ + { + "name": "anstream", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_lex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strsim", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "color", + "error-context", + "help", + "std", + "suggestions", + "usage" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "heck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "builtin_func_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder_legacy", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder_queue", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder_raw", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "promises_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "proxy_test_first", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "proxy_test_second", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "recursive_caller", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0" + ], + "deps": [ + { + "name": "unicode_segmentation", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" + ], + "deps": [ + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "core_foundation_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "link" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "dependencies": [], + "deps": [], + "features": [ + "default", + "link" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "scopeguard", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "default", + "default-stack", + "libc", + "unwind", + "windows-sys" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "aarch64-linux-android" + }, + { + "kind": null, + "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))" + }, + { + "kind": null, + "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))" + }, + { + "kind": null, + "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" + ], + "deps": [ + { + "name": "crossbeam_epoch", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" + ], + "deps": [ + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" + ], + "deps": [ + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "crowdfunding_erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "crowdfunding_esdt", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "crypto_bubbles", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0" + ], + "deps": [ + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "typenum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "crypto_zombies", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" + ], + "deps": [ + { + "name": "cipher", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "registry+https://github.com/rust-lang/crates.io-index#fiat-crypto@0.2.9", + "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cpufeatures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"x86_64\")" + } + ] + }, + { + "name": "curve25519_dalek_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(curve25519_dalek_backend = \"fiat\"), not(curve25519_dalek_backend = \"serial\"), target_arch = \"x86_64\"))" + } + ] + }, + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fiat_crypto", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fiat-crypto@0.2.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(curve25519_dalek_backend = \"fiat\")" + } + ] + }, + { + "name": "rustc_version", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "digest", + "precomputed-tables", + "zeroize" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11" + ], + "deps": [ + { + "name": "darling_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "darling_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ident_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "darling_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lock_api", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "const_oid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "oid", + "std", + "zeroize" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_arbitrary@1.4.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "display", + "error", + "from" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0" + ], + "deps": [ + { + "name": "derive_more_impl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "debug", + "default", + "from", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_xid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "debug", + "default", + "from" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" + ], + "deps": [ + { + "name": "block_buffer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crypto_common", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "block-buffer", + "core-api", + "default", + "mac", + "std", + "subtle" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "digital_cash", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro_error", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10" + ], + "deps": [ + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dynasm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memmap2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", + "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0" + ], + "deps": [ + { + "name": "pkcs8", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "signature", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", + "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "curve25519_dalek", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ed25519", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "fast", + "std", + "zeroize" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "dependencies": [], + "deps": [], + "features": [ + "std", + "use_std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "empty", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0" + ], + "deps": [ + { + "name": "enum_iterator_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0" + ], + "deps": [ + { + "name": "enumset_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "darling", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "regex" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27" + ], + "deps": [ + { + "name": "anstream", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "env_filter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "jiff", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "auto-color", + "color", + "default", + "humantime", + "regex" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "erc1155_user_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "erc1155", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc1155_marketplace", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc1155", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc1155_user_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc721", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + }, + { + "kind": null, + "target": "cfg(target_os = \"hermit\")" + }, + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0" + ], + "deps": [ + { + "name": "first_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "second_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "esdt_transfer_with_fee", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "exchange_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "factorial", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "order_book_factory", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fiat-crypto@0.2.9", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "libredox", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"redox\")" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "first_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8" + ], + "deps": [ + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "miniz_oxide", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))" + } + ] + } + ], + "features": [ + "any_impl", + "default", + "miniz_oxide", + "rust_backend" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1" + ], + "deps": [ + { + "name": "foreign_types_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" + ], + "deps": [ + { + "name": "percent_encoding", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "formatted_message_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "forwarder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "forwarder_legacy", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "forwarder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "forwarder_queue", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "forwarder_raw", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "fractional_nfts", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_executor", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_io", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_task", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "async-await", + "default", + "executor", + "futures-executor", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "futures-sink", + "sink", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_task", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_io", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_task", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "slab", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "async-await", + "async-await-macro", + "channel", + "futures-channel", + "futures-io", + "futures-macro", + "futures-sink", + "io", + "memchr", + "sink", + "slab", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "convert_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "env_logger", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" + ], + "deps": [ + { + "name": "typenum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "more_lengths" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0" + ], + "deps": [ + { + "name": "typenum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "wasi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" + } + ] + } + ], + "features": [ + "js", + "js-sys", + "std", + "wasm-bindgen" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#r-efi@5.2.0", + "registry+https://github.com/rust-lang/crates.io-index#wasi@0.14.2+wasi-0.2.4" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))" + }, + { + "kind": null, + "target": "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))" + }, + { + "kind": null, + "target": "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))" + }, + { + "kind": null, + "target": "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))" + }, + { + "kind": null, + "target": "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))" + }, + { + "kind": null, + "target": "cfg(target_os = \"netbsd\")" + }, + { + "kind": null, + "target": "cfg(target_os = \"solaris\")" + }, + { + "kind": null, + "target": "cfg(target_os = \"vxworks\")" + } + ] + }, + { + "name": "r_efi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#r-efi@5.2.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))" + } + ] + }, + { + "name": "wasi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.14.2+wasi-0.2.4", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0" + ], + "deps": [ + { + "name": "fallible_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "stable_deref_trait", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "endian-reader", + "fallible-iterator", + "read", + "read-all", + "read-core", + "std", + "write" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", + "dependencies": [], + "deps": [], + "features": [ + "read", + "read-core" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bstr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "log" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", + "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1" + ], + "deps": [ + { + "name": "gloo_console", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_dialogs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_events", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_file", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_history", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_net", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_render", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_storage", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_timers", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_worker", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "console", + "default", + "dialogs", + "events", + "file", + "futures", + "gloo-console", + "gloo-dialogs", + "gloo-events", + "gloo-file", + "gloo-history", + "gloo-net", + "gloo-render", + "gloo-storage", + "gloo-timers", + "gloo-utils", + "gloo-worker", + "history", + "net", + "render", + "storage", + "timers", + "utils", + "worker" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_events", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "futures", + "futures-channel" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "gloo_events", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "query", + "serde_urlencoded", + "thiserror" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "eventsource", + "futures-channel", + "futures-core", + "futures-sink", + "http", + "json", + "pin-project", + "serde", + "serde_json", + "websocket" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "eventsource", + "futures-channel", + "futures-core", + "futures-sink", + "http", + "json", + "pin-project", + "serde", + "serde_json", + "websocket" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "futures", + "futures-channel", + "futures-core" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "anymap2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bincode", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_console", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "futures" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" + ], + "deps": [ + { + "name": "atomic_waker", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "slab", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", + "dependencies": [], + "deps": [], + "features": [ + "raw" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11" + ], + "deps": [ + { + "name": "ahash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "ahash", + "raw" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "foldhash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default-hasher", + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" + ], + "deps": [ + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "h2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "httparse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "want", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "client", + "default", + "http1", + "http2" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" + ], + "deps": [ + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio_rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "http1", + "http2", + "tls12" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "native_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio_native_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "socket2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "client", + "client-legacy", + "default", + "http1", + "http2", + "tokio" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", + "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.0" + ], + "deps": [ + { + "name": "android_system_properties", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"android\")" + } + ] + }, + { + "name": "core_foundation_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_vendor = \"apple\")" + } + ] + }, + { + "name": "iana_time_zone_haiku", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"haiku\")" + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))" + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))" + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))" + } + ] + }, + { + "name": "windows_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"windows\")" + } + ] + } + ], + "features": [ + "fallback" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yoke", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "litemap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "writeable", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "zerovec" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid_transform_data", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", + "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_collections", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_normalizer_data", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_properties", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf16_iter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8_iter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "write16", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_collections", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid_transform", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_properties_data", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "stable_deref_trait", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "writeable", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yoke", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "macros" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4" + ], + "deps": [ + { + "name": "idna_adapter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8_iter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "compiled_data", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1" + ], + "deps": [ + { + "name": "icu_normalizer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_properties", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9" + ], + "deps": [ + { + "name": "crossbeam_deque", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "globset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "same_file", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winapi_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "indexmap", + "map" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "equivalent", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "serde", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" + ], + "deps": [ + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "use_alloc", + "use_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#jiff-static@0.2.10", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.4", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "jiff_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#jiff-static@0.2.10", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any())" + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "portable_atomic", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_has_atomic = \"ptr\"))" + } + ] + }, + { + "name": "portable_atomic_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.4", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_has_atomic = \"ptr\"))" + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#jiff-static@0.2.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17" + ], + "deps": [ + { + "name": "cpufeatures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"aarch64\")" + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "random", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "kitty", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "kitty_ownership", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "kitty_auction", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" + ], + "deps": [ + { + "name": "kitty", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "random", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "kitty_genetic_alg", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" + ], + "deps": [ + { + "name": "kitty", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "kitty_genetic_alg", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "random", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "kitty_ownership", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "large_storage", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syscall", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "call", + "default", + "redox_syscall", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "linked_list_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", + "dependencies": [], + "deps": [], + "features": [ + "elf", + "errno", + "general", + "ioctl", + "no_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", + "dependencies": [], + "deps": [], + "features": [ + "alloc" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "local_esdt_and_nft", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "scopeguard", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "atomic_usize", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "lottery_erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "lottery_esdt", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20" + ], + "deps": [ + { + "name": "loupe_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "derive", + "loupe-derive" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))" + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#macho-unwind-info@0.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", + "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25" + ], + "deps": [ + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerocopy", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerocopy_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "managed_map_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "map_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0" + ], + "deps": [ + { + "name": "adler2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "with-alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + }, + { + "kind": null, + "target": "cfg(target_os = \"hermit\")" + }, + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + }, + { + "name": "wasi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "net", + "os-ext", + "os-poll" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "multi_contract_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multisig", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "multisig", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_codec", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8" + ], + "deps": [ + { + "name": "bech32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha3", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ed25519_dalek", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex_literal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_core", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor_wasmer_experimental", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_seeder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha3", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "multiversx-chain-vm-executor-wasmer-experimental", + "rand", + "wasm-incompatible", + "wasmer-experimental" + ] + }, + { + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "chrono", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rc_new_cyclic_fallible", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5" + ], + "deps": [ + { + "name": "arrayvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "multiversx_price_aggregator_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex_literal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_core", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_codec", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_derive", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unwrap_infallible", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "num-bigint" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" + ], + "deps": [ + { + "name": "arrayvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_codec_derive", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unwrap_infallible", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "derive", + "multiversx-sc-codec-derive", + "num-bigint" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "radix_trie", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1" + ], + "deps": [ + { + "name": "bip39", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "common_path", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "convert_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "copy_dir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "home", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pathdiff", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "reqwest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruplacer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zip", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", + "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "convert_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_version", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmprinter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wat", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bech32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_scenario_format", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pathdiff", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "simple_error", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unwrap_infallible", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "wasm-incompatible", + "wasmer-experimental" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "env_logger", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_scenario_format", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk_dapp", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk_http", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "dapp", + "default", + "default-tls", + "http", + "multiversx-sdk-dapp", + "multiversx-sdk-http", + "tokio" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "aes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bech32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bip39", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ctr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hmac", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_core", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pbkdf2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pem", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "scrypt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_repr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha3", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "uuid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_net", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "reqwest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "default-tls" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_wegld_swap_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4" + ], + "deps": [ + { + "name": "munge_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "bech32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", + "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", + "registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.27", + "registry+https://github.com/rust-lang/crates.io-index#security-framework@2.11.1", + "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_vendor = \"apple\")" + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" + } + ] + }, + { + "name": "openssl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" + } + ] + }, + { + "name": "openssl_probe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" + } + ] + }, + { + "name": "openssl_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" + } + ] + }, + { + "name": "schannel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.27", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"windows\")" + } + ] + }, + { + "name": "security_framework", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#security-framework@2.11.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_vendor = \"apple\")" + } + ] + }, + { + "name": "security_framework_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_vendor = \"apple\")" + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"macos\")" + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nft_minter", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nft_storage_prepay", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nft_subscription", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0" + ], + "deps": [ + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "minimal_lexical", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "num_integer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "i128", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default", + "i128", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "hermit_abi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"hermit\")" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(windows))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0" + ], + "deps": [ + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "flate2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruzstd", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "archive", + "coff", + "compression", + "default", + "elf", + "macho", + "pe", + "read", + "read_core", + "std", + "unaligned", + "write", + "write_core", + "write_std", + "xcoff" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "archive", + "coff", + "elf", + "macho", + "pe", + "read_core", + "unaligned", + "xcoff" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "race", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "foreign_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "openssl_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ffi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", + "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pkg_config", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "vcpkg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "order_book_pair", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "panic_message_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parent", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10" + ], + "deps": [ + { + "name": "lock_api", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "syscall", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"redox\")" + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" + ], + "deps": [ + { + "name": "base64ct", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "rand_core", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "payable_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "payable_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serial_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1" + ], + "deps": [ + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hmac", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "hmac" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10" + ], + "deps": [ + { + "name": "pin_project_internal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", + "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3" + ], + "deps": [ + { + "name": "console_log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew_router", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew_icons", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ping_pong_egld", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ping_pong_egld", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" + ], + "deps": [ + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3" + ], + "deps": [ + { + "name": "der", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "spki", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", + "dependencies": [], + "deps": [], + "features": [ + "require-cas" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0" + ], + "deps": [ + { + "name": "portable_atomic", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25" + ], + "deps": [ + { + "name": "zerocopy", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "simd", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "verbatim" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" + ], + "deps": [ + { + "name": "proc_macro_error_attr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default", + "syn", + "syn-error" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro_error_attr2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "syn-error" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" + ], + "deps": [ + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proc-macro" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50" + ], + "deps": [ + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "num_cpus", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "pin_project", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pinned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tokio_stream", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "promises_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "check_pause", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proxy_pause", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "hex_literal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proxy_test_first", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proxy_test_second", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4" + ], + "deps": [ + { + "name": "ptr_meta_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0" + ], + "deps": [ + { + "name": "ptr_meta_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "derive", + "ptr_meta_derive", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "queue_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proc-macro" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#r-efi@5.2.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0" + ], + "deps": [ + { + "name": "endian_type", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nibble_vec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0" + ], + "deps": [ + { + "name": "ptr_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "rand_chacha", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "getrandom", + "libc", + "rand_chacha", + "std", + "std_rng" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "ppv_lite86", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16" + ], + "deps": [ + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "getrandom", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rayon_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" + ], + "deps": [ + { + "name": "crossbeam_deque", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "recursive_caller", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "userspace" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "perf", + "perf-backtrack", + "perf-cache", + "perf-dfa", + "perf-inline", + "perf-literal", + "perf-onepass", + "std", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "dfa-onepass", + "hybrid", + "meta", + "nfa", + "nfa-backtrack", + "nfa-pikevm", + "nfa-thompson", + "perf", + "perf-inline", + "perf-literal", + "perf-literal-multisubstring", + "perf-literal-substring", + "std", + "syntax", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + "unicode-word-boundary" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "mach2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1" + ], + "deps": [ + { + "name": "bytecheck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "bytecheck" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", + "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", + "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "registry+https://github.com/rust-lang/crates.io-index#system-configuration@0.6.1", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.4.0" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "encoding_rs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "h2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "http_body_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "hyper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "hyper_rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "hyper_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "hyper_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "ipnet", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "mime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "native_tls_crate", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "percent_encoding", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "rustls_pemfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "serde_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sync_wrapper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "system_configuration", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#system-configuration@0.6.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"macos\")" + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tokio_native_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tower", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "url", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "windows_registry", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "__tls", + "blocking", + "charset", + "default", + "default-tls", + "h2", + "http2", + "json", + "macos-system-configuration" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rewards_distribution", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))" + }, + { + "kind": null, + "target": "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))" + } + ] + }, + { + "name": "untrusted", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))" + } + ] + } + ], + "features": [ + "alloc", + "default", + "dev_urandom_fallback" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", + "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", + "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0" + ], + "deps": [ + { + "name": "bytecheck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytes_1", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap_2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "munge", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ptr_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rancor", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rend", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinyvec_1", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "uuid_1", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "bytecheck", + "bytes-1", + "default", + "indexmap-2", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "bytecheck" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", + "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" + ], + "deps": [ + { + "name": "inflector", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ignore", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rust_snippets_generator_test", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "adder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "basic_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rust_testing_framework_tester", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26" + ], + "deps": [ + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc_errno", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + }, + { + "kind": null, + "target": "cfg(windows)" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + } + ] + }, + { + "name": "linux_raw_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "alloc", + "default", + "fs", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ring", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "webpki", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "log", + "logging", + "ring", + "std", + "tls12" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0" + ], + "deps": [ + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" + ], + "deps": [ + { + "name": "ring", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "untrusted", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "ring", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", + "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3" + ], + "deps": [ + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "derive_more", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "twox_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" + ], + "deps": [ + { + "name": "cipher", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9" + ], + "deps": [ + { + "name": "winapi_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8" + ], + "deps": [ + { + "name": "sdd", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "scenario_tester", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.27", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "use_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9" + ], + "deps": [ + { + "name": "password_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pbkdf2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "salsa20", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "password-hash", + "simple", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "second_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#security-framework@2.11.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", + "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "core_foundation", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "core_foundation_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "security_framework_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "OSX_10_10", + "OSX_10_11", + "OSX_10_12", + "OSX_10_9", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "core_foundation_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "OSX_10_10", + "OSX_10_11", + "OSX_10_12", + "OSX_10_9", + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "seed_nft_minter", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "send_tx_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219" + ], + "deps": [ + { + "name": "serde_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": null, + "target": "cfg(any())" + } + ] + } + ], + "features": [ + "alloc", + "default", + "derive", + "serde_derive", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ryu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "indexmap", + "preserve_order", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "form_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ryu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", + "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0" + ], + "deps": [ + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "scc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serial_test_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "async", + "default", + "logging" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "async", + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "set_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cpufeatures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" + } + ] + }, + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5" + ], + "deps": [ + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "keccak", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memmap2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "single_value_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dependencies": [], + "deps": [], + "features": [ + "const_generics", + "const_new" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "all" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10" + ], + "deps": [ + { + "name": "base64ct", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "der", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "str_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clone-impls", + "default", + "derive", + "extra-traits", + "full", + "parsing", + "printing", + "proc-macro", + "quote", + "visit-mut" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clone-impls", + "default", + "derive", + "extra-traits", + "fold", + "full", + "parsing", + "printing", + "proc-macro", + "visit", + "visit-mut" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "futures", + "futures-core" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proc-macro" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#system-configuration@0.6.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", + "registry+https://github.com/rust-lang/crates.io-index#system-configuration-sys@0.6.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "core_foundation", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "system_configuration_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#system-configuration-sys@0.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#system-configuration-sys@0.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "core_foundation_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0" + ], + "deps": [ + { + "name": "filetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "xattr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [ + "default", + "xattr" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "fastrand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(unix, windows, target_os = \"wasi\"))" + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(unix, target_os = \"wasi\"))" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "default", + "getrandom" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9" + ], + "deps": [ + { + "name": "winapi_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69" + ], + "deps": [ + { + "name": "thiserror_impl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12" + ], + "deps": [ + { + "name": "thiserror_impl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "zerovec" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1" + ], + "deps": [ + { + "name": "tinyvec_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "tinyvec_macros" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "token_release", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", + "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "backtrace", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(tokio_taskdump)" + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "mio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "signal_hook_registry", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "socket2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_family = \"wasm\"))" + } + ] + }, + { + "name": "tokio_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "bytes", + "default", + "fs", + "full", + "io-std", + "io-util", + "libc", + "macros", + "mio", + "net", + "parking_lot", + "process", + "rt", + "rt-multi-thread", + "signal", + "signal-hook-registry", + "socket2", + "sync", + "time", + "tokio-macros", + "windows-sys" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "native_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "tls12" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "time" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "codec", + "default", + "io" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_edit", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "display", + "parse" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_edit", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "display", + "indexmap", + "parse", + "preserve_order" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winnow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_write", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winnow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "display", + "parse", + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sync_wrapper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_layer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "__common", + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "timeout", + "tokio", + "util" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", + "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33" + ], + "deps": [ + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_attributes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "attributes", + "default", + "std", + "tracing-attributes" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3" + ], + "deps": [ + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "once_cell", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "transfer_role_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "static_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "dependencies": [], + "deps": [], + "features": [ + "const-generics" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0" + ], + "deps": [ + { + "name": "tinyvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dependencies": [], + "deps": [], + "features": [ + "cjk", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "flate2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls_pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "url", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "webpki_roots", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "gzip", + "tls" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" + ], + "deps": [ + { + "name": "form_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "idna", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "percent_encoding", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "use_module", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2" + ], + "deps": [ + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))" + } + ] + } + ], + "features": [ + "default", + "rng", + "std", + "v4" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "vec_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9" + ], + "deps": [ + { + "name": "same_file", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winapi_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5" + ], + "deps": [ + { + "name": "try_lock", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.14.2+wasi-0.2.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wit-bindgen-rt@0.39.0" + ], + "deps": [ + { + "name": "wit_bindgen_rt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wit-bindgen-rt@0.39.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "msrv", + "rustversion", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100" + ], + "deps": [ + { + "name": "bumpalo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_feature = \"atomics\")" + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100" + ], + "deps": [ + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_macro_support", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_backend", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" + ], + "deps": [ + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0" + ], + "deps": [ + { + "name": "leb128fmt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", + "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", + "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", + "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", + "dep_kinds": [ + { + "kind": "build", + "target": "cfg(not(target_env = \"musl\"))" + }, + { + "kind": "build", + "target": "cfg(target_env = \"musl\")" + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cmake", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "derive_more", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "paste", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_demangle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "serde_wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "shared_buffer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tar", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "target_lexicon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ureq", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasmer_compiler_singlepass", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmer_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wat", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(target_arch = \"wasm32\"), target_os = \"windows\"))" + } + ] + } + ], + "features": [ + "compiler", + "singlepass", + "std", + "sys", + "wasmer-compiler-singlepass", + "wasmparser", + "wat" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#macho-unwind-info@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", + "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15" + ], + "deps": [ + { + "name": "backtrace", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enum_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "leb128", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "macho_unwind_info", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#macho-unwind-info@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_os = \"macos\", target_arch = \"aarch64\"))" + } + ] + }, + { + "name": "memmap2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "object", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "region", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "rkyv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "self_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "shared_buffer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "target_lexicon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"windows\")" + } + ] + }, + { + "name": "xxhash_rust", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiler", + "default", + "std", + "translator", + "wasmparser" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" + ], + "deps": [ + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dynasm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dynasmrt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gimli", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rayon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "avx", + "default", + "gimli", + "rayon", + "std", + "unwind" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro_error2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15" + ], + "deps": [ + { + "name": "bytecheck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enum_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "target_lexicon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "xxhash_rust", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", + "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", + "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", + "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "backtrace", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "corosensei", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_queue", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dashmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enum_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libunwind", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_family = \"unix\", all(target_family = \"windows\", target_env = \"gnu\")))" + } + ] + }, + { + "name": "mach2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_vendor = \"apple\")" + } + ] + }, + { + "name": "memoffset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "region", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "scopeguard", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"windows\")" + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "features", + "simd", + "validate" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "default", + "features", + "hash-collections", + "serde", + "simd", + "std", + "validate" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "simd", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "termcolor", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0" + ], + "deps": [ + { + "name": "bumpalo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "leb128fmt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_encoder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "wasm-module" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0" + ], + "deps": [ + { + "name": "wast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "AbortController", + "AbortSignal", + "AddEventListenerOptions", + "AnimationEvent", + "BinaryType", + "Blob", + "BlobPropertyBag", + "CharacterData", + "CloseEvent", + "CloseEventInit", + "DedicatedWorkerGlobalScope", + "Document", + "DocumentFragment", + "DomException", + "DragEvent", + "Element", + "ErrorEvent", + "Event", + "EventInit", + "EventSource", + "EventTarget", + "File", + "FileList", + "FilePropertyBag", + "FileReader", + "FocusEvent", + "FormData", + "Headers", + "History", + "HtmlBaseElement", + "HtmlCollection", + "HtmlElement", + "HtmlHeadElement", + "HtmlInputElement", + "HtmlScriptElement", + "HtmlTextAreaElement", + "InputEvent", + "InputEventInit", + "KeyboardEvent", + "Location", + "MessageEvent", + "MouseEvent", + "Node", + "NodeList", + "ObserverCallback", + "PointerEvent", + "ProgressEvent", + "ReadableStream", + "ReferrerPolicy", + "Request", + "RequestCache", + "RequestCredentials", + "RequestInit", + "RequestMode", + "RequestRedirect", + "Response", + "ResponseInit", + "ResponseType", + "ServiceWorkerGlobalScope", + "ShadowRoot", + "Storage", + "SubmitEvent", + "Text", + "TouchEvent", + "TransitionEvent", + "UiEvent", + "Url", + "UrlSearchParams", + "WebSocket", + "WheelEvent", + "Window", + "Worker", + "WorkerGlobalScope", + "WorkerOptions", + "console", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0" + ], + "deps": [ + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.1", + "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", + "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.0" + ], + "deps": [ + { + "name": "windows_implement", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_interface", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_link", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_result", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_strings", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.4.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", + "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.0" + ], + "deps": [ + { + "name": "windows_result", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_strings", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1" + ], + "deps": [ + { + "name": "windows_link", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1" + ], + "deps": [ + { + "name": "windows_link", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1" + ], + "deps": [ + { + "name": "windows_link", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" + ], + "deps": [ + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "Wdk", + "Wdk_Foundation", + "Wdk_Storage", + "Wdk_Storage_FileSystem", + "Wdk_System", + "Wdk_System_IO", + "Win32", + "Win32_Foundation", + "Win32_Networking", + "Win32_Networking_WinSock", + "Win32_Security", + "Win32_Storage", + "Win32_Storage_FileSystem", + "Win32_System", + "Win32_System_Console", + "Win32_System_Diagnostics", + "Win32_System_Diagnostics_Debug", + "Win32_System_IO", + "Win32_System_Memory", + "Win32_System_Pipes", + "Win32_System_SystemInformation", + "Win32_System_SystemServices", + "Win32_System_Threading", + "Win32_System_WindowsProgramming", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" + ], + "deps": [ + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "Win32", + "Win32_Foundation", + "Win32_Networking", + "Win32_Networking_WinSock", + "Win32_Security", + "Win32_Security_Authentication", + "Win32_Security_Authentication_Identity", + "Win32_Security_Credentials", + "Win32_Security_Cryptography", + "Win32_Storage", + "Win32_Storage_FileSystem", + "Win32_System", + "Win32_System_Com", + "Win32_System_Console", + "Win32_System_Diagnostics", + "Win32_System_Diagnostics_Debug", + "Win32_System_Kernel", + "Win32_System_LibraryLoader", + "Win32_System_Memory", + "Win32_System_SystemInformation", + "Win32_System_Threading", + "Win32_UI", + "Win32_UI_Shell", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6" + ], + "deps": [ + { + "name": "windows_aarch64_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "aarch64-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_aarch64_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_i686_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_i686_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "i686-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_i686_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_x86_64_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_x86_64_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "x86_64-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_x86_64_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.53.0", + "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.53.0", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.53.0", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.53.0", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.53.0", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.53.0", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.53.0", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0" + ], + "deps": [ + { + "name": "windows_aarch64_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.53.0", + "dep_kinds": [ + { + "kind": null, + "target": "aarch64-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_aarch64_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.53.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_i686_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.53.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_i686_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.53.0", + "dep_kinds": [ + { + "kind": null, + "target": "i686-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_i686_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.53.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_x86_64_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.53.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_x86_64_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.53.0", + "dep_kinds": [ + { + "kind": null, + "target": "x86_64-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_x86_64_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.53.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.53.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.53.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.53.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.53.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.53.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.53.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wit-bindgen-rt@0.39.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "bitflags" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))" + } + ] + }, + { + "name": "rustix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))" + } + ] + } + ], + "features": [ + "default", + "unsupported" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", + "dependencies": [], + "deps": [], + "features": [ + "xxh64" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0" + ], + "deps": [ + { + "name": "console_error_panic_hook", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "implicit_clone", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "prokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "slab", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "csr", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "boolinator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "prettyplease", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro_error", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0" + ], + "deps": [ + { + "name": "gloo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "route_recognizer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew_router_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0" + ], + "deps": [ + { + "name": "yew", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "BootstrapHeartFill", + "data_uri", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "stable_deref_trait", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yoke_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "derive", + "zerofrom" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "synstructure", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.35" + ], + "deps": [ + { + "name": "zerocopy_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.35", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any())" + } + ] + } + ], + "features": [ + "simd" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25" + ], + "deps": [ + { + "name": "zerocopy_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any())" + } + ] + } + ], + "features": [ + "simd" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.35", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6" + ], + "deps": [ + { + "name": "zerofrom_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "derive" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "synstructure", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3" + ], + "deps": [ + { + "name": "yoke", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "derive", + "yoke" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#arbitrary@1.4.1", + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2" + ], + "deps": [ + { + "name": "arbitrary", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#arbitrary@1.4.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(fuzzing)" + } + ] + }, + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))" + } + ] + }, + { + "name": "flate2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zopfli", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "_deflate-any", + "deflate", + "deflate-flate2", + "deflate-zopfli", + "flate2", + "zopfli" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7" + ], + "deps": [ + { + "name": "bumpalo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "simd_adler32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "gzip", + "std", + "zlib" + ] + } + ], + "root": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0" + }, + "target_directory": "/home/bibi/Desktop/mx-sdk-rs/target", + "version": 1, + "workspace_root": "/home/bibi/Desktop/mx-sdk-rs", + "metadata": null +} \ No newline at end of file diff --git a/contracts/examples/adder/file.txt b/contracts/examples/adder/file.txt new file mode 100644 index 0000000000..472b92e048 --- /dev/null +++ b/contracts/examples/adder/file.txt @@ -0,0 +1,211 @@ +adder v0.0.0 (/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder) +└── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) + ├── bitflags v2.9.0 + ├── generic-array v1.2.0 + │ └── typenum v1.18.0 + ├── hex-literal v0.4.1 + ├── multiversx-chain-core v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/core) + │ ├── bitflags v2.9.0 + │ └── multiversx-sc-codec v0.22.0 (/home/bibi/Desktop/mx-sdk-rs/data/codec) + │ ├── arrayvec v0.7.6 + │ ├── bitflags v2.9.0 + │ ├── multiversx-sc-codec-derive v0.22.0 (proc-macro) (/home/bibi/Desktop/mx-sdk-rs/data/codec-derive) + │ │ ├── hex v0.4.3 + │ │ ├── proc-macro2 v1.0.94 + │ │ │ └── unicode-ident v1.0.18 + │ │ ├── quote v1.0.39 + │ │ │ └── proc-macro2 v1.0.94 (*) + │ │ └── syn v2.0.100 + │ │ ├── proc-macro2 v1.0.94 (*) + │ │ ├── quote v1.0.39 (*) + │ │ └── unicode-ident v1.0.18 + │ ├── num-bigint v0.4.6 + │ │ ├── num-integer v0.1.46 + │ │ │ └── num-traits v0.2.19 + │ │ │ [build-dependencies] + │ │ │ └── autocfg v1.4.0 + │ │ └── num-traits v0.2.19 (*) + │ └── unwrap-infallible v0.1.5 + ├── multiversx-sc-codec v0.22.0 (/home/bibi/Desktop/mx-sdk-rs/data/codec) (*) + ├── multiversx-sc-derive v0.57.1 (proc-macro) (/home/bibi/Desktop/mx-sdk-rs/framework/derive) + │ ├── hex v0.4.3 + │ ├── proc-macro2 v1.0.94 (*) + │ ├── quote v1.0.39 (*) + │ ├── radix_trie v0.2.1 + │ │ ├── endian-type v0.1.2 + │ │ └── nibble_vec v0.1.0 + │ │ └── smallvec v1.15.0 + │ └── syn v2.0.100 (*) + ├── num-traits v0.2.19 (*) + └── unwrap-infallible v0.1.5 +[dev-dependencies] +└── multiversx-sc-scenario v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/scenario) + ├── base64 v0.22.1 + ├── bech32 v0.11.0 + ├── colored v3.0.0 + ├── hex v0.4.3 + ├── itertools v0.14.0 + │ └── either v1.15.0 + ├── log v0.4.27 + ├── multiversx-chain-scenario-format v0.23.1 (/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format) + │ ├── bech32 v0.11.0 + │ ├── hex v0.4.3 + │ ├── num-bigint v0.4.6 (*) + │ ├── num-traits v0.2.19 (*) + │ ├── serde v1.0.219 + │ │ └── serde_derive v1.0.219 (proc-macro) + │ │ ├── proc-macro2 v1.0.94 (*) + │ │ ├── quote v1.0.39 (*) + │ │ └── syn v2.0.100 (*) + │ ├── serde_json v1.0.140 + │ │ ├── itoa v1.0.15 + │ │ ├── memchr v2.7.4 + │ │ ├── ryu v1.0.20 + │ │ └── serde v1.0.219 (*) + │ └── sha3 v0.10.8 + │ ├── digest v0.10.7 + │ │ ├── block-buffer v0.10.4 + │ │ │ └── generic-array v0.14.7 + │ │ │ └── typenum v1.18.0 + │ │ │ [build-dependencies] + │ │ │ └── version_check v0.9.5 + │ │ └── crypto-common v0.1.6 + │ │ ├── generic-array v0.14.7 (*) + │ │ └── typenum v1.18.0 + │ └── keccak v0.1.5 + ├── multiversx-chain-vm v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/vm) + │ ├── anyhow v1.0.98 + │ ├── bitflags v2.9.0 + │ ├── colored v3.0.0 + │ ├── ed25519-dalek v2.1.1 + │ │ ├── curve25519-dalek v4.1.3 + │ │ │ ├── cfg-if v1.0.0 + │ │ │ ├── cpufeatures v0.2.17 + │ │ │ ├── curve25519-dalek-derive v0.1.1 (proc-macro) + │ │ │ │ ├── proc-macro2 v1.0.94 (*) + │ │ │ │ ├── quote v1.0.39 (*) + │ │ │ │ └── syn v2.0.100 (*) + │ │ │ ├── digest v0.10.7 (*) + │ │ │ ├── subtle v2.6.1 + │ │ │ └── zeroize v1.8.1 + │ │ │ [build-dependencies] + │ │ │ └── rustc_version v0.4.1 + │ │ │ └── semver v1.0.26 + │ │ ├── ed25519 v2.2.3 + │ │ │ └── signature v2.2.0 + │ │ ├── sha2 v0.10.9 + │ │ │ ├── cfg-if v1.0.0 + │ │ │ ├── cpufeatures v0.2.17 + │ │ │ └── digest v0.10.7 (*) + │ │ ├── subtle v2.6.1 + │ │ └── zeroize v1.8.1 + │ ├── hex v0.4.3 + │ ├── hex-literal v0.4.1 + │ ├── itertools v0.14.0 (*) + │ ├── multiversx-chain-core v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/core) (*) + │ ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) + │ │ ├── serde v1.0.219 (*) + │ │ └── toml v0.7.8 + │ │ ├── serde v1.0.219 (*) + │ │ ├── serde_spanned v0.6.8 + │ │ │ └── serde v1.0.219 (*) + │ │ ├── toml_datetime v0.6.9 + │ │ │ └── serde v1.0.219 (*) + │ │ └── toml_edit v0.19.15 + │ │ ├── indexmap v2.9.0 + │ │ │ ├── equivalent v1.0.2 + │ │ │ ├── hashbrown v0.15.2 + │ │ │ │ ├── foldhash v0.1.5 + │ │ │ │ └── serde v1.0.219 (*) + │ │ │ └── serde v1.0.219 (*) + │ │ ├── serde v1.0.219 (*) + │ │ ├── serde_spanned v0.6.8 (*) + │ │ ├── toml_datetime v0.6.9 (*) + │ │ └── winnow v0.5.40 + │ ├── num-bigint v0.4.6 (*) + │ ├── num-traits v0.2.19 (*) + │ ├── rand v0.8.5 + │ │ ├── libc v0.2.172 + │ │ ├── rand_chacha v0.3.1 + │ │ │ ├── ppv-lite86 v0.2.21 + │ │ │ │ └── zerocopy v0.8.25 + │ │ │ └── rand_core v0.6.4 + │ │ │ └── getrandom v0.2.16 + │ │ │ ├── cfg-if v1.0.0 + │ │ │ └── libc v0.2.172 + │ │ └── rand_core v0.6.4 (*) + │ ├── rand_seeder v0.3.0 + │ │ └── rand_core v0.6.4 (*) + │ ├── serde v1.0.219 (*) + │ ├── sha2 v0.10.9 (*) + │ ├── sha3 v0.10.8 (*) + │ └── toml v0.7.8 (*) + ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) (*) + ├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) + ├── multiversx-sc-meta-lib v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib) + │ ├── clap v4.5.37 + │ │ ├── clap_builder v4.5.37 + │ │ │ ├── anstream v0.6.18 + │ │ │ │ ├── anstyle v1.0.10 + │ │ │ │ ├── anstyle-parse v0.2.6 + │ │ │ │ │ └── utf8parse v0.2.2 + │ │ │ │ ├── anstyle-query v1.1.2 + │ │ │ │ ├── colorchoice v1.0.3 + │ │ │ │ ├── is_terminal_polyfill v1.70.1 + │ │ │ │ └── utf8parse v0.2.2 + │ │ │ ├── anstyle v1.0.10 + │ │ │ ├── clap_lex v0.7.4 + │ │ │ └── strsim v0.11.1 + │ │ └── clap_derive v4.5.32 (proc-macro) + │ │ ├── heck v0.5.0 + │ │ ├── proc-macro2 v1.0.94 (*) + │ │ ├── quote v1.0.39 (*) + │ │ └── syn v2.0.100 (*) + │ ├── colored v3.0.0 + │ ├── convert_case v0.8.0 + │ │ └── unicode-segmentation v1.12.0 + │ ├── hex v0.4.3 + │ ├── lazy_static v1.5.0 + │ ├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) + │ ├── rustc_version v0.4.1 (*) + │ ├── semver v1.0.26 + │ ├── serde v1.0.219 (*) + │ ├── serde_json v1.0.140 (*) + │ ├── toml v0.8.22 + │ │ ├── indexmap v2.9.0 (*) + │ │ ├── serde v1.0.219 (*) + │ │ ├── serde_spanned v0.6.8 (*) + │ │ ├── toml_datetime v0.6.9 (*) + │ │ └── toml_edit v0.22.26 + │ │ ├── indexmap v2.9.0 (*) + │ │ ├── serde v1.0.219 (*) + │ │ ├── serde_spanned v0.6.8 (*) + │ │ ├── toml_datetime v0.6.9 (*) + │ │ ├── toml_write v0.1.1 + │ │ └── winnow v0.7.7 + │ ├── wasmparser v0.227.1 + │ │ ├── bitflags v2.9.0 + │ │ ├── hashbrown v0.15.2 (*) + │ │ ├── indexmap v2.9.0 (*) + │ │ ├── semver v1.0.26 + │ │ └── serde v1.0.219 (*) + │ ├── wasmprinter v0.227.1 + │ │ ├── anyhow v1.0.98 + │ │ ├── termcolor v1.4.1 + │ │ └── wasmparser v0.227.1 (*) + │ └── wat v1.229.0 + │ └── wast v229.0.0 + │ ├── bumpalo v3.17.0 + │ ├── leb128fmt v0.1.0 + │ ├── memchr v2.7.4 + │ ├── unicode-width v0.2.0 + │ └── wasm-encoder v0.229.0 + │ └── leb128fmt v0.1.0 + ├── num-bigint v0.4.6 (*) + ├── num-traits v0.2.19 (*) + ├── pathdiff v0.2.3 + ├── serde v1.0.219 (*) + ├── serde_json v1.0.140 (*) + ├── sha2 v0.10.9 (*) + ├── simple-error v0.3.1 + └── unwrap-infallible v0.1.5 diff --git a/contracts/examples/multisig/file.json b/contracts/examples/multisig/file.json new file mode 100644 index 0000000000..9e37c44e7a --- /dev/null +++ b/contracts/examples/multisig/file.json @@ -0,0 +1,160821 @@ +{ + "packages": [ + { + "name": "Inflector", + "version": "0.11.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", + "license": "BSD-2-Clause", + "license_file": null, + "description": "Adds String based inflections for Rust. Snake, kebab, camel, sentence, class, title and table cases as well as ordinalize, deordinalize, demodulize, foreign key, and pluralize/singularize are supported as both traits and pure functions acting on String types.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "inflector", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/tests/lib.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "heavyweight" + ], + "heavyweight": [ + "regex", + "lazy_static" + ], + "lazy_static": [ + "dep:lazy_static" + ], + "regex": [ + "dep:regex" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Josh Teeter" + ], + "categories": [ + "text-processing", + "value-formatting" + ], + "keywords": [ + "pluralize", + "Inflector", + "camel", + "snake", + "inflection" + ], + "readme": "README.md", + "repository": "https://github.com/whatisinternet/inflector", + "homepage": "https://github.com/whatisinternet/inflector", + "documentation": "https://docs.rs/Inflector", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "abi-tester", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "abi_tester", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/src/abi_tester.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "abi_tester_abi_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/tests/abi_tester_abi_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "abi-tester-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "abi-tester", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "abi-tester-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "adder", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "adder", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/src/adder.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_unit_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_unit_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "adder-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "adder", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "adder-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "addr2line", + "version": "0.24.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A cross-platform symbolication library written in Rust, using `gimli`", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.3.21", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "wrap_help" + ], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cpp_demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "fallible-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gimli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.31.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "read" + ], + "target": null, + "registry": null + }, + { + "name": "memmap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "object", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.36.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "read", + "compression" + ], + "target": null, + "registry": null + }, + { + "name": "rustc-demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typed-arena", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "findshlibs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libtest-mimic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "addr2line", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "addr2line", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/src/bin/addr2line.rs", + "edition": "2018", + "required-features": [ + "bin" + ], + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "all": [ + "bin" + ], + "alloc": [ + "dep:alloc" + ], + "bin": [ + "loader", + "rustc-demangle", + "cpp_demangle", + "fallible-iterator", + "smallvec", + "dep:clap" + ], + "cargo-all": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "cpp_demangle": [ + "dep:cpp_demangle" + ], + "default": [ + "rustc-demangle", + "cpp_demangle", + "loader", + "fallible-iterator", + "smallvec" + ], + "fallible-iterator": [ + "dep:fallible-iterator" + ], + "loader": [ + "std", + "dep:object", + "dep:memmap2", + "dep:typed-arena" + ], + "rustc-demangle": [ + "dep:rustc-demangle" + ], + "rustc-dep-of-std": [ + "core", + "alloc", + "compiler_builtins", + "gimli/rustc-dep-of-std" + ], + "smallvec": [ + "dep:smallvec" + ], + "std": [ + "gimli/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "DWARF", + "debug", + "elf", + "symbolicate", + "atos" + ], + "readme": "README.md", + "repository": "https://github.com/gimli-rs/addr2line", + "homepage": null, + "documentation": "https://docs.rs/addr2line", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "adler2", + "version": "2.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", + "license": "0BSD OR MIT OR Apache-2.0", + "license_file": null, + "description": "A simple clean-room implementation of the Adler-32 checksum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "adler2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--cfg=docsrs" + ] + } + }, + "release": { + "no-dev-version": true, + "pre-release-commit-message": "Release {{version}}", + "tag-message": "{{version}}", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "replace": "## Unreleased\n\nNo changes.\n\n## [{{version}} - {{date}}](https://github.com/jonas-schievink/adler/releases/tag/v{{version}})\n", + "search": "## Unreleased\n" + }, + { + "file": "README.md", + "replace": "adler = \"{{version}}\"", + "search": "adler = \"[a-z0-9\\\\.-]+\"" + }, + { + "file": "src/lib.rs", + "replace": "https://docs.rs/adler/{{version}}", + "search": "https://docs.rs/adler/[a-z0-9\\.-]+" + } + ] + } + }, + "publish": null, + "authors": [ + "Jonas Schievink ", + "oyvindln " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "checksum", + "integrity", + "hash", + "adler32", + "zlib" + ], + "readme": "README.md", + "repository": "https://github.com/oyvindln/adler2", + "homepage": null, + "documentation": "https://docs.rs/adler2/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "aes", + "version": "0.8.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "aarch64" + ], + "target": "cfg(all(aes_armv8, target_arch = \"aarch64\"))", + "registry": null + }, + { + "name": "cpufeatures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(not(all(aes_armv8, target_arch = \"aarch64\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "aes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hazmat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/tests/hazmat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "hazmat": [], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "aes", + "rijndael", + "block-cipher" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/block-ciphers", + "homepage": null, + "documentation": "https://docs.rs/aes", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "ahash", + "version": "0.7.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A non-cryptographic hash function using AES-NI for high performance", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "seahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.59", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "const-random", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))", + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.117", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))", + "registry": null + }, + { + "name": "atomic-polyfill", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))", + "registry": null + }, + { + "name": "const-random", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))", + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.117", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ahash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "map_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/map_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nopanic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/nopanic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ahash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/map_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "atomic-polyfill": [ + "dep:atomic-polyfill", + "once_cell/atomic-polyfill" + ], + "compile-time-rng": [ + "const-random" + ], + "const-random": [ + "dep:const-random" + ], + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ], + "rustc-args": [ + "-C", + "target-feature=+aes" + ], + "rustdoc-args": [ + "-C", + "target-feature=+aes" + ] + } + } + }, + "publish": null, + "authors": [ + "Tom Kaitchuck " + ], + "categories": [ + "algorithms", + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "hasher", + "hashmap", + "aes", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/tkaitchuck/ahash", + "homepage": null, + "documentation": "https://docs.rs/ahash", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ahash", + "version": "0.8.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A non-cryptographic hash function using AES-NI for high performance", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "atomic-polyfill", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "const-random", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.117", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pcg-mwc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "seahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.59", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.4", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.18.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ahash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "map_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/map_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nopanic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/nopanic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ahash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/map_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "atomic-polyfill": [ + "dep:atomic-polyfill", + "once_cell/atomic-polyfill" + ], + "compile-time-rng": [ + "const-random" + ], + "const-random": [ + "dep:const-random" + ], + "default": [ + "std", + "runtime-rng" + ], + "getrandom": [ + "dep:getrandom" + ], + "nightly-arm-aes": [], + "no-rng": [], + "runtime-rng": [ + "getrandom" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ], + "rustc-args": [ + "-C", + "target-feature=+aes" + ], + "rustdoc-args": [ + "-C", + "target-feature=+aes" + ] + } + } + }, + "publish": null, + "authors": [ + "Tom Kaitchuck " + ], + "categories": [ + "algorithms", + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "hasher", + "hashmap", + "aes", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/tkaitchuck/ahash", + "homepage": null, + "documentation": "https://docs.rs/ahash", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "aho-corasick", + "version": "1.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Fast multiple substring searching.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "aho_corasick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std", + "perf-literal" + ], + "logging": [ + "dep:log" + ], + "perf-literal": [ + "dep:memchr" + ], + "std": [ + "memchr?/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "string", + "search", + "text", + "pattern", + "multi" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/aho-corasick", + "homepage": "https://github.com/BurntSushi/aho-corasick", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "alloc-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmer-experimental" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "alloc_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/src/alloc_features_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "af_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/af_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "alloc_features_general_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_general_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "alloc_features_managed_buffer_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_managed_buffer_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "alloc_features_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "alloc_features_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "alloc-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "alloc-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "alloc-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "anstream", + "version": "0.6.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A simple cross platform library for writing colored text to a terminal.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle-parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle-query", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colorchoice", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is_terminal_polyfill", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.48", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf8parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "divan", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "owo-colors", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strip-ansi-escapes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle-wincon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dump-stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/examples/dump-stream.rs", + "edition": "2021", + "required-features": [ + "auto" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "query-stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/examples/query-stream.rs", + "edition": "2021", + "required-features": [ + "auto" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "strip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/strip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "wincon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/wincon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "auto": [ + "dep:anstyle-query" + ], + "default": [ + "auto", + "wincon" + ], + "test": [], + "wincon": [ + "dep:anstyle-wincon" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "strip", + "wincon" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "anstyle", + "version": "1.0.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "ANSI text styling", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dump-style", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/examples/dump-style.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "tag-prefix": "", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "anstyle-parse", + "version": "0.2.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parse ANSI Style Escapes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf8parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "codegenrs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "divan", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vte_generate_state_changes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle_parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "parselog", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/examples/parselog.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/benches/parse.rs", + "edition": "2021", + "required-features": [ + "utf8" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "core": [ + "dep:arrayvec" + ], + "default": [ + "utf8" + ], + "utf8": [ + "dep:utf8parse" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "vte" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "anstyle-query", + "version": "1.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Look up colored console capabilities", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Console", + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle_query", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "query", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/examples/query.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "cli", + "color", + "no-std", + "terminal", + "ansi" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "anyhow", + "version": "1.0.98", + "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Flexible concrete Error type built on std::error::Error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.51", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.66", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anyhow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_autotrait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_autotrait.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_backtrace.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_boxed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_boxed.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_chain", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_chain.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_context", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_context.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_convert", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_convert.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_downcast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_downcast.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ensure", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_ensure.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ffi", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_ffi.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_fmt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_repr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_repr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_source", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_source.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "backtrace": [ + "dep:backtrace" + ], + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns", + "no-std" + ], + "keywords": [ + "error", + "error-handling" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/anyhow", + "homepage": null, + "documentation": "https://docs.rs/anyhow", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.39" + }, + { + "name": "anymap2", + "version": "0.13.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A safe and convenient store for one value of each type", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anymap2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Chris Morgan ", + "Azriel Hoh " + ], + "categories": [], + "keywords": [ + "container", + "data-structure", + "map" + ], + "readme": "README.md", + "repository": "https://github.com/azriel91/anymap2", + "homepage": null, + "documentation": "https://docs.rs/anymap2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "arrayvec", + "version": "0.7.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "arrayvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "borsh", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/borsh.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "arraystring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/benches/arraystring.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "extend", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/benches/extend.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "borsh": [ + "dep:borsh" + ], + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "borsh", + "serde", + "zeroize" + ] + } + }, + "release": { + "no-dev-version": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "stack", + "vector", + "array", + "data-structure", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/bluss/arrayvec", + "homepage": null, + "documentation": "https://docs.rs/arrayvec/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.51" + }, + { + "name": "atomic-waker", + "version": "1.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A synchronization primitive for task wakeup", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "cargo_bench_support" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "atomic_waker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/tests/basic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "waker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/benches/waker.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "portable-atomic": [ + "dep:portable-atomic" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Stjepan Glavina ", + "Contributors to futures-rs" + ], + "categories": [ + "asynchronous", + "concurrency" + ], + "keywords": [ + "waker", + "notify", + "wake", + "futures", + "async" + ], + "readme": "README.md", + "repository": "https://github.com/smol-rs/atomic-waker", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "autocfg", + "version": "1.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Automatic cfg for Rust compiler features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "autocfg", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "integers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/integers.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "nightly", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/nightly.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "paths", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/paths.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/traits.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "versions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/versions.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/no_std.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rustflags", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/rustflags.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wrappers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/wrappers.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Josh Stone " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "rustc", + "build", + "autoconf" + ], + "readme": "README.md", + "repository": "https://github.com/cuviper/autocfg", + "homepage": null, + "documentation": "https://docs.rs/autocfg/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.0" + }, + { + "name": "backtrace", + "version": "0.3.74", + "id": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library to acquire a stack trace (backtrace) at runtime in a Rust program.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cpp_demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "rustc-demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "libloading", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "addr2line", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.24.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.156", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", + "registry": null + }, + { + "name": "object", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.36.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "read_core", + "elf", + "macho", + "pe", + "xcoff", + "unaligned", + "archive" + ], + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", + "registry": null + }, + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/examples/backtrace.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "raw", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/examples/raw.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accuracy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/accuracy/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "concurrent-panics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/concurrent-panics.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "current-exe-mismatch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/current-exe-mismatch.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "long_fn_name", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/long_fn_name.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sgx-image-base", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/sgx-image-base.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "skip_inner_frames", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/skip_inner_frames.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/smoke.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/benches/benchmarks.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "coresymbolication": [], + "cpp_demangle": [ + "dep:cpp_demangle" + ], + "dbghelp": [], + "default": [ + "std" + ], + "dl_iterate_phdr": [], + "dladdr": [], + "kernel32": [], + "libunwind": [], + "serde": [ + "dep:serde" + ], + "serialize-serde": [ + "serde" + ], + "std": [], + "unix-backtrace": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/backtrace-rs", + "homepage": "https://github.com/rust-lang/backtrace-rs", + "documentation": "https://docs.rs/backtrace", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "base64", + "version": "0.22.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "encodes and decodes base64 as bytes or utf8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rstest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rstest_reuse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "base64", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "base64", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/examples/base64.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/tests/encode.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/tests/tests.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/benches/benchmarks.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Marshall Pierce " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "base64", + "utf8", + "encode", + "decode", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/marshallpierce/rust-base64", + "homepage": null, + "documentation": "https://docs.rs/base64", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.48.0" + }, + { + "name": "base64ct", + "version": "1.7.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of\ndata-dependent branches/LUTs and thereby provides portable \"best effort\"\nconstant-time operation and embedded-friendly no_std support\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "base64ct", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bcrypt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/bcrypt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crypt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/crypt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proptests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/proptests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "shacrypt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/shacrypt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "standard", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/standard.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "url", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/url.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "encoding", + "no-std", + "parser-implementations" + ], + "keywords": [ + "crypto", + "base64", + "pem", + "phc" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats", + "homepage": "https://github.com/RustCrypto/formats/tree/master/base64ct", + "documentation": "https://docs.rs/base64ct", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "basic-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "basic_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/src/basic_features_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_big_num_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_big_num_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_egld_decimal_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_egld_decimal_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_is_builtin_function_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_is_builtin_function_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_managed_buffer_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_buffer_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_managed_decimal_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_decimal_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_managed_option_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_option_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_managed_vec_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_vec_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_ordered_binary_tree_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_ordered_binary_tree_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_sparse_array_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_sparse_array_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_storage_mapper_get_at_address_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_storage_mapper_get_at_address_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_timelock_mapper_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_timelock_mapper_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_features_token_identifier_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_token_identifier_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "basic-features-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "basic-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "system-sc-interact", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls" + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "basic_features_interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/src/bf_interact.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "basic-features-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/src/bf_interact_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bf_interact_cs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/tests/bf_interact_cs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "basic-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "basic-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "basic-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "basic-interactor", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "adder", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "basic_interactor", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/src/basic_interactor.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "basic-interactor", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/src/basic_interactor_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_interactor_cs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/tests/basic_interactor_cs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bech32", + "version": "0.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "license": "MIT", + "license_file": null, + "description": "Encodes and decodes the Bech32 format and implements the bech32 and bech32m checksums", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bech32", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bip_173_test_vectors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/tests/bip_173_test_vectors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bip_350_test_vectors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/tests/bip_350_test_vectors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Clark Moody", + "Andrew Poelstra", + "Tobin Harding" + ], + "categories": [ + "encoding", + "cryptography::cryptocurrencies" + ], + "keywords": [ + "base32", + "encoding", + "bech32", + "bitcoin", + "cryptocurrency" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/rust-bech32", + "homepage": null, + "documentation": "https://docs.rs/bech32/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "benchmark-common", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "benchmark_common", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "big-float-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "big_float_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/src/big_float_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_float_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/tests/big_float_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_float_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/tests/big_float_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "big-float-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "big-float-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "big-float-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bincode", + "version": "1.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "license": "MIT", + "license_file": null, + "description": "A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.63", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.27", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bincode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/tests/test.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "i128": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ty Overby ", + "Francesco Mazzoli ", + "David Tolnay ", + "Zoey Riordan " + ], + "categories": [ + "encoding", + "network-programming" + ], + "keywords": [ + "binary", + "encode", + "decode", + "serialize", + "deserialize" + ], + "readme": "./readme.md", + "repository": "https://github.com/servo/bincode", + "homepage": null, + "documentation": "https://docs.rs/bincode", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bindgen", + "version": "0.70.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Automatically generates Rust FFI bindings to C and C++ libraries.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "annotate-snippets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "color" + ], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cexpr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clang-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "clang_6_0" + ], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.10, <0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "prettyplease", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "verbatim" + ], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "unicode-perl" + ], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shlex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits", + "visit-mut" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bindgen", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "__cli": [], + "__testing_only_extra_assertions": [], + "__testing_only_libclang_16": [], + "__testing_only_libclang_9": [], + "default": [ + "logging", + "prettyplease", + "runtime" + ], + "experimental": [ + "dep:annotate-snippets" + ], + "logging": [ + "dep:log" + ], + "prettyplease": [ + "dep:prettyplease" + ], + "runtime": [ + "clang-sys/runtime" + ], + "static": [ + "clang-sys/static" + ], + "which-rustfmt": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "experimental" + ] + } + }, + "release": { + "pre-release-hook": [ + "../node_modules/doctoc/doctoc.js", + "../CHANGELOG.md" + ], + "release": true, + "pre-release-replacements": [ + { + "file": "../CHANGELOG.md", + "replace": "# Unreleased\n## Added\n## Changed\n## Removed\n## Fixed\n## Security\n\n# {{version}} ({{date}})", + "search": "# Unreleased" + } + ] + } + }, + "publish": null, + "authors": [ + "Jyun-Yan You ", + "Emilio Cobos Álvarez ", + "Nick Fitzgerald ", + "The Servo project developers" + ], + "categories": [ + "external-ffi-bindings", + "development-tools::ffi" + ], + "keywords": [ + "bindings", + "ffi", + "code-generation" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/rust-bindgen", + "homepage": "https://rust-lang.github.io/rust-bindgen/", + "documentation": "https://docs.rs/bindgen", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.70.0" + }, + { + "name": "bip39", + "version": "2.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "license": "CC0-1.0", + "license_file": null, + "description": "Library for BIP-39 Bitcoin mnemonic codes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitcoin_hashes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.12, <=0.13", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.6.0, <0.9.0", + "kind": null, + "rename": "crate_rand", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.4.0, <0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "unicode-normalization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.1.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "zeroize_derive" + ], + "target": null, + "registry": null + }, + { + "name": "bitcoin_hashes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.12, <0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bip39", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "all-languages": [ + "chinese-simplified", + "chinese-traditional", + "czech", + "french", + "italian", + "japanese", + "korean", + "portuguese", + "spanish" + ], + "alloc": [ + "unicode-normalization" + ], + "chinese-simplified": [], + "chinese-traditional": [], + "crate_rand": [ + "dep:crate_rand" + ], + "czech": [], + "default": [ + "std" + ], + "french": [], + "italian": [], + "japanese": [], + "korean": [], + "portuguese": [], + "rand": [ + "crate_rand", + "rand_core" + ], + "rand_core": [ + "dep:rand_core" + ], + "serde": [ + "dep:serde" + ], + "spanish": [], + "std": [ + "alloc", + "serde/std", + "unicode-normalization/std" + ], + "unicode-normalization": [ + "dep:unicode-normalization" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Steven Roose " + ], + "categories": [], + "keywords": [ + "crypto", + "bitcoin", + "bip39", + "mnemonic" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/rust-bip39/", + "homepage": "https://github.com/rust-bitcoin/rust-bip39/", + "documentation": "https://docs.rs/bip39/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitcoin-internals", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", + "license": "CC0-1.0", + "license_file": null, + "description": "Internal types and macros used by rust-bitcoin ecosystem", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitcoin_internals", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Poelstra ", + "The Rust Bitcoin developers" + ], + "categories": [ + "cryptography::cryptocurrencies" + ], + "keywords": [ + "internal" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/rust-bitcoin/", + "homepage": null, + "documentation": "https://docs.rs/bitcoin-internals", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitcoin_hashes", + "version": "0.13.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", + "license": "CC0-1.0", + "license_file": null, + "description": "Hash functions used by the rust-bitcoin eccosystem", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "core2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": "actual-core2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-conservative", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": "hex", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitcoin-internals", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": "internals", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "wasm32-unknown-unknown", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitcoin_hashes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin_hashes-0.13.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "actual-core2": [ + "dep:actual-core2" + ], + "alloc": [ + "internals/alloc", + "hex/alloc" + ], + "core2": [ + "actual-core2", + "hex/core2" + ], + "default": [ + "std" + ], + "schemars": [ + "dep:schemars" + ], + "serde": [ + "dep:serde" + ], + "serde-std": [ + "serde/std" + ], + "small-hash": [], + "std": [ + "alloc", + "internals/std", + "hex/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin_hashes-0.13.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Poelstra " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "crypto", + "bitcoin", + "hash", + "digest" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/rust-bitcoin", + "homepage": null, + "documentation": "https://docs.rs/bitcoin_hashes/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitflags", + "version": "1.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A macro to generate structures which behave like bitflags.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitflags", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/tests/basic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/tests/compile.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [], + "example_generated": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "example_generated" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "no-std" + ], + "keywords": [ + "bit", + "bitmask", + "bitflags", + "flags" + ], + "readme": "README.md", + "repository": "https://github.com/bitflags/bitflags", + "homepage": "https://github.com/bitflags/bitflags", + "documentation": "https://docs.rs/bitflags", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitflags", + "version": "2.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A macro to generate structures which behave like bitflags.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.19", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitflags", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_bits_type", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/custom_bits_type.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/custom_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/fmt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "macro_free", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/macro_free.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/benches/parse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "bytemuck": [ + "dep:bytemuck" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "example_generated": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "example_generated" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "no-std" + ], + "keywords": [ + "bit", + "bitmask", + "bitflags", + "flags" + ], + "readme": "README.md", + "repository": "https://github.com/bitflags/bitflags", + "homepage": "https://github.com/bitflags/bitflags", + "documentation": "https://docs.rs/bitflags", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "bitvec", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitvec@1.0.1", + "license": "MIT", + "license_file": null, + "description": "Addresses memory by bits, for packed collections and bitfields", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "funty", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "radium", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wyz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "eq", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/eq.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/iter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/macros.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "memcpy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/memcpy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mut_access", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/mut_access.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "slice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "atomic": [], + "default": [ + "atomic", + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ], + "testing": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "atomic", + "serde", + "std" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "embedded", + "no-std", + "rust-patterns" + ], + "keywords": [ + "bitfields", + "bitmap", + "bitstream", + "bitvec", + "bitvector" + ], + "readme": "README.md", + "repository": "https://github.com/bitvecto-rs/bitvec", + "homepage": "https://bitvecto-rs.github.io/bitvec", + "documentation": "https://docs.rs/bitvec/latest/bitvec", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "block-buffer", + "version": "0.10.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Buffer type for block processing of data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "block_buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "block", + "buffer" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/block-buffer", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bonding-curve-contract", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bonding_curve_contract", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/src/bonding_curve_contract.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bonding_curve_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/tests/bonding_curve_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bonding_curve_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/tests/bonding_curve_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bonding-curve-contract-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "bonding-curve-contract", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "bonding-curve-contract-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "boolinator", + "version": "2.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Provides the Boolinator trait, which lets you use Option and Result-style combinators with bools.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "boolinator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/boolinator-2.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/boolinator-2.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Daniel Keep " + ], + "categories": [], + "keywords": [ + "bool", + "combinator", + "monad", + "serious" + ], + "readme": "README.md", + "repository": "https://github.com/DanielKeep/rust-boolinator", + "homepage": null, + "documentation": "https://danielkeep.github.io/rust-boolinator/doc/boolinator/index.html", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bstr", + "version": "1.12.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A string type that is not required to be valid UTF-8.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "dfa-search" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.85", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ucd-parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-segmentation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bstr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "graphemes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/graphemes.rs", + "edition": "2021", + "required-features": [ + "std", + "unicode" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "graphemes-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/graphemes-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lines", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/lines.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lines-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/lines-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "uppercase", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/uppercase.rs", + "edition": "2021", + "required-features": [ + "std", + "unicode" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "uppercase-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/uppercase-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "words", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/words.rs", + "edition": "2021", + "required-features": [ + "std", + "unicode" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "words-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/words-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "memchr/alloc", + "serde?/alloc" + ], + "default": [ + "std", + "unicode" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc", + "memchr/std", + "serde?/std" + ], + "unicode": [ + "dep:regex-automata" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "text-processing", + "encoding" + ], + "keywords": [ + "string", + "str", + "byte", + "bytes", + "text" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/bstr", + "homepage": "https://github.com/BurntSushi/bstr", + "documentation": "https://docs.rs/bstr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.73" + }, + { + "name": "builtin-func-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "builtin_func_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/src/builtin_func_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_transfer_promise_blackbox_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/tests/esdt_transfer_promise_blackbox_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_transfer_promise_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/tests/esdt_transfer_promise_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "builtin-func-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "builtin-func-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "builtin-func-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bumpalo", + "version": "3.17.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A fast bump allocation arena for Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "allocator-api2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.171", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.115", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bumpalo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.17.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "allocator-api2": [ + "dep:allocator-api2" + ], + "allocator_api": [], + "boxed": [], + "collections": [], + "default": [], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.17.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Nick Fitzgerald " + ], + "categories": [ + "memory-management", + "rust-patterns", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/fitzgen/bumpalo", + "homepage": null, + "documentation": "https://docs.rs/bumpalo", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71.1" + }, + { + "name": "bytecheck", + "version": "0.6.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "license": "MIT", + "license_file": null, + "description": "Derive macro for bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytecheck_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "simdutf8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bytecheck", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "simdutf8", + "std" + ], + "simdutf8": [ + "dep:simdutf8" + ], + "std": [ + "ptr_meta/std", + "bytecheck_derive/std", + "simdutf8/std" + ], + "uuid": [ + "dep:uuid" + ], + "verbose": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "bytecheck", + "validation", + "zero-copy", + "rkyv" + ], + "readme": "crates-io.md", + "repository": "https://github.com/djkoloski/bytecheck", + "homepage": null, + "documentation": "https://docs.rs/bytecheck", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bytecheck", + "version": "0.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "license": "MIT", + "license_file": null, + "description": "Memory validation framework for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytecheck_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rancor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "simdutf8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "uuid-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bytecheck", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.8.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "simdutf8" + ], + "simdutf8": [ + "dep:simdutf8" + ], + "uuid-1": [ + "dep:uuid-1" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.8.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "no_std", + "validation", + "serialization" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/bytecheck", + "homepage": null, + "documentation": "https://docs.rs/bytecheck", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "bytecheck_derive", + "version": "0.6.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", + "license": "MIT", + "license_file": null, + "description": "Derive macro for bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "bytecheck_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.6.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.6.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/djkoloski/bytecheck", + "homepage": null, + "documentation": "https://docs.rs/bytecheck_derive", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bytecheck_derive", + "version": "0.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", + "license": "MIT", + "license_file": null, + "description": "Derive macro for bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "full", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "bytecheck_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.8.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.8.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "no_std", + "validation", + "serialization" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/bytecheck", + "homepage": null, + "documentation": "https://docs.rs/bytecheck_derive", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "byteorder", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Library for reading/writing numbers in big-endian and little-endian.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "byteorder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "i128": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "encoding", + "parsing", + "no-std" + ], + "keywords": [ + "byte", + "endian", + "big-endian", + "little-endian", + "binary" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/byteorder", + "homepage": "https://github.com/BurntSushi/byteorder", + "documentation": "https://docs.rs/byteorder", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "bytes", + "version": "1.10.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "license": "MIT", + "license_file": null, + "description": "Types and traits for working with bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": "extra-platforms", + "optional": true, + "uses_default_features": false, + "features": [ + "require-cas" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_buf.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_buf_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_buf_mut.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_bytes_odd_alloc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes_odd_alloc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_bytes_vec_alloc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes_vec_alloc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_chain", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_chain.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_debug.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_iter.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_reader", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_reader.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_take", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_take.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/buf.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bytes_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/bytes_mut.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "extra-platforms": [ + "dep:extra-platforms" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Carl Lerche ", + "Sean McArthur " + ], + "categories": [ + "network-programming", + "data-structures" + ], + "keywords": [ + "buffers", + "zero-copy", + "io" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/bytes", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.39" + }, + { + "name": "cc", + "version": "1.2.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "jobserver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.30", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shlex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.62", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.20/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "jobserver": [], + "parallel": [ + "dep:libc", + "dep:jobserver" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.20/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "build-dependencies" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/cc-rs", + "homepage": "https://github.com/rust-lang/cc-rs", + "documentation": "https://docs.rs/cc", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "cexpr", + "version": "0.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "A C expression parser and evaluator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "nom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "clang-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.13.0, <0.29.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cexpr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "clang", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/tests/clang.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jethro Beekman " + ], + "categories": [], + "keywords": [ + "C", + "expression", + "parser" + ], + "readme": null, + "repository": "https://github.com/jethrogb/rust-cexpr", + "homepage": null, + "documentation": "https://docs.rs/cexpr/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "cfg-if", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cfg_if", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "xcrate", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/tests/xcrate.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/cfg-if", + "homepage": "https://github.com/alexcrichton/cfg-if", + "documentation": "https://docs.rs/cfg-if", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "cfg_aliases", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "license": "MIT", + "license_file": null, + "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cfg_aliases", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Zicklag " + ], + "categories": [ + "development-tools", + "development-tools::build-utils" + ], + "keywords": [ + "cfg", + "alias", + "conditional", + "compilation", + "build" + ], + "readme": "README.md", + "repository": "https://github.com/katharostech/cfg_aliases", + "homepage": "https://github.com/katharostech/cfg_aliases", + "documentation": "https://docs.rs/cfg_aliases", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "check-pause", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "check_pause", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/src/check_pause.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "check-pause-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "check-pause", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "check-pause-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "child", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "child", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "child-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "child", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "child-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "chrono", + "version": "0.4.41", + "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Date and time library for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pure-rust-locales", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.43", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.99", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "similar-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "android-tzdata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"android\")", + "registry": null + }, + { + "name": "iana-time-zone", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.45", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "fallback" + ], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-link", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.61", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "chrono", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dateutils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/dateutils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wasm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/wasm.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "win_bindings", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/win_bindings.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__internal_bench": [], + "alloc": [], + "android-tzdata": [ + "dep:android-tzdata" + ], + "arbitrary": [ + "dep:arbitrary" + ], + "clock": [ + "winapi", + "iana-time-zone", + "android-tzdata", + "now" + ], + "default": [ + "clock", + "std", + "oldtime", + "wasmbind" + ], + "iana-time-zone": [ + "dep:iana-time-zone" + ], + "js-sys": [ + "dep:js-sys" + ], + "libc": [], + "now": [ + "std" + ], + "oldtime": [], + "pure-rust-locales": [ + "dep:pure-rust-locales" + ], + "rkyv": [ + "dep:rkyv", + "rkyv/size_32" + ], + "rkyv-16": [ + "dep:rkyv", + "rkyv?/size_16" + ], + "rkyv-32": [ + "dep:rkyv", + "rkyv?/size_32" + ], + "rkyv-64": [ + "dep:rkyv", + "rkyv?/size_64" + ], + "rkyv-validation": [ + "rkyv?/validation" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ], + "unstable-locales": [ + "pure-rust-locales" + ], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ], + "wasmbind": [ + "wasm-bindgen", + "js-sys" + ], + "winapi": [ + "windows-link" + ], + "windows-link": [ + "dep:windows-link" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arbitrary", + "rkyv", + "serde", + "unstable-locales" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "date-and-time" + ], + "keywords": [ + "date", + "time", + "calendar" + ], + "readme": "README.md", + "repository": "https://github.com/chronotope/chrono", + "homepage": "https://github.com/chronotope/chrono", + "documentation": "https://docs.rs/chrono/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.62.0" + }, + { + "name": "cipher", + "version": "0.4.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Traits for describing block ciphers and stream ciphers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "blobby", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crypto-common", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "inout", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cipher", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "blobby": [ + "dep:blobby" + ], + "block-padding": [ + "inout/block-padding" + ], + "dev": [ + "blobby" + ], + "rand_core": [ + "crypto-common/rand_core" + ], + "std": [ + "alloc", + "crypto-common/std", + "inout/std" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "block-cipher", + "stream-cipher", + "trait" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits", + "homepage": null, + "documentation": "https://docs.rs/cipher", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "clang-sys", + "version": "1.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", + "license": "Apache-2.0", + "license_file": null, + "description": "Rust bindings for libclang.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libloading", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=3.0.0, <3.7.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clang_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/tests/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "clang_10_0": [ + "clang_9_0" + ], + "clang_11_0": [ + "clang_10_0" + ], + "clang_12_0": [ + "clang_11_0" + ], + "clang_13_0": [ + "clang_12_0" + ], + "clang_14_0": [ + "clang_13_0" + ], + "clang_15_0": [ + "clang_14_0" + ], + "clang_16_0": [ + "clang_15_0" + ], + "clang_17_0": [ + "clang_16_0" + ], + "clang_18_0": [ + "clang_17_0" + ], + "clang_3_5": [], + "clang_3_6": [ + "clang_3_5" + ], + "clang_3_7": [ + "clang_3_6" + ], + "clang_3_8": [ + "clang_3_7" + ], + "clang_3_9": [ + "clang_3_8" + ], + "clang_4_0": [ + "clang_3_9" + ], + "clang_5_0": [ + "clang_4_0" + ], + "clang_6_0": [ + "clang_5_0" + ], + "clang_7_0": [ + "clang_6_0" + ], + "clang_8_0": [ + "clang_7_0" + ], + "clang_9_0": [ + "clang_8_0" + ], + "libcpp": [], + "libloading": [ + "dep:libloading" + ], + "runtime": [ + "libloading" + ], + "static": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "clang_18_0", + "runtime" + ] + } + } + }, + "publish": null, + "authors": [ + "Kyle Mayes " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/KyleMayes/clang-sys", + "homepage": null, + "documentation": "https://docs.rs/clang-sys", + "edition": "2021", + "links": "clang", + "default_run": null, + "rust_version": null + }, + { + "name": "clap", + "version": "4.5.37", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "clap_builder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=4.5.37", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=4.5.32", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap-cargo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.15", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shlex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "term-svg" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.91", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trycmd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "color-auto", + "diff", + "examples" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "stdio-fixture", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/src/bin/stdio-fixture.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "01_quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/01_quick.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "01_quick_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/01_quick.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_app_settings", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_app_settings.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_app_settings_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_app_settings.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_apps", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_apps.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_apps_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_apps.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_crate", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_crate.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_crate_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_crate.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_bool", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_01_flag_bool.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_bool_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_01_flag_bool.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_count", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_01_flag_count.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_count_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_01_flag_count.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_02_option.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_02_option.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option_mult", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_02_option_mult.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option_mult_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_02_option_mult.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_03_positional.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_03_positional.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional_mult", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_03_positional_mult.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional_mult_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_03_positional_mult.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_04_subcommands", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_04_subcommands.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_04_subcommands_alt_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_04_subcommands_alt.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_04_subcommands_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_04_subcommands.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_05_default_values", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_05_default_values.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_05_default_values_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_05_default_values.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_06_optional_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_06_optional.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_06_required", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_06_required.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_01_enum", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_01_enum.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_01_enum_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_01_enum.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_01_possible", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_01_possible.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_02_parse.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_parse_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_02_parse.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_validate", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_02_validate.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_validate_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_02_validate.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_03_relations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_03_relations.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_03_relations_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_03_relations.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_04_custom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_04_custom.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_04_custom_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_04_custom.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "05_01_assert", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/05_01_assert.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "05_01_assert_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/05_01_assert.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "busybox", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/multicall-busybox.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cargo-example", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/cargo-example.rs", + "edition": "2021", + "required-features": [ + "cargo", + "color" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cargo-example-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/cargo-example-derive.rs", + "edition": "2021", + "required-features": [ + "derive", + "color" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "demo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/demo.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "escaped-positional", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/escaped-positional.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "escaped-positional-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/escaped-positional-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "find", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/find.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "git", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/git.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "git-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/git-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hostname", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/multicall-hostname.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_augment_args", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/augment_args.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_augment_subcommands", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/augment_subcommands.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_flatten_hand_args", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/flatten_hand_args.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_hand_subcommand", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/hand_subcommand.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pacman", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/pacman.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "repl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/repl.rs", + "edition": "2021", + "required-features": [ + "help" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "repl-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/repl-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "typed-derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/typed-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "cargo": [ + "clap_builder/cargo" + ], + "color": [ + "clap_builder/color" + ], + "debug": [ + "clap_builder/debug", + "clap_derive?/debug" + ], + "default": [ + "std", + "color", + "help", + "usage", + "error-context", + "suggestions" + ], + "deprecated": [ + "clap_builder/deprecated", + "clap_derive?/deprecated" + ], + "derive": [ + "dep:clap_derive" + ], + "env": [ + "clap_builder/env" + ], + "error-context": [ + "clap_builder/error-context" + ], + "help": [ + "clap_builder/help" + ], + "std": [ + "clap_builder/std" + ], + "string": [ + "clap_builder/string" + ], + "suggestions": [ + "clap_builder/suggestions" + ], + "unicode": [ + "clap_builder/unicode" + ], + "unstable-derive-ui-tests": [], + "unstable-doc": [ + "clap_builder/unstable-doc", + "derive" + ], + "unstable-ext": [ + "clap_builder/unstable-ext" + ], + "unstable-markdown": [ + "clap_derive/unstable-markdown" + ], + "unstable-styles": [ + "clap_builder/unstable-styles" + ], + "unstable-v5": [ + "clap_builder/unstable-v5", + "clap_derive?/unstable-v5", + "deprecated" + ], + "usage": [ + "clap_builder/usage" + ], + "wrap_help": [ + "clap_builder/wrap_help" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "unstable-doc" + ] + }, + "release": { + "shared-version": true, + "tag-name": "v{{version}}", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", + "search": "" + }, + { + "file": "CITATION.cff", + "replace": "date-released: {{date}}", + "search": "^date-released: ....-..-.." + }, + { + "file": "CITATION.cff", + "replace": "version: {{version}}", + "search": "^version: .+\\..+\\..+" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "blob/v{{version}}/CHANGELOG.md", + "search": "blob/v.+\\..+\\..+/CHANGELOG.md" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "argument", + "cli", + "arg", + "parser", + "parse" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_builder", + "version": "4.5.37", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.73", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap_lex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strsim", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "terminal_size", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicase", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "color-print", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unic-emoji-char", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap_builder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.37/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "cargo": [], + "color": [ + "dep:anstream" + ], + "debug": [ + "dep:backtrace" + ], + "default": [ + "std", + "color", + "help", + "usage", + "error-context", + "suggestions" + ], + "deprecated": [], + "env": [], + "error-context": [], + "help": [], + "std": [ + "anstyle/std" + ], + "string": [], + "suggestions": [ + "dep:strsim", + "error-context" + ], + "unicode": [ + "dep:unicode-width", + "dep:unicase" + ], + "unstable-doc": [ + "cargo", + "wrap_help", + "env", + "unicode", + "string", + "unstable-ext" + ], + "unstable-ext": [], + "unstable-styles": [ + "color" + ], + "unstable-v5": [ + "deprecated" + ], + "usage": [], + "wrap_help": [ + "help", + "dep:terminal_size" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.37/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "-Zunstable-options", + "-Zrustdoc-scrape-examples" + ], + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "unstable-doc" + ] + }, + "release": { + "dependent-version": "upgrade", + "shared-version": true, + "tag-name": "v{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "argument", + "cli", + "arg", + "parser", + "parse" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_derive", + "version": "4.5.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parse command line argument by defining a struct, derive crate.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "heck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pulldown-cmark", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "clap_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "debug": [], + "default": [], + "deprecated": [], + "raw-deprecated": [ + "deprecated" + ], + "unstable-markdown": [ + "dep:pulldown-cmark", + "dep:anstyle" + ], + "unstable-v5": [ + "deprecated" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "release": { + "dependent-version": "upgrade", + "shared-version": true, + "tag-name": "v{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface", + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "clap", + "cli", + "parse", + "derive", + "proc_macro" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_lex", + "version": "0.7.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Minimal, flexible command line parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap_lex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/Cargo.toml", + "metadata": { + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", + "search": "" + }, + { + "exactly": 4, + "file": "README.md", + "prerelease": true, + "replace": "github.com/clap-rs/clap/blob/{{tag_name}}/", + "search": "github.com/clap-rs/clap/blob/[^/]+/" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "argument", + "cli", + "arg", + "parser", + "parse" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "cmake", + "version": "0.1.54", + "id": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A build dependency for running `cmake` to build a native library\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cmake", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cmake-0.1.54/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cmake-0.1.54/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "build-dependencies" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/cmake-rs", + "homepage": "https://github.com/rust-lang/cmake-rs", + "documentation": "https://docs.rs/cmake", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "colorchoice", + "version": "1.0.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Global override of color control", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "colorchoice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "cli", + "color", + "no-std", + "terminal", + "ansi" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "colored", + "version": "2.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", + "license": "MPL-2.0", + "license_file": null, + "description": "The most simple way to add colors in your terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ansi_term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rspec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.48, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Console" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "colored", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "as_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/as_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "control", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/control.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/custom_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dynamic_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/dynamic_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "most_simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/most_simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "nested_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/nested_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ansi_term_compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/tests/ansi_term_compat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "no-color": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Thomas Wickham " + ], + "categories": [], + "keywords": [ + "color", + "string", + "term", + "ansi_term", + "term-painter" + ], + "readme": "README.md", + "repository": "https://github.com/mackwic/colored", + "homepage": "https://github.com/mackwic/colored", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "colored", + "version": "3.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "license": "MPL-2.0", + "license_file": null, + "description": "The most simple way to add colors in your terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ansi_term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rspec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.48, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Console" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "colored", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "as_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/as_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "control", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/control.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/custom_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dynamic_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/dynamic_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "most_simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/most_simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "nested_colors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/nested_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ansi_term_compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/tests/ansi_term_compat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "no-color": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Thomas Wickham " + ], + "categories": [], + "keywords": [ + "color", + "string", + "term", + "ansi_term", + "term-painter" + ], + "readme": "README.md", + "repository": "https://github.com/mackwic/colored", + "homepage": "https://github.com/mackwic/colored", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "common-path", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Finds the common prefix between a set of paths\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "common_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/common-path-1.0.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/common-path-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Paul Woolcock " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": "https://gitlab.com/pwoolcoc/common-path", + "documentation": "https://docs.rs/common-path", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "composability-tests", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "builtin-func-features", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features" + }, + { + "name": "forwarder", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" + }, + { + "name": "forwarder-legacy", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy" + }, + { + "name": "forwarder-queue", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue" + }, + { + "name": "forwarder-raw", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "promises-features", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features" + }, + { + "name": "proxy-test-first", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first" + }, + { + "name": "proxy-test-second", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second" + }, + { + "name": "recursive-caller", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + } + ], + "targets": [ + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "composability_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/composability_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "composability_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/composability_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder_blackbox_legacy_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_blackbox_legacy_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder_whitebox_legacy_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_whitebox_legacy_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "promises_feature_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/promises_feature_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "console_error_panic_hook", + "version": "0.1.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "A panic hook for `wasm32-unknown-unknown` that logs panics to `console.error`", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.37", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "console_error_panic_hook", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/tests/tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nick Fitzgerald " + ], + "categories": [ + "wasm" + ], + "keywords": [], + "readme": "./README.md", + "repository": "https://github.com/rustwasm/console_error_panic_hook", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "console_log", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A logging facility that routes Rust log messages to the browser's console.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "console" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "console_log", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_log-1.0.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "color": [ + "wasm-bindgen" + ], + "default": [], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_log-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Matthew Nicholson " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "log", + "logging", + "console", + "web_sys", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/iamcodemaker/console_log", + "homepage": null, + "documentation": "https://docs.rs/console_log", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "const-oid", + "version": "0.9.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard\nas defined in ITU X.660, with support for BER/DER encoding/decoding as well as\nheapless no_std (i.e. embedded) support\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "const_oid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "db": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "data-structures", + "encoding", + "no-std", + "parser-implementations" + ], + "keywords": [ + "iso", + "iec", + "itu", + "oid" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats/tree/master/const-oid", + "homepage": null, + "documentation": "https://docs.rs/const-oid", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "convert_case", + "version": "0.8.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "license": "MIT", + "license_file": null, + "description": "Convert strings into any case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-segmentation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "convert_case", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "string_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/tests/string_types.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "rand": [ + "dep:rand" + ], + "random": [ + "rand" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "rutrum " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "casing", + "case", + "string" + ], + "readme": "README.md", + "repository": "https://github.com/rutrum/convert-case", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "copy_dir", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Copy directories recursively in a straightforward and predictable way.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "copy_dir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/copy_dir-0.1.3/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/copy_dir-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Michael Dunsmuir " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": "https://github.com/mdunsmuir/copy_dir", + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "corosensei", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A fast and safe implementation of stackful coroutines", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scopeguard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.69", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion-cycles-per-byte", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.159", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Diagnostics_Debug", + "Win32_System_Kernel", + "Win32_System_Memory", + "Win32_System_Threading", + "Win32_System_SystemInformation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "corosensei", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/backtrace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "coroutine", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/benches/coroutine.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "asm-unwind": [ + "unwind" + ], + "default": [ + "default-stack", + "unwind" + ], + "default-stack": [ + "libc", + "windows-sys" + ], + "libc": [ + "dep:libc" + ], + "unwind": [], + "windows-sys": [ + "dep:windows-sys" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu", + "i686-unknown-linux-gnu", + "aarch64-unknown-linux-gnu", + "armv7-unknown-linux-gnueabihf", + "riscv64gc-unknown-linux-gnu", + "x86_64-apple-darwin", + "aarch64-apple-darwin", + "x86_64-pc-windows-msvc", + "i686-pc-windows-msvc" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std", + "concurrency" + ], + "keywords": [ + "coroutine", + "stack", + "fiber", + "generator" + ], + "readme": "README.md", + "repository": "https://github.com/Amanieu/corosensei", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.59.0" + }, + { + "name": "cpufeatures", + "version": "0.2.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, \nwith no_std support and support for mobile targets including Android and iOS\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "aarch64-linux-android", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cpufeatures", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "aarch64", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/aarch64.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "loongarch64", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/loongarch64.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "x86", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/x86.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "hardware-support", + "no-std" + ], + "keywords": [ + "cpuid", + "target-feature" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/cpufeatures", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crc32fast", + "version": "1.4.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crc32fast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/benches/bench.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sam Rijs ", + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "checksum", + "crc", + "crc32", + "simd", + "fast" + ], + "readme": "README.md", + "repository": "https://github.com/srijs/rust-crc32fast", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crossbeam-deque", + "version": "0.8.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Concurrent work-stealing deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-epoch", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_deque", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fifo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/fifo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "injector", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/injector.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lifo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/lifo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "steal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/steal.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "crossbeam-epoch/std", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "algorithms", + "concurrency", + "data-structures" + ], + "keywords": [ + "chase-lev", + "lock-free", + "scheduler", + "scheduling" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "crossbeam-epoch", + "version": "0.9.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Epoch-based garbage collection", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": "loom-crate", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(crossbeam_loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_epoch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "sanitize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/examples/sanitize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "loom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/tests/loom.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "defer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/defer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "flush", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/flush.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "pin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/pin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "loom": [ + "loom-crate", + "crossbeam-utils/loom" + ], + "loom-crate": [ + "dep:loom-crate" + ], + "nightly": [ + "crossbeam-utils/nightly" + ], + "std": [ + "alloc", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "memory-management", + "no-std" + ], + "keywords": [ + "lock-free", + "rcu", + "atomic", + "garbage" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "crossbeam-queue", + "version": "0.3.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Concurrent queues", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "array_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/tests/array_queue.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "seg_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/tests/seg_queue.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "nightly": [ + "crossbeam-utils/nightly" + ], + "std": [ + "alloc", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "data-structures", + "no-std" + ], + "keywords": [ + "queue", + "mpmc", + "lock-free", + "producer", + "consumer" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "crossbeam-utils", + "version": "0.8.21", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Utilities for concurrent programming", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(crossbeam_loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "atomic_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/atomic_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cache_padded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/cache_padded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/parker.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sharded_lock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/sharded_lock.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "thread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/thread.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wait_group", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/wait_group.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "atomic_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/benches/atomic_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "loom": [ + "dep:loom" + ], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "algorithms", + "concurrency", + "data-structures", + "no-std" + ], + "keywords": [ + "scoped", + "thread", + "atomic", + "cache" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "crowdfunding-erc20", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crowdfunding_erc20", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/src/crowdfunding_erc20.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_erc20_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/tests/crowdfunding_erc20_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_erc20_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/tests/crowdfunding_erc20_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crowdfunding-erc20-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "crowdfunding-erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding-erc20-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crowdfunding-esdt", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crowdfunding_esdt", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/src/crowdfunding_esdt.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_esdt_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_esdt_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding_esdt_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crowdfunding-esdt-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "crowdfunding-esdt", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "crowdfunding-esdt-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-bubbles", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crypto_bubbles", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/src/crypto_bubbles.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crypto_bubbles_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/tests/crypto_bubbles_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crypto_bubbles_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/tests/crypto_bubbles_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-bubbles-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "crypto-bubbles", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "crypto-bubbles-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-common", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Common cryptographic traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "more_lengths" + ], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typenum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crypto_common", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "getrandom": [ + "rand_core/getrandom" + ], + "rand_core": [ + "dep:rand_core" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "traits" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits", + "homepage": null, + "documentation": "https://docs.rs/crypto-common", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-zombies", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crypto_zombies", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-zombies-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "crypto-zombies", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "crypto-zombies-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ctr", + "version": "0.9.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "CTR block modes of operation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "aes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "kuznyechik", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "magma", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ctr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "aes128", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/benches/aes128.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "cipher/alloc" + ], + "block-padding": [ + "cipher/block-padding" + ], + "std": [ + "cipher/std", + "alloc" + ], + "zeroize": [ + "cipher/zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "block-mode", + "stream-cipher", + "ciphers" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/block-modes", + "homepage": null, + "documentation": "https://docs.rs/ctr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "curve25519-dalek", + "version": "4.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", + "license": "BSD-3-Clause", + "license_file": null, + "description": "A pure-Rust implementation of group operations on ristretto255 and Curve25519", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "group", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "getrandom" + ], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "curve25519-dalek-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(not(curve25519_dalek_backend = \"fiat\"), not(curve25519_dalek_backend = \"serial\"), target_arch = \"x86_64\"))", + "registry": null + }, + { + "name": "fiat-crypto", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(curve25519_dalek_backend = \"fiat\")", + "registry": null + }, + { + "name": "cpufeatures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"x86_64\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "curve25519_dalek", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "dalek_benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/benches/dalek_benchmarks.rs", + "edition": "2021", + "required-features": [ + "alloc", + "rand_core" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "zeroize?/alloc" + ], + "default": [ + "alloc", + "precomputed-tables", + "zeroize" + ], + "digest": [ + "dep:digest" + ], + "ff": [ + "dep:ff" + ], + "group": [ + "dep:group", + "rand_core" + ], + "group-bits": [ + "group", + "ff/bits" + ], + "legacy_compatibility": [], + "precomputed-tables": [], + "rand_core": [ + "dep:rand_core" + ], + "serde": [ + "dep:serde" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "rand_core", + "digest", + "legacy_compatibility", + "group-bits" + ], + "rustdoc-args": [ + "--html-in-header", + "docs/assets/rustdoc-include-katex-header.html", + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Isis Lovecruft ", + "Henry de Valence " + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "cryptography", + "crypto", + "ristretto", + "curve25519", + "ristretto255" + ], + "readme": "README.md", + "repository": "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek", + "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", + "documentation": "https://docs.rs/curve25519-dalek", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "curve25519-dalek-derive", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "curve25519-dalek Derives", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.66", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.27", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "curve25519_dalek_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/dalek-cryptography/curve25519-dalek", + "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", + "documentation": "https://docs.rs/curve25519-dalek-derive", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "darling", + "version": "0.20.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", + "license": "MIT", + "license_file": null, + "description": "A proc-macro library for reading attributes into structs when\nimplementing custom derives.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "darling_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.20.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "darling_macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.20.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.86", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.15", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(compiletests)", + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.89", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(compiletests)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "darling", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "automatic_bounds", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/automatic_bounds.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "consume_fields", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/consume_fields.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "expr_with", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/expr_with.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "fallible_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/fallible_read.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "heterogeneous_enum_and_word", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/heterogeneous_enum_and_word.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "shorthand_or_long_field", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/shorthand_or_long_field.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "supports_struct", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/supports_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accrue_errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/accrue_errors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "attrs_with", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/attrs_with.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/compiletests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "computed_bound", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/computed_bound.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom_bound", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/custom_bound.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "data_with", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/data_with.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "defaults", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/defaults.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_newtype", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_newtype.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_struct", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_unit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_unit.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_error_accumulation", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten_error_accumulation.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_from_field", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten_from_field.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "forward_attrs_to_from_attributes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/forward_attrs_to_from_attributes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_meta.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_type_param", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_type_param.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_type_param_default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_type_param_default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_variant", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_variant.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "happy_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/happy_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/hash_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "meta_with", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/meta_with.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/multiple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "newtype", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/newtype.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "skip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/skip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spanned_value", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/spanned_value.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "split_declaration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/split_declaration.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "suggestions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/suggestions.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "supports", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/supports.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unsupported_attributes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/unsupported_attributes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "suggestions" + ], + "diagnostics": [ + "darling_core/diagnostics" + ], + "suggestions": [ + "darling_core/suggestions" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/TedDriggs/darling", + "homepage": null, + "documentation": "https://docs.rs/darling/0.20.11", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "darling_core", + "version": "0.20.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "license": "MIT", + "license_file": null, + "description": "Helper crate for proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ident_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.86", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strsim", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "darling_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_core-0.20.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "diagnostics": [], + "strsim": [ + "dep:strsim" + ], + "suggestions": [ + "strsim" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_core-0.20.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/TedDriggs/darling", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "darling_macro", + "version": "0.20.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", + "license": "MIT", + "license_file": null, + "description": "Internal support for a proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "darling_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.20.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "darling_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_macro-0.20.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_macro-0.20.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/TedDriggs/darling", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "dashmap", + "version": "6.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "license": "MIT", + "license_file": null, + "description": "Blazing fast concurrent HashMap for Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "raw" + ], + "target": null, + "registry": null + }, + { + "name": "lock_api", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.18.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.188", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "typesize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dashmap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "inline": [ + "hashbrown/inline-more" + ], + "raw-api": [], + "rayon": [ + "dep:rayon" + ], + "serde": [ + "dep:serde" + ], + "typesize": [ + "dep:typesize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "rayon", + "raw-api", + "serde" + ] + } + } + }, + "publish": null, + "authors": [ + "Acrimon " + ], + "categories": [ + "concurrency", + "algorithms", + "data-structures" + ], + "keywords": [ + "atomic", + "concurrent", + "hashmap" + ], + "readme": "README.md", + "repository": "https://github.com/xacrimon/dashmap", + "homepage": "https://github.com/xacrimon/dashmap", + "documentation": "https://docs.rs/dashmap", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "der", + "version": "0.7.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules\n(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with\nfull support for heapless no_std targets\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "const-oid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "der_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flagset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pem-rfc7468", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "der", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "datetime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/datetime.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pem", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/pem.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set_of", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/set_of.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "zeroize?/alloc" + ], + "arbitrary": [ + "dep:arbitrary", + "const-oid?/arbitrary", + "std" + ], + "bytes": [ + "dep:bytes", + "alloc" + ], + "derive": [ + "dep:der_derive" + ], + "flagset": [ + "dep:flagset" + ], + "oid": [ + "dep:const-oid" + ], + "pem": [ + "dep:pem-rfc7468", + "alloc", + "zeroize" + ], + "real": [], + "std": [ + "alloc" + ], + "time": [ + "dep:time" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "data-structures", + "encoding", + "no-std", + "parser-implementations" + ], + "keywords": [ + "asn1", + "crypto", + "itu", + "pkcs" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats/tree/master/der", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "derive_more", + "version": "0.99.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", + "license": "MIT", + "license_file": null, + "description": "Adds #[derive(x)] macros for more traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "peg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "derive_more", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deny_missing_docs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/examples/deny_missing_docs.rs", + "edition": "2018", + "required-features": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "from", + "from_str", + "index", + "index_mut", + "into", + "mul_assign", + "mul", + "not", + "try_into", + "is_variant" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "add", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/add.rs", + "edition": "2018", + "required-features": [ + "add" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "add_assign", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/add_assign.rs", + "edition": "2018", + "required-features": [ + "add_assign" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "as_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/as_mut.rs", + "edition": "2018", + "required-features": [ + "as_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "as_ref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/as_ref.rs", + "edition": "2018", + "required-features": [ + "as_ref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "boats_display_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/boats_display_derive.rs", + "edition": "2018", + "required-features": [ + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constructor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/constructor.rs", + "edition": "2018", + "required-features": [ + "constructor" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/deref.rs", + "edition": "2018", + "required-features": [ + "deref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deref_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/deref_mut.rs", + "edition": "2018", + "required-features": [ + "deref_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "display", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/display.rs", + "edition": "2018", + "required-features": [ + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/error_tests.rs", + "edition": "2018", + "required-features": [ + "error" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/from.rs", + "edition": "2018", + "required-features": [ + "from" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_str", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/from_str.rs", + "edition": "2018", + "required-features": [ + "from_str" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/generics.rs", + "edition": "2018", + "required-features": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "from", + "from_str", + "index", + "index_mut", + "into", + "mul_assign", + "mul", + "not", + "try_into", + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "index", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/index.rs", + "edition": "2018", + "required-features": [ + "index" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "index_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/index_mut.rs", + "edition": "2018", + "required-features": [ + "index_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "into", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/into.rs", + "edition": "2018", + "required-features": [ + "into" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "into_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/into_iterator.rs", + "edition": "2018", + "required-features": [ + "into_iterator" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "is_variant", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/is_variant.rs", + "edition": "2018", + "required-features": [ + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/lib.rs", + "edition": "2018", + "required-features": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "from", + "from_str", + "index", + "index_mut", + "into", + "mul_assign", + "mul", + "not", + "try_into", + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mul", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/mul.rs", + "edition": "2018", + "required-features": [ + "mul" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mul_assign", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/mul_assign.rs", + "edition": "2018", + "required-features": [ + "mul_assign" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/no_std.rs", + "edition": "2018", + "required-features": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "from", + "from_str", + "index", + "index_mut", + "into", + "mul_assign", + "mul", + "not", + "sum", + "try_into", + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "not", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/not.rs", + "edition": "2018", + "required-features": [ + "not" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sum", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/sum.rs", + "edition": "2018", + "required-features": [ + "sum" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_into", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/try_into.rs", + "edition": "2018", + "required-features": [ + "try_into" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unwrap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/unwrap.rs", + "edition": "2018", + "required-features": [ + "unwrap" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "add": [], + "add_assign": [], + "as_mut": [], + "as_ref": [], + "constructor": [], + "convert_case": [ + "dep:convert_case" + ], + "default": [ + "add_assign", + "add", + "as_mut", + "as_ref", + "constructor", + "deref", + "deref_mut", + "display", + "error", + "from", + "from_str", + "index", + "index_mut", + "into", + "into_iterator", + "iterator", + "mul_assign", + "mul", + "not", + "sum", + "try_into", + "is_variant", + "unwrap" + ], + "deref": [], + "deref_mut": [], + "display": [ + "syn/extra-traits" + ], + "error": [ + "syn/extra-traits" + ], + "from": [ + "syn/extra-traits" + ], + "from_str": [], + "generate-parsing-rs": [ + "peg" + ], + "index": [], + "index_mut": [], + "into": [ + "syn/extra-traits" + ], + "into_iterator": [], + "is_variant": [ + "convert_case" + ], + "iterator": [], + "mul": [ + "syn/extra-traits" + ], + "mul_assign": [ + "syn/extra-traits" + ], + "nightly": [], + "not": [ + "syn/extra-traits" + ], + "peg": [ + "dep:peg" + ], + "rustc_version": [ + "dep:rustc_version" + ], + "sum": [], + "testing-helpers": [ + "rustc_version" + ], + "track-caller": [], + "try_into": [ + "syn/extra-traits" + ], + "unwrap": [ + "convert_case", + "rustc_version" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jelte Fennema " + ], + "categories": [ + "development-tools", + "development-tools::procedural-macro-helpers", + "no-std" + ], + "keywords": [ + "derive", + "Add", + "From", + "Display", + "IntoIterator" + ], + "readme": "README.md", + "repository": "https://github.com/JelteF/derive_more", + "homepage": null, + "documentation": "https://jeltef.github.io/derive_more/derive_more/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "derive_more", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", + "license": "MIT", + "license_file": null, + "description": "Adds #[derive(x)] macros for more traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "derive_more-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.56", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "derive_more", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deny_missing_docs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/examples/deny_missing_docs.rs", + "edition": "2021", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "add", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/add.rs", + "edition": "2021", + "required-features": [ + "add" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "add_assign", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/add_assign.rs", + "edition": "2021", + "required-features": [ + "add_assign" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "as_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/as_mut.rs", + "edition": "2021", + "required-features": [ + "as_ref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "as_ref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/as_ref.rs", + "edition": "2021", + "required-features": [ + "as_ref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "boats_display_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/boats_display_derive.rs", + "edition": "2021", + "required-features": [ + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compile_fail", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/compile_fail/mod.rs", + "edition": "2021", + "required-features": [ + "as_ref", + "debug", + "display", + "from", + "into", + "is_variant", + "try_from" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constructor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/constructor.rs", + "edition": "2021", + "required-features": [ + "constructor" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/debug.rs", + "edition": "2021", + "required-features": [ + "debug" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/deref.rs", + "edition": "2021", + "required-features": [ + "deref" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deref_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/deref_mut.rs", + "edition": "2021", + "required-features": [ + "deref_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "display", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/display.rs", + "edition": "2021", + "required-features": [ + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/error_tests.rs", + "edition": "2021", + "required-features": [ + "error" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/from.rs", + "edition": "2021", + "required-features": [ + "from" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_str", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/from_str.rs", + "edition": "2021", + "required-features": [ + "from_str" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/generics.rs", + "edition": "2021", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "index", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/index.rs", + "edition": "2021", + "required-features": [ + "index" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "index_mut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/index_mut.rs", + "edition": "2021", + "required-features": [ + "index_mut" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "into", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/into.rs", + "edition": "2021", + "required-features": [ + "into" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "into_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/into_iterator.rs", + "edition": "2021", + "required-features": [ + "into_iterator" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "is_variant", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/is_variant.rs", + "edition": "2021", + "required-features": [ + "is_variant" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/lib.rs", + "edition": "2021", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mul", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/mul.rs", + "edition": "2021", + "required-features": [ + "mul" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mul_assign", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/mul_assign.rs", + "edition": "2021", + "required-features": [ + "mul_assign" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/no_std.rs", + "edition": "2021", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "not", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/not.rs", + "edition": "2021", + "required-features": [ + "not" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sum", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/sum.rs", + "edition": "2021", + "required-features": [ + "sum" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_from.rs", + "edition": "2021", + "required-features": [ + "try_from" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_into", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_into.rs", + "edition": "2021", + "required-features": [ + "try_into" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_unwrap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_unwrap.rs", + "edition": "2021", + "required-features": [ + "try_unwrap" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unwrap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/unwrap.rs", + "edition": "2021", + "required-features": [ + "unwrap" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "add": [ + "derive_more-impl/add" + ], + "add_assign": [ + "derive_more-impl/add_assign" + ], + "as_ref": [ + "derive_more-impl/as_ref" + ], + "constructor": [ + "derive_more-impl/constructor" + ], + "debug": [ + "derive_more-impl/debug" + ], + "default": [ + "std" + ], + "deref": [ + "derive_more-impl/deref" + ], + "deref_mut": [ + "derive_more-impl/deref_mut" + ], + "display": [ + "derive_more-impl/display" + ], + "error": [ + "derive_more-impl/error" + ], + "from": [ + "derive_more-impl/from" + ], + "from_str": [ + "derive_more-impl/from_str" + ], + "full": [ + "add", + "add_assign", + "as_ref", + "constructor", + "debug", + "deref", + "deref_mut", + "display", + "error", + "from", + "from_str", + "index", + "index_mut", + "into", + "into_iterator", + "is_variant", + "mul", + "mul_assign", + "not", + "sum", + "try_from", + "try_into", + "try_unwrap", + "unwrap" + ], + "index": [ + "derive_more-impl/index" + ], + "index_mut": [ + "derive_more-impl/index_mut" + ], + "into": [ + "derive_more-impl/into" + ], + "into_iterator": [ + "derive_more-impl/into_iterator" + ], + "is_variant": [ + "derive_more-impl/is_variant" + ], + "mul": [ + "derive_more-impl/mul" + ], + "mul_assign": [ + "derive_more-impl/mul_assign" + ], + "not": [ + "derive_more-impl/not" + ], + "std": [], + "sum": [ + "derive_more-impl/sum" + ], + "testing-helpers": [ + "derive_more-impl/testing-helpers", + "dep:rustc_version" + ], + "try_from": [ + "derive_more-impl/try_from" + ], + "try_into": [ + "derive_more-impl/try_into" + ], + "try_unwrap": [ + "derive_more-impl/try_unwrap" + ], + "unwrap": [ + "derive_more-impl/unwrap" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "full" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Jelte Fennema " + ], + "categories": [ + "development-tools", + "development-tools::procedural-macro-helpers", + "no-std", + "rust-patterns" + ], + "keywords": [ + "derive", + "Add", + "From", + "Display", + "IntoIterator" + ], + "readme": "README.md", + "repository": "https://github.com/JelteF/derive_more", + "homepage": null, + "documentation": "https://docs.rs/derive_more", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.75.0" + }, + { + "name": "derive_more-impl", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", + "license": "MIT", + "license_file": null, + "description": "Internal implementation of `derive_more` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.45", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-xid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "derive_more_impl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "add": [], + "add_assign": [], + "as_ref": [ + "syn/extra-traits", + "syn/visit" + ], + "constructor": [], + "debug": [ + "syn/extra-traits", + "dep:unicode-xid" + ], + "default": [], + "deref": [], + "deref_mut": [], + "display": [ + "syn/extra-traits", + "dep:unicode-xid" + ], + "error": [ + "syn/extra-traits" + ], + "from": [ + "syn/extra-traits" + ], + "from_str": [], + "full": [ + "add", + "add_assign", + "as_ref", + "constructor", + "debug", + "deref", + "deref_mut", + "display", + "error", + "from", + "from_str", + "index", + "index_mut", + "into", + "into_iterator", + "is_variant", + "mul", + "mul_assign", + "not", + "sum", + "try_from", + "try_into", + "try_unwrap", + "unwrap" + ], + "index": [], + "index_mut": [], + "into": [ + "syn/extra-traits" + ], + "into_iterator": [], + "is_variant": [ + "dep:convert_case" + ], + "mul": [ + "syn/extra-traits" + ], + "mul_assign": [ + "syn/extra-traits" + ], + "not": [ + "syn/extra-traits" + ], + "sum": [], + "testing-helpers": [ + "dep:rustc_version" + ], + "try_from": [], + "try_into": [ + "syn/extra-traits" + ], + "try_unwrap": [ + "dep:convert_case" + ], + "unwrap": [ + "dep:convert_case" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-1.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "full" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Jelte Fennema " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/JelteF/derive_more", + "homepage": null, + "documentation": "https://docs.rs/derive_more", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.75.0" + }, + { + "name": "digest", + "version": "0.10.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Traits for cryptographic hash functions and message authentication codes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "blobby", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "block-buffer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "const-oid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crypto-common", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "digest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "blobby": [ + "dep:blobby" + ], + "block-buffer": [ + "dep:block-buffer" + ], + "const-oid": [ + "dep:const-oid" + ], + "core-api": [ + "block-buffer" + ], + "default": [ + "core-api" + ], + "dev": [ + "blobby" + ], + "mac": [ + "subtle" + ], + "oid": [ + "const-oid" + ], + "rand_core": [ + "crypto-common/rand_core" + ], + "std": [ + "alloc", + "crypto-common/std" + ], + "subtle": [ + "dep:subtle" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "digest", + "crypto", + "hash" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits", + "homepage": null, + "documentation": "https://docs.rs/digest", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "digital-cash", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "digital_cash", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/src/digital_cash.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "digital_cash_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/tests/digital_cash_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "digital_cash_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/tests/digital_cash_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Valentin Craciun" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "digital-cash-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "digital-cash", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "digital-cash-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "displaydoc", + "version": "0.2.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.24", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "displaydoc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compile_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/compile_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "happy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/happy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "num_in_field", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/num_in_field.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "variantless", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/variantless.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "no-dev-version": true, + "pre-release-hook": [ + "./update-readme.sh" + ], + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "#![doc(html_root_url = \"https://docs.rs/{{crate_name}}/{{version}}\")]", + "search": "#!\\[doc\\(html_root_url.*" + }, + { + "file": "CHANGELOG.md", + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n\n# [Unreleased] - ReleaseDate", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/yaahc/{{crate_name}}/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Jane Lusby " + ], + "categories": [], + "keywords": [ + "display", + "derive" + ], + "readme": "README.md", + "repository": "https://github.com/yaahc/displaydoc", + "homepage": "https://github.com/yaahc/displaydoc", + "documentation": "https://docs.rs/displaydoc", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "dynasm", + "version": "1.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "license": "MPL-2.0", + "license_file": null, + "description": "A plugin for assembling code at runtime. Combined with the runtime crate dynasmrt it can be used to write JIT compilers easily.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro-error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.26", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "dynasm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-1.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "dynasm_extract": [], + "dynasm_opmap": [], + "filelocal": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-1.2.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alexander Stocko ", + "CensoredUsername " + ], + "categories": [], + "keywords": [ + "jit", + "dynasm", + "dynasmrt", + "dynasm-rs", + "assembler" + ], + "readme": "../README.md", + "repository": "https://github.com/CensoredUsername/dynasm-rs", + "homepage": null, + "documentation": "https://censoredusername.github.io/dynasm-rs/plugin/dynasm/index.html", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dynasmrt", + "version": "1.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "license": "MPL-2.0", + "license_file": null, + "description": "A simple runtime for assembling code at runtime. Combined with the plugin crate dynasm it can be used to write JIT compilers easily.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dynasm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memmap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dynasmrt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-1.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-1.2.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alexander Stocko ", + "CensoredUsername " + ], + "categories": [], + "keywords": [ + "jit", + "dynasm", + "dynasmrt", + "dynasm-rs", + "assembler" + ], + "readme": "../README.md", + "repository": "https://github.com/CensoredUsername/dynasm-rs", + "homepage": null, + "documentation": "https://censoredusername.github.io/dynasm-rs/plugin/dynasm/index.html", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ed25519", + "version": "2.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)\nsupport library providing signature type definitions and PKCS#8 private key\ndecoding/encoding support\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "pkcs8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "signature", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ed25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rand_core" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "ring-compat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "signature" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ed25519", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/hex.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pkcs8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/pkcs8.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "pkcs8?/alloc" + ], + "default": [ + "std" + ], + "pem": [ + "alloc", + "pkcs8/pem" + ], + "pkcs8": [ + "dep:pkcs8" + ], + "serde": [ + "dep:serde" + ], + "serde_bytes": [ + "serde", + "dep:serde_bytes" + ], + "std": [ + "pkcs8?/std", + "signature/std" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "curve25519", + "ecc", + "signature", + "signing" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/signatures/tree/master/ed25519", + "homepage": null, + "documentation": "https://docs.rs/ed25519", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "ed25519-dalek", + "version": "2.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "curve25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "digest" + ], + "target": null, + "registry": null + }, + { + "name": "ed25519", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=2.2, <2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "merlin", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "signature", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=2.0, <2.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "blake2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "curve25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "digest", + "rand_core" + ], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "x25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "static_secrets" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ed25519_dalek", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ed25519", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/ed25519.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pkcs8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/pkcs8.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "validation_criteria", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/validation_criteria.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "x25519", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/x25519.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ed25519_benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/benches/ed25519_benchmarks.rs", + "edition": "2021", + "required-features": [ + "rand_core" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "curve25519-dalek/alloc", + "ed25519/alloc", + "serde?/alloc", + "zeroize/alloc" + ], + "asm": [ + "sha2/asm" + ], + "batch": [ + "alloc", + "merlin", + "rand_core" + ], + "default": [ + "fast", + "std", + "zeroize" + ], + "digest": [ + "signature/digest" + ], + "fast": [ + "curve25519-dalek/precomputed-tables" + ], + "hazmat": [], + "legacy_compatibility": [ + "curve25519-dalek/legacy_compatibility" + ], + "merlin": [ + "dep:merlin" + ], + "pem": [ + "alloc", + "ed25519/pem", + "pkcs8" + ], + "pkcs8": [ + "ed25519/pkcs8" + ], + "rand_core": [ + "dep:rand_core" + ], + "serde": [ + "dep:serde", + "ed25519/serde" + ], + "signature": [ + "dep:signature" + ], + "std": [ + "alloc", + "ed25519/std", + "serde?/std", + "sha2/std" + ], + "zeroize": [ + "dep:zeroize", + "curve25519-dalek/zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "batch", + "digest", + "hazmat", + "pem", + "serde" + ], + "rustdoc-args": [ + "--html-in-header", + "docs/assets/rustdoc-include-katex-header.html", + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "isis lovecruft ", + "Tony Arcieri ", + "Michael Rosenberg " + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "cryptography", + "ed25519", + "curve25519", + "signature", + "ECC" + ], + "readme": "README.md", + "repository": "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/ed25519-dalek", + "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", + "documentation": "https://docs.rs/ed25519-dalek", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "either", + "version": "1.15.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.95", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "either", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + }, + "release": { + "allow-branch": [ + "main" + ], + "sign-tag": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "data-structure", + "no_std" + ], + "readme": "README-crates.io.md", + "repository": "https://github.com/rayon-rs/either", + "homepage": null, + "documentation": "https://docs.rs/either/1/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "empty", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "empty", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/src/empty.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "empty_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/tests/empty_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "empty_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/tests/empty_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "empty-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "empty", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "empty-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "encoding_rs", + "version": "0.8.35", + "id": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", + "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", + "license_file": null, + "description": "A Gecko-oriented implementation of the Encoding Standard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "any_all_workaround", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "encoding_rs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "any_all_workaround": [ + "dep:any_all_workaround" + ], + "default": [ + "alloc" + ], + "fast-big5-hanzi-encode": [], + "fast-gb-hanzi-encode": [], + "fast-hangul-encode": [], + "fast-hanja-encode": [], + "fast-kanji-encode": [], + "fast-legacy-encode": [ + "fast-hangul-encode", + "fast-hanja-encode", + "fast-kanji-encode", + "fast-gb-hanzi-encode", + "fast-big5-hanzi-encode" + ], + "less-slow-big5-hanzi-encode": [], + "less-slow-gb-hanzi-encode": [], + "less-slow-kanji-encode": [], + "serde": [ + "dep:serde" + ], + "simd-accel": [ + "any_all_workaround" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Henri Sivonen " + ], + "categories": [ + "text-processing", + "encoding", + "web-programming", + "internationalization" + ], + "keywords": [ + "encoding", + "web", + "unicode", + "charset" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/encoding_rs", + "homepage": "https://docs.rs/encoding_rs/", + "documentation": "https://docs.rs/encoding_rs/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "endian-type", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", + "license": "MIT", + "license_file": null, + "description": "Type safe wrappers for types with a defined byte order", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "endian_type", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endian-type-0.1.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endian-type-0.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Lolirofle " + ], + "categories": [], + "keywords": [ + "endian", + "byteorder" + ], + "readme": null, + "repository": "https://github.com/Lolirofle/endian-type.git", + "homepage": "https://github.com/Lolirofle/endian-type", + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "enum-iterator", + "version": "0.7.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "license": "0BSD", + "license_file": null, + "description": "Tools to iterate over the variants of a field-less enum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "enum-iterator-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "enum_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-0.7.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-0.7.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Stephane Raux " + ], + "categories": [], + "keywords": [ + "enum", + "variants", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/stephaneyfx/enum-iterator.git", + "homepage": "https://github.com/stephaneyfx/enum-iterator", + "documentation": "https://docs.rs/enum-iterator", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "enum-iterator-derive", + "version": "0.7.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", + "license": "0BSD", + "license_file": null, + "description": "Procedural macro to iterate over the variants of a field-less enum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "enum_iterator_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-derive-0.7.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-derive-0.7.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Stephane Raux " + ], + "categories": [], + "keywords": [ + "enum", + "variants", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/stephaneyfx/enum-iterator.git", + "homepage": "https://github.com/stephaneyfx/enum-iterator", + "documentation": "https://docs.rs/enum-iterator-derive", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "enumset", + "version": "1.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A library for creating compact sets of enums.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "enumset_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "serde2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "i128" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "enumset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "conversions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/conversions.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ops", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/ops.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "repr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/repr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "proc-macro-crate": [ + "enumset_derive/proc-macro-crate" + ], + "serde": [ + "serde2", + "enumset_derive/serde" + ], + "serde2": [ + "dep:serde2" + ], + "std": [ + "alloc", + "enumset_derive/proc-macro-crate", + "enumset_derive/std_deprecation_warning" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Alissa Rao " + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "enum", + "bitset" + ], + "readme": "README.md", + "repository": "https://github.com/Lymia/enumset", + "homepage": null, + "documentation": "https://docs.rs/enumset/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "enumset_derive", + "version": "0.10.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "An internal helper crate for enumset. Not public API.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "darling", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro-crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "enumset_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset_derive-0.10.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "proc-macro-crate": [ + "dep:proc-macro-crate" + ], + "serde": [], + "std_deprecation_warning": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset_derive-0.10.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alissa Rao " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/Lymia/enumset", + "homepage": null, + "documentation": "https://lymia.moe/doc/enumset/enumset/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "env_filter", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Filter log events using environment variables\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "perf" + ], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "env_filter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-0.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "regex" + ], + "regex": [ + "dep:regex" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-0.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "logging", + "log", + "logger" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/env_logger", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "env_logger", + "version": "0.11.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A logging implementation for `log` which is configured via an environment\nvariable.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "wincon" + ], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_filter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "env_logger", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_default_format", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/custom_default_format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_format", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/custom_format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "direct_logger", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/direct_logger.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "filters_from_code", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/filters_from_code.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "in_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/in_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "syslog_friendly_format", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/syslog_friendly_format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "init-twice-retains-filter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/init-twice-retains-filter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "log-in-log", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/log-in-log.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "log_tls_dtors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/log_tls_dtors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regexp_filter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/regexp_filter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "auto-color": [ + "color", + "anstream/auto" + ], + "color": [ + "dep:anstream", + "dep:anstyle" + ], + "default": [ + "auto-color", + "humantime", + "regex" + ], + "humantime": [ + "dep:jiff" + ], + "kv": [ + "log/kv" + ], + "regex": [ + "env_filter/regex" + ], + "unstable-kv": [ + "kv" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "logging", + "log", + "logger" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/env_logger", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "equivalent", + "version": "1.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Traits for key comparison in maps.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "equivalent", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hashmap", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/indexmap-rs/equivalent", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.6" + }, + { + "name": "erc1155", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "erc1155-user-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc1155", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/src/erc1155.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/tests/erc1155_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/tests/erc1155_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-marketplace", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc1155", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc1155_marketplace", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155_marketplace_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/tests/erc1155_marketplace_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155_marketplace_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/tests/erc1155_marketplace_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-marketplace-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc1155-marketplace", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155-marketplace-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc1155", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-user-mock", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc1155_user_mock", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc1155-user-mock-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc1155-user-mock", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc1155-user-mock-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc20", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc20", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/src/erc20.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc20_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/tests/erc20_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "erc20_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/tests/erc20_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc20-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc20-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc721", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "erc721", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/src/erc721.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/tests/nft_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/tests/nft_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "erc721-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc721", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "erc721-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "errno", + "version": "0.3.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Cross-platform interface to the `errno` variable.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"hermit\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Diagnostics_Debug" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "errno", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.11/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "libc/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Chris Wong ", + "Dan Gohman " + ], + "categories": [ + "no-std", + "os" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/lambda-fairy/rust-errno", + "homepage": null, + "documentation": "https://docs.rs/errno", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "esdt-contract-pair", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "first-contract", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "second-contract", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract" + } + ], + "targets": [ + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "esdt-system-sc-mock", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "esdt_system_sc_mock", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/src/esdt_system_sc_mock.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_system_sc_mock_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/tests/esdt_system_sc_mock_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_system_sc_mock_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/tests/esdt_system_sc_mock_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "esdt-system-sc-mock-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "esdt-system-sc-mock-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "esdt-transfer-with-fee", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "esdt_transfer_with_fee", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/src/esdt_transfer_with_fee.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_transfer_with_fee_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/tests/esdt_transfer_with_fee_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_transfer_with_fee_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/tests/esdt_transfer_with_fee_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin Cruceat " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "esdt-transfer-with-fee-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "esdt-transfer-with-fee", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "esdt-transfer-with-fee-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "exchange-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "exchange_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/src/exchange_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "exchange_features_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/tests/exchange_features_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Alin-Marius Cruceat " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "exchange-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "exchange-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "exchange-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "factorial", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmer-experimental" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "factorial", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/src/factorial.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "factorial_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "factorial_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "factorial_scenario_rs_wasmer_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_rs_wasmer_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "factorial_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "run-go-tests": [ + "multiversx-sc-scenario/run-go-tests" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "factorial-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "factorial", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "factorial-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "factory-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "order-book-factory", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "factory-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fallible-iterator", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Fallible iterator traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fallible_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/sfackler/rust-fallible-iterator", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fastrand", + "version": "2.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple and fast random number generator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wyhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "js" + ], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fastrand", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "char", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/tests/char.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/tests/smoke.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "getrandom": [ + "dep:getrandom" + ], + "js": [ + "std", + "getrandom" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Stjepan Glavina " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "simple", + "fast", + "rand", + "random", + "wyrand" + ], + "readme": "README.md", + "repository": "https://github.com/smol-rs/fastrand", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "filetime", + "version": "0.2.25", + "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Platform-agnostic accessors of timestamps in File metadata\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libredox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"redox\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.27", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Storage_FileSystem" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "filetime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.25/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.25/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "timestamp", + "mtime" + ], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/filetime", + "homepage": "https://github.com/alexcrichton/filetime", + "documentation": "https://docs.rs/filetime", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "first-contract", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "first_contract", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "first-contract-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "first-contract", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "first-contract-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "flate2", + "version": "1.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams.\nSupports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,\nand raw deflate streams.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cloudflare-zlib-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libz-ng-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libz-rs-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "rust-allocator" + ], + "target": null, + "registry": null + }, + { + "name": "libz-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "with-alloc" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "with-alloc" + ], + "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "flate2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "compress_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/compress_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decompress_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/decompress_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflatedecoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflatedecoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflatedecoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflateencoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflateencoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflateencoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzbuilder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzbuilder.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzdecoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzdecoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzdecoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzencoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzencoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzencoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzmultidecoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzmultidecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzmultidecoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzmultidecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibdecoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibdecoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibdecoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibencoder-bufread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibencoder-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibencoder-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "early-flush", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/early-flush.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "empty-read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/empty-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gunzip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/gunzip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zero-write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/zero-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "any_impl": [], + "any_zlib": [ + "any_impl" + ], + "cloudflare-zlib-sys": [ + "dep:cloudflare-zlib-sys" + ], + "cloudflare_zlib": [ + "any_zlib", + "cloudflare-zlib-sys" + ], + "default": [ + "rust_backend" + ], + "libz-ng-sys": [ + "dep:libz-ng-sys" + ], + "libz-rs-sys": [ + "dep:libz-rs-sys" + ], + "libz-sys": [ + "dep:libz-sys" + ], + "miniz-sys": [ + "rust_backend" + ], + "miniz_oxide": [ + "dep:miniz_oxide" + ], + "rust_backend": [ + "miniz_oxide", + "any_impl" + ], + "zlib": [ + "any_zlib", + "libz-sys" + ], + "zlib-default": [ + "any_zlib", + "libz-sys/default" + ], + "zlib-ng": [ + "any_zlib", + "libz-ng-sys" + ], + "zlib-ng-compat": [ + "zlib", + "libz-sys/zlib-ng" + ], + "zlib-rs": [ + "any_zlib", + "libz-rs-sys" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton ", + "Josh Triplett " + ], + "categories": [ + "compression", + "api-bindings" + ], + "keywords": [ + "gzip", + "deflate", + "zlib", + "zlib-ng", + "encoding" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/flate2-rs", + "homepage": "https://github.com/rust-lang/flate2-rs", + "documentation": "https://docs.rs/flate2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.67.0" + }, + { + "name": "fnv", + "version": "1.0.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "license": "Apache-2.0 / MIT", + "license_file": null, + "description": "Fowler–Noll–Vo hash function", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fnv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/servo/rust-fnv", + "homepage": null, + "documentation": "https://doc.servo.org/fnv/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "foldhash", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", + "license": "Zlib", + "license_file": null, + "description": "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "foldhash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Orson Peters " + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "hash", + "hasher", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/orlp/foldhash", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "foreign-types", + "version": "0.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A framework for Rust wrappers over C APIs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "foreign-types-shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "foreign_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/sfackler/foreign-types", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "foreign-types-shared", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "An internal crate used by foreign-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "foreign_types_shared", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/sfackler/foreign-types", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "form_urlencoded", + "version": "1.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "form_urlencoded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + } + ], + "features": { + "alloc": [ + "percent-encoding/alloc" + ], + "default": [ + "std" + ], + "std": [ + "alloc", + "percent-encoding/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "no_std" + ], + "keywords": [], + "readme": null, + "repository": "https://github.com/servo/rust-url", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.51" + }, + { + "name": "formatted-message-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "formatted_message_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/src/formatted_message_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "msg_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "msg_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "msg_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "formatted-message-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "formatted-message-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "formatted-message-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/src/forwarder_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "forwarder", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder_interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/src/interact.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/src/interactor_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "interact_cs_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/interact_cs_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "interact_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/interact_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenarios_go_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/scenarios_go_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-legacy", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder_legacy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/src/forwarder_legacy_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-legacy-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "forwarder-legacy", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-legacy-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "forwarder", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-queue", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-wasm-adapter", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder_queue", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/src/forwarder_queue.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "multiversx-sc-wasm-adapter": [ + "dep:multiversx-sc-wasm-adapter" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Costin Carabas " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-queue-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "forwarder-queue", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-queue-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-raw", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "forwarder_raw", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/src/forwarder_raw.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "forwarder-raw-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "forwarder-raw", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "forwarder-raw-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fractional-nfts", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fractional_nfts", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/src/fractional_nfts.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fractional-nfts-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "fractional-nfts", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "fractional-nfts-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "funty", + "version": "2.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#funty@2.0.0", + "license": "MIT", + "license_file": null, + "description": "Trait generalization over the primitive types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "funty", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/funty-2.0.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/funty-2.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "myrrlyn " + ], + "categories": [ + "no-std", + "rust-patterns" + ], + "keywords": [ + "numerics", + "primitives", + "traits" + ], + "readme": "README.md", + "repository": "https://github.com/myrrlyn/funty", + "homepage": null, + "documentation": "https://docs.rs/funty", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "futures", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "sink" + ], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-executor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-task", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "sink" + ], + "target": null, + "registry": null + }, + { + "name": "assert_matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "_require_features", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/_require_features.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async_await_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/async_await_macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "auto_traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/auto_traits.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bilock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/bilock.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/compat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "eager_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/eager_drop.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "eventual", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/eventual.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_abortable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_abortable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_basic_combinators", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_basic_combinators.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_fuse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_fuse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_inspect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_inspect.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_join_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_join_all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_obj", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_obj.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_select_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_select_all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_select_ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_select_ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_shared", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_shared.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_try_flatten_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_try_flatten_stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_try_join_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_try_join_all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_buf_reader", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_buf_reader.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_buf_writer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_buf_writer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_cursor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_cursor.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_line_writer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_line_writer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_lines", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_lines.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_exact", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_exact.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_line", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_line.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_to_end", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_to_end.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_to_string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_to_string.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_until", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_until.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_window", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_window.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lock_mutex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/lock_mutex.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro_comma_support", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/macro_comma_support.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "object_safety", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/object_safety.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "oneshot", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/oneshot.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ready_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/ready_queue.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "recurse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/recurse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sink", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/sink.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sink_fanout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/sink_fanout.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_abortable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_abortable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_buffer_unordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_buffer_unordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_catch_unwind", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_catch_unwind.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_futures_ordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_futures_ordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_futures_unordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_futures_unordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_into_async_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_into_async_read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_peekable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_peekable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_select_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_select_all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_select_next_some", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_select_next_some.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_split.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_try_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_try_stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_unfold", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_unfold.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_arc_wake", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/task_arc_wake.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_atomic_waker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/task_atomic_waker.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/test_macro.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/try_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "futures-core/alloc", + "futures-task/alloc", + "futures-sink/alloc", + "futures-channel/alloc", + "futures-util/alloc" + ], + "async-await": [ + "futures-util/async-await", + "futures-util/async-await-macro" + ], + "bilock": [ + "futures-util/bilock" + ], + "cfg-target-has-atomic": [], + "compat": [ + "std", + "futures-util/compat" + ], + "default": [ + "std", + "async-await", + "executor" + ], + "executor": [ + "std", + "futures-executor/std" + ], + "futures-executor": [ + "dep:futures-executor" + ], + "io-compat": [ + "compat", + "futures-util/io-compat" + ], + "std": [ + "alloc", + "futures-core/std", + "futures-task/std", + "futures-io/std", + "futures-sink/std", + "futures-util/std", + "futures-util/io", + "futures-util/channel" + ], + "thread-pool": [ + "executor", + "futures-executor/thread-pool" + ], + "unstable": [ + "futures-core/unstable", + "futures-task/unstable", + "futures-channel/unstable", + "futures-io/unstable", + "futures-util/unstable" + ], + "write-all-vectored": [ + "futures-util/write-all-vectored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "std", + "async-await", + "compat", + "io-compat", + "executor", + "thread-pool" + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "asynchronous" + ], + "keywords": [ + "futures", + "async", + "future" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-channel", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Channels for asynchronous communication using futures-rs.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_channel", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "channel", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/channel.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mpsc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mpsc-close", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc-close.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mpsc-size_hint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc-size_hint.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "oneshot", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/oneshot.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mpsc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/benches/sync_mpsc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "futures-core/alloc" + ], + "cfg-target-has-atomic": [], + "default": [ + "std" + ], + "futures-sink": [ + "dep:futures-sink" + ], + "sink": [ + "futures-sink" + ], + "std": [ + "alloc", + "futures-core/std" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-core", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The core traits and types in for the `futures` library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "require-cas" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "cfg-target-has-atomic": [], + "default": [ + "std" + ], + "portable-atomic": [ + "dep:portable-atomic" + ], + "std": [ + "alloc" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "futures-executor", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Executors for asynchronous tasks based on the futures-rs library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-task", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_executor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "local_pool", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/tests/local_pool.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "thread_notify", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/benches/thread_notify.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "num_cpus": [ + "dep:num_cpus" + ], + "std": [ + "futures-core/std", + "futures-task/std", + "futures-util/std" + ], + "thread-pool": [ + "std", + "num_cpus" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-io", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_io", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "futures-macro", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The futures-rs procedural macro implementations.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "futures_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-sink", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The asynchronous `Sink` trait for the futures-rs library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_sink", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "futures-task", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Tools for working with tasks.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_task", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "cfg-target-has-atomic": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "futures-util", + "version": "0.3.31", + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Common utilities and extension traits for the futures-rs library.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "futures-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-task", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.25", + "kind": null, + "rename": "futures_01", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "futures_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bilock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/bilock.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_unordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/flatten_unordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "futures_unordered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/futures_unordered.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "select", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/select.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "futures-core/alloc", + "futures-task/alloc" + ], + "async-await": [], + "async-await-macro": [ + "async-await", + "futures-macro" + ], + "bilock": [], + "cfg-target-has-atomic": [], + "channel": [ + "std", + "futures-channel" + ], + "compat": [ + "std", + "futures_01" + ], + "default": [ + "std", + "async-await", + "async-await-macro" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "futures-io": [ + "dep:futures-io" + ], + "futures-macro": [ + "dep:futures-macro" + ], + "futures-sink": [ + "dep:futures-sink" + ], + "futures_01": [ + "dep:futures_01" + ], + "io": [ + "std", + "futures-io", + "memchr" + ], + "io-compat": [ + "io", + "compat", + "tokio-io" + ], + "memchr": [ + "dep:memchr" + ], + "portable-atomic": [ + "futures-core/portable-atomic" + ], + "sink": [ + "futures-sink" + ], + "slab": [ + "dep:slab" + ], + "std": [ + "alloc", + "futures-core/std", + "futures-task/std", + "slab" + ], + "tokio-io": [ + "dep:tokio-io" + ], + "unstable": [ + "futures-core/unstable", + "futures-task/unstable" + ], + "write-all-vectored": [ + "io" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/futures-rs", + "homepage": "https://rust-lang.github.io/futures-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "gas-schedule-generator", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-vm", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm" + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gas_schedule_generator", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "gas-schedule-generator", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generation_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/tests/generation_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "generic-array", + "version": "0.14.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "license": "MIT", + "license_file": null, + "description": "Generic types implementing functionality of arrays", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typenum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "generic_array", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "more_lengths": [], + "serde": [ + "dep:serde" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "zeroize" + ] + } + } + }, + "publish": null, + "authors": [ + "Bartłomiej Kamiński ", + "Aaron Trent " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "generic", + "array" + ], + "readme": "README.md", + "repository": "https://github.com/fizyk20/generic-array.git", + "homepage": null, + "documentation": "http://fizyk20.github.io/generic-array/generic_array/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "generic-array", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", + "license": "MIT", + "license_file": null, + "description": "Generic types implementing functionality of arrays", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "const-default", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "faster-hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typenum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "const-generics" + ], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "generic_array", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-1.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "const-default": [ + "dep:const-default" + ], + "faster-hex": [ + "dep:faster-hex" + ], + "internals": [], + "serde": [ + "dep:serde" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-1.2.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "zeroize", + "const-default", + "alloc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "all-features": true + } + }, + "publish": null, + "authors": [ + "Bartłomiej Kamiński ", + "Aaron Trent " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "generic", + "array" + ], + "readme": "README.md", + "repository": "https://github.com/fizyk20/generic-array.git", + "homepage": null, + "documentation": "https://fizyk20.github.io/generic-array/generic_array/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.83" + }, + { + "name": "getrandom", + "version": "0.2.16", + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A small cross-platform library for retrieving random data from system source", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.62", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "getrandom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/custom.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "normal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/normal.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rdrand", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/rdrand.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/benches/buffer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "custom": [], + "js": [ + "wasm-bindgen", + "js-sys" + ], + "js-sys": [ + "dep:js-sys" + ], + "linux_disable_fallback": [], + "rdrand": [], + "rustc-dep-of-std": [ + "compiler_builtins", + "core", + "libc/rustc-dep-of-std", + "wasi/rustc-dep-of-std" + ], + "std": [], + "test-in-browser": [], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/Cargo.toml", + "metadata": { + "cross": { + "target": { + "x86_64-unknown-netbsd": { + "pre-build": [ + "mkdir -p /tmp/netbsd", + "curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O", + "tar -C /tmp/netbsd -xJf base.tar.xz", + "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", + "rm base.tar.xz", + "rm -rf /tmp/netbsd" + ] + } + } + }, + "docs": { + "rs": { + "features": [ + "std", + "custom" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers" + ], + "categories": [ + "os", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-random/getrandom", + "homepage": null, + "documentation": "https://docs.rs/getrandom", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "getrandom", + "version": "0.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A small cross-platform library for retrieving random data from system source", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.98", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\")))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\")))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.77", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\"), target_feature = \"atomics\"))", + "registry": null + }, + { + "name": "wasi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))", + "registry": null + }, + { + "name": "r-efi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^5.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"netbsd\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"solaris\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.154", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"vxworks\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "getrandom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/benches/buffer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "rustc-dep-of-std": [ + "dep:compiler_builtins", + "dep:core" + ], + "std": [], + "wasm_js": [ + "dep:wasm-bindgen", + "dep:js-sys" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/Cargo.toml", + "metadata": { + "cross": { + "target": { + "x86_64-unknown-netbsd": { + "pre-build": [ + "mkdir -p /tmp/netbsd", + "curl -fO https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.3/amd64/binary/sets/base.tar.xz", + "tar -C /tmp/netbsd -xJf base.tar.xz", + "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", + "rm base.tar.xz", + "rm -rf /tmp/netbsd" + ] + } + } + }, + "docs": { + "rs": { + "features": [ + "std" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers" + ], + "categories": [ + "os", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-random/getrandom", + "homepage": null, + "documentation": "https://docs.rs/getrandom", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "gimli", + "version": "0.28.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library for reading and writing the DWARF debugging format.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fallible-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-assembler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gimli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.28.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "read-all", + "write" + ], + "endian-reader": [ + "read", + "dep:stable_deref_trait" + ], + "fallible-iterator": [ + "dep:fallible-iterator" + ], + "read": [ + "read-core" + ], + "read-all": [ + "read", + "std", + "fallible-iterator", + "endian-reader" + ], + "read-core": [], + "rustc-dep-of-std": [ + "dep:core", + "dep:alloc", + "dep:compiler_builtins" + ], + "std": [ + "fallible-iterator?/std", + "stable_deref_trait?/std" + ], + "write": [ + "dep:indexmap" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.28.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "parser-implementations" + ], + "keywords": [ + "DWARF", + "debug", + "ELF", + "eh_frame" + ], + "readme": "./README.md", + "repository": "https://github.com/gimli-rs/gimli", + "homepage": null, + "documentation": "https://docs.rs/gimli", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "gimli", + "version": "0.31.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library for reading and writing the DWARF debugging format.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fallible-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-assembler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gimli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.31.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "read-all", + "write" + ], + "endian-reader": [ + "read", + "dep:stable_deref_trait" + ], + "fallible-iterator": [ + "dep:fallible-iterator" + ], + "read": [ + "read-core" + ], + "read-all": [ + "read", + "std", + "fallible-iterator", + "endian-reader" + ], + "read-core": [], + "rustc-dep-of-std": [ + "dep:core", + "dep:alloc", + "dep:compiler_builtins" + ], + "std": [ + "fallible-iterator?/std", + "stable_deref_trait?/std" + ], + "write": [ + "dep:indexmap" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.31.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "parser-implementations" + ], + "keywords": [ + "DWARF", + "debug", + "ELF", + "eh_frame" + ], + "readme": "README.md", + "repository": "https://github.com/gimli-rs/gimli", + "homepage": null, + "documentation": "https://docs.rs/gimli", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "glob", + "version": "0.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Support for matching file paths against Unix shell style patterns.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "glob", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "glob-std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/tests/glob-std.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "filesystem" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/glob", + "homepage": "https://github.com/rust-lang/glob", + "documentation": "https://docs.rs/glob/0.3.1", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.23.0" + }, + { + "name": "globset", + "version": "0.4.16", + "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Cross platform single glob and glob set matching. Glob set matching is the\nprocess of matching one or more glob patterns against a single candidate path\nsimultaneously, and returning all of the globs that matched.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "perf", + "syntax", + "meta", + "nfa", + "hybrid" + ], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.188", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.107", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "globset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "log" + ], + "log": [ + "dep:log" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ], + "simd-accel": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "regex", + "glob", + "multiple", + "set", + "pattern" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", + "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", + "documentation": "https://docs.rs/globset", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo", + "version": "0.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A modular toolkit for Rust and WebAssembly", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo-console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-dialogs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-events", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-history", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-net", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-render", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-storage", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-timers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-worker", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-0.8.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "console": [ + "gloo-console" + ], + "default": [ + "timers", + "events", + "file", + "dialogs", + "storage", + "render", + "console", + "utils", + "history", + "worker", + "net" + ], + "dialogs": [ + "gloo-dialogs" + ], + "events": [ + "gloo-events" + ], + "file": [ + "gloo-file" + ], + "futures": [ + "timers", + "file", + "worker", + "gloo-timers/futures", + "gloo-file/futures", + "gloo-worker/futures" + ], + "gloo-console": [ + "dep:gloo-console" + ], + "gloo-dialogs": [ + "dep:gloo-dialogs" + ], + "gloo-events": [ + "dep:gloo-events" + ], + "gloo-file": [ + "dep:gloo-file" + ], + "gloo-history": [ + "dep:gloo-history" + ], + "gloo-net": [ + "dep:gloo-net" + ], + "gloo-render": [ + "dep:gloo-render" + ], + "gloo-storage": [ + "dep:gloo-storage" + ], + "gloo-timers": [ + "dep:gloo-timers" + ], + "gloo-utils": [ + "dep:gloo-utils" + ], + "gloo-worker": [ + "dep:gloo-worker" + ], + "history": [ + "gloo-history" + ], + "net": [ + "gloo-net" + ], + "render": [ + "gloo-render" + ], + "storage": [ + "gloo-storage" + ], + "timers": [ + "gloo-timers" + ], + "utils": [ + "gloo-utils" + ], + "worker": [ + "gloo-worker" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-0.8.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "docsrs" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo", + "homepage": "https://gloo-rs.web.app/", + "documentation": "https://docs.rs/gloo/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-console", + "version": "0.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with browser's console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "console", + "Document" + ], + "target": null, + "registry": null + }, + { + "name": "gloo-timers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_console", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "web", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/tests/web.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "development-tools::profiling", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/console", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": "https://docs.rs/gloo-console/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-dialogs", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with dialogs in browser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Window" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_dialogs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-dialogs-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-dialogs-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/dialogs", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-events", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with DOM event listeners", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Event", + "EventTarget", + "AddEventListenerOptions" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "HtmlElement", + "Window", + "Document", + "Element", + "MouseEvent", + "ProgressEvent" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_events", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "web", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/tests/web.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "web-programming", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/events", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-file", + "version": "0.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with JavaScript files and blobs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-events", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Blob", + "File", + "FileList", + "FileReader", + "HtmlInputElement", + "BlobPropertyBag", + "FilePropertyBag", + "DomException", + "Url" + ], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmbind" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": "futures_rs", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Window", + "Response" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "web", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/tests/web.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "futures": [ + "futures-channel" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "mime": [ + "dep:mime" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "futures" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/file", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-history", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Universal Session History", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo-events", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde-wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "History", + "Window", + "Location", + "Url" + ], + "target": null, + "registry": null + }, + { + "name": "gloo-timers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_history", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser_history", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/browser_history.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser_history_feat_serialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/browser_history_feat_serialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_history", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/hash_history.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_history_feat_serialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/hash_history_feat_serialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "memory_history", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/memory_history.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "memory_history_feat_serialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/memory_history_feat_serialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/utils.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "query" + ], + "query": [ + "thiserror", + "serde_urlencoded" + ], + "serde_urlencoded": [ + "dep:serde_urlencoded" + ], + "thiserror": [ + "dep:thiserror" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "history", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/history", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-net", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "HTTP requests library for WASM Apps", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_net", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/tests/http.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "query", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/tests/query.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "json", + "websocket", + "http", + "eventsource" + ], + "eventsource": [ + "futures-channel", + "futures-core", + "pin-project", + "web-sys/Event", + "web-sys/EventTarget", + "web-sys/EventSource", + "web-sys/MessageEvent" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "futures-core": [ + "dep:futures-core" + ], + "futures-sink": [ + "dep:futures-sink" + ], + "http": [ + "web-sys/Headers", + "web-sys/UrlSearchParams", + "web-sys/Url", + "web-sys/Request", + "web-sys/RequestInit", + "web-sys/RequestMode", + "web-sys/Response", + "web-sys/ResponseInit", + "web-sys/ResponseType", + "web-sys/Window", + "web-sys/RequestCache", + "web-sys/RequestCredentials", + "web-sys/ObserverCallback", + "web-sys/RequestRedirect", + "web-sys/ReferrerPolicy", + "web-sys/AbortSignal", + "web-sys/ReadableStream", + "web-sys/Blob", + "web-sys/FormData", + "web-sys/WorkerGlobalScope" + ], + "json": [ + "serde", + "serde_json", + "gloo-utils/serde" + ], + "pin-project": [ + "dep:pin-project" + ], + "serde": [ + "dep:serde" + ], + "serde_json": [ + "dep:serde_json" + ], + "websocket": [ + "web-sys/WebSocket", + "web-sys/AddEventListenerOptions", + "web-sys/ErrorEvent", + "web-sys/FileReader", + "web-sys/MessageEvent", + "web-sys/ProgressEvent", + "web-sys/CloseEvent", + "web-sys/CloseEventInit", + "web-sys/BinaryType", + "web-sys/Blob", + "futures-channel", + "futures-core", + "futures-sink", + "pin-project" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group", + "Muhammad Hamza " + ], + "categories": [ + "wasm", + "web-programming::http-client", + "api-bindings" + ], + "keywords": [ + "requests", + "http", + "wasm", + "websockets" + ], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-net", + "version": "0.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "HTTP requests library for WASM Apps", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_net", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/tests/http.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "query", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/tests/query.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "json", + "websocket", + "http", + "eventsource" + ], + "eventsource": [ + "futures-channel", + "futures-core", + "pin-project", + "web-sys/Event", + "web-sys/EventTarget", + "web-sys/EventSource", + "web-sys/MessageEvent" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "futures-core": [ + "dep:futures-core" + ], + "futures-io": [ + "dep:futures-io" + ], + "futures-sink": [ + "dep:futures-sink" + ], + "http": [ + "web-sys/Headers", + "web-sys/UrlSearchParams", + "web-sys/Url", + "web-sys/Request", + "web-sys/RequestInit", + "web-sys/RequestMode", + "web-sys/Response", + "web-sys/ResponseInit", + "web-sys/ResponseType", + "web-sys/RequestCache", + "web-sys/RequestCredentials", + "web-sys/ObserverCallback", + "web-sys/RequestRedirect", + "web-sys/ReferrerPolicy", + "web-sys/AbortSignal", + "web-sys/ReadableStream", + "web-sys/Blob", + "web-sys/FormData" + ], + "io-util": [ + "futures-io" + ], + "json": [ + "serde", + "serde_json", + "gloo-utils/serde" + ], + "pin-project": [ + "dep:pin-project" + ], + "serde": [ + "dep:serde" + ], + "serde_json": [ + "dep:serde_json" + ], + "websocket": [ + "web-sys/WebSocket", + "web-sys/AddEventListenerOptions", + "web-sys/ErrorEvent", + "web-sys/FileReader", + "web-sys/MessageEvent", + "web-sys/ProgressEvent", + "web-sys/CloseEvent", + "web-sys/CloseEventInit", + "web-sys/BinaryType", + "web-sys/Blob", + "futures-channel", + "futures-core", + "futures-sink", + "pin-project" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group", + "Elina " + ], + "categories": [ + "wasm", + "web-programming::http-client", + "api-bindings" + ], + "keywords": [ + "requests", + "http", + "wasm", + "websockets" + ], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64" + }, + { + "name": "gloo-render", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with browser's requestAnimationFrame", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Window" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_render", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-render-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-render-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "storage", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/storage", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-storage", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with local and session storage in browser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Storage", + "Window" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_storage", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "local_storage", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/tests/local_storage.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "session_storage", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/tests/session_storage.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "storage", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/storage", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-timers", + "version": "0.2.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with JavaScript timers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_timers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "node", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/tests/node.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "web", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/tests/web.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "futures": [ + "futures-core", + "futures-channel" + ], + "futures-channel": [ + "dep:futures-channel" + ], + "futures-core": [ + "dep:futures-core" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "futures" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/timers", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-utils", + "version": "0.1.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Convenience crate for common `web_sys` features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Document", + "History", + "HtmlElement", + "Location", + "Window", + "HtmlHeadElement", + "Element" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "serde" + ], + "serde": [ + "dep:serde", + "dep:serde_json" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/utils", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "gloo-utils", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for common `web_sys` features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Document", + "History", + "HtmlElement", + "Location", + "Window", + "HtmlHeadElement", + "Element" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "serde" + ], + "serde": [ + "dep:serde", + "dep:serde_json" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/utils", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64" + }, + { + "name": "gloo-worker", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Convenience crate for working with Web Workers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anymap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Blob", + "BlobPropertyBag", + "DedicatedWorkerGlobalScope", + "MessageEvent", + "Url", + "Worker", + "WorkerOptions" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "gloo_worker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-worker-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "futures": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-worker-0.2.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Rust and WebAssembly Working Group" + ], + "categories": [ + "api-bindings", + "asynchronous", + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/gloo/tree/master/crates/worker", + "homepage": "https://github.com/rustwasm/gloo", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "h2", + "version": "0.4.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "license": "MIT", + "license_file": null, + "description": "An HTTP/2 client and server", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "atomic-waker", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "io-util" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "codec", + "io" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rt-multi-thread", + "macros", + "sync", + "net" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "h2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "akamai", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/akamai.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/client.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/server.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/benches/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "stream": [], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "stream" + ] + } + } + }, + "publish": null, + "authors": [ + "Carl Lerche ", + "Sean McArthur " + ], + "categories": [ + "asynchronous", + "web-programming", + "network-programming" + ], + "keywords": [ + "http", + "async", + "non-blocking" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/h2", + "homepage": null, + "documentation": "https://docs.rs/h2", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "hashbrown", + "version": "0.11.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.11.2", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "A Rust port of Google's SwissTable hash map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashbrown", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hasher", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/tests/hasher.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rayon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/tests/rayon.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/tests/set.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ahash": [ + "dep:ahash" + ], + "ahash-compile-time-rng": [ + "ahash/compile-time-rng" + ], + "alloc": [ + "dep:alloc" + ], + "bumpalo": [ + "dep:bumpalo" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "ahash", + "inline-more" + ], + "inline-more": [], + "nightly": [], + "raw": [], + "rayon": [ + "dep:rayon" + ], + "rustc-dep-of-std": [ + "nightly", + "core", + "compiler_builtins", + "alloc", + "rustc-internal-api" + ], + "rustc-internal-api": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "nightly", + "rayon", + "serde", + "raw" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "no_std", + "hashmap", + "swisstable" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/hashbrown", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hashbrown", + "version": "0.12.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust port of Google's SwissTable hash map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashbrown", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hasher", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/hasher.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rayon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/rayon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "insert_unique_unchecked", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ahash": [ + "dep:ahash" + ], + "ahash-compile-time-rng": [ + "ahash/compile-time-rng" + ], + "alloc": [ + "dep:alloc" + ], + "bumpalo": [ + "dep:bumpalo" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "ahash", + "inline-more" + ], + "inline-more": [], + "nightly": [], + "raw": [], + "rayon": [ + "dep:rayon" + ], + "rustc-dep-of-std": [ + "nightly", + "core", + "compiler_builtins", + "alloc", + "rustc-internal-api" + ], + "rustc-internal-api": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "nightly", + "rayon", + "serde", + "raw" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "no_std", + "hashmap", + "swisstable" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/hashbrown", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "hashbrown", + "version": "0.14.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust port of Google's SwissTable hash map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "allocator-api2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.42", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "allocator-api2" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.42", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "validation" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashbrown", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hasher", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/hasher.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "raw", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/raw.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rayon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/rayon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "insert_unique_unchecked", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/benches/insert_unique_unchecked.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ahash": [ + "dep:ahash" + ], + "alloc": [ + "dep:alloc" + ], + "allocator-api2": [ + "dep:allocator-api2" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "ahash", + "inline-more", + "allocator-api2" + ], + "equivalent": [ + "dep:equivalent" + ], + "inline-more": [], + "nightly": [ + "allocator-api2?/nightly", + "bumpalo/allocator_api" + ], + "raw": [], + "rayon": [ + "dep:rayon" + ], + "rkyv": [ + "dep:rkyv" + ], + "rustc-dep-of-std": [ + "nightly", + "core", + "compiler_builtins", + "alloc", + "rustc-internal-api" + ], + "rustc-internal-api": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "nightly", + "rayon", + "serde", + "raw" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "no_std", + "hashmap", + "swisstable" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/hashbrown", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "hashbrown", + "version": "0.15.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust port of Google's SwissTable hash map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "allocator-api2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "foldhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "allocator-api2" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashbrown", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hasher", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/hasher.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rayon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/rayon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "insert_unique_unchecked", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/insert_unique_unchecked.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "set_ops", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/set_ops.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "dep:alloc" + ], + "allocator-api2": [ + "dep:allocator-api2" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "default-hasher", + "inline-more", + "allocator-api2", + "equivalent", + "raw-entry" + ], + "default-hasher": [ + "dep:foldhash" + ], + "equivalent": [ + "dep:equivalent" + ], + "inline-more": [], + "nightly": [ + "allocator-api2?/nightly", + "bumpalo/allocator_api" + ], + "raw-entry": [], + "rayon": [ + "dep:rayon" + ], + "rustc-dep-of-std": [ + "nightly", + "core", + "compiler_builtins", + "alloc", + "rustc-internal-api", + "raw-entry" + ], + "rustc-internal-api": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "nightly", + "rayon", + "serde", + "raw-entry" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "no_std", + "hashmap", + "swisstable" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/hashbrown", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "heck", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "heck is a case conversion library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "heck", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "no-std" + ], + "keywords": [ + "string", + "case", + "camel", + "snake", + "unicode" + ], + "readme": "README.md", + "repository": "https://github.com/withoutboats/heck", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "hex", + "version": "0.4.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Encoding and decoding data into/from hexadecimal representation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "faster-hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version-sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "version-number", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/tests/version-number.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "hex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/benches/hex.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "KokaKiwi " + ], + "categories": [ + "encoding", + "no-std" + ], + "keywords": [ + "no_std", + "hex" + ], + "readme": "README.md", + "repository": "https://github.com/KokaKiwi/rust-hex", + "homepage": null, + "documentation": "https://docs.rs/hex/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hex-conservative", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", + "license": "CC0-1.0", + "license_file": null, + "description": "A hex encoding and decoding crate with a conservative MSRV and dependency policy.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "core2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hex_conservative", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/custom.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hexy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/hexy.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "wrap_array_display_hex_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/wrap_array_display_hex_trait.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "wrap_array_fmt_traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/wrap_array_fmt_traits.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "core2": [ + "dep:core2" + ], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Poelstra " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "encoding", + "hex", + "hexadecimal" + ], + "readme": "README.md", + "repository": "https://github.com/rust-bitcoin/hex-conservative", + "homepage": null, + "documentation": "https://docs.rs/hex-conservative/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hex-literal", + "version": "0.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Macro for converting hexadecimal string to a byte array at compile time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hex_literal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/tests/basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [], + "keywords": [ + "hex", + "literals" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/hex-literal", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "hmac", + "version": "0.12.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Generic implementation of Hash-based Message Authentication Code (HMAC)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "mac" + ], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "md-5", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha-1", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "streebog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hmac", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "reset": [], + "std": [ + "digest/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "mac", + "hmac", + "digest" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/MACs", + "homepage": null, + "documentation": "https://docs.rs/hmac", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "home", + "version": "0.5.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Shared definitions of home directories.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_UI_Shell", + "Win32_System_Com" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "home", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Brian Anderson " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/cargo", + "homepage": "https://github.com/rust-lang/cargo", + "documentation": "https://docs.rs/home", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "http", + "version": "0.2.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A set of types for representing HTTP requests and responses.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "<=1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "seahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "header_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/header_map.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "header_map_fuzz", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/header_map_fuzz.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "status_code", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/status_code.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton ", + "Carl Lerche ", + "Sean McArthur " + ], + "categories": [ + "web-programming" + ], + "keywords": [ + "http" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/http", + "homepage": null, + "documentation": "https://docs.rs/http", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.49.0" + }, + { + "name": "http", + "version": "1.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A set of types for representing HTTP requests and responses.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "header_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/header_map.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "header_map_fuzz", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/header_map_fuzz.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "status_code", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/status_code.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton ", + "Carl Lerche ", + "Sean McArthur " + ], + "categories": [ + "web-programming" + ], + "keywords": [ + "http" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/http", + "homepage": null, + "documentation": "https://docs.rs/http", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.49.0" + }, + { + "name": "http-body", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "license": "MIT", + "license_file": null, + "description": "Trait representing an asynchronous, streaming, HTTP request or response body.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "http_body", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "is_end_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/tests/is_end_stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Carl Lerche ", + "Lucio Franco ", + "Sean McArthur " + ], + "categories": [ + "web-programming" + ], + "keywords": [ + "http" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/http-body", + "homepage": null, + "documentation": "https://docs.rs/http-body", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.49" + }, + { + "name": "http-body-util", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Combinators and adapters for HTTP request or response bodies.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "rt", + "sync", + "rt-multi-thread" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "http_body_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "channel": [ + "dep:tokio" + ], + "default": [], + "full": [ + "channel" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Carl Lerche ", + "Lucio Franco ", + "Sean McArthur " + ], + "categories": [ + "web-programming" + ], + "keywords": [ + "http" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/http-body", + "homepage": null, + "documentation": "https://docs.rs/http-body-util", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "httparse", + "version": "1.10.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "httparse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uri", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/tests/uri.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/benches/parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "network-programming", + "no-std", + "parser-implementations", + "web-programming" + ], + "keywords": [ + "http", + "parser", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/httparse", + "homepage": null, + "documentation": "https://docs.rs/httparse", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hyper", + "version": "1.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "license": "MIT", + "license_file": null, + "description": "A protective and efficient HTTP library for all.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "h2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "httparse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "httpdate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "const_generics", + "const_new" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "want", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "form_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sink" + ], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "sink" + ], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "spmc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fs", + "macros", + "net", + "io-std", + "io-util", + "rt", + "rt-multi-thread", + "sync", + "time", + "test-util" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hyper", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.6.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "capi": [], + "client": [ + "dep:want", + "dep:pin-project-lite", + "dep:smallvec" + ], + "default": [], + "ffi": [ + "dep:http-body-util", + "futures-util?/alloc" + ], + "full": [ + "client", + "http1", + "http2", + "server" + ], + "http1": [ + "dep:futures-channel", + "dep:futures-util", + "dep:httparse", + "dep:itoa" + ], + "http2": [ + "dep:futures-channel", + "dep:futures-util", + "dep:h2" + ], + "nightly": [], + "server": [ + "dep:httpdate", + "dep:pin-project-lite", + "dep:smallvec" + ], + "tracing": [ + "dep:tracing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.6.0/Cargo.toml", + "metadata": { + "capi": { + "header": { + "generation": false, + "subdirectory": false + }, + "install": { + "include": { + "asset": [ + { + "from": "capi/include/hyper.h" + } + ] + } + } + }, + "docs": { + "rs": { + "features": [ + "ffi", + "full", + "tracing" + ], + "rustdoc-args": [ + "--cfg", + "hyper_unstable_ffi", + "--cfg", + "hyper_unstable_tracing" + ] + } + }, + "playground": { + "features": [ + "full" + ] + } + }, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "network-programming", + "web-programming::http-client", + "web-programming::http-server" + ], + "keywords": [ + "http", + "hyper", + "hyperium" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/hyper", + "homepage": "https://hyper.rs", + "documentation": "https://docs.rs/hyper", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "hyper-rustls", + "version": "0.27.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", + "license": "Apache-2.0 OR ISC OR MIT", + "license_file": null, + "description": "Rustls+hyper integration for pure rust HTTPS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "client-legacy", + "tokio" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-native-certs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-platform-verifier", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "server-auto" + ], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "tls12" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pemfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "io-std", + "macros", + "net", + "rt-multi-thread" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hyper_rustls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/examples/client.rs", + "edition": "2021", + "required-features": [ + "native-tokio", + "http1" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/examples/server.rs", + "edition": "2021", + "required-features": [ + "aws-lc-rs" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "aws-lc-rs": [ + "rustls/aws_lc_rs" + ], + "default": [ + "native-tokio", + "http1", + "tls12", + "logging", + "aws-lc-rs" + ], + "fips": [ + "aws-lc-rs", + "rustls/fips" + ], + "http1": [ + "hyper-util/http1" + ], + "http2": [ + "hyper-util/http2" + ], + "log": [ + "dep:log" + ], + "logging": [ + "log", + "tokio-rustls/logging", + "rustls/logging" + ], + "native-tokio": [ + "rustls-native-certs" + ], + "ring": [ + "rustls/ring" + ], + "rustls-native-certs": [ + "dep:rustls-native-certs" + ], + "rustls-platform-verifier": [ + "dep:rustls-platform-verifier" + ], + "tls12": [ + "tokio-rustls/tls12", + "rustls/tls12" + ], + "webpki-roots": [ + "dep:webpki-roots" + ], + "webpki-tokio": [ + "webpki-roots" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "http1", + "http2", + "logging", + "native-tokio", + "ring", + "rustls-platform-verifier", + "tls12", + "webpki-tokio" + ], + "no-default-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/hyper-rustls", + "homepage": "https://github.com/rustls/hyper-rustls", + "documentation": "https://docs.rs/hyper-rustls/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "hyper-tls", + "version": "0.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Default TLS implementation for use with hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "client-legacy", + "tokio" + ], + "target": null, + "registry": null + }, + { + "name": "native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "http1" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "io-std", + "macros", + "io-util" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hyper_tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/examples/client.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alpn": [ + "native-tls/alpn" + ], + "vendored": [ + "native-tls/vendored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [], + "keywords": [ + "hyper", + "tls", + "http", + "https", + "ssl" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/hyper-tls", + "homepage": "https://hyper.rs", + "documentation": "https://docs.rs/hyper-tls", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "hyper-util", + "version": "0.1.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "license": "MIT", + "license_file": null, + "description": "hyper utilities", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.16", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "socket2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "all" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "pretty_env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "test-util", + "signal" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pnet_datalink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.35.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"linux\", target_os = \"macos\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hyper_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/client.rs", + "edition": "2021", + "required-features": [ + "client-legacy", + "http1", + "tokio" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/server.rs", + "edition": "2021", + "required-features": [ + "server", + "http1", + "tokio" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "server_graceful", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/server_graceful.rs", + "edition": "2021", + "required-features": [ + "tokio", + "server-graceful", + "server-auto" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "legacy_client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/tests/legacy_client.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__internal_happy_eyeballs_tests": [], + "client": [ + "hyper/client", + "dep:tracing", + "dep:futures-channel", + "dep:tower-service" + ], + "client-legacy": [ + "client", + "dep:socket2", + "tokio/sync", + "dep:libc" + ], + "default": [], + "full": [ + "client", + "client-legacy", + "server", + "server-auto", + "server-graceful", + "service", + "http1", + "http2", + "tokio", + "tracing" + ], + "http1": [ + "hyper/http1" + ], + "http2": [ + "hyper/http2" + ], + "server": [ + "hyper/server" + ], + "server-auto": [ + "server", + "http1", + "http2" + ], + "server-graceful": [ + "server", + "tokio/sync", + "futures-util/alloc" + ], + "service": [ + "dep:tower-service" + ], + "tokio": [ + "dep:tokio", + "tokio/net", + "tokio/rt", + "tokio/time" + ], + "tracing": [ + "dep:tracing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "full" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "network-programming", + "web-programming::http-client", + "web-programming::http-server" + ], + "keywords": [ + "http", + "hyper", + "hyperium" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/hyper-util", + "homepage": "https://hyper.rs", + "documentation": "https://docs.rs/hyper-util", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "iana-time-zone", + "version": "0.1.63", + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "get the IANA time zone for the current system", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "chrono-tz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.66", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.89", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.46", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "android_system_properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"android\")", + "registry": null + }, + { + "name": "iana-time-zone-haiku", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"haiku\")", + "registry": null + }, + { + "name": "windows-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.56, <=0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"windows\")", + "registry": null + }, + { + "name": "core-foundation-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "iana_time_zone", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_timezone", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/get_timezone.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_timezone_loop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/get_timezone_loop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stress-test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/stress-test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "fallback": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Straw ", + "René Kijewski ", + "Ryan Lopopolo " + ], + "categories": [ + "date-and-time", + "internationalization", + "os" + ], + "keywords": [ + "IANA", + "time" + ], + "readme": "README.md", + "repository": "https://github.com/strawlab/iana-time-zone", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.62.0" + }, + { + "name": "icu_collections", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Collection of API for use in ICU libraries.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive", + "yoke" + ], + "target": null, + "registry": null + }, + { + "name": "iai", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_collections", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "unicode_bmp_blocks_selector", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/examples/unicode_bmp_blocks_selector.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "char16trie", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/tests/char16trie.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cpt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/tests/cpt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "codepointtrie", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/codepointtrie.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iai_cpt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/iai_cpt.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "inv_list", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/inv_list.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "databake": [ + "dep:databake", + "zerovec/databake" + ], + "serde": [ + "dep:serde", + "zerovec/serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_locid", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "API for managing Unicode Language and Locale Identifiers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "litemap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "writeable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "iai", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_locid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "filter_langids", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/examples/filter_langids.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "syntatically_canonicalize_locales", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/examples/syntatically_canonicalize_locales.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "langid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/tests/langid.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "locale", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/tests/locale.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iai_langid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/iai_langid.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "langid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/langid.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "locale", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/locale.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "subtags", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/subtags.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [ + "serde" + ], + "databake": [ + "dep:databake" + ], + "serde": [ + "dep:serde", + "tinystr/serde" + ], + "std": [], + "zerovec": [ + "dep:zerovec" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_locid_transform", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "API for Unicode Language and Locale Identifiers canonicalization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_locid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "zerovec" + ], + "target": null, + "registry": null + }, + { + "name": "icu_locid_transform_data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "zerovec" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "yoke" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_locid_transform", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "locale_canonicalizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/tests/locale_canonicalizer.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "locale_canonicalizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/benches/locale_canonicalizer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [ + "serde" + ], + "compiled_data": [ + "dep:icu_locid_transform_data" + ], + "datagen": [ + "serde", + "dep:databake", + "zerovec/databake", + "icu_locid/databake", + "tinystr/databake" + ], + "default": [ + "compiled_data" + ], + "serde": [ + "dep:serde", + "icu_locid/serde", + "tinystr/serde", + "zerovec/serde", + "icu_provider/serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ], + "skip_optional_dependencies": true + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_locid_transform_data", + "version": "1.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", + "license": "Unicode-3.0", + "license_file": null, + "description": "Data for the icu_locid_transform crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_locid_transform_data", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/Cargo.toml", + "metadata": { + "sources": { + "cldr": { + "tagged": "46.0.0-BETA2" + }, + "icuexport": { + "tagged": "icu4x/2024-05-16/75.x" + }, + "segmenter_lstm": { + "tagged": "v0.1.0" + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_normalizer", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "API for normalizing text into Unicode Normalization Forms", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_collections", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_normalizer_data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf16_iter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf8_iter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "write16", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arraystring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "atoi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "detone", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "write16", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "arrayvec" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_normalizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "canonical_composition", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/canonical_composition.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "canonical_decomposition", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/canonical_decomposition.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "composing_normalizer_nfc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/composing_normalizer_nfc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "composing_normalizer_nfkc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/composing_normalizer_nfkc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "decomposing_normalizer_nfd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "decomposing_normalizer_nfkd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfkd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiled_data": [ + "dep:icu_normalizer_data", + "icu_properties/compiled_data" + ], + "datagen": [ + "serde", + "dep:databake", + "icu_collections/databake", + "zerovec/databake", + "icu_properties/datagen" + ], + "default": [ + "compiled_data" + ], + "experimental": [], + "serde": [ + "dep:serde", + "icu_collections/serde", + "zerovec/serde", + "icu_properties/serde" + ], + "std": [ + "icu_collections/std", + "icu_properties/std", + "icu_provider/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_normalizer_data", + "version": "1.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", + "license": "Unicode-3.0", + "license_file": null, + "description": "Data for the icu_normalizer crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_normalizer_data", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/Cargo.toml", + "metadata": { + "sources": { + "cldr": { + "tagged": "46.0.0-BETA2" + }, + "icuexport": { + "tagged": "icu4x/2024-05-16/75.x" + }, + "segmenter_lstm": { + "tagged": "v0.1.0" + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_properties", + "version": "1.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "license": "Unicode-3.0", + "license_file": null, + "description": "Definitions for Unicode properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_collections", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_locid_transform", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "compiled_data" + ], + "target": null, + "registry": null + }, + { + "name": "icu_properties_data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "zerovec" + ], + "target": null, + "registry": null + }, + { + "name": "unicode-bidi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_properties", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-1.5.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bidi": [ + "dep:unicode-bidi" + ], + "compiled_data": [ + "dep:icu_properties_data", + "dep:icu_locid_transform" + ], + "datagen": [ + "serde", + "dep:databake", + "zerovec/databake", + "icu_collections/databake", + "tinystr/databake" + ], + "default": [ + "compiled_data" + ], + "serde": [ + "dep:serde", + "tinystr/serde", + "zerovec/serde", + "icu_collections/serde", + "icu_provider/serde" + ], + "std": [ + "icu_collections/std", + "icu_provider/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-1.5.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_properties_data", + "version": "1.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", + "license": "Unicode-3.0", + "license_file": null, + "description": "Data for the icu_properties crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_properties_data", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/Cargo.toml", + "metadata": { + "sources": { + "cldr": { + "tagged": "46.0.0-BETA2" + }, + "icuexport": { + "tagged": "icu4x/2024-05-16/75.x" + }, + "segmenter_lstm": { + "tagged": "v0.1.0" + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_provider", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Trait and struct definitions for the ICU data provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "erased-serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "icu_locid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "writeable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_provider", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "data_locale_bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/benches/data_locale_bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "datagen": [ + "serde", + "dep:erased-serde", + "dep:databake", + "std", + "sync" + ], + "deserialize_bincode_1": [ + "serde", + "dep:bincode", + "std" + ], + "deserialize_json": [ + "serde", + "dep:serde_json" + ], + "deserialize_postcard_1": [ + "serde", + "dep:postcard" + ], + "experimental": [], + "log_error_context": [ + "logging" + ], + "logging": [ + "dep:log" + ], + "macros": [ + "dep:icu_provider_macros" + ], + "serde": [ + "dep:serde", + "yoke/serde" + ], + "std": [ + "icu_locid/std" + ], + "sync": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "macros" + ], + "max_combination_size": 3 + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_provider_macros", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Proc macros for ICU data providers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "icu_provider_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider_macros-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider_macros-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "ident_case", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Utility for applying case rules to Rust identifiers.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ident_case", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ident_case-1.0.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ident_case-1.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/TedDriggs/ident_case", + "homepage": null, + "documentation": "https://docs.rs/ident_case/1.0.1", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "idna", + "version": "1.0.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "idna_adapter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "const_generics" + ], + "target": null, + "registry": null + }, + { + "name": "utf8_iter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "assert_matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tester", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "idna", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/unit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unitbis", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/unitbis.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/benches/all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "compiled_data": [ + "idna_adapter/compiled_data" + ], + "default": [ + "std", + "compiled_data" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [], + "keywords": [ + "no_std", + "web", + "http" + ], + "readme": "README.md", + "repository": "https://github.com/servo/rust-url/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "idna_adapter", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Back end adapter for idna", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "icu_normalizer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "idna_adapter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "compiled_data": [ + "icu_normalizer/compiled_data", + "icu_properties/compiled_data" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "no-std", + "internationalization" + ], + "keywords": [ + "unicode", + "dns", + "idna" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/idna_adapter", + "homepage": "https://docs.rs/crate/idna_adapter/latest", + "documentation": "https://docs.rs/idna_adapter/latest/idna_adapter/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67.0" + }, + { + "name": "ignore", + "version": "0.4.23", + "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "A fast library for efficiently matching ignore files such as `.gitignore`\nagainst file paths.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "globset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "perf", + "syntax", + "meta", + "nfa", + "hybrid", + "dfa-onepass" + ], + "target": null, + "registry": null + }, + { + "name": "same-file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "crossbeam-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ignore", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "walk", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/examples/walk.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gitignore_matched_path_or_any_parents_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/tests/gitignore_matched_path_or_any_parents_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "simd-accel": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "glob", + "ignore", + "gitignore", + "pattern", + "file" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", + "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", + "documentation": "https://docs.rs/ignore", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "implicit-clone", + "version": "0.3.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Immutable types and ImplicitClone trait similar to Copy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "implicit_clone", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/implicit-clone-0.3.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "indexmap": [ + "dep:indexmap" + ], + "map": [ + "indexmap" + ], + "serde": [ + "dep:serde", + "indexmap/serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/implicit-clone-0.3.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Cecile Tonglet " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "immutable", + "cheap-clone", + "copy", + "rc" + ], + "readme": "README.md", + "repository": "https://github.com/yewstack/implicit-clone", + "homepage": "https://github.com/yewstack/implicit-clone", + "documentation": "https://docs.rs/implicit-clone", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "indexmap", + "version": "1.9.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A hash table with consistent order and fast iteration.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "raw" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": "rustc-rayon", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "indexmap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_full_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/macros_full_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/quick.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "faststring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/benches/faststring.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "quickcheck": [ + "dep:quickcheck" + ], + "rayon": [ + "dep:rayon" + ], + "rustc-rayon": [ + "dep:rustc-rayon" + ], + "serde": [ + "dep:serde" + ], + "serde-1": [ + "serde" + ], + "std": [], + "test_debug": [], + "test_low_transition_point": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arbitrary", + "quickcheck", + "serde-1", + "rayon" + ] + } + }, + "release": { + "no-dev-version": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hashmap", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/bluss/indexmap", + "homepage": null, + "documentation": "https://docs.rs/indexmap/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "indexmap", + "version": "2.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A hash table with consistent order and fast iteration.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "indexmap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_full_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/macros_full_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/quick.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "faststring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/benches/faststring.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "borsh": [ + "dep:borsh" + ], + "default": [ + "std" + ], + "quickcheck": [ + "dep:quickcheck" + ], + "rayon": [ + "dep:rayon" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "test_debug": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arbitrary", + "quickcheck", + "serde", + "borsh", + "rayon" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "allow-branch": [ + "main" + ], + "sign-tag": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hashmap", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/indexmap-rs/indexmap", + "homepage": null, + "documentation": "https://docs.rs/indexmap/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "inout", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Custom reference types for code generic over in-place and buffer-to-buffer modes of operation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "block-padding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "inout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "block-padding": [ + "dep:block-padding" + ], + "std": [ + "block-padding/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [], + "keywords": [ + "custom-reference" + ], + "readme": null, + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/inout", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact/src/comp_interact_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Costin Carabas " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ipnet", + "version": "2.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "heapless", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "serde", + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ipnet", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "heapless": [ + "dep:heapless" + ], + "json": [ + "serde", + "schemars" + ], + "schemars": [ + "dep:schemars" + ], + "ser_as_str": [ + "heapless" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Kris Price " + ], + "categories": [ + "network-programming" + ], + "keywords": [ + "IP", + "CIDR", + "network", + "prefix", + "subnet" + ], + "readme": "README.md", + "repository": "https://github.com/krisprice/ipnet", + "homepage": null, + "documentation": "https://docs.rs/ipnet", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "is_terminal_polyfill", + "version": "1.70.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Polyfill for `is_terminal` stdlib feature for use with older MSRVs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "is_terminal_polyfill", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/polyfill-rs/is_terminal_polyfill/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/polyfill-rs/is_terminal_polyfill", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70.0" + }, + { + "name": "itertools", + "version": "0.13.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "permutohedron", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "itertools", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iris", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/examples/iris.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adaptors_no_collect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/adaptors_no_collect.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/flatten_ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "laziness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/laziness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_hygiene", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/macros_hygiene.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "merge_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/merge_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "peeking_take_while", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/peeking_take_while.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/quick.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/test_core.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/test_std.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/zip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench1", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/bench1.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations_with_replacement", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/combinations_with_replacement.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "fold_specialization", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/fold_specialization.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "powerset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/powerset.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tree_reduce", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tree_reduce.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuple_combinations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tuple_combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "use_std" + ], + "use_alloc": [], + "use_std": [ + "use_alloc", + "either/use_std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "algorithms", + "rust-patterns", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "iterator", + "data-structure", + "zip", + "product" + ], + "readme": "README.md", + "repository": "https://github.com/rust-itertools/itertools", + "homepage": null, + "documentation": "https://docs.rs/itertools/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.43.1" + }, + { + "name": "itertools", + "version": "0.14.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "permutohedron", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "itertools", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iris", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/examples/iris.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adaptors_no_collect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/adaptors_no_collect.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/flatten_ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "laziness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/laziness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_hygiene", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/macros_hygiene.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "merge_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/merge_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "peeking_take_while", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/peeking_take_while.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/quick.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/test_core.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/test_std.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/zip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench1", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/bench1.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations_with_replacement", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/combinations_with_replacement.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "fold_specialization", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/fold_specialization.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "k_smallest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/k_smallest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "powerset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/powerset.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tree_reduce", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tree_reduce.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuple_combinations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tuple_combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "use_std" + ], + "use_alloc": [], + "use_std": [ + "use_alloc", + "either/use_std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "algorithms", + "rust-patterns", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "iterator", + "data-structure", + "zip", + "product" + ], + "readme": "README.md", + "repository": "https://github.com/rust-itertools/itertools", + "homepage": null, + "documentation": "https://docs.rs/itertools/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "itoa", + "version": "1.0.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Fast integer primitive to string conversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "itoa", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "no-panic": [ + "dep:no-panic" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "value-formatting", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "integer" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/itoa", + "homepage": null, + "documentation": "https://docs.rs/itoa", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "jiff", + "version": "0.2.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "A date-time library that encourages you to jump into the pit of success.\n\nThis library is heavily inspired by the Temporal project.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "jiff-static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jiff-tzdb", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.21", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.203", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.38", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "chrono-tz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "humantime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.39.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.203", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.117", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_yaml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.34", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tabwriter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.36", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "local-offset", + "macros", + "parsing" + ], + "target": null, + "registry": null + }, + { + "name": "tzfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.50", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.70", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "jiff-static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + }, + { + "name": "jiff-tzdb-platform", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(any(windows, target_family = \"wasm\"))", + "registry": null + }, + { + "name": "hifitime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(target_has_atomic = \"ptr\"))", + "registry": null + }, + { + "name": "portable-atomic-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(target_has_atomic = \"ptr\"))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52.0, <=0.59", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "Win32_Foundation", + "Win32_System_Time" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "jiff", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "serde?/alloc", + "portable-atomic-util/alloc" + ], + "default": [ + "std", + "tz-system", + "tz-fat", + "tzdb-bundle-platform", + "tzdb-zoneinfo", + "tzdb-concatenated", + "perf-inline" + ], + "js": [ + "dep:wasm-bindgen", + "dep:js-sys" + ], + "logging": [ + "dep:log" + ], + "perf-inline": [], + "serde": [ + "dep:serde" + ], + "static": [ + "static-tz", + "jiff-static?/tzdb" + ], + "static-tz": [ + "dep:jiff-static" + ], + "std": [ + "alloc", + "log?/std", + "serde?/std" + ], + "tz-fat": [ + "jiff-static?/tz-fat" + ], + "tz-system": [ + "std", + "dep:windows-sys" + ], + "tzdb-bundle-always": [ + "dep:jiff-tzdb", + "alloc" + ], + "tzdb-bundle-platform": [ + "dep:jiff-tzdb-platform", + "alloc" + ], + "tzdb-concatenated": [ + "std" + ], + "tzdb-zoneinfo": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "date-and-time", + "no-std" + ], + "keywords": [ + "date", + "time", + "calendar", + "zone", + "duration" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/jiff", + "homepage": null, + "documentation": "https://docs.rs/jiff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "js-sys", + "version": "0.3.77", + "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bindings for all JS global objects and functions in all JS environments like\nNode.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "js_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.77/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "wasm-bindgen/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.77/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [ + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/js-sys", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "keccak", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Pure Rust implementation of the Keccak sponge function including the keccak-f\nand keccak-p variants\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cpufeatures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"aarch64\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "keccak", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/benches/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "asm": [], + "no_unroll": [], + "simd": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "sponge", + "keccak", + "keccak-f", + "keccak-p" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/sponges/tree/master/keccak", + "homepage": null, + "documentation": "https://docs.rs/keccak", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "random", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kitty", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-auction", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" + }, + { + "name": "kitty-ownership", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kitty_auction", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_auction_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/tests/kitty_auction_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_auction_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/tests/kitty_auction_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-auction-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty-auction", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "kitty-auction-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-genetic-alg", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "random", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kitty_genetic_alg", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_genetic_alg_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/tests/kitty_genetic_alg_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_genetic_alg_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/tests/kitty_genetic_alg_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-genetic-alg-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty-genetic-alg", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "kitty-genetic-alg-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-ownership", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" + }, + { + "name": "kitty-genetic-alg", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "random", + "source": null, + "req": "^0.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kitty_ownership", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_ownership_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/tests/kitty_ownership_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "kitty_ownership_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/tests/kitty_ownership_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kitty-ownership-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "kitty-ownership", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "kitty-ownership-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "large-storage", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "large_storage", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/src/large_storage.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "large_storage_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/tests/large_storage_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "large_storage_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/tests/large_storage_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "large-storage-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "large-storage", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "large-storage-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lazy_static", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A macro for declaring lazily evaluated statics in Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "spin", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "once" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lazy_static", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "mutex_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/examples/mutex_map.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/no_std.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/test.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ui", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/ui.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "spin": [ + "dep:spin" + ], + "spin_no_std": [ + "spin" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Marvin Löbel " + ], + "categories": [ + "no-std", + "rust-patterns", + "memory-management" + ], + "keywords": [ + "macro", + "lazy", + "static" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang-nursery/lazy-static.rs", + "homepage": null, + "documentation": "https://docs.rs/lazy_static", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "leb128", + "version": "0.2.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "Read and write DWARF's \"Little Endian Base 128\" (LEB128) variable length integer encoding.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "leb128", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "leb128-repl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/src/bin/leb128-repl.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quickchecks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/tests/quickchecks.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "nightly": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nick Fitzgerald ", + "Philip Craig " + ], + "categories": [], + "keywords": [ + "LEB128", + "DWARF", + "variable", + "length", + "encoding" + ], + "readme": "./README.md", + "repository": "https://github.com/gimli-rs/leb128", + "homepage": null, + "documentation": "https://docs.rs/leb128", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "leb128fmt", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library to encode and decode LEB128 compressed integers.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "leb128fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128fmt-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128fmt-0.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Bryant Luk " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc", + "compression", + "parser-implementations" + ], + "keywords": [ + "leb128", + "encoding", + "no_std", + "compression" + ], + "readme": "README.md", + "repository": "https://github.com/bluk/leb128fmt", + "homepage": null, + "documentation": "https://docs.rs/leb128fmt", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "libc", + "version": "0.2.172", + "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Raw FFI bindings to platform libraries like libc.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "const_fn", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/tests/const_fn.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "align": [], + "const-extern-fn": [], + "default": [ + "std" + ], + "extra_traits": [], + "rustc-dep-of-std": [ + "align", + "rustc-std-workspace-core" + ], + "rustc-std-workspace-core": [ + "dep:rustc-std-workspace-core" + ], + "std": [], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "-Zbuild-std=core" + ], + "default-target": "x86_64-unknown-linux-gnu", + "features": [ + "extra_traits" + ], + "targets": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-linux-android", + "aarch64-pc-windows-msvc", + "aarch64-unknown-freebsd", + "aarch64-unknown-fuchsia", + "aarch64-unknown-hermit", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-linux-musl", + "aarch64-unknown-netbsd", + "aarch64-unknown-openbsd", + "aarch64-wrs-vxworks", + "arm-linux-androideabi", + "arm-unknown-linux-gnueabi", + "arm-unknown-linux-gnueabihf", + "arm-unknown-linux-musleabi", + "arm-unknown-linux-musleabihf", + "armebv7r-none-eabi", + "armebv7r-none-eabihf", + "armv5te-unknown-linux-gnueabi", + "armv5te-unknown-linux-musleabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabihf", + "armv7-unknown-linux-musleabihf", + "armv7-wrs-vxworks-eabihf", + "armv7r-none-eabi", + "armv7r-none-eabihf", + "i586-unknown-linux-gnu", + "i586-unknown-linux-musl", + "i686-linux-android", + "i686-pc-windows-gnu", + "i686-pc-windows-msvc", + "i686-pc-windows-msvc", + "i686-unknown-freebsd", + "i686-unknown-haiku", + "i686-unknown-linux-gnu", + "i686-unknown-linux-musl", + "i686-unknown-netbsd", + "i686-unknown-openbsd", + "i686-wrs-vxworks", + "mips-unknown-linux-gnu", + "mips-unknown-linux-musl", + "mips64-unknown-linux-gnuabi64", + "mips64-unknown-linux-muslabi64", + "mips64el-unknown-linux-gnuabi64", + "mips64el-unknown-linux-muslabi64", + "mipsel-sony-psp", + "mipsel-unknown-linux-gnu", + "mipsel-unknown-linux-musl", + "nvptx64-nvidia-cuda", + "powerpc-unknown-linux-gnu", + "powerpc-unknown-linux-gnuspe", + "powerpc-unknown-netbsd", + "powerpc-wrs-vxworks", + "powerpc-wrs-vxworks-spe", + "powerpc64-unknown-freebsd", + "powerpc64-unknown-linux-gnu", + "powerpc64-wrs-vxworks", + "powerpc64le-unknown-linux-gnu", + "riscv32gc-unknown-linux-gnu", + "riscv32i-unknown-none-elf", + "riscv32imac-unknown-none-elf", + "riscv32imc-unknown-none-elf", + "riscv32-wrs-vxworks", + "riscv64gc-unknown-freebsd", + "riscv64gc-unknown-hermit", + "riscv64gc-unknown-linux-gnu", + "riscv64gc-unknown-linux-musl", + "riscv64gc-unknown-none-elf", + "riscv64imac-unknown-none-elf", + "riscv64-wrs-vxworks", + "s390x-unknown-linux-gnu", + "s390x-unknown-linux-musl", + "sparc-unknown-linux-gnu", + "sparc64-unknown-linux-gnu", + "sparc64-unknown-netbsd", + "sparcv9-sun-solaris", + "thumbv6m-none-eabi", + "thumbv7em-none-eabi", + "thumbv7em-none-eabihf", + "thumbv7m-none-eabi", + "thumbv7neon-linux-androideabi", + "thumbv7neon-unknown-linux-gnueabihf", + "wasm32-unknown-emscripten", + "wasm32-unknown-unknown", + "x86_64-apple-darwin", + "x86_64-apple-ios", + "x86_64-fortanix-unknown-sgx", + "x86_64-linux-android", + "x86_64-pc-solaris", + "x86_64-pc-windows-gnu", + "x86_64-pc-windows-msvc", + "x86_64-unknown-dragonfly", + "x86_64-unknown-freebsd", + "x86_64-unknown-fuchsia", + "x86_64-unknown-haiku", + "x86_64-unknown-hermit", + "x86_64-unknown-illumos", + "x86_64-unknown-l4re-uclibc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-gnux32", + "x86_64-unknown-linux-musl", + "x86_64-unknown-netbsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-redox", + "x86_64-wrs-vxworks" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "external-ffi-bindings", + "no-std", + "os" + ], + "keywords": [ + "libc", + "ffi", + "bindings", + "operating", + "system" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/libc", + "homepage": "https://github.com/rust-lang/libc", + "documentation": "https://docs.rs/libc/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "libloading", + "version": "0.7.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.7.4", + "license": "ISC", + "license_file": null, + "description": "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "errhandlingapi", + "libloaderapi" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libloading", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constants", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/constants.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "functions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/functions.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "library_filename", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/library_filename.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "markers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/markers.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "windows", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/windows.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "libloading_docs" + ] + } + } + }, + "publish": null, + "authors": [ + "Simonas Kazlauskas " + ], + "categories": [ + "api-bindings" + ], + "keywords": [ + "dlopen", + "load", + "shared", + "dylib" + ], + "readme": "README.mkd", + "repository": "https://github.com/nagisa/rust_libloading/", + "homepage": null, + "documentation": "https://docs.rs/libloading/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.40.0" + }, + { + "name": "libloading", + "version": "0.8.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", + "license": "ISC", + "license_file": null, + "description": "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.48, <0.53", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <0.59", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libloading", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constants", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/constants.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "functions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/functions.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "library_filename", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/library_filename.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "markers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/markers.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "windows", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/windows.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "libloading_docs" + ] + } + } + }, + "publish": null, + "authors": [ + "Simonas Kazlauskas " + ], + "categories": [ + "api-bindings" + ], + "keywords": [ + "dlopen", + "load", + "shared", + "dylib" + ], + "readme": "README.mkd", + "repository": "https://github.com/nagisa/rust_libloading/", + "homepage": null, + "documentation": "https://docs.rs/libloading/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "libunwind", + "version": "1.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", + "license": "MIT", + "license_file": null, + "description": "Rust bindings to the libunwind C library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libunwind", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libunwind-1.3.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libunwind-1.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bluefish43/libunwind-sys", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "linked-list-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "linked_list_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/src/linked_list_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "linked_list_repeat_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/linked_list_repeat_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "linked-list-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "linked-list-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "linked-list-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "linux-raw-sys", + "version": "0.4.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Generated bindings for Linux's userspace API", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.49", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.100", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "linux_raw_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bootparam": [], + "btrfs": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std", + "general", + "errno" + ], + "elf": [], + "elf_uapi": [], + "errno": [], + "general": [], + "if_arp": [], + "if_ether": [], + "if_packet": [], + "io_uring": [], + "ioctl": [], + "landlock": [], + "loop_device": [], + "mempolicy": [], + "net": [], + "netlink": [], + "no_std": [], + "prctl": [], + "ptrace": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins", + "no_std" + ], + "std": [], + "system": [], + "xdp": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "default", + "bootparam", + "btrfs", + "elf_uapi", + "ioctl", + "landlock", + "netlink", + "io_uring", + "if_arp", + "if_ether", + "if_packet", + "net", + "ptrace", + "prctl", + "elf", + "xdp", + "mempolicy", + "system", + "loop_device" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "i686-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Dan Gohman " + ], + "categories": [ + "external-ffi-bindings" + ], + "keywords": [ + "linux", + "uapi", + "ffi" + ], + "readme": "README.md", + "repository": "https://github.com/sunfishcode/linux-raw-sys", + "homepage": null, + "documentation": "https://docs.rs/linux-raw-sys", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "linux-raw-sys", + "version": "0.9.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Generated bindings for Linux's userspace API", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.49", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.100", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "linux_raw_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.9.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bootparam": [], + "btrfs": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std", + "general", + "errno" + ], + "elf": [], + "elf_uapi": [], + "errno": [], + "general": [], + "if_arp": [], + "if_ether": [], + "if_packet": [], + "image": [], + "io_uring": [], + "ioctl": [], + "landlock": [], + "loop_device": [], + "mempolicy": [], + "net": [], + "netlink": [], + "no_std": [], + "prctl": [], + "ptrace": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins", + "no_std" + ], + "std": [], + "system": [], + "xdp": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.9.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "default", + "bootparam", + "btrfs", + "elf_uapi", + "image", + "ioctl", + "landlock", + "netlink", + "io_uring", + "if_arp", + "if_ether", + "if_packet", + "net", + "ptrace", + "prctl", + "elf", + "xdp", + "mempolicy", + "system", + "loop_device" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "i686-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Dan Gohman " + ], + "categories": [ + "external-ffi-bindings" + ], + "keywords": [ + "linux", + "uapi", + "ffi" + ], + "readme": "README.md", + "repository": "https://github.com/sunfishcode/linux-raw-sys", + "homepage": null, + "documentation": "https://docs.rs/linux-raw-sys", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "litemap", + "version": "0.7.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", + "license": "Unicode-3.0", + "license_file": null, + "description": "A key-value Map implementation based on a flat, sorted Vec.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "validation" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "litemap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "language_names_hash_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/language_names_hash_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "language_names_lite_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/language_names_lite_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "litemap_bincode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/litemap_bincode.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "litemap_postcard", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/litemap_postcard.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rkyv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/rkyv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "store", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/store.rs", + "edition": "2021", + "required-features": [ + "testing" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "litemap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/benches/litemap.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "databake": [ + "dep:databake" + ], + "default": [ + "alloc" + ], + "serde": [ + "dep:serde" + ], + "testing": [ + "alloc" + ], + "yoke": [ + "dep:yoke" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [], + "keywords": [ + "sorted", + "vec", + "map", + "hashmap", + "btreemap" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": "https://docs.rs/litemap", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "local-esdt-and-nft", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "local_esdt_and_nft", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "local-esdt-and-nft-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "local-esdt-and-nft", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "local-esdt-and-nft-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lock_api", + "version": "0.4.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "owning_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scopeguard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.126", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lock_api", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arc_lock": [], + "atomic_usize": [], + "default": [ + "atomic_usize" + ], + "nightly": [], + "owning_ref": [ + "dep:owning_ref" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "concurrency", + "no-std" + ], + "keywords": [ + "mutex", + "rwlock", + "lock", + "no_std" + ], + "readme": null, + "repository": "https://github.com/Amanieu/parking_lot", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "log", + "version": "0.4.27", + "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A lightweight logging facade for Rust\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "value-bag", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "inline-i128" + ], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.63", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "value-bag", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "test" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "log", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "value", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/benches/value.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "kv": [], + "kv_serde": [ + "kv_std", + "value-bag/serde", + "serde" + ], + "kv_std": [ + "std", + "kv", + "value-bag/error" + ], + "kv_sval": [ + "kv", + "value-bag/sval", + "sval", + "sval_ref" + ], + "kv_unstable": [ + "kv", + "value-bag" + ], + "kv_unstable_serde": [ + "kv_serde", + "kv_unstable_std" + ], + "kv_unstable_std": [ + "kv_std", + "kv_unstable" + ], + "kv_unstable_sval": [ + "kv_sval", + "kv_unstable" + ], + "max_level_debug": [], + "max_level_error": [], + "max_level_info": [], + "max_level_off": [], + "max_level_trace": [], + "max_level_warn": [], + "release_max_level_debug": [], + "release_max_level_error": [], + "release_max_level_info": [], + "release_max_level_off": [], + "release_max_level_trace": [], + "release_max_level_warn": [], + "serde": [ + "dep:serde" + ], + "std": [], + "sval": [ + "dep:sval" + ], + "sval_ref": [ + "dep:sval_ref" + ], + "value-bag": [ + "dep:value-bag" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std", + "serde", + "kv_std", + "kv_sval", + "kv_serde" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "logging" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/log", + "homepage": null, + "documentation": "https://docs.rs/log", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "lottery-erc20", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lottery_erc20", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/src/lottery.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lottery_erc20_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/tests/lottery_erc20_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lottery_erc20_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/tests/lottery_erc20_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lottery-erc20-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "lottery-erc20", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "lottery-erc20-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lottery-esdt", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lottery_esdt", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/src/lottery.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lottery_esdt_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/tests/lottery_esdt_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lottery_esdt_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/tests/lottery_esdt_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lottery-esdt-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "lottery-esdt", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "lottery-esdt-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "loupe", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Profiling tool for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "loupe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/tests/derive.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "derive" + ], + "derive": [ + "loupe-derive" + ], + "enable-indexmap": [ + "indexmap" + ], + "indexmap": [ + "dep:indexmap" + ], + "loupe-derive": [ + "dep:loupe-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/wasmerio/loupe", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "loupe-derive", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Profiling tool for Rust, see the `loupe` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "loupe_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-derive-0.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-derive-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/wasmerio/loupe", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "managed-map-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "esdt-system-sc-mock", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "managed_map_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/src/mmap_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_map_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/tests/managed_map_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_map_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/tests/managed_map_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "managed-map-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "managed-map-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "managed-map-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "map-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "map_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/src/map_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "map-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "map-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "map-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "memchr", + "version": "2.7.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for\n1, 2 or 3 byte search and single substring search.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memchr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "libc": [], + "logging": [ + "dep:log" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "std": [ + "alloc" + ], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant ", + "bluss" + ], + "categories": [], + "keywords": [ + "memchr", + "memmem", + "substring", + "find", + "search" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/memchr", + "homepage": "https://github.com/BurntSushi/memchr", + "documentation": "https://docs.rs/memchr/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "memmap2", + "version": "0.5.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Cross-platform Rust API for memory-mapped file IO", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "owning_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memmap2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/examples/cat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "stable_deref_trait": [ + "dep:stable_deref_trait" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dan Burkert ", + "Yevhenii Reizner " + ], + "categories": [], + "keywords": [ + "mmap", + "memory-map", + "io", + "file" + ], + "readme": "README.md", + "repository": "https://github.com/RazrFalcon/memmap2-rs", + "homepage": null, + "documentation": "https://docs.rs/memmap2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "memmap2", + "version": "0.6.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Cross-platform Rust API for memory-mapped file IO", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "owning_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memmap2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/examples/cat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "stable_deref_trait": [ + "dep:stable_deref_trait" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dan Burkert ", + "Yevhenii Reizner " + ], + "categories": [], + "keywords": [ + "mmap", + "memory-map", + "io", + "file" + ], + "readme": "README.md", + "repository": "https://github.com/RazrFalcon/memmap2-rs", + "homepage": null, + "documentation": "https://docs.rs/memmap2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "memoffset", + "version": "0.6.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.6.5", + "license": "MIT", + "license_file": null, + "description": "offset_of functionality for Rust structs.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memoffset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.6.5/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.6.5/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [], + "unstable_const": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.6.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Gilad Naaman " + ], + "categories": [ + "no-std" + ], + "keywords": [ + "mem", + "offset", + "offset_of", + "offsetof" + ], + "readme": "README.md", + "repository": "https://github.com/Gilnaa/memoffset", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "memoffset", + "version": "0.9.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", + "license": "MIT", + "license_file": null, + "description": "offset_of functionality for Rust structs.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memoffset", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [], + "unstable_const": [], + "unstable_offset_of": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Gilad Naaman " + ], + "categories": [ + "no-std" + ], + "keywords": [ + "mem", + "offset", + "offset_of", + "offsetof" + ], + "readme": "README.md", + "repository": "https://github.com/Gilnaa/memoffset", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "mime", + "version": "0.3.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Strongly Typed Mimes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "mime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "cmp", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/cmp.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/fmt.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/parse.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [], + "keywords": [ + "mime", + "media-extensions", + "media-types" + ], + "readme": "README.md", + "repository": "https://github.com/hyperium/mime", + "homepage": null, + "documentation": "https://docs.rs/mime", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "minimal-lexical", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Fast float parsing conversion routines.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "minimal_lexical", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bellerophon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/bellerophon.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bellerophon_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/bellerophon_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/integration_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lemire_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/lemire_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "libm_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/libm_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mask_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/mask_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "number_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/number_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/parse_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rounding_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/rounding_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "slow_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/slow_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stackvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/stackvec.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "vec_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/vec_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "compact": [], + "default": [ + "std" + ], + "lint": [], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Huszagh " + ], + "categories": [ + "parsing", + "no-std" + ], + "keywords": [ + "parsing", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/Alexhuszagh/minimal-lexical", + "homepage": null, + "documentation": "https://docs.rs/minimal-lexical", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "miniz_oxide", + "version": "0.8.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "license": "MIT OR Zlib OR Apache-2.0", + "license_file": null, + "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "adler2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "simd-adler32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "miniz_oxide", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [ + "dep:alloc" + ], + "block-boundary": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "with-alloc" + ], + "rustc-dep-of-std": [ + "core", + "alloc", + "compiler_builtins", + "adler2/rustc-dep-of-std" + ], + "serde": [ + "dep:serde" + ], + "simd": [ + "simd-adler32" + ], + "simd-adler32": [ + "dep:simd-adler32" + ], + "std": [], + "with-alloc": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Frommi ", + "oyvindln ", + "Rich Geldreich richgel99@gmail.com" + ], + "categories": [ + "compression" + ], + "keywords": [ + "zlib", + "miniz", + "deflate", + "encoding" + ], + "readme": "Readme.md", + "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", + "homepage": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", + "documentation": "https://docs.rs/miniz_oxide", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "mio", + "version": "1.0.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", + "license": "MIT", + "license_file": null, + "description": "Lightweight non-blocking I/O.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.159", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"hermit\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.159", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "wasi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.159", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Wdk_Foundation", + "Wdk_Storage_FileSystem", + "Wdk_System_IO", + "Win32_Foundation", + "Win32_Networking_WinSock", + "Win32_Storage_FileSystem", + "Win32_System_IO", + "Win32_System_WindowsProgramming" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "mio", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_listenfd_server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/tcp_listenfd_server.rs", + "edition": "2021", + "required-features": [ + "os-poll", + "net" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/tcp_server.rs", + "edition": "2021", + "required-features": [ + "os-poll", + "net" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "udp_server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/udp_server.rs", + "edition": "2021", + "required-features": [ + "os-poll", + "net" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "log" + ], + "log": [ + "dep:log" + ], + "net": [], + "os-ext": [ + "os-poll", + "windows-sys/Win32_System_Pipes", + "windows-sys/Win32_Security" + ], + "os-poll": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ], + "targets": [ + "aarch64-apple-ios", + "aarch64-linux-android", + "wasm32-wasi", + "x86_64-apple-darwin", + "x86_64-pc-windows-gnu", + "x86_64-pc-windows-msvc", + "x86_64-unknown-dragonfly", + "x86_64-unknown-freebsd", + "x86_64-unknown-illumos", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-netbsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-hermit" + ] + } + }, + "playground": { + "features": [ + "os-poll", + "os-ext", + "net" + ] + } + }, + "publish": null, + "authors": [ + "Carl Lerche ", + "Thomas de Zeeuw ", + "Tokio Contributors " + ], + "categories": [ + "asynchronous" + ], + "keywords": [ + "io", + "async", + "non-blocking" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/mio", + "homepage": "https://github.com/tokio-rs/mio", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "more-asserts", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "license": "CC0-1.0", + "license_file": null, + "description": "Small library providing additional assert_* and debug_assert_* macros.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "more_asserts", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/more-asserts-0.2.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/more-asserts-0.2.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Thom Chiovoloni " + ], + "categories": [], + "keywords": [ + "assert", + "debug_assert", + "debug", + "assertions", + "testing" + ], + "readme": "README.md", + "repository": "https://github.com/thomcc/rust-more-asserts", + "homepage": "https://github.com/thomcc/rust-more-asserts", + "documentation": "https://docs.rs/more-asserts", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multi-contract-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multi_contract_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/src/multi_contract_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_contract_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/tests/multi_contract_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_contract_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/tests/multi_contract_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "example_feature": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multi-contract-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multi-contract-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multi-contract-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multisig", + "version": "1.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmer-experimental" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multisig", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/src/multisig.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adder_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/adder_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multisig_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multisig_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multisig_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multisig_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multisig-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multisig", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multisig-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact/src/multisig_interact.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multisig-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multisig", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multisig-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-core", + "version": "0.14.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX chain interfaces, constants, and base types", + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-codec", + "source": null, + "req": "=0.22.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_core", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/core/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/chain/core/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "vm", + "tools" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-scenario-format", + "version": "0.23.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "Parser/writer of the MultiversX transaction scenario format", + "source": null, + "dependencies": [ + { + "name": "bech32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_scenario_format", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "interpreter_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/tests/interpreter_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reconstructor_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/tests/reconstructor_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-vm", + "version": "0.14.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX VM implementation and tooling", + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ed25519-dalek", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-core", + "source": null, + "req": "=0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" + }, + { + "name": "multiversx-chain-vm-executor", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-vm-executor-wasmer", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-vm-executor-wasmer-experimental", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_seeder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_vm", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gas_schedule_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/tests/gas_schedule_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_crypto", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/tests/test_crypto.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "multiversx-chain-vm-executor-wasmer": [ + "dep:multiversx-chain-vm-executor-wasmer" + ], + "multiversx-chain-vm-executor-wasmer-experimental": [ + "dep:multiversx-chain-vm-executor-wasmer-experimental" + ], + "rand": [ + "dep:rand" + ], + "wasm-incompatible": [ + "rand" + ], + "wasmer-experimental": [ + "multiversx-chain-vm-executor-wasmer-experimental" + ], + "wasmer-prod": [ + "multiversx-chain-vm-executor-wasmer" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "vm", + "tools" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-vm-executor", + "version": "0.3.0", + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX VM executor interface", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_vm_executor", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deserialization_from_file_test", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/tests/deserialization_from_file_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "Ovidiu Stinga ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "blockchain", + "VM" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-vm-executor-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-vm-executor-wasmer", + "version": "0.3.0", + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer@0.3.0", + "license": null, + "license_file": null, + "description": null, + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-vm-executor", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "singlepass", + "sys", + "universal", + "wat" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-vm", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_vm_executor_wasmer", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-wasmer/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "endpoints_test", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-wasmer/tests/endpoints_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-wasmer/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-chain-vm-executor-wasmer-experimental", + "version": "0.3.0", + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", + "license": null, + "license_file": null, + "description": null, + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-vm-executor", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rc-new-cyclic-fallible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "singlepass", + "sys", + "wat" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_chain_vm_executor_wasmer_experimental", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "endpoints_test", + "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/tests/endpoints_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-price-aggregator-sc", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX Price aggregator Smart Contract", + "source": null, + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_price_aggregator_sc", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_stress_blackbox", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_stress_blackbox.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "price_aggregator_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Claudiu-Marcel Bruda ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-price-aggregator-sc-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-price-aggregator-sc", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multiversx-price-aggregator-sc-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX smart contract API", + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-core", + "source": null, + "req": "=0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" + }, + { + "name": "multiversx-sc-codec", + "source": null, + "req": "=0.22.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec" + }, + { + "name": "multiversx-sc-derive", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive" + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.19", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unwrap-infallible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "formatter_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/tests/formatter_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "esdt-token-payment-legacy-decode": [], + "managed-buffer-builder-cached": [], + "num-bigint": [ + "multiversx-sc-codec/num-bigint" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies", + "development-tools" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.83" + }, + { + "name": "multiversx-sc-codec", + "version": "0.22.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "Lightweight binary serializer/deserializer, written especially for MultiversX smart contracts", + "source": null, + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-codec-derive", + "source": null, + "req": "=0.22.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unwrap-infallible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-codec-derive", + "source": null, + "req": "=0.22.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_codec", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_bitflags_struct", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_bitflags_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_empty_struct_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_empty_struct_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_enum_or_default_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_or_default_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_enum_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_enum_tricky_defaults_fieldless_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_tricky_defaults_fieldless_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_enum_tricky_defaults_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_tricky_defaults_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_hygiene", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_hygiene.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_struct_or_default_generic_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_or_default_generic_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_struct_or_default_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_or_default_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_struct_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_struct_with_generic_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_with_generic_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_tuple_struct_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_tuple_struct_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_impl_enum", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_enum.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_impl_struct", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_impl_struct_opt_field", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_struct_opt_field.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_impl_wrapped_array", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_wrapped_array.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "derive": [ + "multiversx-sc-codec-derive" + ], + "multiversx-sc-codec-derive": [ + "dep:multiversx-sc-codec-derive" + ], + "num-bigint": [ + "dep:num-bigint" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies", + "development-tools" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-codec-derive", + "version": "0.22.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "Macro implementations of multiversx-sc-codec #[derive(NestedEncode, NestedDecode, TopEncode, TopDecode)]", + "source": null, + "dependencies": [ + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.94", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.0.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "multiversx_sc_codec_derive", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "syn/full", + "syn/parsing", + "syn/extra-traits" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "dorin.iancu ", + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies", + "development-tools" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-derive", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX smart contract API procedural macros", + "source": null, + "dependencies": [ + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.94", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "radix_trie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.0.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "multiversx_sc_derive", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "syn/full", + "syn/parsing", + "syn/extra-traits" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-meta", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX smart contract crate management standalone tool", + "source": null, + "dependencies": [ + { + "name": "bip39", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "common-path", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "copy_dir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "home", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.5.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc", + "num-bigint" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "pathdiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "blocking", + "json" + ], + "target": null, + "registry": null + }, + { + "name": "ruplacer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "preserve_order" + ], + "target": null, + "registry": null + }, + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "deflate" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "sc-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "install_debugger_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/install_debugger_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stg_process_code_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/stg_process_code_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "template_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/template_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "template-test-current": [], + "template-test-released": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract", + "debug" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-meta-lib", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX smart contract meta-programming tools and build system", + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc", + "num-bigint" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "preserve_order" + ], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.227", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmprinter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.227", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.217.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_meta_lib", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ei_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/tests/ei_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_contract_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/tests/multi_contract_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract", + "debug" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-modules", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX WebAssembly standard smart contract modules", + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_modules", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [ + "multiversx-sc/alloc" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-scenario", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX tools for writing and executing scenarios", + "source": null, + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bech32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-scenario-format", + "source": null, + "req": "^0.23.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format" + }, + { + "name": "multiversx-chain-vm", + "source": null, + "req": "=0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm" + }, + { + "name": "multiversx-chain-vm-executor", + "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc", + "num-bigint" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pathdiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "simple-error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unwrap-infallible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_scenario", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "address_eq_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/address_eq_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_float_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_float_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_int_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_int_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_uint_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_uint_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "contract_without_macros", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/contract_without_macros.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_biguint_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_biguint_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_decimal_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_decimal_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_enum_1", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_1.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_enum_2_managed", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_2_managed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_enum_simple", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_esdt_token_payment_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_esdt_token_payment_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_struct_1_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_1_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_struct_2_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_2_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_managed_vec_item_struct_3", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_3.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "esdt_token_payment_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/esdt_token_payment_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hex_call_data_arg_load", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/hex_call_data_arg_load.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_buffer_read_to_end_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_buffer_read_to_end_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_codec_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_codec_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_decimal_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_decimal_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_map_encoded_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_map_encoded_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_option_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_option_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_ref_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_ref_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_type_debug_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_type_debug_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "managed_vec_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_vec_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_transfer_with_egld", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/multi_transfer_with_egld.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi_value_encoded_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/multi_value_encoded_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "path_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/path_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenarios_io_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/scenarios_io_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenarios_self_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/scenarios_self_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "single_tx_api_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/single_tx_api_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "static_buffer_ref_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/static_buffer_ref_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_bi_di_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_bi_di_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_map_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_map_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_map_storage_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_map_storage_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_set_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_set_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_hash_unordered_set_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_unordered_set_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_linked_list_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_linked_list_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_print_api", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_print_api.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_queue_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_queue_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_vec_mapper", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_vec_mapper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_identifier_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/token_identifier_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_properties_result_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/token_properties_result_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tx_call_normalize", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/tx_call_normalize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "wasm-incompatible" + ], + "run-go-tests": [], + "wasm-incompatible": [ + "multiversx-chain-vm/wasm-incompatible" + ], + "wasmer-experimental": [ + "multiversx-chain-vm/wasmer-experimental" + ], + "wasmer-prod": [ + "multiversx-chain-vm/wasmer-prod" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "development-tools::debugging" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract", + "debug" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-snippets", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX framework for building smart contract interaction snippets", + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-scenario-format", + "source": null, + "req": "^0.23.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "multiversx-sdk", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" + }, + { + "name": "multiversx-sdk-dapp", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp" + }, + { + "name": "multiversx-sdk-http", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http" + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_snippets", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_deployed_address", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_deployed_address.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_issued_token_identifier", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_issued_token_identifier.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_logs", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_logs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_multi_contract_sc_result", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_multi_contract_sc_result.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_multiple_sc_results", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_multiple_sc_results.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_tx_sc_result", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_sc_result.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "dapp": [ + "multiversx-sdk-dapp" + ], + "default": [ + "http", + "default-tls" + ], + "default-tls": [ + "multiversx-sdk-http/default-tls" + ], + "http": [ + "multiversx-sdk-http", + "tokio" + ], + "multiversx-sdk-dapp": [ + "dep:multiversx-sdk-dapp" + ], + "multiversx-sdk-http": [ + "dep:multiversx-sdk-http" + ], + "static-tls": [ + "multiversx-sdk-http/static-tls" + ], + "tokio": [ + "dep:tokio" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "blockchain", + "contract", + "snippets" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sc-wasm-adapter", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX WebAssembly VM API wrapper", + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sc_wasm_adapter", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies", + "development-tools::ffi" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sdk", + "version": "0.9.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "license": "MIT", + "license_file": null, + "description": "SDK for interacting with the MultiversX blockchain", + "source": null, + "dependencies": [ + { + "name": "aes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bech32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bip39", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rand" + ], + "target": null, + "registry": null + }, + { + "name": "ctr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hmac", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-chain-core", + "source": null, + "req": "=0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" + }, + { + "name": "pbkdf2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pem", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scrypt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.130", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.68", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "preserve_order" + ], + "target": null, + "registry": null + }, + { + "name": "serde_repr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "v4" + ], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sdk", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "generate_mnemonic", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/examples/generate_mnemonic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "retrieve_tx_on_network_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/tests/retrieve_tx_on_network_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wallet_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/tests/wallet_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "api-bindings" + ], + "keywords": [ + "multiversx", + "blockchain", + "sdk", + "api" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sdk-dapp", + "version": "0.9.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "license": "MIT", + "license_file": null, + "description": "SDK for interacting with the MultiversX blockchain for wasm-bindgen environments", + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.44", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "gloo-net", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.70", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sdk", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.93", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.43", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.70", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sdk_dapp", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "api-bindings" + ], + "keywords": [ + "multiversx", + "blockchain", + "sdk", + "wasm", + "wasm-bindgen" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-sdk-http", + "version": "0.9.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "license": "MIT", + "license_file": null, + "description": "SDK for interacting with the MultiversX blockchain", + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.44", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sdk", + "source": null, + "req": "=0.9.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "blocking", + "json" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_sdk_http", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "account", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/account.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "account_storage", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/account_storage.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_esdt_tokens", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_esdt_tokens.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_hyper_block_by_hash", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_by_hash.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_hyper_block_by_nonce", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_by_nonce.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_hyper_block_latest", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_latest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_network_config", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_network_config.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_network_economics", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_network_economics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "sign_tx", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/sign_tx.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "sign_txs", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/sign_txs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tx_cost", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_cost.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tx_default_args", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_default_args.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tx_info", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_info.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "vm_query", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/vm_query.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "get_network_config_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/tests/get_network_config_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain_simulator": [], + "default": [ + "default-tls" + ], + "default-tls": [ + "reqwest/default-tls" + ], + "static-tls": [ + "reqwest/rustls-tls" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "MultiversX " + ], + "categories": [ + "cryptography::cryptocurrencies", + "api-bindings" + ], + "keywords": [ + "multiversx", + "blockchain", + "sdk", + "api" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-wegld-swap-sc", + "version": "0.57.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", + "license": "GPL-3.0-only", + "license_file": null, + "description": "MultiversX Wrapped EGLD Smart Contract", + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "multiversx_wegld_swap_sc", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/src/wegld.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wegld_swap_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/tests/wegld_swap_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dorin Iancu ", + "MultiversX " + ], + "categories": [ + "no-std", + "wasm", + "cryptography::cryptocurrencies" + ], + "keywords": [ + "multiversx", + "wasm", + "webassembly", + "blockchain", + "contract" + ], + "readme": "README.md", + "repository": "https://github.com/multiversx/mx-sdk-rs", + "homepage": "https://multiversx.com/", + "documentation": "https://docs.multiversx.com/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "multiversx-wegld-swap-sc-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "multiversx-wegld-swap-sc", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "multiversx-wegld-swap-sc-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "munge", + "version": "0.4.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", + "license": "MIT", + "license_file": null, + "description": "Macro for custom destructuring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "munge_macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.4.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "munge", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "macro", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/djkoloski/munge", + "homepage": null, + "documentation": "https://docs.rs/munge", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "munge_macro", + "version": "0.4.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", + "license": "MIT", + "license_file": null, + "description": "Macro for custom destructuring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "full", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "munge_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge_macro-0.4.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge_macro-0.4.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "macro", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/djkoloski/munge", + "homepage": null, + "documentation": "https://docs.rs/munge_macro", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "mxpy-snippet-generator", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "bech32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "mxpy-snippet-generator", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator/src/mxpy_snippet_generator.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "native-tls", + "version": "0.2.14", + "id": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A wrapper over a platform's native TLS implementation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-cert-gen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", + "registry": null + }, + { + "name": "openssl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", + "registry": null + }, + { + "name": "openssl-probe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", + "registry": null + }, + { + "name": "openssl-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.81", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"macos\")", + "registry": null + }, + { + "name": "schannel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"windows\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + }, + { + "name": "security-framework", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + }, + { + "name": "security-framework-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "native_tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "google-connect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/google-connect.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple-server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/simple-server.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple-server-pkcs8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/simple-server-pkcs8.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alpn": [ + "security-framework/alpn" + ], + "vendored": [ + "openssl/vendored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "alpn" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/sfackler/rust-native-tls", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.80.0" + }, + { + "name": "nft-minter", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nft_minter", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_minter_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/tests/nft_minter_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_minter_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/tests/nft_minter_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-minter-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "nft-minter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "nft-minter-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-storage-prepay", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nft_storage_prepay", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/src/nft_storage_prepay.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-storage-prepay-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "nft-storage-prepay", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "nft-storage-prepay-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-subscription", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nft_subscription", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_subscription_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/tests/nft_subscription_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nft_subscription_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/tests/nft_subscription_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Thouny " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nft-subscription-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "nft-subscription", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "nft-subscription-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Thouny " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nibble_vec", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", + "license": "MIT", + "license_file": null, + "description": "Vector data-structure for half-byte values.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nibble_vec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/examples/debug.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "nib_bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/benches/nib_bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Michael Sproul " + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "vector", + "nibble", + "slice", + "data-structure", + "collection" + ], + "readme": "README.md", + "repository": "https://github.com/michaelsproul/rust_nibble_vec", + "homepage": null, + "documentation": "https://docs.rs/rust_nibble_vec", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nom", + "version": "7.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "license": "MIT", + "license_file": null, + "description": "A byte-oriented, zero-copy, parser combinators library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "minimal-lexical", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/custom_error.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/json.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/json_iterator.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/iterator.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "s_expression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/s_expression.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/string.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/arithmetic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic_ast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/arithmetic_ast.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "css", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/css.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom_errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/custom_errors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "escaped", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/escaped.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "float", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/float.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fnmut", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/fnmut.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/ini.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ini_str", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/ini_str.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issues", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/issues.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/json.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mp4", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/mp4.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiline", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/multiline.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "overflow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/overflow.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reborrow_fold", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/reborrow_fold.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "docsrs": [], + "std": [ + "alloc", + "memchr/std", + "minimal-lexical/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "features": [ + "alloc", + "std", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "contact@geoffroycouprie.com" + ], + "categories": [ + "parsing" + ], + "keywords": [ + "parser", + "parser-combinators", + "parsing", + "streaming", + "bit" + ], + "readme": "README.md", + "repository": "https://github.com/Geal/nom", + "homepage": null, + "documentation": "https://docs.rs/nom", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.48" + }, + { + "name": "num-bigint", + "version": "0.4.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Big integer implementation for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-integer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.46", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "i128" + ], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "i128" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "num_bigint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bigint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bigint_bitwise", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint_bitwise.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bigint_scalar", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint_scalar.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "biguint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/biguint.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "biguint_scalar", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/biguint_scalar.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fuzzed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/fuzzed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "modpow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/modpow.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/roots.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bigint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/bigint.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "factorial", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/factorial.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "gcd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/gcd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/roots.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "shootout-pidigits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/shootout-pidigits.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "default": [ + "std" + ], + "quickcheck": [ + "dep:quickcheck" + ], + "rand": [ + "dep:rand" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "num-integer/std", + "num-traits/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std", + "serde", + "rand", + "quickcheck", + "arbitrary" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "data-structures", + "science" + ], + "keywords": [ + "mathematics", + "numerics", + "bignum" + ], + "readme": "README.md", + "repository": "https://github.com/rust-num/num-bigint", + "homepage": "https://github.com/rust-num/num-bigint", + "documentation": "https://docs.rs/num-bigint", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "num-integer", + "version": "0.1.46", + "id": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Integer traits and functions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "i128" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "num_integer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "average", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/tests/average.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/tests/roots.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "average", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/average.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "gcd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/gcd.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/roots.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "i128": [], + "std": [ + "num-traits/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "science", + "no-std" + ], + "keywords": [ + "mathematics", + "numerics" + ], + "readme": "README.md", + "repository": "https://github.com/rust-num/num-integer", + "homepage": "https://github.com/rust-num/num-integer", + "documentation": "https://docs.rs/num-integer", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "num-traits", + "version": "0.2.19", + "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Numeric traits for generic mathematics", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "num_traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/tests/cast.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "i128": [], + "libm": [ + "dep:libm" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "science", + "no-std" + ], + "keywords": [ + "mathematics", + "numerics" + ], + "readme": "README.md", + "repository": "https://github.com/rust-num/num-traits", + "homepage": "https://github.com/rust-num/num-traits", + "documentation": "https://docs.rs/num-traits", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "num_cpus", + "version": "1.16.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Get the number of CPUs on a machine.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.26", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(windows))", + "registry": null + }, + { + "name": "hermit-abi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"hermit\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "num_cpus", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "values", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/examples/values.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "hardware-support" + ], + "keywords": [ + "cpu", + "cpus", + "cores" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/num_cpus", + "homepage": null, + "documentation": "https://docs.rs/num_cpus", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "object", + "version": "0.28.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A unified interface for reading and writing object file formats.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "ahash" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.57", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "object", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.28.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.28.4/tests/integration.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse_self", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.28.4/tests/parse_self.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "all": [ + "read", + "write", + "std", + "compression", + "wasm" + ], + "alloc": [ + "dep:alloc" + ], + "archive": [], + "cargo-all": [], + "coff": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "compression": [ + "flate2", + "std" + ], + "core": [ + "dep:core" + ], + "crc32fast": [ + "dep:crc32fast" + ], + "default": [ + "read", + "compression" + ], + "doc": [ + "read_core", + "write_std", + "std", + "compression", + "archive", + "coff", + "elf", + "macho", + "pe", + "wasm" + ], + "elf": [], + "flate2": [ + "dep:flate2" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "indexmap": [ + "dep:indexmap" + ], + "macho": [], + "pe": [ + "coff" + ], + "read": [ + "read_core", + "archive", + "coff", + "elf", + "macho", + "pe", + "unaligned" + ], + "read_core": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins", + "alloc", + "memchr/rustc-dep-of-std" + ], + "std": [ + "memchr/std" + ], + "unaligned": [], + "wasm": [ + "wasmparser" + ], + "wasmparser": [ + "dep:wasmparser" + ], + "write": [ + "write_std", + "coff", + "elf", + "macho", + "pe" + ], + "write_core": [ + "crc32fast", + "indexmap", + "hashbrown" + ], + "write_std": [ + "write_core", + "std", + "indexmap/std", + "crc32fast/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.28.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "doc" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "object", + "elf", + "mach-o", + "pe", + "coff" + ], + "readme": "README.md", + "repository": "https://github.com/gimli-rs/object", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "object", + "version": "0.32.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A unified interface for reading and writing object file formats.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "ahash" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruzstd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.118.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "object", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/tests/integration.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse_self", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/tests/parse_self.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "all": [ + "read", + "write", + "std", + "compression", + "wasm" + ], + "alloc": [ + "dep:alloc" + ], + "archive": [], + "cargo-all": [], + "coff": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "compression": [ + "dep:flate2", + "dep:ruzstd", + "std" + ], + "core": [ + "dep:core" + ], + "default": [ + "read", + "compression" + ], + "doc": [ + "read_core", + "write_std", + "std", + "compression", + "archive", + "coff", + "elf", + "macho", + "pe", + "wasm", + "xcoff" + ], + "elf": [], + "macho": [], + "pe": [ + "coff" + ], + "read": [ + "read_core", + "archive", + "coff", + "elf", + "macho", + "pe", + "xcoff", + "unaligned" + ], + "read_core": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins", + "alloc", + "memchr/rustc-dep-of-std" + ], + "std": [ + "memchr/std" + ], + "unaligned": [], + "unstable": [], + "unstable-all": [ + "all", + "unstable" + ], + "wasm": [ + "dep:wasmparser" + ], + "write": [ + "write_std", + "coff", + "elf", + "macho", + "pe", + "xcoff" + ], + "write_core": [ + "dep:crc32fast", + "dep:indexmap", + "dep:hashbrown" + ], + "write_std": [ + "write_core", + "std", + "indexmap?/std", + "crc32fast?/std" + ], + "xcoff": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "doc" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "object", + "elf", + "mach-o", + "pe", + "coff" + ], + "readme": "README.md", + "repository": "https://github.com/gimli-rs/object", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "object", + "version": "0.36.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A unified interface for reading and writing object file formats.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruzstd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.222.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "object", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/tests/integration.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse_self", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/tests/parse_self.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "all": [ + "read", + "write", + "build", + "std", + "compression", + "wasm" + ], + "alloc": [ + "dep:alloc" + ], + "archive": [], + "build": [ + "build_core", + "write_std", + "elf" + ], + "build_core": [ + "read_core", + "write_core" + ], + "cargo-all": [], + "coff": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "compression": [ + "dep:flate2", + "dep:ruzstd", + "std" + ], + "core": [ + "dep:core" + ], + "default": [ + "read", + "compression" + ], + "doc": [ + "read_core", + "write_std", + "build_core", + "std", + "compression", + "archive", + "coff", + "elf", + "macho", + "pe", + "wasm", + "xcoff" + ], + "elf": [], + "macho": [], + "pe": [ + "coff" + ], + "read": [ + "read_core", + "archive", + "coff", + "elf", + "macho", + "pe", + "xcoff", + "unaligned" + ], + "read_core": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins", + "alloc", + "memchr/rustc-dep-of-std" + ], + "std": [ + "memchr/std" + ], + "unaligned": [], + "unstable": [], + "unstable-all": [ + "all", + "unstable" + ], + "wasm": [ + "dep:wasmparser" + ], + "write": [ + "write_std", + "coff", + "elf", + "macho", + "pe", + "xcoff" + ], + "write_core": [ + "dep:crc32fast", + "dep:indexmap", + "dep:hashbrown" + ], + "write_std": [ + "write_core", + "std", + "indexmap?/std", + "crc32fast?/std" + ], + "xcoff": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "doc" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "object", + "elf", + "mach-o", + "pe", + "coff" + ], + "readme": "README.md", + "repository": "https://github.com/gimli-rs/object", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "once_cell", + "version": "1.21.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Single assignment cells and lazy values.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "critical-section", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "critical-section", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "once_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bench_acquire", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/bench_acquire.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lazy_static", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/lazy_static.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "reentrant_init_deadlocks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/reentrant_init_deadlocks.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "regex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/regex.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "test_synchronization", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/test_synchronization.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "it", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/tests/it/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "race" + ], + "atomic-polyfill": [ + "critical-section" + ], + "critical-section": [ + "dep:critical-section", + "portable-atomic" + ], + "default": [ + "std" + ], + "parking_lot": [ + "dep:parking_lot_core" + ], + "portable-atomic": [ + "dep:portable-atomic" + ], + "race": [], + "std": [ + "alloc" + ], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Aleksey Kladov " + ], + "categories": [ + "rust-patterns", + "memory-management" + ], + "keywords": [ + "lazy", + "static" + ], + "readme": "README.md", + "repository": "https://github.com/matklad/once_cell", + "homepage": null, + "documentation": "https://docs.rs/once_cell", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "openssl", + "version": "0.10.72", + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", + "license": "Apache-2.0", + "license_file": null, + "description": "OpenSSL bindings", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "openssl-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.107", + "kind": null, + "rename": "ffi", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "foreign-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "openssl-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "openssl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "mk_certs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/examples/mk_certs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aws-lc": [ + "ffi/aws-lc" + ], + "bindgen": [ + "ffi/bindgen" + ], + "default": [], + "unstable_boringssl": [ + "ffi/unstable_boringssl" + ], + "v101": [], + "v102": [], + "v110": [], + "v111": [], + "vendored": [ + "ffi/vendored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [ + "cryptography", + "api-bindings" + ], + "keywords": [ + "crypto", + "tls", + "ssl", + "dtls" + ], + "readme": "README.md", + "repository": "https://github.com/sfackler/rust-openssl", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "openssl-macros", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Internal macros used by the openssl crate.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "openssl_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "openssl-probe", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Tool for helping to find SSL certificate locations on the system for OpenSSL\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "openssl_probe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "probe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/examples/probe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/openssl-probe", + "homepage": "https://github.com/alexcrichton/openssl-probe", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "openssl-sys", + "version": "0.9.107", + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", + "license": "MIT", + "license_file": null, + "description": "FFI bindings to OpenSSL", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aws-lc-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.27", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "ssl" + ], + "target": null, + "registry": null + }, + { + "name": "bssl-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.69.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "experimental" + ], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "openssl-src", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^300.2.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "legacy" + ], + "target": null, + "registry": null + }, + { + "name": "pkg-config", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vcpkg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "openssl_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-main", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/build/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aws-lc": [ + "dep:aws-lc-sys" + ], + "bindgen": [ + "dep:bindgen" + ], + "bssl-sys": [ + "dep:bssl-sys" + ], + "openssl-src": [ + "dep:openssl-src" + ], + "unstable_boringssl": [ + "bssl-sys" + ], + "vendored": [ + "openssl-src" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/Cargo.toml", + "metadata": { + "pkg-config": { + "openssl": "1.0.1" + } + }, + "publish": null, + "authors": [ + "Alex Crichton ", + "Steven Fackler " + ], + "categories": [ + "cryptography", + "external-ffi-bindings" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/sfackler/rust-openssl", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": "openssl", + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "order-book-factory", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "order_book_factory", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "order-book-pair", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "order_book_pair", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pair_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/tests/pair_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pair_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/tests/pair_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "pair-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "order-book-pair", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "pair-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "panic-message-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasmer-experimental" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "panic_message_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/src/panic_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pmf_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pmf_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pmf_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pmf_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "run-go-tests": [ + "multiversx-sc-scenario/run-go-tests" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "panic-message-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "panic-message-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "panic-message-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "parent", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "parent", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "parent-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "parent", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "parent-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "parking_lot", + "version": "0.12.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "More compact and efficient implementations of the standard synchronization primitives.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lock_api", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "parking_lot", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue_392", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/tests/issue_392.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue_203", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/tests/issue_203.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "arc_lock": [ + "lock_api/arc_lock" + ], + "deadlock_detection": [ + "parking_lot_core/deadlock_detection" + ], + "default": [], + "hardware-lock-elision": [], + "nightly": [ + "parking_lot_core/nightly", + "lock_api/nightly" + ], + "owning_ref": [ + "lock_api/owning_ref" + ], + "send_guard": [], + "serde": [ + "lock_api/serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arc_lock", + "serde", + "deadlock_detection" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "arc_lock", + "serde", + "deadlock_detection" + ] + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "mutex", + "condvar", + "rwlock", + "once", + "thread" + ], + "readme": "README.md", + "repository": "https://github.com/Amanieu/parking_lot", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "parking_lot_core", + "version": "0.9.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An advanced API for creating custom synchronization primitives.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.60", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "petgraph", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thread-id", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "redox_syscall", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"redox\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "parking_lot_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "backtrace": [ + "dep:backtrace" + ], + "deadlock_detection": [ + "petgraph", + "thread-id", + "backtrace" + ], + "nightly": [], + "petgraph": [ + "dep:petgraph" + ], + "thread-id": [ + "dep:thread-id" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "mutex", + "condvar", + "rwlock", + "once", + "thread" + ], + "readme": null, + "repository": "https://github.com/Amanieu/parking_lot", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "password-hash", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Traits which describe the functionality of password hashing algorithms,\nas well as a `no_std`-friendly implementation of the PHC string format\n(a well-defined subset of the Modular Crypt Format a.k.a. MCF)\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64ct", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "password_hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoding", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/encoding.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hashing", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/hashing.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "password_hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/password_hash.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_vectors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/test_vectors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "base64ct/alloc" + ], + "default": [ + "rand_core" + ], + "getrandom": [ + "rand_core/getrandom" + ], + "rand_core": [ + "dep:rand_core" + ], + "std": [ + "alloc", + "base64ct/std", + "rand_core/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "authentication", + "cryptography", + "no-std" + ], + "keywords": [ + "crypt", + "mcf", + "password", + "pbkdf", + "phc" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits/tree/master/password-hash", + "homepage": null, + "documentation": "https://docs.rs/password-hash", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "paste", + "version": "1.0.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Macros for all your token pasting needs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "paste-test-suite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.49", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "paste", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_item", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_item.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_attr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_attr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_doc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_doc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_expr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "macros" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/paste", + "homepage": null, + "documentation": "https://docs.rs/paste", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "pathdiff", + "version": "0.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Library for diffing paths to obtain relative paths", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "camino", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pathdiff", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "camino": [ + "dep:camino" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "path", + "relative" + ], + "readme": null, + "repository": "https://github.com/Manishearth/pathdiff", + "homepage": null, + "documentation": "https://docs.rs/pathdiff/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "payable-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "payable_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/src/payable_features.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "payable_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "payable_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "payable_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "payable-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "payable-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "payable-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "payable-interactor", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "payable-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "payable_interactor", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/src/payable_interactor.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "payable-interactor", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/src/payable_interactor_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "payable_interactor_cs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/tests/payable_interactor_cs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "pbkdf2", + "version": "0.12.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Generic implementation of PBKDF2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "mac" + ], + "target": null, + "registry": null + }, + { + "name": "hmac", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "password-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "rand_core" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hmac", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "streebog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pbkdf2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/tests/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/benches/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "hmac" + ], + "hmac": [ + "dep:hmac" + ], + "parallel": [ + "rayon", + "std" + ], + "password-hash": [ + "dep:password-hash" + ], + "rayon": [ + "dep:rayon" + ], + "sha1": [ + "dep:sha1" + ], + "sha2": [ + "dep:sha2" + ], + "simple": [ + "hmac", + "password-hash", + "sha2" + ], + "std": [ + "password-hash/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "authentication", + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "hashing", + "password", + "phf" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2", + "homepage": null, + "documentation": "https://docs.rs/pbkdf2", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "pem", + "version": "3.0.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", + "license": "MIT", + "license_file": null, + "description": "Parse and encode PEM-encoded data.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pem", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "pem_benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/benches/pem_benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "base64/std", + "serde?/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jonathan Creekmore " + ], + "categories": [ + "cryptography" + ], + "keywords": [ + "no-std", + "no_std", + "pem" + ], + "readme": "README.md", + "repository": "https://github.com/jcreekmore/pem-rs.git", + "homepage": "https://github.com/jcreekmore/pem-rs.git", + "documentation": "https://docs.rs/pem/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "percent-encoding", + "version": "2.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Percent encoding and decoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "percent_encoding", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "no_std" + ], + "keywords": [], + "readme": null, + "repository": "https://github.com/servo/rust-url/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.51" + }, + { + "name": "pin-project", + "version": "1.1.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A crate for safe and ergonomic pin-projection.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "pin-project-internal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.1.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pin_project", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum-default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/enum-default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum-default-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/enum-default-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "not_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/not_unpin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "not_unpin-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/not_unpin-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pinned_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/pinned_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pinned_drop-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/pinned_drop-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "project_replace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/project_replace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "project_replace-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/project_replace-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "struct-default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/struct-default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "struct-default-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/struct-default-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "unsafe_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/unsafe_unpin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "unsafe_unpin-expanded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/unsafe_unpin-expanded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cfg", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/cfg.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "drop_order", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/drop_order.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "expandtest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/expandtest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pin_project", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/pin_project.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pinned_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/pinned_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proper_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/proper_unpin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "repr_packed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/repr_packed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unsafe_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/unsafe_unpin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "pin_project_internal::*" + ] + }, + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "pin", + "macros", + "attribute" + ], + "readme": "README.md", + "repository": "https://github.com/taiki-e/pin-project", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "pin-project-internal", + "version": "1.1.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Implementation detail of the `pin-project` crate.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "parsing", + "printing", + "clone-impls", + "proc-macro", + "full", + "visit-mut" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "pin_project_internal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "pin", + "macros", + "attribute" + ], + "readme": null, + "repository": "https://github.com/taiki-e/pin-project", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "pin-project-lite", + "version": "0.2.16", + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A lightweight version of pin-project written with declarative macros.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pin_project_lite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "drop_order", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/drop_order.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "expandtest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/expandtest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proper_unpin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/proper_unpin.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [] + }, + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "pin", + "macros" + ], + "readme": "README.md", + "repository": "https://github.com/taiki-e/pin-project-lite", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.37" + }, + { + "name": "pin-utils", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Utilities for pinning\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pin_utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "projection", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/tests/projection.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stack_pin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/tests/stack_pin.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Josef Brandl " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang-nursery/pin-utils", + "homepage": null, + "documentation": "https://docs.rs/pin-utils", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ping-pong-dapp", + "version": "0.1.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "console_log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "dapp" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.210", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yew", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "csr" + ], + "target": null, + "registry": null + }, + { + "name": "yew-router", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yew_icons", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "BootstrapHeartFill" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ping-pong-dapp", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ping-pong-egld", + "version": "0.0.2", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ping_pong_egld", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/src/ping_pong.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ping_pong_egld_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/tests/ping_pong_egld_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ping_pong_egld_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/tests/ping_pong_egld_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Bruda Claudiu-Marcel " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ping-pong-egld-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "ping-pong-egld", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ping_pong_egld_interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/src/interact.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ping-pong-egld-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/src/interact_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "interact_cs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/tests/interact_cs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ping-pong-egld-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "ping-pong-egld", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ping-pong-egld-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Bruda Claudiu-Marcel " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "pinned", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Synchronisation primitives for !Send tasks.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "async-await" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.21.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pinned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pinned-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pinned-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Kaede Hoshiakwa " + ], + "categories": [ + "asynchronous" + ], + "keywords": [ + "async", + "futures", + "non-blocking" + ], + "readme": "README.md", + "repository": "https://github.com/futursolo/pinned", + "homepage": "https://github.com/futursolo/pinned", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "pkcs8", + "version": "0.10.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "der", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "oid" + ], + "target": null, + "registry": null + }, + { + "name": "pkcs5", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "spki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pkcs8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encrypted_private_key", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/encrypted_private_key.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "private_key", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/private_key.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/traits.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "3des": [ + "encryption", + "pkcs5/3des" + ], + "alloc": [ + "der/alloc", + "der/zeroize", + "spki/alloc" + ], + "des-insecure": [ + "encryption", + "pkcs5/des-insecure" + ], + "encryption": [ + "alloc", + "pkcs5/alloc", + "pkcs5/pbes2", + "rand_core" + ], + "getrandom": [ + "rand_core/getrandom" + ], + "pem": [ + "alloc", + "der/pem", + "spki/pem" + ], + "pkcs5": [ + "dep:pkcs5" + ], + "rand_core": [ + "dep:rand_core" + ], + "sha1-insecure": [ + "encryption", + "pkcs5/sha1-insecure" + ], + "std": [ + "alloc", + "der/std", + "spki/std" + ], + "subtle": [ + "dep:subtle" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "data-structures", + "encoding", + "no-std", + "parser-implementations" + ], + "keywords": [ + "crypto", + "key", + "pkcs", + "private" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats/tree/master/pkcs8", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "pkg-config", + "version": "0.3.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pkg_config", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "build-dependencies" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/pkg-config-rs", + "homepage": null, + "documentation": "https://docs.rs/pkg-config", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "ppv-lite86", + "version": "0.2.21", + "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Cross-platform cryptography-oriented low-level SIMD library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "simd" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ppv_lite86", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "no_simd": [], + "simd": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The CryptoCorrosion Contributors" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "simd", + "x86" + ], + "readme": null, + "repository": "https://github.com/cryptocorrosion/cryptocorrosion", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "prettyplease", + "version": "0.1.25", + "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A minimal `syn` syntax tree pretty-printer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.90", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.90", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "parsing" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "prettyplease", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "verbatim": [ + "syn/parsing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools" + ], + "keywords": [ + "rustfmt" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/prettyplease", + "homepage": null, + "documentation": "https://docs.rs/prettyplease", + "edition": "2021", + "links": "prettyplease01", + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "prettyplease", + "version": "0.2.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A minimal `syn` syntax tree pretty-printer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.96", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "indoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.96", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "extra-traits", + "parsing", + "printing", + "visit-mut" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "prettyplease", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_precedence", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/tests/test_precedence.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "verbatim": [ + "syn/parsing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "verbatim" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools" + ], + "keywords": [ + "rustfmt" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/prettyplease", + "homepage": null, + "documentation": "https://docs.rs/prettyplease", + "edition": "2021", + "links": "prettyplease02", + "default_run": null, + "rust_version": "1.62" + }, + { + "name": "proc-macro-error", + "version": "1.0.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Almost drop-in replacement to panics in proc-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro-error-attr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.107", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.5.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.19", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proc_macro_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro-errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/macro-errors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "runtime-errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/runtime-errors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "syn-error" + ], + "syn": [ + "dep:syn" + ], + "syn-error": [ + "syn" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "CreepySkeleton " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "proc-macro", + "error", + "errors" + ], + "readme": "README.md", + "repository": "https://gitlab.com/CreepySkeleton/proc-macro-error", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proc-macro-error-attr", + "version": "1.0.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Attribute macro for proc-macro-error crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "proc_macro_error_attr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "CreepySkeleton " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://gitlab.com/CreepySkeleton/proc-macro-error", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proc-macro-error-attr2", + "version": "2.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Attribute macro for the proc-macro-error2 crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "proc_macro_error_attr2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "CreepySkeleton ", + "GnomedDev " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/GnomedDev/proc-macro-error-2", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "proc-macro-error2", + "version": "2.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Almost drop-in replacement to panics in proc-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro-error-attr2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.99", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proc_macro_error2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro-errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/macro-errors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ok", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/ok.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "runtime-errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/runtime-errors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "syn-error" + ], + "nightly": [], + "syn-error": [ + "dep:syn" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "CreepySkeleton ", + "GnomedDev " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "proc-macro", + "error", + "errors" + ], + "readme": "README.md", + "repository": "https://github.com/GnomedDev/proc-macro-error-2", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "proc-macro2", + "version": "1.0.94", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proc_macro2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "comments", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/comments.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "features", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/features.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "marker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/marker.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_fmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test_fmt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test_size.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "proc-macro" + ], + "nightly": [], + "proc-macro": [], + "span-locations": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustc-args": [ + "--cfg=procmacro2_semver_exempt" + ], + "rustdoc-args": [ + "--cfg=procmacro2_semver_exempt", + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "span-locations" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay ", + "Alex Crichton " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/proc-macro2", + "homepage": null, + "documentation": "https://docs.rs/proc-macro2", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "prokio", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An asynchronous runtime compatible with WebAssembly and non-WebAssembly targets.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "async-await" + ], + "target": null, + "registry": null + }, + { + "name": "pin-project", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pinned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.21.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rt", + "time" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "time" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "gloo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "prokio", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prokio-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prokio-0.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "documenting" + ] + } + } + }, + "publish": null, + "authors": [ + "Kaede Hoshikawa " + ], + "categories": [ + "asynchronous" + ], + "keywords": [ + "yew", + "futures", + "async", + "io" + ], + "readme": "README.md", + "repository": "https://github.com/futursolo/prokio", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "promises-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "promises_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/src/promises_main.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "promises_features_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/tests/promises_features_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "promises-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "promises-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "promises-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-pause", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "check-pause", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proxy_pause", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/src/proxy_pause.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proxy_pause_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/tests/proxy_pause_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proxy_pause_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/tests/proxy_pause_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-pause-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "proxy-pause", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "proxy-pause-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-test-first", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proxy_test_first", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/src/proxy-test-first.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-test-first-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "proxy-test-first", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "proxy-test-first-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-test-second", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proxy_test_second", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/src/proxy-test-second.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proxy-test-second-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "proxy-test-second", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "proxy-test-second-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ptr_meta", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "license": "MIT", + "license_file": null, + "description": "A radioactive stabilization of the ptr_meta rfc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ptr_meta_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ptr_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.1.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.1.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std" + ], + "keywords": [ + "ptr", + "meta", + "no_std" + ], + "readme": "crates-io.md", + "repository": "https://github.com/djkoloski/ptr_meta", + "homepage": null, + "documentation": "https://docs.rs/ptr_meta", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ptr_meta", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "license": "MIT", + "license_file": null, + "description": "A radioactive stabilization of the ptr_meta rfc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ptr_meta_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ptr_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.3.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "derive", + "std" + ], + "derive": [ + "ptr_meta_derive" + ], + "ptr_meta_derive": [ + "dep:ptr_meta_derive" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/ptr_meta", + "homepage": null, + "documentation": "https://docs.rs/ptr_meta", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "ptr_meta_derive", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", + "license": "MIT", + "license_file": null, + "description": "Macros for ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "ptr_meta_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.1.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.1.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/djkoloski/ptr_meta", + "homepage": null, + "documentation": "https://docs.rs/ptr_meta_derive", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ptr_meta_derive", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", + "license": "MIT", + "license_file": null, + "description": "Proc macros for ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "full", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "ptr_meta_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.3.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/ptr_meta", + "homepage": null, + "documentation": "https://docs.rs/ptr_meta_derive", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "queue-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "queue_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/src/queue_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "queue-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "queue-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "queue-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "quinn", + "version": "0.11.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.7", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Versatile QUIC transport protocol implementation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "async-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "async-std", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.19", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quinn-proto", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.10", + "kind": null, + "rename": "proto", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "smol", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.28.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "quinn-udp", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": "udp", + "optional": false, + "uses_default_features": false, + "features": [ + "tracing" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "crc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "directories-next", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-pemfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.28.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sync", + "rt", + "rt-multi-thread", + "time", + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std-future" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "env-filter", + "fmt", + "ansi", + "time", + "local-time" + ], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg_aliases", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "socket2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "quinn", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/client.rs", + "edition": "2021", + "required-features": [ + "rustls-ring" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "connection", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/connection.rs", + "edition": "2021", + "required-features": [ + "rustls-ring" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "insecure_connection", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/insecure_connection.rs", + "edition": "2021", + "required-features": [ + "rustls-ring" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "server", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/server.rs", + "edition": "2021", + "required-features": [ + "rustls-ring" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "single_socket", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/single_socket.rs", + "edition": "2021", + "required-features": [ + "rustls-ring" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "many_connections", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/tests/many_connections.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/benches/bench.rs", + "edition": "2021", + "required-features": [ + "rustls-ring" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "async-io": [ + "dep:async-io" + ], + "async-std": [ + "dep:async-std" + ], + "aws-lc-rs": [ + "proto/aws-lc-rs" + ], + "aws-lc-rs-fips": [ + "proto/aws-lc-rs-fips" + ], + "default": [ + "log", + "platform-verifier", + "runtime-tokio", + "rustls-ring" + ], + "futures-io": [ + "dep:futures-io" + ], + "lock_tracking": [], + "log": [ + "tracing/log", + "proto/log", + "udp/log" + ], + "platform-verifier": [ + "proto/platform-verifier" + ], + "ring": [ + "proto/ring" + ], + "runtime-async-std": [ + "async-io", + "async-std" + ], + "runtime-smol": [ + "async-io", + "smol" + ], + "runtime-tokio": [ + "tokio/time", + "tokio/rt", + "tokio/net" + ], + "rustls": [ + "rustls-ring" + ], + "rustls-aws-lc-rs": [ + "dep:rustls", + "aws-lc-rs", + "proto/rustls-aws-lc-rs", + "proto/aws-lc-rs" + ], + "rustls-aws-lc-rs-fips": [ + "dep:rustls", + "aws-lc-rs-fips", + "proto/rustls-aws-lc-rs-fips", + "proto/aws-lc-rs-fips" + ], + "rustls-log": [ + "rustls?/logging" + ], + "rustls-ring": [ + "dep:rustls", + "ring", + "proto/rustls-ring", + "proto/ring" + ], + "smol": [ + "dep:smol" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "lock_tracking", + "rustls-aws-lc-rs", + "rustls-ring", + "runtime-tokio", + "runtime-async-std", + "runtime-smol", + "log", + "rustls-log" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "asynchronous" + ], + "keywords": [ + "quic" + ], + "readme": "README.md", + "repository": "https://github.com/quinn-rs/quinn", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "quinn-proto", + "version": "0.11.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "State machine for the QUIC transport protocol", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "aws-lc-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-platform-verifier", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinyvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "assert_matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "env-filter", + "fmt", + "ansi", + "time", + "local-time" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "wasm_js" + ], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasm32_unknown_unknown_js" + ], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "web" + ], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "web-time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "quinn_proto", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-proto-0.11.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "aws-lc-rs": [ + "dep:aws-lc-rs", + "aws-lc-rs?/aws-lc-sys", + "aws-lc-rs?/prebuilt-nasm" + ], + "aws-lc-rs-fips": [ + "aws-lc-rs", + "aws-lc-rs?/fips" + ], + "default": [ + "rustls-ring", + "log" + ], + "log": [ + "tracing/log" + ], + "platform-verifier": [ + "dep:rustls-platform-verifier" + ], + "ring": [ + "dep:ring" + ], + "rustls": [ + "rustls-ring" + ], + "rustls-aws-lc-rs": [ + "dep:rustls", + "rustls?/aws-lc-rs", + "aws-lc-rs" + ], + "rustls-aws-lc-rs-fips": [ + "rustls-aws-lc-rs", + "aws-lc-rs-fips" + ], + "rustls-log": [ + "rustls?/logging" + ], + "rustls-ring": [ + "dep:rustls", + "rustls?/ring", + "ring" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-proto-0.11.11/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "rustls-aws-lc-rs", + "rustls-ring", + "platform-verifier", + "log", + "rustls-log" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "asynchronous" + ], + "keywords": [ + "quic" + ], + "readme": null, + "repository": "https://github.com/quinn-rs/quinn", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "quinn-udp", + "version": "0.5.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "UDP sockets with ECN information for the QUIC transport protocol", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.158", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "async_tokio" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.28.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sync", + "rt", + "rt-multi-thread", + "net" + ], + "target": null, + "registry": null + }, + { + "name": "cfg_aliases", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "socket2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_IO", + "Win32_Networking_WinSock" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "quinn_udp", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "throughput", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/benches/throughput.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "tracing", + "log" + ], + "direct-log": [ + "dep:log" + ], + "fast-apple-datapath": [], + "log": [ + "tracing/log" + ], + "tracing": [ + "dep:tracing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "asynchronous" + ], + "keywords": [ + "quic" + ], + "readme": null, + "repository": "https://github.com/quinn-rs/quinn", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "quote", + "version": "1.0.39", + "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Quasi-quoting macro quote!(...)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.66", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "quote", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "proc-macro" + ], + "proc-macro": [ + "proc-macro2/proc-macro" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/quote", + "homepage": null, + "documentation": "https://docs.rs/quote/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "radium", + "version": "0.7.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#radium@0.7.0", + "license": "MIT", + "license_file": null, + "description": "Portable interfaces for maybe-atomic types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "radium", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radium-0.7.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radium-0.7.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radium-0.7.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nika Layzell ", + "myrrlyn " + ], + "categories": [ + "concurrency", + "no-std" + ], + "keywords": [ + "atomic", + "cell", + "sync", + "generic", + "trait" + ], + "readme": "README.md", + "repository": "https://github.com/bitvecto-rs/radium", + "homepage": "https://github.com/bitvecto-rs/radium", + "documentation": "https://docs.rs/radium", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "radix_trie", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", + "license": "MIT", + "license_file": null, + "description": "Generic radix trie data-structure.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "endian-type", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nibble_vec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "radix_trie", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "child_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/child_iter.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/debug.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "opt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/opt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string_frequency", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/string_frequency.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "trie_benches", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/benches/trie_benches.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Michael Sproul " + ], + "categories": [ + "data-structures", + "text-processing" + ], + "keywords": [ + "trie", + "patricia", + "collection", + "generic", + "prefix" + ], + "readme": "README.md", + "repository": "https://github.com/michaelsproul/rust_radix_trie", + "homepage": null, + "documentation": "https://docs.rs/radix_trie/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rancor", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "license": "MIT", + "license_file": null, + "description": "Scalable and efficient error handling without type composition", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rancor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rancor-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rancor-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "rust-patterns", + "no-std" + ], + "keywords": [ + "error", + "error-handling", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/rancor", + "homepage": null, + "documentation": "https://docs.rs/rancor", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "rand", + "version": "0.8.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Random number generators and other randomness functionality.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "packed_simd_2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.7", + "kind": null, + "rename": "packed_simd", + "optional": true, + "uses_default_features": true, + "features": [ + "into_bits" + ], + "target": null, + "registry": null + }, + { + "name": "rand_chacha", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_pcg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [ + "rand_core/alloc" + ], + "default": [ + "std", + "std_rng" + ], + "getrandom": [ + "rand_core/getrandom" + ], + "libc": [ + "dep:libc" + ], + "log": [ + "dep:log" + ], + "min_const_gen": [], + "nightly": [], + "packed_simd": [ + "dep:packed_simd" + ], + "rand_chacha": [ + "dep:rand_chacha" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde", + "rand_core/serde1" + ], + "simd_support": [ + "packed_simd" + ], + "small_rng": [], + "std": [ + "rand_core/std", + "rand_chacha/std", + "alloc", + "getrandom", + "libc" + ], + "std_rng": [ + "rand_chacha" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg" + ] + } + }, + "playground": { + "features": [ + "small_rng", + "serde1" + ] + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rand", + "version": "0.9.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Random number generators and other randomness functionality.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_chacha", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_pcg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std", + "std_rng", + "os_rng", + "small_rng", + "thread_rng" + ], + "log": [ + "dep:log" + ], + "nightly": [], + "os_rng": [ + "rand_core/os_rng" + ], + "serde": [ + "dep:serde", + "rand_core/serde" + ], + "simd_support": [], + "small_rng": [], + "std": [ + "rand_core/std", + "rand_chacha?/std", + "alloc" + ], + "std_rng": [ + "dep:rand_chacha" + ], + "thread_rng": [ + "std", + "std_rng", + "os_rng" + ], + "unbiased": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "small_rng", + "serde" + ] + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rand_chacha", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "ChaCha random number generator\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ppv-lite86", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_chacha", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ], + "simd": [], + "std": [ + "ppv-lite86/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers", + "The CryptoCorrosion Contributors" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng", + "chacha" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand_chacha", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rand_chacha", + "version": "0.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "ChaCha random number generator\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ppv-lite86", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "os_rng" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_chacha", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "os_rng": [ + "rand_core/os_rng" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "ppv-lite86/std", + "rand_core/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers", + "The CryptoCorrosion Contributors" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng", + "chacha" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand_chacha", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rand_core", + "version": "0.6.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Core random number generator traits and tools for implementation.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "getrandom": [ + "dep:getrandom" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ], + "std": [ + "alloc", + "getrandom", + "getrandom/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg" + ] + } + }, + "playground": { + "all-features": true + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand_core", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rand_core", + "version": "0.9.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Core random number generator traits and tools for implementation.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "os_rng": [ + "dep:getrandom" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "getrandom?/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + }, + "playground": { + "all-features": true + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand_core", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rand_seeder", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A universal random number seeder based on SipHash.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_seeder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "seedrng", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/examples/seedrng.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/benches/mod.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rand Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng", + "seeder" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/seeder", + "homepage": "https://rust-random.github.io/book/guide-seeding.html#a-string-or-any-hashable-data", + "documentation": "https://docs.rs/rand_seeder", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "random", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "random", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "dorin-iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rayon", + "version": "1.10.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Simple work-stealing parallelism for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm_sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rayon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chars", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/chars.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "clones", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/clones.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "collect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/collect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cross-pool", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/cross-pool.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/debug.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "drain_vec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/drain_vec.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "intersperse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/intersperse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue671", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/issue671.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue671-unzip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/issue671-unzip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "iter_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/iter_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "named-threads", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/named-threads.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "octillion", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/octillion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "par_bridge_recursion", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/par_bridge_recursion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "producer_split_at", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/producer_split_at.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sort-panic-safe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/sort-panic-safe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "str", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/str.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "web_spin_lock": [ + "dep:wasm_sync", + "rayon-core/web_spin_lock" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Niko Matsakis ", + "Josh Stone " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "parallel", + "thread", + "concurrency", + "join", + "performance" + ], + "readme": "README.md", + "repository": "https://github.com/rayon-rs/rayon", + "homepage": null, + "documentation": "https://docs.rs/rayon/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rayon-core", + "version": "1.12.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Core APIs for Rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm_sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scoped-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rayon_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "double_init_fail", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/double_init_fail.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "init_zero_threads", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/init_zero_threads.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scope_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/scope_join.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scoped_threadpool", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/scoped_threadpool.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "simple_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/simple_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stack_overflow_crash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/stack_overflow_crash.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_current_thread", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/use_current_thread.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "web_spin_lock": [ + "dep:wasm_sync" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Niko Matsakis ", + "Josh Stone " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "parallel", + "thread", + "concurrency", + "join", + "performance" + ], + "readme": "README.md", + "repository": "https://github.com/rayon-rs/rayon", + "homepage": null, + "documentation": "https://docs.rs/rayon/", + "edition": "2021", + "links": "rayon-core", + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rc-new-cyclic-fallible", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", + "license": "GPL-3.0-only", + "license_file": null, + "description": "Fallible variant of Rc::new_cyclic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rc_new_cyclic_fallible", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rc_new_cyclic_fallible_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/tests/rc_new_cyclic_fallible_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrei Marinica ", + "MultiversX " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/multiversx/rc-new-cyclic-fallible", + "homepage": null, + "documentation": "https://github.com/multiversx/rc-new-cyclic-fallible/blob/main/README.md", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "recursive-caller", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "recursive_caller", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/src/recursive_caller.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "recursive-caller-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "recursive-caller", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "recursive-caller-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "regex", + "version": "1.11.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "syntax", + "meta", + "nfa-pikevm" + ], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "atty", + "humantime", + "termcolor" + ], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std", + "perf", + "unicode", + "regex-syntax/default" + ], + "logging": [ + "aho-corasick?/logging", + "memchr?/logging", + "regex-automata/logging" + ], + "pattern": [], + "perf": [ + "perf-cache", + "perf-dfa", + "perf-onepass", + "perf-backtrack", + "perf-inline", + "perf-literal" + ], + "perf-backtrack": [ + "regex-automata/nfa-backtrack" + ], + "perf-cache": [], + "perf-dfa": [ + "regex-automata/hybrid" + ], + "perf-dfa-full": [ + "regex-automata/dfa-build", + "regex-automata/dfa-search" + ], + "perf-inline": [ + "regex-automata/perf-inline" + ], + "perf-literal": [ + "dep:aho-corasick", + "dep:memchr", + "regex-automata/perf-literal" + ], + "perf-onepass": [ + "regex-automata/dfa-onepass" + ], + "std": [ + "aho-corasick?/std", + "memchr?/std", + "regex-automata/std", + "regex-syntax/std" + ], + "unicode": [ + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + "regex-automata/unicode", + "regex-syntax/unicode" + ], + "unicode-age": [ + "regex-automata/unicode-age", + "regex-syntax/unicode-age" + ], + "unicode-bool": [ + "regex-automata/unicode-bool", + "regex-syntax/unicode-bool" + ], + "unicode-case": [ + "regex-automata/unicode-case", + "regex-syntax/unicode-case" + ], + "unicode-gencat": [ + "regex-automata/unicode-gencat", + "regex-syntax/unicode-gencat" + ], + "unicode-perl": [ + "regex-automata/unicode-perl", + "regex-automata/unicode-word-boundary", + "regex-syntax/unicode-perl" + ], + "unicode-script": [ + "regex-automata/unicode-script", + "regex-syntax/unicode-script" + ], + "unicode-segment": [ + "regex-automata/unicode-segment", + "regex-syntax/unicode-segment" + ], + "unstable": [ + "pattern" + ], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers", + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex", + "homepage": "https://github.com/rust-lang/regex", + "documentation": "https://docs.rs/regex", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "regex-automata", + "version": "0.4.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Automata construction and matching using regular expressions.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "atty", + "humantime", + "termcolor" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex_automata", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std", + "syntax", + "perf", + "unicode", + "meta", + "nfa", + "dfa", + "hybrid" + ], + "dfa": [ + "dfa-build", + "dfa-search", + "dfa-onepass" + ], + "dfa-build": [ + "nfa-thompson", + "dfa-search" + ], + "dfa-onepass": [ + "nfa-thompson" + ], + "dfa-search": [], + "hybrid": [ + "alloc", + "nfa-thompson" + ], + "internal-instrument": [ + "internal-instrument-pikevm" + ], + "internal-instrument-pikevm": [ + "logging", + "std" + ], + "logging": [ + "dep:log", + "aho-corasick?/logging", + "memchr?/logging" + ], + "meta": [ + "syntax", + "nfa-pikevm" + ], + "nfa": [ + "nfa-thompson", + "nfa-pikevm", + "nfa-backtrack" + ], + "nfa-backtrack": [ + "nfa-thompson" + ], + "nfa-pikevm": [ + "nfa-thompson" + ], + "nfa-thompson": [ + "alloc" + ], + "perf": [ + "perf-inline", + "perf-literal" + ], + "perf-inline": [], + "perf-literal": [ + "perf-literal-substring", + "perf-literal-multisubstring" + ], + "perf-literal-multisubstring": [ + "std", + "dep:aho-corasick" + ], + "perf-literal-substring": [ + "aho-corasick?/perf-literal", + "dep:memchr" + ], + "std": [ + "regex-syntax?/std", + "memchr?/std", + "aho-corasick?/std", + "alloc" + ], + "syntax": [ + "dep:regex-syntax", + "alloc" + ], + "unicode": [ + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + "unicode-word-boundary", + "regex-syntax?/unicode" + ], + "unicode-age": [ + "regex-syntax?/unicode-age" + ], + "unicode-bool": [ + "regex-syntax?/unicode-bool" + ], + "unicode-case": [ + "regex-syntax?/unicode-case" + ], + "unicode-gencat": [ + "regex-syntax?/unicode-gencat" + ], + "unicode-perl": [ + "regex-syntax?/unicode-perl" + ], + "unicode-script": [ + "regex-syntax?/unicode-script" + ], + "unicode-segment": [ + "regex-syntax?/unicode-segment" + ], + "unicode-word-boundary": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers", + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "regex", + "dfa", + "automata", + "automaton", + "nfa" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex/tree/master/regex-automata", + "homepage": null, + "documentation": "https://docs.rs/regex-automata", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "regex-syntax", + "version": "0.8.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A regular expression parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex_syntax", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "default": [ + "std", + "unicode" + ], + "std": [], + "unicode": [ + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ], + "unicode-age": [], + "unicode-bool": [], + "unicode-case": [], + "unicode-gencat": [], + "unicode-perl": [], + "unicode-script": [], + "unicode-segment": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers", + "Andrew Gallant " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex/tree/master/regex-syntax", + "homepage": null, + "documentation": "https://docs.rs/regex-syntax", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "region", + "version": "3.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "license": "MIT", + "license_file": null, + "description": "Cross-platform virtual memory API", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.153", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mach2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", + "registry": null + }, + { + "name": "mmap-fixed", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.6", + "kind": "dev", + "rename": "mmap", + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Memory", + "Win32_System_SystemInformation", + "Win32_System_Diagnostics_Debug" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "region", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/region-3.0.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/region-3.0.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Elliott Linder " + ], + "categories": [], + "keywords": [ + "region", + "page", + "lock", + "protect", + "maps" + ], + "readme": "README.md", + "repository": "https://github.com/darfink/region-rs", + "homepage": "https://github.com/darfink/region-rs", + "documentation": "https://docs.rs/region", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rend", + "version": "0.4.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.4.2", + "license": "MIT", + "license_file": null, + "description": "Endian-aware primitives for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~0.6.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rend", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.4.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.4.2/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bytecheck": [ + "dep:bytecheck" + ], + "bytemuck": [ + "dep:bytemuck" + ], + "default": [ + "std" + ], + "std": [ + "bytecheck/std" + ], + "validation": [ + "bytecheck" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.4.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std" + ], + "keywords": [ + "endian", + "no_std" + ], + "readme": "crates-io.md", + "repository": "https://github.com/djkoloski/rend", + "homepage": null, + "documentation": "https://docs.rs/rend", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rend", + "version": "0.5.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", + "license": "MIT", + "license_file": null, + "description": "Cross-platform, endian-aware primitives for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "bytemuck-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rend", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.5.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bytecheck": [ + "dep:bytecheck" + ], + "bytemuck-1": [ + "dep:bytemuck-1" + ], + "default": [], + "zerocopy-0_8": [ + "dep:zerocopy", + "dep:zerocopy-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.5.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std" + ], + "keywords": [ + "endian", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/djkoloski/rend", + "homepage": null, + "documentation": "https://docs.rs/rend", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "reqwest", + "version": "0.12.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "higher level HTTP client library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mime_guess", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sync_wrapper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures" + ], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "limit" + ], + "target": null, + "registry": null + }, + { + "name": "async-compression", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "tokio" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "cookie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.18.0", + "kind": null, + "rename": "cookie_crate", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "cookie_store", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.21.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "encoding_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "h2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "h3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "h3-quinn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hickory-resolver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.24", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "tokio-runtime" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "http-body", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "http1", + "client" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper-rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.27.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "http1", + "tls12" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "http1", + "client", + "client-legacy", + "tokio" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "ipnet", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "mime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.16", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.10", + "kind": null, + "rename": "native-tls-crate", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "quinn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "rustls", + "runtime-tokio" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "tls12" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls-native-certs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls-pemfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "net", + "time" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "tls12" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-socks", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "codec", + "io" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tower", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "timeout", + "util" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "brotli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.0", + "kind": "dev", + "rename": "brotli_crate", + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.28", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "alloc" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "http1", + "http2", + "client", + "server" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "http1", + "http2", + "client", + "client-legacy", + "server-auto", + "tokio" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "libflate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "ring" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros", + "rt-multi-thread" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "zstd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": "zstd_crate", + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.89", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-streams", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "AbortController", + "AbortSignal", + "Headers", + "Request", + "RequestInit", + "RequestMode", + "Response", + "Window", + "FormData", + "Blob", + "BlobPropertyBag", + "ServiceWorkerGlobalScope", + "RequestCredentials", + "File", + "ReadableStream" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.89", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde-serialize" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "system-configuration", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"macos\")", + "registry": null + }, + { + "name": "windows-registry", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "reqwest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "blocking", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/blocking.rs", + "edition": "2021", + "required-features": [ + "blocking" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "connect_via_lower_priority_tokio_runtime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/connect_via_lower_priority_tokio_runtime.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "form", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/form.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "h3_simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/h3_simple.rs", + "edition": "2021", + "required-features": [ + "http3", + "rustls-tls" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_dynamic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/json_dynamic.rs", + "edition": "2021", + "required-features": [ + "json" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_typed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/json_typed.rs", + "edition": "2021", + "required-features": [ + "json" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tor_socks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/tor_socks.rs", + "edition": "2021", + "required-features": [ + "socks" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "badssl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/badssl.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "blocking", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/blocking.rs", + "edition": "2021", + "required-features": [ + "blocking" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "brotli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/brotli.rs", + "edition": "2021", + "required-features": [ + "brotli", + "stream" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/client.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "connector_layers", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/connector_layers.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cookie", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/cookie.rs", + "edition": "2021", + "required-features": [ + "cookies" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deflate", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/deflate.rs", + "edition": "2021", + "required-features": [ + "deflate", + "stream" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gzip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/gzip.rs", + "edition": "2021", + "required-features": [ + "gzip", + "stream" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "http3", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/http3.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multipart", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/multipart.rs", + "edition": "2021", + "required-features": [ + "multipart" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proxy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "redirect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/redirect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "timeouts", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/timeouts.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "upgrade", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/upgrade.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wasm_simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/wasm_simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zstd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/zstd.rs", + "edition": "2021", + "required-features": [ + "zstd", + "stream" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__rustls": [ + "dep:hyper-rustls", + "dep:tokio-rustls", + "dep:rustls", + "__tls", + "dep:rustls-pemfile", + "dep:rustls-pki-types" + ], + "__rustls-ring": [ + "hyper-rustls?/ring", + "tokio-rustls?/ring", + "rustls?/ring", + "quinn?/ring" + ], + "__tls": [ + "dep:rustls-pemfile", + "tokio/io-util" + ], + "blocking": [ + "dep:futures-channel", + "futures-channel?/sink", + "futures-util/io", + "futures-util/sink", + "tokio/sync" + ], + "brotli": [ + "dep:async-compression", + "async-compression?/brotli", + "dep:tokio-util" + ], + "charset": [ + "dep:encoding_rs" + ], + "cookies": [ + "dep:cookie_crate", + "dep:cookie_store" + ], + "default": [ + "default-tls", + "charset", + "http2", + "macos-system-configuration" + ], + "default-tls": [ + "dep:hyper-tls", + "dep:native-tls-crate", + "__tls", + "dep:tokio-native-tls" + ], + "deflate": [ + "dep:async-compression", + "async-compression?/zlib", + "dep:tokio-util" + ], + "gzip": [ + "dep:async-compression", + "async-compression?/gzip", + "dep:tokio-util" + ], + "h2": [ + "dep:h2" + ], + "hickory-dns": [ + "dep:hickory-resolver" + ], + "http2": [ + "h2", + "hyper/http2", + "hyper-util/http2", + "hyper-rustls?/http2" + ], + "http3": [ + "rustls-tls-manual-roots", + "dep:h3", + "dep:h3-quinn", + "dep:quinn", + "dep:slab", + "dep:futures-channel" + ], + "json": [ + "dep:serde_json" + ], + "macos-system-configuration": [ + "dep:system-configuration" + ], + "multipart": [ + "dep:mime_guess" + ], + "native-tls": [ + "default-tls" + ], + "native-tls-alpn": [ + "native-tls", + "native-tls-crate?/alpn", + "hyper-tls?/alpn" + ], + "native-tls-vendored": [ + "native-tls", + "native-tls-crate?/vendored" + ], + "rustls-tls": [ + "rustls-tls-webpki-roots" + ], + "rustls-tls-manual-roots": [ + "rustls-tls-manual-roots-no-provider", + "__rustls-ring" + ], + "rustls-tls-manual-roots-no-provider": [ + "__rustls" + ], + "rustls-tls-native-roots": [ + "rustls-tls-native-roots-no-provider", + "__rustls-ring" + ], + "rustls-tls-native-roots-no-provider": [ + "dep:rustls-native-certs", + "hyper-rustls?/native-tokio", + "__rustls" + ], + "rustls-tls-no-provider": [ + "rustls-tls-manual-roots-no-provider" + ], + "rustls-tls-webpki-roots": [ + "rustls-tls-webpki-roots-no-provider", + "__rustls-ring" + ], + "rustls-tls-webpki-roots-no-provider": [ + "dep:webpki-roots", + "hyper-rustls?/webpki-tokio", + "__rustls" + ], + "socks": [ + "dep:tokio-socks" + ], + "stream": [ + "tokio/fs", + "dep:tokio-util", + "dep:wasm-streams" + ], + "trust-dns": [], + "zstd": [ + "dep:async-compression", + "async-compression?/zstd", + "dep:tokio-util" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "reqwest_unstable" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "wasm32-unknown-unknown" + ] + } + }, + "playground": { + "features": [ + "blocking", + "cookies", + "json", + "multipart" + ] + } + }, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "web-programming::http-client", + "wasm" + ], + "keywords": [ + "http", + "request", + "client" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/reqwest", + "homepage": null, + "documentation": "https://docs.rs/reqwest", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "rewards-distribution", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rewards_distribution", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/src/rewards_distribution.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mock_seed_nft_minter", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/mock_seed_nft_minter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mock_seed_nft_minter_proxy", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/mock_seed_nft_minter_proxy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rewards_distribution_integration_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/rewards_distribution_integration_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/utils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rewards-distribution-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "rewards-distribution", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "rewards-distribution-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ring", + "version": "0.17.14", + "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "license": "Apache-2.0 AND ISC", + "license_file": null, + "description": "An experiment.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "untrusted", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.8", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Threading" + ], + "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.148", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.37", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.148", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(unix, windows, target_os = \"wasi\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "aead_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/aead_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "agreement_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/agreement_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constant_time_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/constant_time_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "digest_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/digest_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ecdsa_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/ecdsa_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ed25519_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/ed25519_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/error_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hkdf_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/hkdf_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hmac_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/hmac_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pbkdf2_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/pbkdf2_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quic_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/quic_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rand_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/rand_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rsa_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/rsa_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signature_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/signature_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "alloc", + "dev_urandom_fallback" + ], + "dev_urandom_fallback": [], + "less-safe-getrandom-custom-or-rdrand": [], + "less-safe-getrandom-espidf": [], + "slow_tests": [], + "std": [ + "alloc" + ], + "test_logging": [], + "unstable-testing-arm-no-hw": [], + "unstable-testing-arm-no-neon": [], + "wasm32_unknown_unknown_js": [ + "getrandom/js" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "cryptography", + "rand", + "ECC", + "RSA" + ], + "readme": "README.md", + "repository": "https://github.com/briansmith/ring", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": "ring_core_0_17_14_", + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "rkyv", + "version": "0.7.45", + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "license": "MIT", + "license_file": null, + "description": "Zero-copy deserialization framework for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rend", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.45", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "seahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smol_str", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinyvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rkyv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.7.45/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.7.45/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "hashbrown", + "bitvec?/alloc", + "tinyvec?/alloc" + ], + "arbitrary_enum_discriminant": [ + "rkyv_derive/arbitrary_enum_discriminant" + ], + "archive_be": [ + "rend", + "rkyv_derive/archive_be" + ], + "archive_le": [ + "rend", + "rkyv_derive/archive_le" + ], + "arrayvec": [ + "dep:arrayvec" + ], + "bitvec": [ + "dep:bitvec" + ], + "bytecheck": [ + "dep:bytecheck" + ], + "bytes": [ + "dep:bytes" + ], + "copy": [ + "rkyv_derive/copy" + ], + "copy_unsafe": [], + "default": [ + "size_32", + "std" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "indexmap": [ + "dep:indexmap" + ], + "rend": [ + "dep:rend" + ], + "size_16": [], + "size_32": [], + "size_64": [], + "smallvec": [ + "dep:smallvec" + ], + "smol_str": [ + "dep:smol_str" + ], + "std": [ + "alloc", + "bytecheck?/std", + "ptr_meta/std", + "rend?/std", + "uuid?/std", + "bytes?/std" + ], + "strict": [ + "rkyv_derive/strict" + ], + "tinyvec": [ + "dep:tinyvec" + ], + "uuid": [ + "dep:uuid", + "bytecheck?/uuid" + ], + "validation": [ + "alloc", + "bytecheck", + "rend/validation" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.7.45/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "validation" + ] + } + } + }, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std" + ], + "keywords": [ + "archive", + "rkyv", + "serialization", + "zero-copy", + "no_std" + ], + "readme": "crates-io.md", + "repository": "https://github.com/rkyv/rkyv", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rkyv", + "version": "0.8.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "license": "MIT", + "license_file": null, + "description": "Zero-copy deserialization framework for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": "arrayvec-0_7", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "simdutf8" + ], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "bytes-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": "hashbrown-0_14", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": "indexmap-2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "munge", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ptr_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rancor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rend", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "smallvec-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smol_str", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": "smol_str-0_2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smol_str", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": "smol_str-0_3", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thin-vec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.12", + "kind": null, + "rename": "thin-vec-0_2", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinyvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "tinyvec-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "triomphe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": "triomphe-0_1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "uuid-1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "divan", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rkyv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "backwards_compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/backwards_compat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "complex_wrapper_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/complex_wrapper_types.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "derive_partial_ord", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/derive_partial_ord.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "explicit_enum_discriminants", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/explicit_enum_discriminants.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_like_schema", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/json_like_schema.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "readme", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/readme.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "remote_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/remote_types.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/tests/derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ui", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/tests/ui.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "log", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/log.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mesh", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/mesh.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "minecraft_savedata", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/minecraft_savedata.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aligned": [], + "alloc": [ + "dep:hashbrown", + "tinyvec-1?/alloc", + "rancor/alloc" + ], + "arrayvec-0_7": [ + "dep:arrayvec-0_7" + ], + "big_endian": [], + "bytecheck": [ + "dep:bytecheck", + "rend/bytecheck", + "rkyv_derive/bytecheck" + ], + "bytes-1": [ + "dep:bytes-1" + ], + "default": [ + "std", + "bytecheck" + ], + "hashbrown-0_14": [ + "dep:hashbrown-0_14" + ], + "hashbrown-0_15": [ + "dep:hashbrown" + ], + "indexmap-2": [ + "dep:indexmap-2", + "alloc" + ], + "little_endian": [], + "pointer_width_16": [], + "pointer_width_32": [], + "pointer_width_64": [], + "smallvec-1": [ + "dep:smallvec-1" + ], + "smol_str-0_2": [ + "dep:smol_str-0_2" + ], + "smol_str-0_3": [ + "dep:smol_str-0_3" + ], + "std": [ + "alloc", + "bytes-1?/std", + "indexmap-2?/std", + "ptr_meta/std", + "uuid-1?/std" + ], + "thin-vec-0_2": [ + "dep:thin-vec-0_2" + ], + "tinyvec-1": [ + "dep:tinyvec-1" + ], + "triomphe-0_1": [ + "dep:triomphe-0_1", + "alloc" + ], + "unaligned": [], + "uuid-1": [ + "dep:uuid-1", + "bytecheck?/uuid-1" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "bytecheck" + ] + } + } + }, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "archive", + "rkyv", + "serialization", + "zero-copy", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/rkyv", + "homepage": null, + "documentation": "https://docs.rs/rkyv", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "rkyv_derive", + "version": "0.7.45", + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.7.45", + "license": "MIT", + "license_file": null, + "description": "Derive macro for rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "rkyv_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.7.45/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary_enum_discriminant": [], + "archive_be": [], + "archive_le": [], + "copy": [], + "default": [], + "strict": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.7.45/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rkyv/rkyv", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rkyv_derive", + "version": "0.8.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", + "license": "MIT", + "license_file": null, + "description": "Derive macro for rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.73", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "rkyv_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.8.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bytecheck": [], + "default": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.8.10/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "David Koloski " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "archive", + "rkyv", + "serialization", + "zero-copy", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rkyv/rkyv", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "route-recognizer", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", + "license": "MIT", + "license_file": null, + "description": "Recognizes URL patterns with support for dynamic and wildcard segments", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "route_recognizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "nfa", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/benches/nfa.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "wycats", + "rustasync" + ], + "categories": [], + "keywords": [ + "router", + "url" + ], + "readme": "README.md", + "repository": "https://github.com/rustasync/route-recognizer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ruplacer", + "version": "0.10.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Find and replace text in source files", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "Inflector", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.32", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.3.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ignore", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruplacer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ruplacer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/tests/integration_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/Cargo.toml", + "metadata": { + "deb": { + "extended-description": "Find and replace text in source files" + } + }, + "publish": null, + "authors": [ + "Dimitri Merejkowsky " + ], + "categories": [ + "command-line-utilities" + ], + "keywords": [ + "ruplacer", + "find", + "grep", + "command", + "line" + ], + "readme": "README.md", + "repository": "https://github.com/your-tools/ruplacer", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rust-snippets-generator-test", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rust_snippets_generator_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rust-snippets-generator-test-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "rust-snippets-generator-test", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "rust-snippets-generator-test-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rust-testing-framework-tester", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "adder", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" + }, + { + "name": "basic-features", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" + }, + { + "name": "forwarder", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rust_testing_framework_tester", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rust_testing_framework_tester_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rust_testing_framework_tester_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tester_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/tester_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tester_whitebox_legacy_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/tester_whitebox_legacy_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rust-testing-framework-tester-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "rust-testing-framework-tester", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "rust-testing-framework-tester-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustc-demangle", + "version": "0.1.24", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Rust compiler symbol demangling.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustc_demangle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-demangle-0.1.24/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-demangle-0.1.24/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/rustc-demangle", + "homepage": "https://github.com/rust-lang/rustc-demangle", + "documentation": "https://docs.rs/rustc-demangle", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustc-hash", + "version": "1.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "speed, non-cryptographic hash used in rustc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustc_hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [], + "keywords": [ + "hash", + "fxhash", + "rustc" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang-nursery/rustc-hash", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustc-hash", + "version": "2.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A speedy, non-cryptographic hashing algorithm used by rustc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustc_hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "nightly": [], + "rand": [ + "dep:rand", + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [], + "keywords": [ + "hash", + "hasher", + "fxhash", + "rustc" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/rustc-hash", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustc_version", + "version": "0.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library for querying the version of a installed rustc compiler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustc_version", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/tests/all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "version", + "rustc" + ], + "readme": "README.md", + "repository": "https://github.com/djc/rustc-version-rs", + "homepage": null, + "documentation": "https://docs.rs/rustc_version/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.32" + }, + { + "name": "rustix", + "version": "0.38.44", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.49", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.161", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": "dev", + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "linux-raw-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "general", + "ioctl", + "no_std" + ], + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.161", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": "libc_errno", + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "linux-raw-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "general", + "errno", + "ioctl", + "no_std", + "elf" + ], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.161", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Networking_WinSock", + "Win32_NetworkManagement_IpHelper", + "Win32_System_Threading" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustix", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "all-apis": [ + "event", + "fs", + "io_uring", + "mm", + "mount", + "net", + "param", + "pipe", + "process", + "procfs", + "pty", + "rand", + "runtime", + "shm", + "stdio", + "system", + "termios", + "thread", + "time" + ], + "alloc": [], + "cc": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std", + "use-libc-auxv" + ], + "event": [], + "fs": [], + "io_uring": [ + "event", + "fs", + "net", + "linux-raw-sys/io_uring" + ], + "itoa": [ + "dep:itoa" + ], + "libc": [ + "dep:libc" + ], + "libc-extra-traits": [ + "libc?/extra_traits" + ], + "libc_errno": [ + "dep:libc_errno" + ], + "linux_4_11": [], + "linux_latest": [ + "linux_4_11" + ], + "mm": [], + "mount": [], + "net": [ + "linux-raw-sys/net", + "linux-raw-sys/netlink", + "linux-raw-sys/if_ether", + "linux-raw-sys/xdp" + ], + "once_cell": [ + "dep:once_cell" + ], + "param": [ + "fs" + ], + "pipe": [], + "process": [ + "linux-raw-sys/prctl" + ], + "procfs": [ + "once_cell", + "itoa", + "fs" + ], + "pty": [ + "itoa", + "fs" + ], + "rand": [], + "runtime": [ + "linux-raw-sys/prctl" + ], + "rustc-dep-of-std": [ + "core", + "rustc-std-workspace-alloc", + "compiler_builtins", + "linux-raw-sys/rustc-dep-of-std", + "bitflags/rustc-dep-of-std", + "compiler_builtins?/rustc-dep-of-std" + ], + "rustc-std-workspace-alloc": [ + "dep:rustc-std-workspace-alloc" + ], + "shm": [ + "fs" + ], + "std": [ + "bitflags/std", + "alloc", + "libc?/std", + "libc_errno?/std", + "libc-extra-traits" + ], + "stdio": [], + "system": [ + "linux-raw-sys/system" + ], + "termios": [], + "thread": [ + "linux-raw-sys/prctl" + ], + "time": [], + "try_close": [], + "use-explicitly-provided-auxv": [], + "use-libc": [ + "libc_errno", + "libc", + "libc-extra-traits" + ], + "use-libc-auxv": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "all-apis" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "i686-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", + "x86_64-unknown-freebsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-netbsd", + "x86_64-unknown-dragonfly", + "x86_64-unknown-illumos", + "x86_64-unknown-redox", + "x86_64-unknown-haiku", + "wasm32-unknown-emscripten", + "wasm32-wasip1" + ] + } + } + }, + "publish": null, + "authors": [ + "Dan Gohman ", + "Jakub Konka " + ], + "categories": [ + "os::unix-apis", + "date-and-time", + "filesystem", + "network-programming" + ], + "keywords": [ + "api", + "file", + "network", + "safe", + "syscall" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/rustix", + "homepage": null, + "documentation": "https://docs.rs/rustix", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rustix", + "version": "1.0.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.49", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": "dev", + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "linux-raw-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "general", + "ioctl", + "no_std" + ], + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": "libc_errno", + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "linux-raw-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "general", + "errno", + "ioctl", + "no_std", + "elf" + ], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Networking_WinSock" + ], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.20.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustix", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "all-apis": [ + "event", + "fs", + "io_uring", + "mm", + "mount", + "net", + "param", + "pipe", + "process", + "pty", + "rand", + "runtime", + "shm", + "stdio", + "system", + "termios", + "thread", + "time" + ], + "alloc": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "event": [], + "fs": [], + "io_uring": [ + "event", + "fs", + "net", + "thread", + "linux-raw-sys/io_uring" + ], + "libc": [ + "dep:libc" + ], + "libc_errno": [ + "dep:libc_errno" + ], + "linux_4_11": [], + "linux_5_1": [ + "linux_4_11" + ], + "linux_5_11": [ + "linux_5_1" + ], + "linux_latest": [ + "linux_5_11" + ], + "mm": [], + "mount": [], + "net": [ + "linux-raw-sys/net", + "linux-raw-sys/netlink", + "linux-raw-sys/if_ether", + "linux-raw-sys/xdp" + ], + "param": [], + "pipe": [], + "process": [ + "linux-raw-sys/prctl" + ], + "pty": [ + "fs" + ], + "rand": [], + "runtime": [ + "linux-raw-sys/prctl" + ], + "rustc-dep-of-std": [ + "core", + "rustc-std-workspace-alloc", + "compiler_builtins", + "linux-raw-sys/rustc-dep-of-std", + "bitflags/rustc-dep-of-std", + "compiler_builtins?/rustc-dep-of-std" + ], + "rustc-std-workspace-alloc": [ + "dep:rustc-std-workspace-alloc" + ], + "shm": [ + "fs" + ], + "std": [ + "bitflags/std", + "alloc", + "libc?/std", + "libc_errno?/std" + ], + "stdio": [], + "system": [ + "linux-raw-sys/system" + ], + "termios": [], + "thread": [ + "linux-raw-sys/prctl" + ], + "time": [], + "try_close": [], + "use-explicitly-provided-auxv": [], + "use-libc": [ + "libc_errno", + "libc" + ], + "use-libc-auxv": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "all-apis" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "i686-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", + "x86_64-unknown-freebsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-netbsd", + "x86_64-unknown-dragonfly", + "x86_64-unknown-illumos", + "x86_64-unknown-redox", + "x86_64-unknown-haiku", + "wasm32-unknown-emscripten", + "wasm32-wasip1" + ] + } + } + }, + "publish": null, + "authors": [ + "Dan Gohman ", + "Jakub Konka " + ], + "categories": [ + "os::unix-apis", + "date-and-time", + "filesystem", + "network-programming" + ], + "keywords": [ + "api", + "file", + "network", + "safe", + "syscall" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/rustix", + "homepage": null, + "documentation": "https://docs.rs/rustix", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rustls", + "version": "0.23.26", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "license": "Apache-2.0 OR ISC OR MIT", + "license_file": null, + "description": "Rustls is a modern TLS library written in Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aws-lc-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "brotli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "brotli-decompressor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher", + "inline-more" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.16", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "race" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-webpki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.103", + "kind": null, + "rename": "webpki", + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zlib-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "macro_rules_attribute", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "pem", + "aws_lc_rs" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "x509-parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "test_ca", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/examples/internal/test_ca.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/benches/benchmarks.rs", + "edition": "2021", + "required-features": [ + "ring" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aws-lc-rs": [ + "aws_lc_rs" + ], + "aws_lc_rs": [ + "dep:aws-lc-rs", + "webpki/aws-lc-rs", + "aws-lc-rs/aws-lc-sys", + "aws-lc-rs/prebuilt-nasm" + ], + "brotli": [ + "dep:brotli", + "dep:brotli-decompressor", + "std" + ], + "custom-provider": [], + "default": [ + "aws_lc_rs", + "logging", + "std", + "tls12" + ], + "fips": [ + "aws_lc_rs", + "aws-lc-rs?/fips", + "webpki/aws-lc-rs-fips" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "log": [ + "dep:log" + ], + "logging": [ + "log" + ], + "prefer-post-quantum": [ + "aws_lc_rs" + ], + "read_buf": [ + "rustversion", + "std" + ], + "ring": [ + "dep:ring", + "webpki/ring" + ], + "rustversion": [ + "dep:rustversion" + ], + "std": [ + "webpki/std", + "pki-types/std", + "once_cell/std" + ], + "tls12": [], + "zlib": [ + "dep:zlib-rs" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/Cargo.toml", + "metadata": { + "cargo-semver-checks": { + "lints": { + "enum_no_repr_variant_discriminant_changed": "warn" + } + }, + "cargo_check_external_types": { + "allowed_external_types": [ + "rustls_pki_types", + "rustls_pki_types::*" + ] + }, + "docs": { + "rs": { + "features": [ + "read_buf", + "ring" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "cryptography" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/rustls", + "homepage": "https://github.com/rustls/rustls", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "rustls-pemfile", + "version": "2.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", + "license": "Apache-2.0 OR ISC OR MIT", + "license_file": null, + "description": "Basic .pem file parser for keys and certificates", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustls_pemfile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/tests/integration.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/benches/benchmark.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "pki-types/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "cryptography" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/pemfile", + "homepage": "https://github.com/rustls/pemfile", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustls-pki-types", + "version": "1.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Shared types for the rustls PKI ecosystem", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "web-time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "crabgrind", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.1.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_os = \"linux\", target_arch = \"x86_64\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustls_pki_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dns_name", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/dns_name.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "key_type", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/key_type.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pem", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/pem.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "server_name", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/server_name.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ], + "std": [ + "alloc" + ], + "web": [ + "web-time" + ], + "web-time": [ + "dep:web-time" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "data-structures", + "cryptography" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/pki-types", + "homepage": "https://github.com/rustls/pki-types", + "documentation": "https://docs.rs/rustls-pki-types", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "rustls-webpki", + "version": "0.103.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", + "license": "ISC", + "license_file": null, + "description": "Web PKI X.509 Certificate Verification.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aws-lc-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "untrusted", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bzip2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "aws_lc_rs" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "webpki", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "amazon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/amazon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "better_tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/better_tls.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cert_v1_unsupported", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/cert_v1_unsupported.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cert_without_extensions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/cert_without_extensions.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client_auth", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/client_auth.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client_auth_revocation", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/client_auth_revocation.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crl_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/crl_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom_ekus", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/custom_ekus.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/integration.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signatures", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/signatures.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tls_server_certs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/tls_server_certs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "ring?/alloc", + "pki-types/alloc" + ], + "aws-lc-rs": [ + "dep:aws-lc-rs", + "aws-lc-rs/aws-lc-sys", + "aws-lc-rs/prebuilt-nasm" + ], + "aws-lc-rs-fips": [ + "dep:aws-lc-rs", + "aws-lc-rs/fips" + ], + "default": [ + "std" + ], + "ring": [ + "dep:ring" + ], + "std": [ + "alloc", + "pki-types/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "rustls_pki_types::*", + "rustls_pki_types" + ] + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/webpki", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "rustversion", + "version": "1.0.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Conditional compilation according to rustc compiler version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.49", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "rustversion", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_const", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_const.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_eval", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_eval.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/build/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::build-utils", + "no-std", + "no-std::no-alloc" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/dtolnay/rustversion", + "homepage": null, + "documentation": "https://docs.rs/rustversion", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "ruzstd", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", + "license": "MIT", + "license_file": null, + "description": "A decoder for the zstd compression format", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "derive_more", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.99", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "display", + "from" + ], + "target": null, + "registry": null + }, + { + "name": "twox-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruzstd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "zstd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/bin/zstd.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "zstd_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/bin/zstd_stream.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "reversedbitreader_bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/benches/reversedbitreader_bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "derive_more/error" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Moritz Borcherding " + ], + "categories": [], + "keywords": [], + "readme": "Readme.md", + "repository": "https://github.com/KillingSpark/zstd-rs", + "homepage": "https://github.com/KillingSpark/zstd-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ryu", + "version": "1.0.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "license": "Apache-2.0 OR BSL-1.0", + "license_file": null, + "description": "Fast floating point to string conversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ryu", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "upstream_benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/examples/upstream_benchmark.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "common_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/common_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "d2s_intrinsics_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_intrinsics_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "d2s_table_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_table_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "d2s_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "exhaustive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/exhaustive.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "f2s_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/f2s_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "s2d_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/s2d_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "s2f_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/s2f_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "no-panic": [ + "dep:no-panic" + ], + "small": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "value-formatting", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "float" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/ryu", + "homepage": null, + "documentation": "https://docs.rs/ryu", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "salsa20", + "version": "0.10.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Salsa20 Stream Cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cipher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "salsa20", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "std": [ + "cipher/std" + ], + "zeroize": [ + "cipher/zeroize" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "stream-cipher", + "trait", + "xsalsa20" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/stream-ciphers", + "homepage": null, + "documentation": "https://docs.rs/salsa20", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "same-file", + "version": "1.0.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "license": "Unlicense/MIT", + "license_file": null, + "description": "A simple crate for determining whether two file paths point to the same file.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "same_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "is_same_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/examples/is_same_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "is_stderr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/examples/is_stderr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "same", + "file", + "equal", + "inode" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/same-file", + "homepage": "https://github.com/BurntSushi/same-file", + "documentation": "https://docs.rs/same-file", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "scc", + "version": "2.3.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", + "license": "Apache-2.0", + "license_file": null, + "description": "High-performance containers and utilities for concurrent and asynchronous programming", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sdd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.44", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bag", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/bag.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "hash_cache", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_cache.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "hash_index", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_index.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "hash_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tree_index", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/tree_index.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "equivalent": [ + "dep:equivalent" + ], + "loom": [ + "dep:loom", + "sdd/loom" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "wvwwvwwv " + ], + "categories": [ + "asynchronous", + "caching", + "concurrency", + "data-structures" + ], + "keywords": [ + "async", + "cache", + "concurrent", + "hashmap", + "tree" + ], + "readme": "README.md", + "repository": "https://github.com/wvwwvwwv/scalable-concurrent-containers/", + "homepage": null, + "documentation": "https://docs.rs/scc", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "scenario-tester", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scenario_tester", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_chained_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_chained_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_legacy_proxy_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_legacy_proxy_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_raw_steps_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_raw_steps_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_blackbox_upgrade_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_upgrade_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_unit_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_unit_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "st_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "scenario-tester-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "scenario-tester", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "scenario-tester-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "scopeguard", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as\nshorthands for guards with one of the implemented strategies.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scopeguard", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "readme", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/examples/readme.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "use_std" + ], + "use_std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/Cargo.toml", + "metadata": { + "release": { + "no-dev-version": true + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "rust-patterns", + "no-std" + ], + "keywords": [ + "scope-guard", + "defer", + "panic", + "unwind" + ], + "readme": "README.md", + "repository": "https://github.com/bluss/scopeguard", + "homepage": null, + "documentation": "https://docs.rs/scopeguard/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "scrypt", + "version": "0.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Scrypt password-based key derivation function", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "password-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "rand_core" + ], + "target": null, + "registry": null + }, + { + "name": "pbkdf2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "salsa20", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "password-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rand_core" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scrypt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/benches/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "simple", + "std" + ], + "password-hash": [ + "dep:password-hash" + ], + "simple": [ + "password-hash" + ], + "std": [ + "password-hash/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "authentication", + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "hashing", + "password", + "phf" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/password-hashes/tree/master/scrypt", + "homepage": null, + "documentation": "https://docs.rs/scrypt", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "sdd", + "version": "3.0.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", + "license": "Apache-2.0", + "license_file": null, + "description": "Scalable lock-free delayed memory reclaimer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sdd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ebr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/benches/ebr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "loom": [ + "dep:loom" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "wvwwvwwv " + ], + "categories": [ + "concurrency", + "data-structures", + "memory-management" + ], + "keywords": [ + "concurrent", + "epoch", + "garbage", + "lock-free", + "memory" + ], + "readme": "README.md", + "repository": "https://github.com/wvwwvwwv/scalable-delayed-dealloc/", + "homepage": null, + "documentation": "https://docs.rs/sdd", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "seahash", + "version": "4.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", + "license": "MIT", + "license_file": null, + "description": "A blazingly fast, portable hash function with proven statistical guarantees.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "seahash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chunking", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/tests/chunking.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quickchecks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/tests/quickchecks.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/benches/bench.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [], + "use_std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "ticki ", + "Tom Almeida " + ], + "categories": [], + "keywords": [ + "hash", + "hashing", + "checksum", + "checksumming", + "portable" + ], + "readme": "README.md", + "repository": "https://gitlab.redox-os.org/redox-os/seahash", + "homepage": null, + "documentation": "https://docs.rs/seahash", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "second-contract", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "second_contract", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "second-contract-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "second-contract", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "second-contract-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "seed-nft-minter", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "seed_nft_minter", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/src/seed_nft_minter.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "seed-nft-minter-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "seed-nft-minter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "seed-nft-minter-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "self_cell", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", + "license": "Apache-2.0", + "license_file": null, + "description": "Safe-to-use proc-macro-free self-referential structs in stable Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "self_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "old_rust": [ + "rustversion" + ], + "rustversion": [ + "dep:rustversion" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Lukas Bergdoll " + ], + "categories": [ + "rust-patterns", + "memory-management" + ], + "keywords": [ + "lifetime", + "borrowing", + "self", + "reference", + "intrusive" + ], + "readme": "README.md", + "repository": "https://github.com/Voultapher/self_cell", + "homepage": null, + "documentation": "https://docs.rs/self_cell", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "semver", + "version": "1.0.26", + "id": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser and evaluator for Cargo's flavor of Semantic Versioning", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.194", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "semver", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_autotrait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_autotrait.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_identifier", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_identifier.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_version", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_version.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_version_req", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_version_req.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/benches/parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "cargo" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/semver", + "homepage": null, + "documentation": "https://docs.rs/semver", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "send-tx-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "send_tx_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/src/send_tx_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "send-tx-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "send-tx-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "send-tx-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serde", + "version": "1.0.219", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A generic serialization/deserialization framework", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.219", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "derive": [ + "serde_derive" + ], + "rc": [], + "serde_derive": [ + "dep:serde_derive" + ], + "std": [], + "unstable": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "derive", + "rc", + "unstable" + ], + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "derive", + "rc" + ] + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "no_std" + ], + "readme": "crates-io.md", + "repository": "https://github.com/serde-rs/serde", + "homepage": "https://serde.rs", + "documentation": "https://docs.rs/serde", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "serde-wasm-bindgen", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", + "license": "MIT", + "license_file": null, + "description": "Native Serde adapter for wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.83", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "maplit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.39", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.24", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_wasm_bindgen", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/tests/browser.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "node", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/tests/node.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ingvar Stepanyan " + ], + "categories": [ + "development-tools::ffi", + "wasm", + "encoding" + ], + "keywords": [ + "serde", + "serialization", + "javascript", + "wasm", + "webassembly" + ], + "readme": "README.md", + "repository": "https://github.com/cloudflare/serde-wasm-bindgen", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serde_bytes", + "version": "0.11.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Optimized handling of `&[u8]` and `Vec` for Serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/tests/test_derive.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_partialeq", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/tests/test_partialeq.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/tests/test_serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "serde/alloc" + ], + "default": [ + "std" + ], + "std": [ + "serde/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "no_std", + "bytes" + ], + "readme": "README.md", + "repository": "https://github.com/serde-rs/bytes", + "homepage": null, + "documentation": "https://docs.rs/serde_bytes", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.68" + }, + { + "name": "serde_derive", + "version": "1.0.219", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.81", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "serde_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.219/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "deserialize_in_place": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.219/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "no_std", + "derive" + ], + "readme": "crates-io.md", + "repository": "https://github.com/serde-rs/serde", + "homepage": "https://serde.rs", + "documentation": "https://serde.rs/derive.html", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "serde_json", + "version": "1.0.140", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A JSON serialization file format", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ryu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.194", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.194", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_stacker", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/debug.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lexical", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/lexical.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/regression.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "serde/alloc" + ], + "arbitrary_precision": [], + "default": [ + "std" + ], + "float_roundtrip": [], + "indexmap": [ + "dep:indexmap" + ], + "preserve_order": [ + "indexmap", + "std" + ], + "raw_value": [], + "std": [ + "memchr/std", + "serde/std" + ], + "unbounded_depth": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "preserve_order", + "raw_value", + "unbounded_depth" + ], + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "float_roundtrip", + "raw_value", + "unbounded_depth" + ] + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "encoding", + "parser-implementations", + "no-std" + ], + "keywords": [ + "json", + "serde", + "serialization" + ], + "readme": "README.md", + "repository": "https://github.com/serde-rs/json", + "homepage": null, + "documentation": "https://docs.rs/serde_json", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "serde_repr", + "version": "0.1.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.46", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.100", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "serde_repr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "integer" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/serde-repr", + "homepage": null, + "documentation": "https://docs.rs/serde_repr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "serde_spanned", + "version": "0.6.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Serde-compatible spanned Value", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde-untagged", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_spanned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-0.6.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-0.6.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "serde", + "span" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "serde_urlencoded", + "version": "0.7.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "`x-www-form-urlencoded` meets Serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "form_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ryu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_urlencoded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_deserialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/tests/test_deserialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_serialize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/tests/test_serialize.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Anthony Ramine " + ], + "categories": [ + "encoding", + "web-programming" + ], + "keywords": [ + "serde", + "serialization", + "urlencoded" + ], + "readme": "README.md", + "repository": "https://github.com/nox/serde_urlencoded", + "homepage": null, + "documentation": "https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serial_test", + "version": "3.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "license": "MIT", + "license_file": null, + "description": "Allows for the creation of serialised Rust tests", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "document-features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.6.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fslock", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "executor" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serial_test_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~3.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use_std" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serial_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "async": [ + "dep:futures", + "serial_test_derive/async" + ], + "default": [ + "logging", + "async" + ], + "docsrs": [ + "dep:document-features" + ], + "file_locks": [ + "dep:fslock" + ], + "logging": [ + "dep:log" + ], + "test_logging": [ + "logging", + "dep:env_logger", + "serial_test_derive/test_logging" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "docsrs", + "test_logging" + ], + "skip_optional_dependencies": true + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Tom Parker-Shemilt " + ], + "categories": [ + "development-tools::testing" + ], + "keywords": [ + "sequential", + "testing", + "parallel" + ], + "readme": "README.md", + "repository": "https://github.com/palfrey/serial_test/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serial_test_derive", + "version": "3.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", + "license": "MIT", + "license_file": null, + "description": "Helper crate for serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "full", + "printing", + "parsing", + "clone-impls" + ], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "prettyplease", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "serial_test_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test_derive-3.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "async": [], + "default": [], + "test_logging": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test_derive-3.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Tom Parker-Shemilt " + ], + "categories": [ + "development-tools::testing" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/palfrey/serial_test/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "set-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "set_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/src/set_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "set-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "set-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "set-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "sha2", + "version": "0.10.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cpufeatures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", + "registry": null + }, + { + "name": "sha2-asm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sha2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/benches/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "asm": [ + "sha2-asm" + ], + "asm-aarch64": [ + "asm" + ], + "compress": [], + "default": [ + "std" + ], + "force-soft": [], + "force-soft-compact": [], + "loongarch64_asm": [], + "oid": [ + "digest/oid" + ], + "sha2-asm": [ + "dep:sha2-asm" + ], + "std": [ + "digest/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "sha2", + "hash", + "digest" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/hashes", + "homepage": null, + "documentation": "https://docs.rs/sha2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "sha3", + "version": "0.10.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Pure Rust implementation of SHA-3, a family of Keccak-based hash functions\nincluding the SHAKE family of eXtendable-Output Functions (XOFs), as well as\nthe accelerated variant TurboSHAKE\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "keccak", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sha3", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "aliases", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/aliases.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cshake", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/cshake.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "turboshake", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/turboshake.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/benches/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "asm": [ + "keccak/asm" + ], + "default": [ + "std" + ], + "oid": [ + "digest/oid" + ], + "reset": [], + "std": [ + "digest/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "sha3", + "keccak", + "hash", + "digest" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/hashes", + "homepage": null, + "documentation": "https://docs.rs/sha3", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "shared-buffer", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An abstraction over buffers backed by memory-mapped files or bytes in memory", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memmap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "shared_buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shared-buffer-0.1.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shared-buffer-0.1.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/wasmerio/shared-buffer.git", + "homepage": "https://github.com/wasmerio/shared-buffer.git", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "shlex", + "version": "1.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Split a string into shell words, like Python's shlex.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "shlex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "comex ", + "Fenhl ", + "Adrian Taylor ", + "Alex Touchet ", + "Daniel Parks ", + "Garrett Berg " + ], + "categories": [ + "command-line-interface", + "parser-implementations" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/comex/rust-shlex", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.46.0" + }, + { + "name": "signal-hook-registry", + "version": "1.4.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "Backend crate for signal-hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "signal-hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "signal_hook_registry", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unregister_signal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/tests/unregister_signal.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Michal 'vorner' Vaner ", + "Masaki Hara " + ], + "categories": [], + "keywords": [ + "signal", + "unix", + "daemon" + ], + "readme": "README.md", + "repository": "https://github.com/vorner/signal-hook", + "homepage": null, + "documentation": "https://docs.rs/signal-hook-registry", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "signature", + "version": "2.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "signature_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": "derive", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "signature", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/tests/derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "derive": [ + "dep:derive" + ], + "digest": [ + "dep:digest" + ], + "rand_core": [ + "dep:rand_core" + ], + "std": [ + "alloc", + "rand_core?/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "ecdsa", + "ed25519", + "signature", + "signing" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits/tree/master/signature", + "homepage": null, + "documentation": "https://docs.rs/signature", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "simd-adler32", + "version": "0.3.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", + "license": "MIT", + "license_file": null, + "description": "A SIMD-accelerated Adler-32 hash algorithm implementation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "adler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "adler32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "simd_adler32", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "alts", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/bench/alts.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "variants", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/bench/variants.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "const-generics": [], + "default": [ + "std", + "const-generics" + ], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Marvin Countryman " + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "simd", + "avx2", + "ssse3", + "adler", + "adler32" + ], + "readme": "README.md", + "repository": "https://github.com/mcountryman/simd-adler32", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "simdutf8", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "SIMD-accelerated UTF-8 validation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "simdutf8", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "streaming", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/examples/streaming.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "aarch64_neon": [], + "aarch64_neon_prefetch": [], + "default": [ + "std" + ], + "hints": [], + "public_imp": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-unknown-linux-gnu", + "rustdoc-args": [ + "--cfg", + "docsrs" + ], + "targets": [ + "aarch64-unknown-linux-gnu", + "wasm32-unknown-unknown", + "wasm32-wasi" + ] + } + } + }, + "publish": null, + "authors": [ + "Hans Kratz " + ], + "categories": [ + "encoding", + "algorithms", + "no-std" + ], + "keywords": [ + "utf-8", + "unicode", + "string", + "validation", + "simd" + ], + "readme": "README.md", + "repository": "https://github.com/rusticstuff/simdutf8", + "homepage": "https://github.com/rusticstuff/simdutf8", + "documentation": "https://docs.rs/simdutf8/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "simple-error", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A simple error type backed by a string\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "simple_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simple-error-0.3.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simple-error-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "error", + "simple-error" + ], + "readme": "README.md", + "repository": "https://github.com/WiSaGaN/simple-error.git", + "homepage": null, + "documentation": "https://docs.rs/simple-error/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.58.0" + }, + { + "name": "single-value-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "single_value_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/src/single_value_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "single-value-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "single-value-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "single-value-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "slab", + "version": "0.4.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "license": "MIT", + "license_file": null, + "description": "Pre-allocated storage for a uniform data type", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.95", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "slab", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "slab", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/tests/slab.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Carl Lerche " + ], + "categories": [ + "memory-management", + "data-structures", + "no-std" + ], + "keywords": [ + "slab", + "allocator", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/slab", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "smallvec", + "version": "1.15.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "'Small vector' optimization: store up to a small number of items on the stack", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "malloc_size_of", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unty", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": "bincode1", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test_parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "smallvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debugger_visualizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/tests/debugger_visualizer.rs", + "edition": "2018", + "required-features": [ + "debugger_visualizer" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/tests/macro.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "bincode": [ + "dep:bincode" + ], + "const_generics": [], + "const_new": [ + "const_generics" + ], + "debugger_visualizer": [], + "drain_filter": [], + "drain_keep_rest": [ + "drain_filter" + ], + "impl_bincode": [ + "bincode", + "unty" + ], + "malloc_size_of": [ + "dep:malloc_size_of" + ], + "may_dangle": [], + "serde": [ + "dep:serde" + ], + "specialization": [], + "union": [], + "unty": [ + "dep:unty" + ], + "write": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The Servo Project Developers" + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "small", + "vec", + "vector", + "stack", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/servo/rust-smallvec", + "homepage": null, + "documentation": "https://docs.rs/smallvec/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "socket2", + "version": "0.5.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Utilities for handling networking sockets with a maximal amount of configuration\npossible intended.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.171", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Networking_WinSock", + "Win32_System_IO", + "Win32_System_Threading", + "Win32_System_WindowsProgramming" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "socket2", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "all": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ], + "targets": [ + "aarch64-apple-ios", + "aarch64-linux-android", + "x86_64-apple-darwin", + "x86_64-unknown-fuchsia", + "x86_64-pc-windows-msvc", + "x86_64-pc-solaris", + "x86_64-unknown-freebsd", + "x86_64-unknown-illumos", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-musl", + "x86_64-unknown-netbsd", + "x86_64-unknown-redox", + "armv7-linux-androideabi", + "i686-linux-android" + ] + } + }, + "playground": { + "features": [ + "all" + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton ", + "Thomas de Zeeuw " + ], + "categories": [ + "api-bindings", + "network-programming" + ], + "keywords": [ + "io", + "socket", + "network" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/socket2", + "homepage": "https://github.com/rust-lang/socket2", + "documentation": "https://docs.rs/socket2", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "spki", + "version": "0.7.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "X.509 Subject Public Key Info (RFC5280) describing public keys as well as their\nassociated AlgorithmIdentifiers (i.e. OIDs)\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "base64ct", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "der", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "oid" + ], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "spki", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spki", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/tests/spki.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "traits", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/tests/traits.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "base64ct?/alloc", + "der/alloc" + ], + "arbitrary": [ + "std", + "dep:arbitrary", + "der/arbitrary" + ], + "base64": [ + "dep:base64ct" + ], + "fingerprint": [ + "sha2" + ], + "pem": [ + "alloc", + "der/pem" + ], + "sha2": [ + "dep:sha2" + ], + "std": [ + "der/std", + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "data-structures", + "encoding", + "no-std" + ], + "keywords": [ + "crypto", + "x509" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/formats/tree/master/spki", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "stable_deref_trait", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "stable_deref_trait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Robert Grosse " + ], + "categories": [ + "memory-management", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/storyyeller/stable_deref_trait", + "homepage": null, + "documentation": "https://docs.rs/stable_deref_trait/1.2.0/stable_deref_trait", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "static_assertions", + "version": "1.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Compile-time assertions to ensure that invariants are met.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "static_assertions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "nightly": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nikolai Vazquez" + ], + "categories": [ + "no-std", + "rust-patterns", + "development-tools::testing" + ], + "keywords": [ + "assert", + "static", + "testing" + ], + "readme": "README.md", + "repository": "https://github.com/nvzqz/static-assertions-rs", + "homepage": "https://github.com/nvzqz/static-assertions-rs", + "documentation": "https://docs.rs/static_assertions/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "str-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "str_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/src/str_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "managed-buffer-builder-cached": [ + "multiversx-sc/managed-buffer-builder-cached" + ] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "str-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "str-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "str-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "strsim", + "version": "0.11.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "license": "MIT", + "license_file": null, + "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "strsim", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/tests/lib.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/benches/benches.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Danny Guo ", + "maxbachmann " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "string", + "similarity", + "Hamming", + "Levenshtein", + "Jaro" + ], + "readme": "README.md", + "repository": "https://github.com/rapidfuzz/strsim-rs", + "homepage": "https://github.com/rapidfuzz/strsim-rs", + "documentation": "https://docs.rs/strsim/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "subtle", + "version": "2.6.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "subtle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "const-generics": [], + "core_hint_black_box": [], + "default": [ + "std", + "i128" + ], + "i128": [], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Isis Lovecruft ", + "Henry de Valence " + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "cryptography", + "crypto", + "constant-time", + "utilities" + ], + "readme": "README.md", + "repository": "https://github.com/dalek-cryptography/subtle", + "homepage": "https://dalek.rs/", + "documentation": "https://docs.rs/subtle", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "syn", + "version": "1.0.109", + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser for Rust source code", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.46", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "blocking" + ], + "target": null, + "registry": null + }, + { + "name": "syn-test-suite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "termcolor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "syn", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/regression.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_asyncness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_asyncness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_attribute", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_attribute.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_derive_input", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_derive_input.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_expr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_generics.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_grouping", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_grouping.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ident", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_ident.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_item", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_item.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_iterators", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_iterators.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_lit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_meta.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_parse_buffer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_parse_stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_pat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_pat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_path.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_precedence", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_precedence.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_receiver", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_receiver.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_round_trip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_round_trip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_shebang", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_shebang.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_should_parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_should_parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_size.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_stmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_stmt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_token_trees", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_token_trees.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ty", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_ty.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_visibility", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_visibility.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zzz_stable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/zzz_stable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/benches/file.rs", + "edition": "2018", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "rust", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/benches/rust.rs", + "edition": "2018", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "clone-impls": [], + "default": [ + "derive", + "parsing", + "printing", + "clone-impls", + "proc-macro" + ], + "derive": [], + "extra-traits": [], + "fold": [], + "full": [], + "parsing": [], + "printing": [ + "quote" + ], + "proc-macro": [ + "proc-macro2/proc-macro", + "quote/proc-macro" + ], + "quote": [ + "dep:quote" + ], + "test": [ + "syn-test-suite/all-features" + ], + "visit": [], + "visit-mut": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "full", + "visit", + "visit-mut", + "fold", + "extra-traits" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "parser-implementations" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/syn", + "homepage": null, + "documentation": "https://docs.rs/syn", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "syn", + "version": "2.0.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser for Rust source code", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.91", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn-test-suite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "termcolor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "blocking" + ], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "syn", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/regression.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_asyncness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_asyncness.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_attribute", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_attribute.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_derive_input", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_derive_input.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_expr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_grouping", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_grouping.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ident", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_ident.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_item", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_item.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_iterators", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_iterators.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_lit.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_meta", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_meta.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_buffer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_quote", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_quote.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_pat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_pat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_precedence", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_precedence.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_receiver", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_receiver.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_round_trip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_round_trip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_shebang", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_shebang.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_size.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_stmt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_stmt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_token_trees", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_token_trees.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ty", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_ty.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_unparenthesize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_unparenthesize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_visibility", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_visibility.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zzz_stable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/zzz_stable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/benches/file.rs", + "edition": "2021", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "rust", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/benches/rust.rs", + "edition": "2021", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "clone-impls": [], + "default": [ + "derive", + "parsing", + "printing", + "clone-impls", + "proc-macro" + ], + "derive": [], + "extra-traits": [], + "fold": [], + "full": [], + "parsing": [], + "printing": [ + "dep:quote" + ], + "proc-macro": [ + "proc-macro2/proc-macro", + "quote?/proc-macro" + ], + "test": [ + "syn-test-suite/all-features" + ], + "visit": [], + "visit-mut": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--generate-link-to-definition", + "--extend-css=src/gen/token.css", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "full", + "visit", + "visit-mut", + "fold", + "extra-traits" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "parser-implementations" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/syn", + "homepage": null, + "documentation": "https://docs.rs/syn", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "sync_wrapper", + "version": "1.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "license": "Apache-2.0", + "license_file": null, + "description": "A tool for enlisting the compiler's help in proving the absence of concurrency", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sync_wrapper", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "futures": [ + "futures-core" + ], + "futures-core": [ + "dep:futures-core" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Actyx AG " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "concurrency" + ], + "readme": "README.md", + "repository": "https://github.com/Actyx/sync_wrapper", + "homepage": "https://docs.rs/sync_wrapper", + "documentation": "https://docs.rs/sync_wrapper", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "synstructure", + "version": "0.13.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "license": "MIT", + "license_file": null, + "description": "Helper methods and macros for custom derives", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive", + "parsing", + "printing", + "clone-impls", + "visit", + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure_test_traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "synstructure", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "proc-macro" + ], + "proc-macro": [ + "proc-macro2/proc-macro", + "syn/proc-macro", + "quote/proc-macro" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nika Layzell " + ], + "categories": [], + "keywords": [ + "syn", + "macros", + "derive", + "expand_substructure", + "enum" + ], + "readme": "README.md", + "repository": "https://github.com/mystor/synstructure", + "homepage": null, + "documentation": "https://docs.rs/synstructure", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "system-sc-interact", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.4.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "multiversx-sc-snippets", + "source": null, + "req": "=0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "system_sc_interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/src/system_sc_interact.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "system-sc-interact", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/src/system_sc_main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chain_simulator_token_tests", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/tests/chain_simulator_token_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chain-simulator-tests": [] + }, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tap", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", + "license": "MIT", + "license_file": null, + "description": "Generic extensions for tapping values in Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tap-1.0.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tap-1.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Elliott Linder ", + "myrrlyn " + ], + "categories": [ + "no-std", + "rust-patterns" + ], + "keywords": [ + "tap", + "pipe", + "functional", + "tap_ok", + "tap_some" + ], + "readme": "README.md", + "repository": "https://github.com/myrrlyn/tap", + "homepage": "https://github.com/myrrlyn/tap", + "documentation": "https://docs.rs/tap", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tar", + "version": "0.4.44", + "id": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust implementation of a TAR file reader and writer. This library does not\ncurrently handle compression, but it is abstract over all I/O readers and\nwriters. Additionally, great lengths are taken to ensure that the entire\ncontents are never required to be entirely resident in memory all at once.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "filetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "xattr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tar", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "extract_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/extract_file.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "list", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/list.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "raw_list", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/raw_list.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/write.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/tests/all.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "entry", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/tests/entry.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "xattr" + ], + "xattr": [ + "dep:xattr" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "tar", + "tarfile", + "encoding" + ], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/tar-rs", + "homepage": "https://github.com/alexcrichton/tar-rs", + "documentation": "https://docs.rs/tar", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "target-lexicon", + "version": "0.12.16", + "id": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "license": "Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "Targeting utilities for compilers and related tools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "target_lexicon", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "host", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/examples/host.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "misc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/examples/misc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arch_zkasm": [], + "default": [], + "serde": [ + "dep:serde" + ], + "serde_support": [ + "serde", + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dan Gohman " + ], + "categories": [ + "no-std" + ], + "keywords": [ + "target", + "host", + "triple", + "compiler", + "jit" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/target-lexicon", + "homepage": null, + "documentation": "https://docs.rs/target-lexicon/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tempfile", + "version": "3.19.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library for managing temporary files and directories.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "fastrand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fs" + ], + "target": "cfg(any(unix, target_os = \"wasi\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(any(unix, windows, target_os = \"wasi\"))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Storage_FileSystem", + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tempfile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "env", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/env.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "namedtempfile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/namedtempfile.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spooled", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/spooled.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tempdir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/tempdir.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tempfile", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/tempfile.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "getrandom" + ], + "getrandom": [ + "dep:getrandom" + ], + "nightly": [], + "unstable-windows-keep-open-tempfile": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Allen ", + "The Rust Project Developers", + "Ashley Mannix ", + "Jason White " + ], + "categories": [], + "keywords": [ + "tempfile", + "tmpfile", + "filesystem" + ], + "readme": "README.md", + "repository": "https://github.com/Stebalien/tempfile", + "homepage": "https://stebalien.com/projects/tempfile-rs/", + "documentation": "https://docs.rs/tempfile", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "termcolor", + "version": "1.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "A simple cross platform library for writing colored text to a terminal.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "termcolor", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "windows", + "win", + "color", + "ansi", + "console" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/termcolor", + "homepage": "https://github.com/BurntSushi/termcolor", + "documentation": "https://docs.rs/termcolor", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "thiserror", + "version": "1.0.69", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "derive(Error)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "thiserror-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.73", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "thiserror", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_backtrace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_deprecated", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_deprecated.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_display", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_display.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_expr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_from.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lints", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_lints.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_option", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_option.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_source", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_source.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_transparent", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_transparent.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "error", + "error-handling", + "derive" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": "https://docs.rs/thiserror", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thiserror", + "version": "2.0.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "derive(Error)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "thiserror-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.73", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "thiserror", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_backtrace", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_backtrace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_display", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_display.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_expr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_from.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lints", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_lints.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_option", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_option.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_source", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_source.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_transparent", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_transparent.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "error", + "error-handling", + "derive" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": "https://docs.rs/thiserror", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thiserror-impl", + "version": "1.0.69", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Implementation detail of the `thiserror` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.87", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "thiserror_impl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thiserror-impl", + "version": "2.0.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Implementation detail of the `thiserror` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.87", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "thiserror_impl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.12/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org", + "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "tinystr", + "version": "0.7.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "license": "Unicode-3.0", + "license_file": null, + "description": "A small ASCII-only bounded length string representation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinystr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/tests/serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "construct", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/construct.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "overview", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/overview.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/read.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/serde.rs", + "edition": "2021", + "required-features": [ + "bench", + "serde" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "bench": [], + "databake": [ + "dep:databake" + ], + "default": [ + "alloc" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "zerovec": [ + "dep:zerovec" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "string", + "str", + "small", + "tiny", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "tinyvec", + "version": "1.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "license": "Zlib OR Apache-2.0 OR MIT", + "license_file": null, + "description": "`tinyvec` provides 100% safe vec-like data structures.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinyvec_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test_parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinyvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arrayvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/arrayvec.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debugger_visualizer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/debugger_visualizer.rs", + "edition": "2018", + "required-features": [ + "debugger_visualizer" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tinyvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/tinyvec.rs", + "edition": "2018", + "required-features": [ + "alloc", + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/benches/macros.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "smallvec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/benches/smallvec.rs", + "edition": "2018", + "required-features": [ + "alloc", + "real_blackbox" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "tinyvec_macros" + ], + "arbitrary": [ + "dep:arbitrary" + ], + "borsh": [ + "dep:borsh" + ], + "debugger_visualizer": [], + "default": [], + "experimental_write_impl": [], + "generic-array": [ + "dep:generic-array" + ], + "grab_spare_slice": [], + "latest_stable_rust": [ + "rustc_1_61" + ], + "nightly_slice_partition_dedup": [], + "real_blackbox": [ + "criterion/real_blackbox" + ], + "rustc_1_40": [], + "rustc_1_55": [ + "rustc_1_40" + ], + "rustc_1_57": [ + "rustc_1_55" + ], + "rustc_1_61": [ + "rustc_1_57" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ], + "tinyvec_macros": [ + "dep:tinyvec_macros" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "alloc", + "std", + "grab_spare_slice", + "latest_stable_rust", + "serde", + "borsh" + ], + "rustdoc-args": [ + "--cfg", + "docs_rs" + ] + } + }, + "playground": { + "features": [ + "alloc", + "std", + "grab_spare_slice", + "latest_stable_rust", + "serde", + "borsh" + ] + } + }, + "publish": null, + "authors": [ + "Lokathor " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "vec", + "no_std", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/Lokathor/tinyvec", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tinyvec_macros", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", + "license": "MIT OR Apache-2.0 OR Zlib", + "license_file": null, + "description": "Some macros for tiny containers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinyvec_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Soveu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/Soveu/tinyvec_macros", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "token-release", + "version": "0.0.1", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "token_release", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/src/token_release.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_release_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/tests/token_release_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_release_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/tests/token_release_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "you" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "token-release-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "token-release", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "token-release-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tokio", + "version": "1.44.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "license": "MIT", + "license_file": null, + "description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O\nbacked applications.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~2.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "async-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "async-await" + ], + "target": null, + "registry": null + }, + { + "name": "futures-concurrency", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.6.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "mockall", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_family = \"wasm\", not(target_os = \"wasi\")))", + "registry": null + }, + { + "name": "tracing-mock", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.1.0-beta.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(tokio_unstable, target_has_atomic = \"64\"))", + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures", + "checkpoint" + ], + "target": "cfg(loom)", + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))", + "registry": null + }, + { + "name": "socket2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "all" + ], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "socket2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "mio-aio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "tokio" + ], + "target": "cfg(target_os = \"freebsd\")", + "registry": null + }, + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.58", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(tokio_taskdump)", + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.29", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": "cfg(tokio_unstable)", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "signal-hook-registry", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.168", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "nix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.29.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "aio", + "fs", + "socket" + ], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Security_Authorization" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "_require_full", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/_require_full.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async_send_sync", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/async_send_sync.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "buffered", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/buffered.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "coop_budget", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/coop_budget.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dump", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/dump.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "duplex_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/duplex_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_canonicalize_dir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_canonicalize_dir.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_copy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_copy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_dir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_dir.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_file.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_link", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_link.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_open_options", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_open_options.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_open_options_windows", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_open_options_windows.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_remove_dir_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_remove_dir_all.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_remove_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_remove_file.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_rename", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_rename.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_symlink_dir_windows", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_symlink_dir_windows.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_symlink_file_windows", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_symlink_file_windows.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fs_try_exists", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_try_exists.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_async_fd", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_async_fd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_async_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_async_read.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_buf_reader", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_buf_reader.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_buf_writer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_buf_writer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_chain", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_chain.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_copy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_copy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_copy_bidirectional", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_copy_bidirectional.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_driver", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_driver.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_driver_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_driver_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_fill_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_fill_buf.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_join.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_lines", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_lines.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_mem_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_mem_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_poll_aio", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_poll_aio.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_buf.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_exact", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_exact.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_line", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_line.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_to_end", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_to_end.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_to_string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_to_string.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_read_until", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_until.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_repeat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_repeat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_sink", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_sink.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_split.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_take", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_take.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_util_empty", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_util_empty.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write_all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_all.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write_all_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_all_buf.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write_buf", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_buf.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_write_int", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_int.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "join_handle_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/join_handle_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_join.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_pin", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_pin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_rename_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_rename_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_select", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_select.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_try_join", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_try_join.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_bind_resource", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_bind_resource.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_lookup_host", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_lookup_host.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_named_pipe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_named_pipe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "net_unix_pipe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_unix_pipe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/no_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_arg0", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_arg0.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_change_of_runtime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_change_of_runtime.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_issue_2174", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_issue_2174.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_issue_42", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_issue_42.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_kill_after_wait", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_kill_after_wait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_kill_on_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_kill_on_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_raw_handle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_raw_handle.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_smoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_smoke.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_common", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_common.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_handle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_handle.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_handle_block_on", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_handle_block_on.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_local", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_local.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_metrics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_metrics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_poll_callbacks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_poll_callbacks.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_threaded", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_threaded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_threaded_alt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_threaded_alt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_time_start_paused", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_time_start_paused.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt_unstable_metrics", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_unstable_metrics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_ctrl_c", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_ctrl_c.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_drop_recv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_recv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_drop_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_drop_signal", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_signal.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_info", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_info.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_multi_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_multi_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_no_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_no_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_notify_both", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_notify_both.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_realtime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_realtime.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_twice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_twice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signal_usr1", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_usr1.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_barrier", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_barrier.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_broadcast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_broadcast.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_broadcast_weak", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_broadcast_weak.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_errors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_errors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mpsc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mpsc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mpsc_weak", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mpsc_weak.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mutex", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mutex.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_mutex_owned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mutex_owned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_notify", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_notify.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_once_cell", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_once_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_oneshot", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_oneshot.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_rwlock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_rwlock.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_semaphore", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_semaphore.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_semaphore_owned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_semaphore_owned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_watch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_watch.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_abort", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_abort.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_blocking", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_blocking.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_builder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_builder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_hooks", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_hooks.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_id", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_id.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_join_set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_join_set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_local", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_local.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_local_set", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_local_set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_trace_self", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_trace_self.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_yield_now", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_yield_now.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_accept", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_accept.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_connect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_connect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_echo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_echo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_into_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_into_split.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_into_std", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_into_std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_peek", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_peek.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_shutdown", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_shutdown.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_socket", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_socket.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_split.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_clock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/test_clock.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_interval", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_interval.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_pause", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_pause.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_sleep", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_sleep.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_timeout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_timeout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracing_sync", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_sync.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracing_task", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_task.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracing_time", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_time.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "udp", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/udp.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_cred", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_cred.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_datagram", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_datagram.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_socket", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_socket.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_split", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_split.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uds_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unwindsafe", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/unwindsafe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "bytes": [ + "dep:bytes" + ], + "default": [], + "fs": [], + "full": [ + "fs", + "io-util", + "io-std", + "macros", + "net", + "parking_lot", + "process", + "rt", + "rt-multi-thread", + "signal", + "sync", + "time" + ], + "io-std": [], + "io-util": [ + "bytes" + ], + "libc": [ + "dep:libc" + ], + "macros": [ + "tokio-macros" + ], + "mio": [ + "dep:mio" + ], + "net": [ + "libc", + "mio/os-poll", + "mio/os-ext", + "mio/net", + "socket2", + "windows-sys/Win32_Foundation", + "windows-sys/Win32_Security", + "windows-sys/Win32_Storage_FileSystem", + "windows-sys/Win32_System_Pipes", + "windows-sys/Win32_System_SystemServices" + ], + "parking_lot": [ + "dep:parking_lot" + ], + "process": [ + "bytes", + "libc", + "mio/os-poll", + "mio/os-ext", + "mio/net", + "signal-hook-registry", + "windows-sys/Win32_Foundation", + "windows-sys/Win32_System_Threading", + "windows-sys/Win32_System_WindowsProgramming" + ], + "rt": [], + "rt-multi-thread": [ + "rt" + ], + "signal": [ + "libc", + "mio/os-poll", + "mio/net", + "mio/os-ext", + "signal-hook-registry", + "windows-sys/Win32_Foundation", + "windows-sys/Win32_System_Console" + ], + "signal-hook-registry": [ + "dep:signal-hook-registry" + ], + "socket2": [ + "dep:socket2" + ], + "sync": [], + "test-util": [ + "rt", + "sync", + "time" + ], + "time": [], + "tokio-macros": [ + "dep:tokio-macros" + ], + "tracing": [ + "dep:tracing" + ], + "windows-sys": [ + "dep:windows-sys" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "bytes::buf::buf_impl::Buf", + "bytes::buf::buf_mut::BufMut", + "tokio_macros::*" + ] + }, + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "tokio_unstable", + "--cfg", + "tokio_taskdump" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tokio_unstable", + "--cfg", + "tokio_taskdump" + ] + } + }, + "playground": { + "features": [ + "full", + "test-util" + ] + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [ + "io", + "async", + "non-blocking", + "futures" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tokio", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "tokio-macros", + "version": "2.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", + "license": "MIT", + "license_file": null, + "description": "Tokio's proc macros.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "tokio_macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.5.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tokio", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "tokio-native-tls", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "license": "MIT", + "license_file": null, + "description": "An implementation of TLS/SSL streams for Tokio using native-tls giving an implementation of TLS\nfor nonblocking I/O streams.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "async-await" + ], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "rt", + "rt-multi-thread", + "io-util", + "net" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "openssl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(not(target_os = \"macos\"), not(windows), not(target_os = \"ios\")))", + "registry": null + }, + { + "name": "security-framework", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", + "registry": null + }, + { + "name": "schannel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "lmcons", + "basetsd", + "minwinbase", + "minwindef", + "ntdef", + "sysinfoapi", + "timezoneapi", + "wincrypt", + "winerror" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio_native_tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "download-rust-lang", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/examples/download-rust-lang.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "echo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/examples/echo.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bad", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/bad.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "google", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/google.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/smoke.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "vendored": [ + "native-tls/vendored" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tls", + "homepage": "https://tokio.rs", + "documentation": "https://docs.rs/tokio-native-tls", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tokio-rustls", + "version": "0.26.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Asynchronous TLS/SSL streams for Tokio using Rustls.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "argh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "pem" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio_rustls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "badssl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/badssl.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "certs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/certs/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "early-data", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/early-data.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/utils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "aws-lc-rs": [ + "aws_lc_rs" + ], + "aws_lc_rs": [ + "rustls/aws_lc_rs" + ], + "default": [ + "logging", + "tls12", + "aws_lc_rs" + ], + "early-data": [], + "fips": [ + "rustls/fips" + ], + "logging": [ + "rustls/logging" + ], + "ring": [ + "rustls/ring" + ], + "tls12": [ + "rustls/tls12" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "asynchronous", + "cryptography", + "network-programming" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/tokio-rustls", + "homepage": "https://github.com/rustls/tokio-rustls", + "documentation": "https://docs.rs/tokio-rustls", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "tokio-stream", + "version": "0.1.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", + "license": "MIT", + "license_file": null, + "description": "Utilities to work with `Stream` and `tokio`.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.15.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "async-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "test-util" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async_send_sync", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/async_send_sync.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chunks_timeout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/chunks_timeout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_chain", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_chain.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_close", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_close.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_collect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_collect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_empty", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_empty.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_fuse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_fuse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_iter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_merge", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_merge.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_once", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_once.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_pending", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_pending.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_stream_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_stream_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream_timeout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_timeout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_throttle", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/time_throttle.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "watch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/watch.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "time" + ], + "fs": [ + "tokio/fs" + ], + "full": [ + "time", + "net", + "io-util", + "fs", + "sync", + "signal" + ], + "io-util": [ + "tokio/io-util" + ], + "net": [ + "tokio/net" + ], + "signal": [ + "tokio/signal" + ], + "sync": [ + "tokio/sync", + "tokio-util" + ], + "time": [ + "tokio/time" + ], + "tokio-util": [ + "dep:tokio-util" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "docsrs" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tokio", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "tokio-util", + "version": "0.7.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", + "license": "MIT", + "license_file": null, + "description": "Additional utilities for working with Tokio.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-sink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.28.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.29", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "async-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "raw-entry" + ], + "target": "cfg(tokio_unstable)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tokio_util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "_require_full", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/_require_full.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "abort_on_drop", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/abort_on_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "codecs", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/codecs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/compat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "context", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/context.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "framed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "framed_read", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_read.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "framed_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "framed_write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_write.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_inspect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_inspect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_reader_stream", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_reader_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_sink_writer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_sink_writer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_stream_reader", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_stream_reader.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "io_sync_bridge", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_sync_bridge.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "length_delimited", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/length_delimited.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mpsc", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/mpsc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "panic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "poll_semaphore", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/poll_semaphore.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reusable_box", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/reusable_box.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spawn_pinned", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/spawn_pinned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sync_cancellation_token", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/sync_cancellation_token.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_join_map", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/task_join_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "task_tracker", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/task_tracker.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_delay_queue", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/time_delay_queue.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "udp", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/udp.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__docs_rs": [ + "futures-util" + ], + "codec": [], + "compat": [ + "futures-io" + ], + "default": [], + "full": [ + "codec", + "compat", + "io-util", + "time", + "net", + "rt" + ], + "futures-io": [ + "dep:futures-io" + ], + "futures-util": [ + "dep:futures-util" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "io": [], + "io-util": [ + "io", + "tokio/rt", + "tokio/io-util" + ], + "net": [ + "tokio/net" + ], + "rt": [ + "tokio/rt", + "tokio/sync", + "futures-util", + "hashbrown" + ], + "slab": [ + "dep:slab" + ], + "time": [ + "tokio/time", + "slab" + ], + "tracing": [ + "dep:tracing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tokio_unstable" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tokio_unstable" + ] + } + }, + "playground": { + "features": [ + "full" + ] + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "asynchronous" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tokio", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "toml", + "version": "0.7.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_edit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.19.15", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.160", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.96", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/decode.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum_external", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/enum_external.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "toml2json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/toml2json.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/decoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/decoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/encoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/encoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/testsuite/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "parse", + "display" + ], + "display": [ + "dep:toml_edit" + ], + "indexmap": [ + "dep:indexmap" + ], + "parse": [ + "dep:toml_edit" + ], + "preserve_order": [ + "indexmap" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "toml", + "version": "0.8.22", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_edit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.199", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.116", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "snapshot" + ], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/decode.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum_external", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/enum_external.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "toml2json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/toml2json.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/compliance/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/decoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/decoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/encoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/encoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/serde/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/testsuite/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "parse", + "display" + ], + "display": [ + "dep:toml_edit", + "toml_edit?/display" + ], + "indexmap": [ + "dep:indexmap" + ], + "parse": [ + "dep:toml_edit", + "toml_edit?/parse" + ], + "preserve_order": [ + "indexmap" + ], + "unbounded": [ + "toml_edit?/unbounded" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66" + }, + { + "name": "toml_datetime", + "version": "0.6.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A TOML-compatible datetime type", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_datetime", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66" + }, + { + "name": "toml_edit", + "version": "0.19.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Yet another format-preserving TOML parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "kstring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "max_inline" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winnow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libtest-mimic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.96", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "harness" + ], + "target": null, + "registry": null + }, + { + "name": "toml-test-data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_edit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "visit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/examples/visit.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/decoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/decoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/encoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/encoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "invalid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/invalid.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/testsuite/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "perf": [ + "dep:kstring" + ], + "serde": [ + "dep:serde", + "toml_datetime/serde", + "dep:serde_spanned" + ], + "unbounded": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "tag-name": "v{{version}}", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Andronik Ordian ", + "Ed Page " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66.0" + }, + { + "name": "toml_edit", + "version": "0.22.26", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Yet another format-preserving TOML parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "kstring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "max_inline" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml_write", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winnow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.199", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.116", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "snapshot" + ], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_edit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "visit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/examples/visit.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/compliance/main.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/decoder_compliance.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/encoder_compliance.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/serde/main.rs", + "edition": "2021", + "required-features": [ + "parse", + "display", + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/testsuite/main.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "parse", + "display" + ], + "display": [ + "dep:toml_write" + ], + "parse": [ + "dep:winnow" + ], + "perf": [ + "dep:kstring" + ], + "serde": [ + "dep:serde", + "toml_datetime/serde", + "dep:serde_spanned" + ], + "unbounded": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "tag-name": "v{{version}}", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Andronik Ordian ", + "Ed Page " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66" + }, + { + "name": "toml_write", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A low-level interface for writing out TOML\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.10", + "kind": "dev", + "rename": "toml_old", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_write", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "float", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/tests/float.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/tests/string.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "encoding" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.66" + }, + { + "name": "tower", + "version": "0.5.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", + "license": "MIT", + "license_file": null, + "description": "Tower is a library of modular and reusable components for building robust\nclients and servers.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "hdrhistogram", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sync_wrapper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "sync" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-layer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-service", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hdrhistogram", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "sync", + "test-util", + "rt-multi-thread" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-stream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tower-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "fmt", + "ansi" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tower", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tower-balance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/examples/tower-balance.rs", + "edition": "2018", + "required-features": [ + "full" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "balance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/balance/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "buffer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/buffer/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "builder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/builder.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hedge", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/hedge/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "limit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/limit/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "load_shed", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/load_shed/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ready_cache", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/ready_cache/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "retry", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/retry/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spawn_ready", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/spawn_ready/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "steer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/steer/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "support", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/support.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "util", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/util/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__common": [ + "futures-core", + "pin-project-lite" + ], + "balance": [ + "discover", + "load", + "ready-cache", + "make", + "slab", + "util" + ], + "buffer": [ + "__common", + "tokio/sync", + "tokio/rt", + "tokio-util", + "tracing" + ], + "discover": [ + "__common" + ], + "filter": [ + "__common", + "futures-util" + ], + "full": [ + "balance", + "buffer", + "discover", + "filter", + "hedge", + "limit", + "load", + "load-shed", + "make", + "ready-cache", + "reconnect", + "retry", + "spawn-ready", + "steer", + "timeout", + "util" + ], + "futures-core": [ + "dep:futures-core" + ], + "futures-util": [ + "dep:futures-util" + ], + "hdrhistogram": [ + "dep:hdrhistogram" + ], + "hedge": [ + "util", + "filter", + "futures-util", + "hdrhistogram", + "tokio/time", + "tracing" + ], + "indexmap": [ + "dep:indexmap" + ], + "limit": [ + "__common", + "tokio/time", + "tokio/sync", + "tokio-util", + "tracing" + ], + "load": [ + "__common", + "tokio/time", + "tracing" + ], + "load-shed": [ + "__common" + ], + "log": [ + "tracing/log" + ], + "make": [ + "futures-util", + "pin-project-lite", + "tokio/io-std" + ], + "pin-project-lite": [ + "dep:pin-project-lite" + ], + "ready-cache": [ + "futures-core", + "futures-util", + "indexmap", + "tokio/sync", + "tracing", + "pin-project-lite" + ], + "reconnect": [ + "make", + "tokio/io-std", + "tracing" + ], + "retry": [ + "__common", + "tokio/time", + "util" + ], + "slab": [ + "dep:slab" + ], + "spawn-ready": [ + "__common", + "futures-util", + "tokio/sync", + "tokio/rt", + "util", + "tracing" + ], + "steer": [], + "sync_wrapper": [ + "dep:sync_wrapper" + ], + "timeout": [ + "pin-project-lite", + "tokio/time" + ], + "tokio": [ + "dep:tokio" + ], + "tokio-stream": [ + "dep:tokio-stream" + ], + "tokio-util": [ + "dep:tokio-util" + ], + "tracing": [ + "dep:tracing" + ], + "util": [ + "__common", + "futures-util", + "pin-project-lite", + "sync_wrapper" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "full" + ] + } + }, + "publish": null, + "authors": [ + "Tower Maintainers " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [ + "io", + "async", + "non-blocking", + "futures", + "service" + ], + "readme": "README.md", + "repository": "https://github.com/tower-rs/tower", + "homepage": "https://github.com/tower-rs/tower", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "tower-layer", + "version": "0.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", + "license": "MIT", + "license_file": null, + "description": "Decorates a `Service` to allow easy composition between `Service`s.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tower_layer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Tower Maintainers " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tower-rs/tower", + "homepage": "https://github.com/tower-rs/tower", + "documentation": "https://docs.rs/tower-layer/0.3.3", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tower-service", + "version": "0.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "license": "MIT", + "license_file": null, + "description": "Trait representing an asynchronous, request / response based, client or server.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "time" + ], + "target": null, + "registry": null + }, + { + "name": "tower-layer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tower_service", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Tower Maintainers " + ], + "categories": [ + "asynchronous", + "network-programming" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/tower-rs/tower", + "homepage": "https://github.com/tower-rs/tower", + "documentation": "https://docs.rs/tower-service/0.3.3", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tracing", + "version": "0.1.41", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "license": "MIT", + "license_file": null, + "description": "Application-level tracing for Rust.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-attributes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.28", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.33", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.21", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.38", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enabled", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/enabled.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "event", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/event.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filter_caching_is_lexically_scoped", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filter_caching_is_lexically_scoped.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filters_are_not_reevaluated_for_the_same_span", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_are_not_reevaluated_for_the_same_span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filters_are_reevaluated_for_different_call_sites", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_are_reevaluated_for_different_call_sites.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filters_dont_leak", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_dont_leak.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_send", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/future_send.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "instrument", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/instrument.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro_imports", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macro_imports.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_incompatible_concat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macros_incompatible_concat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "max_level_hint", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/max_level_hint.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "missed_register_callsite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/missed_register_callsite.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiple_max_level_hints", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/multiple_max_level_hints.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_subscriber", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/no_subscriber.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "register_callsite_deadlock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/register_callsite_deadlock.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scoped_clobbers_default", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/scoped_clobbers_default.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "span", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "subscriber", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/subscriber.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "baseline", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/baseline.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "dispatch_get_clone", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/dispatch_get_clone.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "dispatch_get_ref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/dispatch_get_ref.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "empty_span", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/empty_span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "enter_span", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/enter_span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "event", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/event.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "shared", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/shared.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "span_fields", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "span_no_fields", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_no_fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "span_repeated", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_repeated.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "async-await": [], + "attributes": [ + "tracing-attributes" + ], + "default": [ + "std", + "attributes" + ], + "log": [ + "dep:log" + ], + "log-always": [ + "log" + ], + "max_level_debug": [], + "max_level_error": [], + "max_level_info": [], + "max_level_off": [], + "max_level_trace": [], + "max_level_warn": [], + "release_max_level_debug": [], + "release_max_level_error": [], + "release_max_level_info": [], + "release_max_level_off": [], + "release_max_level_trace": [], + "release_max_level_warn": [], + "std": [ + "tracing-core/std" + ], + "tracing-attributes": [ + "dep:tracing-attributes" + ], + "valuable": [ + "tracing-core/valuable" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "tracing_unstable" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tracing_unstable" + ] + } + } + }, + "publish": null, + "authors": [ + "Eliza Weisman ", + "Tokio Contributors " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous", + "no-std" + ], + "keywords": [ + "logging", + "tracing", + "metrics", + "async" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "tracing-attributes", + "version": "0.1.28", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", + "license": "MIT", + "license_file": null, + "description": "Procedural macro attributes for automatically instrumenting functions.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "full", + "parsing", + "printing", + "visit-mut", + "clone-impls", + "extra-traits", + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "async-trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.67", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.35", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "env-filter" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.64", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "tracing_attributes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async_fn", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/async_fn.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "destructuring", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/destructuring.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "err", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/err.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fields", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "follows_from", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/follows_from.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "instrument", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/instrument.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "levels", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/levels.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "names", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/names.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parents", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/parents.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ret", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/ret.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "targets", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/targets.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ui", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/ui.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "async-await": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Tokio Contributors ", + "Eliza Weisman ", + "David Barsky " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous" + ], + "keywords": [ + "logging", + "tracing", + "macro", + "instrument", + "log" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "tracing-core", + "version": "0.1.33", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", + "license": "MIT", + "license_file": null, + "description": "Core primitives for application-level tracing.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "valuable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(tracing_unstable)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing_core", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dispatch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/dispatch.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "global_dispatch", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/global_dispatch.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "local_dispatch_before_init", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/local_dispatch_before_init.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "missed_register_callsite", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/missed_register_callsite.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std", + "valuable?/std" + ], + "once_cell": [ + "dep:once_cell" + ], + "std": [ + "once_cell" + ], + "valuable": [ + "dep:valuable" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "tracing_unstable" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tracing_unstable" + ] + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous" + ], + "keywords": [ + "logging", + "tracing", + "profiling" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "transfer-role-features", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "transfer_role_features", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "transfer_role_blackbox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/tests/transfer_role_blackbox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "transfer_role_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/tests/transfer_role_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Dorin Marian Iancu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "transfer-role-features-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "transfer-role-features", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "transfer-role-features-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "try-lock", + "version": "0.2.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", + "license": "MIT", + "license_file": null, + "description": "A lightweight atomic lock.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "try_lock", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [ + "concurrency", + "no-std" + ], + "keywords": [ + "lock", + "atomic" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/try-lock", + "homepage": "https://github.com/seanmonstar/try-lock", + "documentation": "https://docs.rs/try-lock", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "twox-hash", + "version": "1.6.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", + "license": "MIT", + "license_file": null, + "description": "A Rust implementation of the XXHash and XXH3 algorithms", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.1, <2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": "digest", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": "digest_0_10", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": "digest_0_9", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.3.10, <0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "twox_hash", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "hash_file", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/src/bin/hash_file.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "digest": [ + "dep:digest" + ], + "digest_0_10": [ + "dep:digest_0_10" + ], + "digest_0_9": [ + "dep:digest_0_9" + ], + "rand": [ + "dep:rand" + ], + "serde": [ + "dep:serde" + ], + "serialize": [ + "serde" + ], + "std": [ + "rand" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jake Goulding " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "hash", + "hasher", + "xxhash", + "xxh3" + ], + "readme": "README.md", + "repository": "https://github.com/shepmaster/twox-hash", + "homepage": null, + "documentation": "https://docs.rs/twox-hash/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "typenum", + "version": "1.18.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Typenum is a Rust library for type-level numbers evaluated at\n compile time. It currently supports bits, unsigned integers, and signed\n integers. It also provides a type-level array of type-level numbers, but its\n implementation is incomplete.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "scale-info", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "typenum", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "const-generics": [], + "force_unix_path_separator": [], + "i128": [], + "no_std": [], + "scale-info": [ + "dep:scale-info" + ], + "scale_info": [ + "scale-info/derive" + ], + "strict": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "i128", + "const-generics" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "i128", + "const-generics" + ] + } + }, + "publish": null, + "authors": [ + "Paho Lurie-Gregg ", + "Andre Bogus " + ], + "categories": [ + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/paholg/typenum", + "homepage": null, + "documentation": "https://docs.rs/typenum", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.37.0" + }, + { + "name": "unicode-ident", + "version": "1.0.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "license": "(MIT OR Apache-2.0) AND Unicode-3.0", + "license_file": null, + "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fst", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "roaring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ucd-trie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-xid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_ident", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compare", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/tests/compare.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "static_size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/tests/static_size.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "xid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/benches/xid.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition", + "--extern-html-root-url=core=https://doc.rust-lang.org", + "--extern-html-root-url=alloc=https://doc.rust-lang.org", + "--extern-html-root-url=std=https://doc.rust-lang.org" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "unicode", + "xid" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/unicode-ident", + "homepage": null, + "documentation": "https://docs.rs/unicode-ident", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "unicode-normalization", + "version": "0.1.22", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "This crate provides functions for normalization of\nUnicode strings, including Canonical and Compatible\nDecomposition and Recomposition, as described in\nUnicode Standard Annex #15.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tinyvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_normalization", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kwantam ", + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "text", + "unicode", + "normalization", + "decomposition", + "recomposition" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-normalization", + "homepage": "https://github.com/unicode-rs/unicode-normalization", + "documentation": "https://docs.rs/unicode-normalization/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unicode-segmentation", + "version": "1.12.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "This crate provides Grapheme Cluster, Word and Sentence boundaries\naccording to Unicode Standard Annex #29 rules.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_segmentation", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "chars", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/chars.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "word_bounds", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/word_bounds.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "words", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/words.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "no_std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kwantam ", + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "text", + "unicode", + "grapheme", + "word", + "boundary" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-segmentation", + "homepage": "https://github.com/unicode-rs/unicode-segmentation", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unicode-width", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-std", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "std", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_width", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/benches/benches.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "cjk": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "cjk" + ], + "no_std": [], + "rustc-dep-of-std": [ + "std", + "core", + "compiler_builtins" + ], + "std": [ + "dep:std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kwantam ", + "Manish Goregaokar " + ], + "categories": [ + "command-line-interface", + "internationalization", + "no-std::no-alloc", + "text-processing" + ], + "keywords": [ + "text", + "width", + "unicode" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-width", + "homepage": "https://github.com/unicode-rs/unicode-width", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unicode-xid", + "version": "0.2.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_xid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "exhaustive_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/tests/exhaustive_tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "xid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/benches/xid.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "default": [], + "no_std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "erick.tryzelaar ", + "kwantam ", + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "text", + "unicode", + "xid" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-xid", + "homepage": "https://github.com/unicode-rs/unicode-xid", + "documentation": "https://unicode-rs.github.io/unicode-xid", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.17" + }, + { + "name": "untrusted", + "version": "0.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "license": "ISC", + "license_file": null, + "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "untrusted", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Brian Smith " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/briansmith/untrusted", + "homepage": null, + "documentation": "https://briansmith.org/rustdoc/untrusted/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unwrap-infallible", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Unwrapping Result values with compile-time guarantee of infallibility", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unwrap_infallible", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "blanket_impl", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/tests/blanket_impl.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "blanket_impl": [ + "never_type" + ], + "default": [], + "never_type": [], + "unstable": [ + "never_type", + "blanket_impl" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Mikhail Zabaluev " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "infallible", + "never-type", + "conversion", + "maintainability", + "refactoring" + ], + "readme": "README.md", + "repository": "https://github.com/mzabaluev/unwrap-infallible", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ureq", + "version": "2.12.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Simple, safe HTTP client", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "brotli-decompressor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cookie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.18", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cookie_store", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.21.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "preserve_order", + "serde_json" + ], + "target": null, + "registry": null + }, + { + "name": "encoding_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hootbin", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": "http-02", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.19", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "ring", + "logging", + "std", + "tls12" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-native-certs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.97", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "socks", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "<=0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "humantime" + ], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "ring" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pemfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ureq", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "count-bytes", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/count-bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cureq", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/cureq/main.rs", + "edition": "2018", + "required-features": [ + "charset", + "cookies", + "socks-proxy", + "native-tls" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom-tls", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/custom-tls.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ipv6", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/ipv6.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "smoke-test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/smoke-test/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tls_config", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/tls_config.rs", + "edition": "2018", + "required-features": [ + "tls", + "native-tls" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "https-agent", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/tests/https-agent.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "brotli": [ + "dep:brotli-decompressor" + ], + "charset": [ + "dep:encoding_rs" + ], + "cookies": [ + "dep:cookie", + "dep:cookie_store" + ], + "default": [ + "tls", + "gzip" + ], + "gzip": [ + "dep:flate2" + ], + "http-crate": [ + "dep:http" + ], + "http-interop": [ + "dep:http-02" + ], + "json": [ + "dep:serde", + "dep:serde_json" + ], + "native-certs": [ + "dep:rustls-native-certs" + ], + "native-tls": [ + "dep:native-tls" + ], + "proxy-from-env": [], + "socks-proxy": [ + "dep:socks" + ], + "testdeps": [ + "dep:hootbin" + ], + "tls": [ + "dep:webpki-roots", + "dep:rustls", + "dep:rustls-pki-types" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "tls", + "native-tls", + "json", + "charset", + "cookies", + "socks-proxy", + "gzip", + "brotli", + "http-interop", + "http-crate" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Martin Algesten ", + "Jacob Hoffman-Andrews " + ], + "categories": [ + "web-programming::http-client" + ], + "keywords": [ + "web", + "request", + "https", + "http", + "client" + ], + "readme": "README.md", + "repository": "https://github.com/algesten/ureq", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "url", + "version": "2.5.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "URL library for Rust, based on the WHATWG URL Standard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "form_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "idna", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "compiled_data" + ], + "target": null, + "registry": null + }, + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "url", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unit", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/tests/unit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "url_wpt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/tests/wpt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "debugger_visualizer": [], + "default": [ + "std" + ], + "expose_internals": [], + "serde": [ + "dep:serde" + ], + "std": [ + "idna/std", + "percent-encoding/std", + "form_urlencoded/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "parser-implementations", + "web-programming", + "encoding", + "no-std" + ], + "keywords": [ + "url", + "parser" + ], + "readme": "README.md", + "repository": "https://github.com/servo/rust-url", + "homepage": null, + "documentation": "https://docs.rs/url", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "use-module", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-modules", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" + }, + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "use_module", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/src/use_module.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gov_module_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/gov_module_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "staking_module_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/staking_module_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "token_merge_module_whitebox_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/token_merge_module_whitebox_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_module_abi_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_abi_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_module_scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_module_scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_module_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "use-module-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "use-module", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "use-module-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "utf16_iter", + "version": "1.0.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Iterator by char over potentially-invalid UTF-16 in &[u16]", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "utf16_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf16_iter-1.0.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf16_iter-1.0.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Henri Sivonen " + ], + "categories": [ + "text-processing", + "encoding", + "internationalization" + ], + "keywords": [ + "encoding", + "UTF-16", + "unicode", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/utf16_iter", + "homepage": "https://docs.rs/utf16_iter/", + "documentation": "https://docs.rs/utf16_iter/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "utf8_iter", + "version": "1.0.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "utf8_iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Henri Sivonen " + ], + "categories": [ + "text-processing", + "encoding", + "internationalization" + ], + "keywords": [ + "encoding", + "UTF-8", + "unicode", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/utf8_iter", + "homepage": "https://docs.rs/utf8_iter/", + "documentation": "https://docs.rs/utf8_iter/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "utf8parse", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Table-driven UTF-8 parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "utf8parse", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utf-8-demo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/tests/utf-8-demo.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "nightly": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Joe Wilm ", + "Christian Duerr " + ], + "categories": [ + "parsing", + "no-std" + ], + "keywords": [ + "utf8", + "parse", + "table" + ], + "readme": null, + "repository": "https://github.com/alacritty/vte", + "homepage": null, + "documentation": "https://docs.rs/utf8parse/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "uuid", + "version": "1.16.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A library to generate and parse UUIDs.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.16.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "md-5", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.56", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1_smol", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid-macro-internal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.16.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.79", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.56", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.52", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid-rng-internal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.16.0", + "kind": null, + "rename": "uuid-rng-internal-lib", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_feature = \"atomics\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))", + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "uuid", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.16.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "atomic": [ + "dep:atomic" + ], + "borsh": [ + "dep:borsh", + "dep:borsh-derive" + ], + "bytemuck": [ + "dep:bytemuck" + ], + "default": [ + "std" + ], + "fast-rng": [ + "rng", + "dep:rand" + ], + "js": [ + "dep:wasm-bindgen", + "dep:js-sys" + ], + "macro-diagnostics": [ + "dep:uuid-macro-internal" + ], + "md5": [ + "dep:md-5" + ], + "rng": [ + "dep:getrandom" + ], + "rng-getrandom": [ + "rng", + "dep:getrandom", + "uuid-rng-internal-lib", + "uuid-rng-internal-lib/getrandom" + ], + "rng-rand": [ + "rng", + "dep:rand", + "uuid-rng-internal-lib", + "uuid-rng-internal-lib/rand" + ], + "serde": [ + "dep:serde" + ], + "sha1": [ + "dep:sha1_smol" + ], + "slog": [ + "dep:slog" + ], + "std": [], + "uuid-rng-internal-lib": [ + "dep:uuid-rng-internal-lib" + ], + "v1": [ + "atomic" + ], + "v3": [ + "md5" + ], + "v4": [ + "rng" + ], + "v5": [ + "sha1" + ], + "v6": [ + "atomic" + ], + "v7": [ + "rng" + ], + "v8": [], + "zerocopy": [ + "dep:zerocopy" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.16.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "arbitrary", + "slog", + "borsh", + "v1", + "v3", + "v4", + "v5", + "v6", + "v7", + "v8" + ], + "rustc-args": [ + "--cfg", + "uuid_unstable" + ], + "rustdoc-args": [ + "--cfg", + "uuid_unstable" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "serde", + "v1", + "v3", + "v4", + "v5", + "v6", + "v7", + "v8" + ] + } + }, + "publish": null, + "authors": [ + "Ashley Mannix", + "Dylan DPC", + "Hunar Roop Kahlon" + ], + "categories": [ + "data-structures", + "no-std", + "parser-implementations", + "wasm" + ], + "keywords": [ + "guid", + "unique", + "uuid" + ], + "readme": "README.md", + "repository": "https://github.com/uuid-rs/uuid", + "homepage": "https://github.com/uuid-rs/uuid", + "documentation": "https://docs.rs/uuid", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "vault", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "vault", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/src/vault.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Andrei Marinica " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vault-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "vault", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "vault-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vcpkg", + "version": "0.2.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A library to find native dependencies in a vcpkg tree at build\ntime in order to be used in Cargo build scripts.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "vcpkg", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jim McGrath " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "build-dependencies", + "windows", + "macos", + "linux" + ], + "readme": "README.md", + "repository": "https://github.com/mcgoo/vcpkg-rs", + "homepage": null, + "documentation": "https://docs.rs/vcpkg", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vec-repeat", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "benchmark-common", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" + }, + { + "name": "multiversx-sc", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" + }, + { + "name": "multiversx-sc-scenario", + "source": null, + "req": "^0.57.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "vec_repeat", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/src/vec_repeat.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_go_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/tests/scenario_go_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scenario_rs_test", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/tests/scenario_rs_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Claudiu-Marcel Bruda " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vec-repeat-meta", + "version": "0.0.0", + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "multiversx-sc-meta-lib", + "source": null, + "req": "^0.57.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" + }, + { + "name": "vec-repeat", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat" + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "vec-repeat-meta", + "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "version_check", + "version": "0.9.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Tiny crate to check the version of the installed/running rustc.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "version_check", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sergio Benitez " + ], + "categories": [], + "keywords": [ + "version", + "rustc", + "minimum", + "check" + ], + "readme": "README.md", + "repository": "https://github.com/SergioBenitez/version_check", + "homepage": null, + "documentation": "https://docs.rs/version_check/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "walkdir", + "version": "2.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "license": "Unlicense/MIT", + "license_file": null, + "description": "Recursively walk a directory.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "same-file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "walkdir", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "filesystem" + ], + "keywords": [ + "directory", + "recursive", + "walk", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/walkdir", + "homepage": "https://github.com/BurntSushi/walkdir", + "documentation": "https://docs.rs/walkdir/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "want", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", + "license": "MIT", + "license_file": null, + "description": "Detect when another Future wants a result.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "try-lock", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-executor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0-alpha.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0-alpha.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "want", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "throughput", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/benches/throughput.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean McArthur " + ], + "categories": [], + "keywords": [ + "futures", + "channel", + "async" + ], + "readme": "README.md", + "repository": "https://github.com/seanmonstar/want", + "homepage": null, + "documentation": "https://docs.rs/want", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasm-bindgen", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Easy support for interacting between JS and Rust.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std", + "msrv" + ], + "enable-interning": [ + "std" + ], + "gg-alloc": [], + "msrv": [ + "rustversion" + ], + "rustversion": [ + "dep:rustversion" + ], + "serde": [ + "dep:serde" + ], + "serde-serialize": [ + "serde", + "serde_json", + "std" + ], + "serde_json": [ + "dep:serde_json" + ], + "spans": [], + "std": [], + "strict-macro": [ + "wasm-bindgen-macro/strict-macro" + ], + "xxx_debug_only_print_generated_code": [ + "wasm-bindgen-macro/xxx_debug_only_print_generated_code" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde-serialize" + ] + } + } + }, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [ + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen", + "homepage": "https://rustwasm.github.io/", + "documentation": "https://docs.rs/wasm-bindgen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-backend", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Backend code generation of the wasm-bindgen tool\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_backend", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-backend-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "extra-traits": [ + "syn/extra-traits" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-backend-0.2.100/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen-backend", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-futures", + "version": "0.4.50", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bridging the gap between Rust Futures and JavaScript Promises", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "futures-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "MessageEvent", + "Worker" + ], + "target": "cfg(target_feature = \"atomics\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_futures", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.50/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "futures-core": [ + "dep:futures-core" + ], + "futures-core-03-stream": [ + "futures-core" + ], + "std": [ + "wasm-bindgen/std", + "js-sys/std", + "web-sys/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.50/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen-futures", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-macro", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-macro-support", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "wasm_bindgen_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "strict-macro": [ + "wasm-bindgen-macro-support/strict-macro" + ], + "xxx_debug_only_print_generated_code": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.100/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-macro-support", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "visit", + "visit-mut", + "full" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-backend", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_macro_support", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "extra-traits": [ + "syn/extra-traits" + ], + "strict-macro": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.100/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-shared", + "version": "0.2.100", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_shared", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen-shared", + "edition": "2021", + "links": "wasm_bindgen", + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-encoder", + "version": "0.229.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "A low-level WebAssembly encoder.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "leb128fmt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.229.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "simd", + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmprinter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.229.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_encoder", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "component-model": [ + "wasmparser?/component-model" + ], + "default": [ + "std", + "component-model" + ], + "std": [ + "wasmparser?/std" + ], + "wasmparser": [ + "dep:wasmparser" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Nick Fitzgerald " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", + "documentation": "https://docs.rs/wasm-encoder", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wasmer", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#2.2.1", + "license": "MIT", + "license_file": null, + "description": "High-performance WebAssembly runtime", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde-1" + ], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(not(target_arch = \"wasm32\"), target_os = \"windows\"))", + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler-cranelift", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler-llvm", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler-singlepass", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-derive", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-engine", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-engine-dylib", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-engine-universal", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-vm", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.51", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmer-derive", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmparser", + "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18", + "req": "*", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "js_externals", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/js_externals.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "js_instance", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/js_instance.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "js_module", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/js_module.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sys_export", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_export.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sys_externals", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_externals.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sys_instance", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_instance.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sys_module", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_module.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sys_reference_types", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_reference_types.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "compiler": [ + "sys", + "wasmer-compiler/translator", + "wasmer-engine-universal/compiler", + "wasmer-engine-dylib/compiler" + ], + "core": [ + "hashbrown" + ], + "cranelift": [ + "compiler", + "wasmer-compiler-cranelift" + ], + "default": [ + "sys-default" + ], + "default-compiler": [], + "default-cranelift": [ + "default-compiler", + "cranelift" + ], + "default-dylib": [ + "default-engine", + "dylib" + ], + "default-engine": [], + "default-llvm": [ + "default-compiler", + "llvm" + ], + "default-singlepass": [ + "default-compiler", + "singlepass" + ], + "default-universal": [ + "default-engine", + "universal" + ], + "dylib": [ + "engine", + "wasmer-engine-dylib" + ], + "engine": [ + "sys" + ], + "experimental-reference-types-extern-ref": [ + "sys", + "wasmer-types/experimental-reference-types-extern-ref" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "jit": [ + "universal" + ], + "js": [], + "js-default": [ + "js", + "std", + "wasm-types-polyfill" + ], + "llvm": [ + "compiler", + "wasmer-compiler-llvm" + ], + "native": [ + "dylib" + ], + "singlepass": [ + "compiler", + "wasmer-compiler-singlepass" + ], + "std": [], + "sys": [], + "sys-default": [ + "sys", + "wat", + "default-cranelift", + "default-universal" + ], + "universal": [ + "engine", + "wasmer-engine-universal" + ], + "wasm-types-polyfill": [ + "js", + "wasmparser" + ], + "wasmer-compiler-cranelift": [ + "dep:wasmer-compiler-cranelift" + ], + "wasmer-compiler-llvm": [ + "dep:wasmer-compiler-llvm" + ], + "wasmer-compiler-singlepass": [ + "dep:wasmer-compiler-singlepass" + ], + "wasmer-engine-dylib": [ + "dep:wasmer-engine-dylib" + ], + "wasmer-engine-universal": [ + "dep:wasmer-engine-universal" + ], + "wasmparser": [ + "dep:wasmparser" + ], + "wat": [ + "dep:wat" + ] + }, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "compiler", + "core", + "cranelift", + "default-compiler", + "default-dylib", + "default-engine", + "dylib", + "engine", + "jit", + "native", + "singlepass", + "sys", + "sys-default", + "universal" + ] + } + }, + "wasm-pack": { + "profile": { + "release": { + "wasm-opt": false + } + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly", + "runtime", + "vm" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", + "license": "MIT", + "license_file": null, + "description": "High-performance WebAssembly runtime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "derive_more", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "from", + "debug" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "indexmap", + "enable-indexmap" + ], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shared-buffer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmi_c_api_impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.40.0", + "kind": null, + "rename": "wasmi_c_api", + "optional": true, + "uses_default_features": true, + "features": [ + "prefix-symbols" + ], + "target": null, + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.216.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cmake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.50", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.42", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ureq", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.10.1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "which", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.0.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "xz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2.0", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(not(target_arch = \"wasm32\"), target_os = \"windows\"))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.51", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "rusty_jsc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.74", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler-cranelift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler-llvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-compiler-singlepass", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-vm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.224.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "validate", + "features", + "simd" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "macro-wasmer-universal-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.70.1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_env = \"musl\"))", + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "serde-wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmer-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.224.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "validate", + "features", + "simd" + ], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "macro-wasmer-universal-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.70.1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "static", + "logging", + "prettyplease" + ], + "target": "cfg(target_env = \"musl\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "externals", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/externals.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "function_env", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/function_env.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "import_function", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/import_function.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "instance", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/instance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "memory", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/memory.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "module", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/module.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reference_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/reference_types.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rt", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/rt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "typed_functions", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/typed_functions.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "artifact-size": [ + "dep:loupe", + "wasmer-vm/artifact-size", + "wasmer-compiler/artifact-size" + ], + "compiler": [ + "sys", + "dep:wasmer-compiler", + "wasmer-compiler/translator", + "wasmer-compiler/compiler" + ], + "core": [ + "hashbrown" + ], + "cranelift": [ + "compiler", + "wasmer-compiler-cranelift" + ], + "default": [ + "sys-default" + ], + "enable-serde": [ + "wasmer-vm/enable-serde", + "wasmer-compiler/enable-serde", + "wasmer-types/enable-serde" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "js": [ + "wasm-bindgen", + "js-sys" + ], + "js-default": [ + "js", + "std", + "wasm-types-polyfill" + ], + "js-serializable-module": [], + "js-sys": [ + "dep:js-sys" + ], + "jsc": [ + "rusty_jsc", + "wasm-types-polyfill", + "wasmparser" + ], + "jsc-default": [ + "jsc" + ], + "llvm": [ + "compiler", + "wasmer-compiler-llvm" + ], + "rusty_jsc": [ + "dep:rusty_jsc" + ], + "singlepass": [ + "compiler", + "wasmer-compiler-singlepass" + ], + "static-artifact-create": [ + "wasmer-compiler/static-artifact-create" + ], + "static-artifact-load": [ + "wasmer-compiler/static-artifact-load" + ], + "std": [], + "sys": [ + "std", + "dep:wasmer-vm", + "dep:wasmer-compiler" + ], + "sys-default": [ + "sys", + "wat", + "cranelift" + ], + "v8": [ + "wasm-c-api", + "std", + "dep:which", + "dep:xz" + ], + "v8-default": [ + "v8", + "wat" + ], + "wamr": [ + "wasm-c-api", + "std", + "dep:which", + "dep:zip" + ], + "wamr-default": [ + "wamr", + "wat" + ], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ], + "wasm-c-api": [ + "wasm-types-polyfill" + ], + "wasm-types-polyfill": [ + "wasmparser" + ], + "wasmer-artifact-create": [ + "wasmer-compiler/wasmer-artifact-create" + ], + "wasmer-artifact-load": [ + "wasmer-compiler/wasmer-artifact-load" + ], + "wasmer-compiler-cranelift": [ + "dep:wasmer-compiler-cranelift" + ], + "wasmer-compiler-llvm": [ + "dep:wasmer-compiler-llvm" + ], + "wasmer-compiler-singlepass": [ + "dep:wasmer-compiler-singlepass" + ], + "wasmi": [ + "wasm-c-api", + "std", + "dep:wasmi_c_api" + ], + "wasmi-default": [ + "wasmi", + "wat" + ], + "wasmparser": [ + "dep:wasmparser" + ], + "wat": [ + "dep:wat", + "wasmparser" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "compiler", + "core", + "cranelift", + "singlepass", + "static-artifact-create", + "static-artifact-load", + "sys", + "sys-default", + "wasmer-artifact-create", + "wasmer-artifact-load" + ], + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "wasm-pack": { + "profile": { + "release": { + "wasm-opt": false + } + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly", + "runtime", + "vm" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-compiler", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "license": "MIT OR Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "Base compiler abstraction for Wasmer WebAssembly runtime", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-vm", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18", + "req": "*", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_compiler", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/compiler/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "core": [ + "hashbrown", + "wasmer-types/core" + ], + "default": [ + "std", + "enable-serde", + "enable-rkyv" + ], + "enable-rkyv": [ + "rkyv", + "wasmer-vm/enable-rkyv", + "wasmer-types/enable-rkyv" + ], + "enable-serde": [ + "serde", + "serde_bytes", + "wasmer-types/enable-serde" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "rkyv": [ + "dep:rkyv" + ], + "serde": [ + "dep:serde" + ], + "serde_bytes": [ + "dep:serde_bytes" + ], + "std": [ + "wasmer-types/std" + ], + "translator": [ + "wasmparser" + ], + "wasmparser": [ + "dep:wasmparser" + ] + }, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/compiler/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm", + "no-std" + ], + "keywords": [ + "wasm", + "webassembly", + "compiler" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer-compiler", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "license": "MIT", + "license_file": null, + "description": "Base compiler abstraction for Wasmer WebAssembly runtime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "leb128", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "indexmap", + "enable-indexmap" + ], + "target": null, + "registry": null + }, + { + "name": "memmap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "object", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.32.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "write" + ], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "indexmap-2", + "bytes-1" + ], + "target": null, + "registry": null + }, + { + "name": "self_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shared-buffer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.224.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "validate", + "features", + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "xxhash-rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "xxh64" + ], + "target": null, + "registry": null + }, + { + "name": "macho-unwind-info", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_os = \"macos\", target_arch = \"aarch64\"))", + "registry": null + }, + { + "name": "region", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasmer-vm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Diagnostics_Debug" + ], + "target": "cfg(target_os = \"windows\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_compiler", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "artifact-size": [ + "dep:loupe" + ], + "compiler": [ + "translator" + ], + "core": [ + "hashbrown", + "wasmer-types/core" + ], + "default": [ + "std" + ], + "enable-serde": [ + "serde", + "serde_bytes", + "wasmer-types/enable-serde" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "serde": [ + "dep:serde" + ], + "serde_bytes": [ + "dep:serde_bytes" + ], + "static-artifact-create": [ + "translator", + "compiler" + ], + "static-artifact-load": [], + "std": [ + "wasmer-types/std" + ], + "translator": [ + "wasmparser" + ], + "wasmer-artifact-create": [], + "wasmer-artifact-load": [], + "wasmparser": [ + "dep:wasmparser" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "static-artifact-create", + "static-artifact-load", + "wasmer-artifact-create", + "wasmer-artifact-load" + ], + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm", + "no-std" + ], + "keywords": [ + "wasm", + "webassembly", + "compiler" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-compiler-singlepass", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler-singlepass@2.2.1", + "license": "MIT", + "license_file": null, + "description": "Singlepass compiler for Wasmer WebAssembly runtime", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dynasm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dynasmrt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "translator" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-vm", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_compiler_singlepass", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/compiler-singlepass/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "avx": [], + "core": [ + "hashbrown", + "wasmer-types/core" + ], + "default": [ + "std", + "rayon", + "avx" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "rayon": [ + "dep:rayon" + ], + "sse": [], + "std": [ + "wasmer-compiler/std", + "wasmer-types/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/compiler-singlepass/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly", + "compiler", + "singlepass" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": "https://docs.rs/wasmer-compiler-singlepass/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer-compiler-singlepass", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", + "license": null, + "license_file": "LICENSE", + "description": "Singlepass compiler for Wasmer WebAssembly runtime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dynasm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dynasmrt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gimli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.28.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "translator", + "compiler" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_compiler_singlepass", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-singlepass-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "avx": [], + "core": [ + "hashbrown", + "wasmer-types/core" + ], + "default": [ + "std", + "rayon", + "unwind", + "avx" + ], + "enable-serde": [], + "gimli": [ + "dep:gimli" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "rayon": [ + "dep:rayon" + ], + "sse": [], + "std": [ + "wasmer-compiler/std", + "wasmer-types/std" + ], + "unwind": [ + "gimli" + ], + "wasm": [ + "std", + "unwind", + "avx" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-singlepass-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly", + "compiler", + "singlepass" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": "https://docs.rs/wasmer-compiler-singlepass/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-derive", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-derive@2.2.1", + "license": "MIT", + "license_file": null, + "description": "Wasmer derive macros", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "proc-macro-error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.72", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "compiletest_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "wasmer_derive", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/derive/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/derive/tests/basic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/derive/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/derive/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer-derive", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", + "license": "MIT", + "license_file": null, + "description": "Wasmer derive macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro-error2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.72", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "compiletest_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "wasmer_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-engine", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", + "license": "MIT OR Apache-2.0 WITH LLVM-exception ", + "license_file": null, + "description": "Wasmer Engine abstraction", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memmap2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-demangle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive", + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-vm", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_engine", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly", + "engine" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer-engine-dylib", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-dylib@2.2.1", + "license": "MIT", + "license_file": null, + "description": "Wasmer Dylib Engine", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "leb128", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libloading", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "object", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.28.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "write" + ], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive", + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "log" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-engine", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-object", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-vm", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "enable-rkyv" + ], + "target": null, + "registry": null + }, + { + "name": "which", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_engine_dylib", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine-dylib/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "compiler": [ + "wasmer-compiler/translator" + ] + }, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine-dylib/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly", + "engine", + "dylib" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer-engine-universal", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-universal@2.2.1", + "license": "MIT OR Apache-2.0 WITH LLVM-exception ", + "license_file": null, + "description": "Wasmer Universal Engine", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "leb128", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "region", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "translator", + "enable-rkyv" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-engine", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "enable-rkyv" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-vm", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "enable-rkyv" + ], + "target": null, + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "winnt", + "impl-default" + ], + "target": "cfg(target_os = \"windows\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_engine_universal", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine-universal/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "compiler": [ + "wasmer-compiler/translator" + ] + }, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine-universal/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly", + "engine", + "universal" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer-object", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-object@2.2.1", + "license": "MIT", + "license_file": null, + "description": "Wasmer Native Object generator", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "object", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.28.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "write" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-compiler", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "translator" + ], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_object", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/object/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/object/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer-types", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "license": "MIT OR Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "Wasmer Common Types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde-1" + ], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "enable-indexmap" + ], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_types", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/types/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "core": [], + "default": [ + "std", + "enable-serde", + "enable-rkyv" + ], + "enable-rkyv": [ + "rkyv" + ], + "enable-serde": [ + "serde", + "serde/std" + ], + "experimental-reference-types-extern-ref": [], + "rkyv": [ + "dep:rkyv" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/types/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm", + "no-std", + "data-structures" + ], + "keywords": [ + "wasm", + "webassembly", + "types" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer-types", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "license": "MIT OR Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "Wasmer Common Types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytecheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "indexmap-2", + "bytes-1" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "target-lexicon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.224.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "validate", + "features", + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "xxhash-rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "xxh64" + ], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_types", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-types-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "artifact-size": [ + "dep:loupe" + ], + "core": [], + "default": [ + "std" + ], + "detect-wasm-features": [ + "dep:wasmparser" + ], + "enable-serde": [ + "serde", + "serde/std", + "serde_bytes", + "indexmap/serde" + ], + "serde": [ + "dep:serde" + ], + "serde_bytes": [ + "dep:serde_bytes" + ], + "std": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-types-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm", + "no-std", + "data-structures" + ], + "keywords": [ + "wasm", + "webassembly", + "types" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmer-vm", + "version": "2.2.1", + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "license": "MIT OR Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "Runtime library support for Wasmer", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde-1" + ], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "enable-indexmap" + ], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "region", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive", + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", + "req": "=2.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "winbase", + "memoryapi", + "errhandlingapi" + ], + "target": "cfg(target_os = \"windows\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_vm", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/vm/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/vm/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [], + "enable-rkyv": [ + "rkyv" + ], + "rkyv": [ + "dep:rkyv" + ] + }, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/vm/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmer-vm", + "version": "6.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "license": "MIT OR Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "Runtime library support for Wasmer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "corosensei", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-queue", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dashmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loupe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "more-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "region", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scopeguard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive", + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmer-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=6.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libunwind", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_family = \"unix\", all(target_family = \"windows\", target_env = \"gnu\")))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Diagnostics_Debug", + "Win32_System_Threading", + "Win32_System_Kernel", + "Win32_System_Memory" + ], + "target": "cfg(target_os = \"windows\")", + "registry": null + }, + { + "name": "mach2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmer_vm", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-vm-6.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "artifact-size": [ + "dep:loupe", + "wasmer-types/artifact-size" + ], + "default": [], + "enable-serde": [ + "serde", + "indexmap/serde", + "wasmer-types/enable-serde" + ], + "serde": [ + "dep:serde" + ], + "tracing": [ + "dep:tracing" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-vm-6.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Wasmer Engineering Team " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "wasm", + "webassembly" + ], + "readme": "README.md", + "repository": "https://github.com/wasmerio/wasmer", + "homepage": "https://wasmer.io/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "wasmparser", + "version": "0.78.2", + "id": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#wasmparser@0.78.2", + "license": "Apache-2.0 WITH LLVM-exception", + "license_file": null, + "description": "A simple event-driven library for parsing WebAssembly binary files.\n", + "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#90d489e90781320bdb6cffcb0a796138242c5a18", + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getopts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser-dump", + "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#90d489e90781320bdb6cffcb0a796138242c5a18", + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wast", + "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#90d489e90781320bdb6cffcb0a796138242c5a18", + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wat", + "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#90d489e90781320bdb6cffcb0a796138242c5a18", + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmparser", + "src_path": "/home/bibi/.cargo/git/checkouts/wasm-tools-65202373170ae4e8/90d489e/crates/wasmparser/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/git/checkouts/wasm-tools-65202373170ae4e8/90d489e/crates/wasmparser/examples/simple.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/bibi/.cargo/git/checkouts/wasm-tools-65202373170ae4e8/90d489e/crates/wasmparser/benches/benchmark.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "deterministic": [] + }, + "manifest_path": "/home/bibi/.cargo/git/checkouts/wasm-tools-65202373170ae4e8/90d489e/crates/wasmparser/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Yury Delendik " + ], + "categories": [], + "keywords": [ + "parser", + "WebAssembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasmparser", + "version": "0.224.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple event-driven library for parsing WebAssembly binary files.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmparser", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big-module", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/tests/big-module.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/benches/benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "component-model": [ + "dep:semver" + ], + "default": [ + "std", + "validate", + "serde", + "features", + "component-model", + "hash-collections", + "simd" + ], + "features": [], + "hash-collections": [ + "dep:hashbrown", + "dep:indexmap" + ], + "prefer-btree-collections": [], + "serde": [ + "dep:serde", + "indexmap?/serde", + "hashbrown?/serde" + ], + "simd": [], + "std": [ + "indexmap?/std" + ], + "validate": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Yury Delendik " + ], + "categories": [], + "keywords": [ + "parser", + "WebAssembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wasmparser", + "version": "0.227.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple event-driven library for parsing WebAssembly binary files.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmparser", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big-module", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/tests/big-module.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/benches/benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "component-model": [ + "dep:semver" + ], + "default": [ + "std", + "validate", + "serde", + "features", + "component-model", + "hash-collections", + "simd" + ], + "features": [], + "hash-collections": [ + "dep:hashbrown", + "dep:indexmap" + ], + "prefer-btree-collections": [], + "serde": [ + "dep:serde", + "indexmap?/serde", + "hashbrown?/serde" + ], + "simd": [], + "std": [ + "indexmap?/std" + ], + "validate": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Yury Delendik " + ], + "categories": [], + "keywords": [ + "parser", + "WebAssembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wasmparser", + "version": "0.229.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple event-driven library for parsing WebAssembly binary files.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "default-hasher" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmparser", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big-module", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/tests/big-module.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/benches/benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "component-model": [ + "dep:semver" + ], + "default": [ + "std", + "validate", + "serde", + "features", + "component-model", + "hash-collections", + "simd" + ], + "features": [], + "hash-collections": [ + "dep:hashbrown", + "dep:indexmap" + ], + "prefer-btree-collections": [], + "serde": [ + "dep:serde", + "indexmap?/serde", + "hashbrown?/serde" + ], + "simd": [], + "std": [ + "indexmap?/std" + ], + "validate": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Yury Delendik " + ], + "categories": [], + "keywords": [ + "parser", + "WebAssembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wasmprinter", + "version": "0.227.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Rust converter from the WebAssembly binary format to the text format.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "termcolor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasmparser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.227.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "simd", + "std", + "simd" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasmprinter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "all", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/tests/all.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "component-model": [ + "wasmparser/component-model" + ], + "default": [ + "component-model" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter", + "documentation": "https://docs.rs/wasmprinter", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wast", + "version": "229.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Customizable Rust parsers for the WebAssembly Text formats WAT and WAST\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gimli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.31.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "leb128fmt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-encoder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.229.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.58", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libtest-mimic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wast", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "annotations", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/annotations.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "comments", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/comments.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse-fail", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/parse-fail.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "recursive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/recursive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "component-model": [ + "wasm-module", + "wasm-encoder/component-model" + ], + "default": [ + "wasm-module", + "component-model" + ], + "dwarf": [ + "dep:gimli" + ], + "wasm-module": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", + "documentation": "https://docs.rs/wast", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "wat", + "version": "1.229.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Rust parser for the WebAssembly Text format, WAT\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "wast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^229.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "wasm-module" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wat", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wat-1.229.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "component-model": [ + "wast/component-model" + ], + "default": [ + "component-model" + ], + "dwarf": [ + "wast/dwarf" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wat-1.229.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", + "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", + "documentation": "https://docs.rs/wat", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.76.0" + }, + { + "name": "web-sys", + "version": "0.3.77", + "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bindings for all Web APIs, a procedurally generated crate from WebIDL\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.77", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "web_sys", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.77/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": false + } + ], + "features": { + "AbortController": [], + "AbortSignal": [ + "EventTarget" + ], + "AddEventListenerOptions": [], + "AesCbcParams": [], + "AesCtrParams": [], + "AesDerivedKeyParams": [], + "AesGcmParams": [], + "AesKeyAlgorithm": [], + "AesKeyGenParams": [], + "Algorithm": [], + "AlignSetting": [], + "AllowedBluetoothDevice": [], + "AllowedUsbDevice": [], + "AlphaOption": [], + "AnalyserNode": [ + "AudioNode", + "EventTarget" + ], + "AnalyserOptions": [], + "AngleInstancedArrays": [], + "Animation": [ + "EventTarget" + ], + "AnimationEffect": [], + "AnimationEvent": [ + "Event" + ], + "AnimationEventInit": [], + "AnimationPlayState": [], + "AnimationPlaybackEvent": [ + "Event" + ], + "AnimationPlaybackEventInit": [], + "AnimationPropertyDetails": [], + "AnimationPropertyValueDetails": [], + "AnimationTimeline": [], + "AssignedNodesOptions": [], + "AttestationConveyancePreference": [], + "Attr": [ + "EventTarget", + "Node" + ], + "AttributeNameValue": [], + "AudioBuffer": [], + "AudioBufferOptions": [], + "AudioBufferSourceNode": [ + "AudioNode", + "AudioScheduledSourceNode", + "EventTarget" + ], + "AudioBufferSourceOptions": [], + "AudioConfiguration": [], + "AudioContext": [ + "BaseAudioContext", + "EventTarget" + ], + "AudioContextLatencyCategory": [], + "AudioContextOptions": [], + "AudioContextState": [], + "AudioData": [], + "AudioDataCopyToOptions": [], + "AudioDataInit": [], + "AudioDecoder": [], + "AudioDecoderConfig": [], + "AudioDecoderInit": [], + "AudioDecoderSupport": [], + "AudioDestinationNode": [ + "AudioNode", + "EventTarget" + ], + "AudioEncoder": [], + "AudioEncoderConfig": [], + "AudioEncoderInit": [], + "AudioEncoderSupport": [], + "AudioListener": [], + "AudioNode": [ + "EventTarget" + ], + "AudioNodeOptions": [], + "AudioParam": [], + "AudioParamMap": [], + "AudioProcessingEvent": [ + "Event" + ], + "AudioSampleFormat": [], + "AudioScheduledSourceNode": [ + "AudioNode", + "EventTarget" + ], + "AudioSinkInfo": [], + "AudioSinkOptions": [], + "AudioSinkType": [], + "AudioStreamTrack": [ + "EventTarget", + "MediaStreamTrack" + ], + "AudioTrack": [], + "AudioTrackList": [ + "EventTarget" + ], + "AudioWorklet": [ + "Worklet" + ], + "AudioWorkletGlobalScope": [ + "WorkletGlobalScope" + ], + "AudioWorkletNode": [ + "AudioNode", + "EventTarget" + ], + "AudioWorkletNodeOptions": [], + "AudioWorkletProcessor": [], + "AuthenticationExtensionsClientInputs": [], + "AuthenticationExtensionsClientInputsJson": [], + "AuthenticationExtensionsClientOutputs": [], + "AuthenticationExtensionsClientOutputsJson": [], + "AuthenticationExtensionsDevicePublicKeyInputs": [], + "AuthenticationExtensionsDevicePublicKeyOutputs": [], + "AuthenticationExtensionsLargeBlobInputs": [], + "AuthenticationExtensionsLargeBlobOutputs": [], + "AuthenticationExtensionsPrfInputs": [], + "AuthenticationExtensionsPrfOutputs": [], + "AuthenticationExtensionsPrfValues": [], + "AuthenticationResponseJson": [], + "AuthenticatorAssertionResponse": [ + "AuthenticatorResponse" + ], + "AuthenticatorAssertionResponseJson": [], + "AuthenticatorAttachment": [], + "AuthenticatorAttestationResponse": [ + "AuthenticatorResponse" + ], + "AuthenticatorAttestationResponseJson": [], + "AuthenticatorResponse": [], + "AuthenticatorSelectionCriteria": [], + "AuthenticatorTransport": [], + "AutoKeyword": [], + "AutocompleteInfo": [], + "BarProp": [], + "BaseAudioContext": [ + "EventTarget" + ], + "BaseComputedKeyframe": [], + "BaseKeyframe": [], + "BasePropertyIndexedKeyframe": [], + "BasicCardRequest": [], + "BasicCardResponse": [], + "BasicCardType": [], + "BatteryManager": [ + "EventTarget" + ], + "BeforeUnloadEvent": [ + "Event" + ], + "BinaryType": [], + "BiquadFilterNode": [ + "AudioNode", + "EventTarget" + ], + "BiquadFilterOptions": [], + "BiquadFilterType": [], + "Blob": [], + "BlobEvent": [ + "Event" + ], + "BlobEventInit": [], + "BlobPropertyBag": [], + "BlockParsingOptions": [], + "Bluetooth": [ + "EventTarget" + ], + "BluetoothAdvertisingEvent": [ + "Event" + ], + "BluetoothAdvertisingEventInit": [], + "BluetoothCharacteristicProperties": [], + "BluetoothDataFilterInit": [], + "BluetoothDevice": [ + "EventTarget" + ], + "BluetoothLeScanFilterInit": [], + "BluetoothManufacturerDataMap": [], + "BluetoothPermissionDescriptor": [], + "BluetoothPermissionResult": [ + "EventTarget", + "PermissionStatus" + ], + "BluetoothPermissionStorage": [], + "BluetoothRemoteGattCharacteristic": [ + "EventTarget" + ], + "BluetoothRemoteGattDescriptor": [], + "BluetoothRemoteGattServer": [], + "BluetoothRemoteGattService": [ + "EventTarget" + ], + "BluetoothServiceDataMap": [], + "BluetoothUuid": [], + "BoxQuadOptions": [], + "BroadcastChannel": [ + "EventTarget" + ], + "BrowserElementDownloadOptions": [], + "BrowserElementExecuteScriptOptions": [], + "BrowserFeedWriter": [], + "BrowserFindCaseSensitivity": [], + "BrowserFindDirection": [], + "ByteLengthQueuingStrategy": [], + "Cache": [], + "CacheBatchOperation": [], + "CacheQueryOptions": [], + "CacheStorage": [], + "CacheStorageNamespace": [], + "CanvasCaptureMediaStream": [ + "EventTarget", + "MediaStream" + ], + "CanvasCaptureMediaStreamTrack": [ + "EventTarget", + "MediaStreamTrack" + ], + "CanvasGradient": [], + "CanvasPattern": [], + "CanvasRenderingContext2d": [], + "CanvasWindingRule": [], + "CaretChangedReason": [], + "CaretPosition": [], + "CaretStateChangedEventInit": [], + "CdataSection": [ + "CharacterData", + "EventTarget", + "Node", + "Text" + ], + "ChannelCountMode": [], + "ChannelInterpretation": [], + "ChannelMergerNode": [ + "AudioNode", + "EventTarget" + ], + "ChannelMergerOptions": [], + "ChannelSplitterNode": [ + "AudioNode", + "EventTarget" + ], + "ChannelSplitterOptions": [], + "CharacterData": [ + "EventTarget", + "Node" + ], + "CheckerboardReason": [], + "CheckerboardReport": [], + "CheckerboardReportService": [], + "ChromeFilePropertyBag": [], + "ChromeWorker": [ + "EventTarget", + "Worker" + ], + "Client": [], + "ClientQueryOptions": [], + "ClientRectsAndTexts": [], + "ClientType": [], + "Clients": [], + "Clipboard": [ + "EventTarget" + ], + "ClipboardEvent": [ + "Event" + ], + "ClipboardEventInit": [], + "ClipboardItem": [], + "ClipboardItemOptions": [], + "ClipboardPermissionDescriptor": [], + "ClipboardUnsanitizedFormats": [], + "CloseEvent": [ + "Event" + ], + "CloseEventInit": [], + "CodecState": [], + "CollectedClientData": [], + "ColorSpaceConversion": [], + "Comment": [ + "CharacterData", + "EventTarget", + "Node" + ], + "CompositeOperation": [], + "CompositionEvent": [ + "Event", + "UiEvent" + ], + "CompositionEventInit": [], + "CompressionFormat": [], + "CompressionStream": [], + "ComputedEffectTiming": [], + "ConnStatusDict": [], + "ConnectionType": [], + "ConsoleCounter": [], + "ConsoleCounterError": [], + "ConsoleEvent": [], + "ConsoleInstance": [], + "ConsoleInstanceOptions": [], + "ConsoleLevel": [], + "ConsoleLogLevel": [], + "ConsoleProfileEvent": [], + "ConsoleStackEntry": [], + "ConsoleTimerError": [], + "ConsoleTimerLogOrEnd": [], + "ConsoleTimerStart": [], + "ConstantSourceNode": [ + "AudioNode", + "AudioScheduledSourceNode", + "EventTarget" + ], + "ConstantSourceOptions": [], + "ConstrainBooleanParameters": [], + "ConstrainDomStringParameters": [], + "ConstrainDoubleRange": [], + "ConstrainLongRange": [], + "ContextAttributes2d": [], + "ConvertCoordinateOptions": [], + "ConvolverNode": [ + "AudioNode", + "EventTarget" + ], + "ConvolverOptions": [], + "Coordinates": [], + "CountQueuingStrategy": [], + "Credential": [], + "CredentialCreationOptions": [], + "CredentialPropertiesOutput": [], + "CredentialRequestOptions": [], + "CredentialsContainer": [], + "Crypto": [], + "CryptoKey": [], + "CryptoKeyPair": [], + "CssAnimation": [ + "Animation", + "EventTarget" + ], + "CssBoxType": [], + "CssConditionRule": [ + "CssGroupingRule", + "CssRule" + ], + "CssCounterStyleRule": [ + "CssRule" + ], + "CssFontFaceRule": [ + "CssRule" + ], + "CssFontFeatureValuesRule": [ + "CssRule" + ], + "CssGroupingRule": [ + "CssRule" + ], + "CssImportRule": [ + "CssRule" + ], + "CssKeyframeRule": [ + "CssRule" + ], + "CssKeyframesRule": [ + "CssRule" + ], + "CssMediaRule": [ + "CssConditionRule", + "CssGroupingRule", + "CssRule" + ], + "CssNamespaceRule": [ + "CssRule" + ], + "CssPageRule": [ + "CssRule" + ], + "CssPseudoElement": [], + "CssRule": [], + "CssRuleList": [], + "CssStyleDeclaration": [], + "CssStyleRule": [ + "CssRule" + ], + "CssStyleSheet": [ + "StyleSheet" + ], + "CssStyleSheetParsingMode": [], + "CssSupportsRule": [ + "CssConditionRule", + "CssGroupingRule", + "CssRule" + ], + "CssTransition": [ + "Animation", + "EventTarget" + ], + "CustomElementRegistry": [], + "CustomEvent": [ + "Event" + ], + "CustomEventInit": [], + "DataTransfer": [], + "DataTransferItem": [], + "DataTransferItemList": [], + "DateTimeValue": [], + "DecoderDoctorNotification": [], + "DecoderDoctorNotificationType": [], + "DecompressionStream": [], + "DedicatedWorkerGlobalScope": [ + "EventTarget", + "WorkerGlobalScope" + ], + "DelayNode": [ + "AudioNode", + "EventTarget" + ], + "DelayOptions": [], + "DeviceAcceleration": [], + "DeviceAccelerationInit": [], + "DeviceLightEvent": [ + "Event" + ], + "DeviceLightEventInit": [], + "DeviceMotionEvent": [ + "Event" + ], + "DeviceMotionEventInit": [], + "DeviceOrientationEvent": [ + "Event" + ], + "DeviceOrientationEventInit": [], + "DeviceProximityEvent": [ + "Event" + ], + "DeviceProximityEventInit": [], + "DeviceRotationRate": [], + "DeviceRotationRateInit": [], + "DhKeyDeriveParams": [], + "DirectionSetting": [], + "Directory": [], + "DirectoryPickerOptions": [], + "DisplayMediaStreamConstraints": [], + "DisplayNameOptions": [], + "DisplayNameResult": [], + "DistanceModelType": [], + "DnsCacheDict": [], + "DnsCacheEntry": [], + "DnsLookupDict": [], + "Document": [ + "EventTarget", + "Node" + ], + "DocumentFragment": [ + "EventTarget", + "Node" + ], + "DocumentTimeline": [ + "AnimationTimeline" + ], + "DocumentTimelineOptions": [], + "DocumentType": [ + "EventTarget", + "Node" + ], + "DomError": [], + "DomException": [], + "DomImplementation": [], + "DomMatrix": [ + "DomMatrixReadOnly" + ], + "DomMatrix2dInit": [], + "DomMatrixInit": [], + "DomMatrixReadOnly": [], + "DomParser": [], + "DomPoint": [ + "DomPointReadOnly" + ], + "DomPointInit": [], + "DomPointReadOnly": [], + "DomQuad": [], + "DomQuadInit": [], + "DomQuadJson": [], + "DomRect": [ + "DomRectReadOnly" + ], + "DomRectInit": [], + "DomRectList": [], + "DomRectReadOnly": [], + "DomRequest": [ + "EventTarget" + ], + "DomRequestReadyState": [], + "DomStringList": [], + "DomStringMap": [], + "DomTokenList": [], + "DomWindowResizeEventDetail": [], + "DoubleRange": [], + "DragEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "DragEventInit": [], + "DynamicsCompressorNode": [ + "AudioNode", + "EventTarget" + ], + "DynamicsCompressorOptions": [], + "EcKeyAlgorithm": [], + "EcKeyGenParams": [], + "EcKeyImportParams": [], + "EcdhKeyDeriveParams": [], + "EcdsaParams": [], + "EffectTiming": [], + "Element": [ + "EventTarget", + "Node" + ], + "ElementCreationOptions": [], + "ElementDefinitionOptions": [], + "EncodedAudioChunk": [], + "EncodedAudioChunkInit": [], + "EncodedAudioChunkMetadata": [], + "EncodedAudioChunkType": [], + "EncodedVideoChunk": [], + "EncodedVideoChunkInit": [], + "EncodedVideoChunkMetadata": [], + "EncodedVideoChunkType": [], + "EndingTypes": [], + "ErrorCallback": [], + "ErrorEvent": [ + "Event" + ], + "ErrorEventInit": [], + "Event": [], + "EventInit": [], + "EventListener": [], + "EventListenerOptions": [], + "EventModifierInit": [], + "EventSource": [ + "EventTarget" + ], + "EventSourceInit": [], + "EventTarget": [], + "Exception": [], + "ExtBlendMinmax": [], + "ExtColorBufferFloat": [], + "ExtColorBufferHalfFloat": [], + "ExtDisjointTimerQuery": [], + "ExtFragDepth": [], + "ExtSRgb": [], + "ExtShaderTextureLod": [], + "ExtTextureFilterAnisotropic": [], + "ExtTextureNorm16": [], + "ExtendableEvent": [ + "Event" + ], + "ExtendableEventInit": [], + "ExtendableMessageEvent": [ + "Event", + "ExtendableEvent" + ], + "ExtendableMessageEventInit": [], + "External": [], + "FakePluginMimeEntry": [], + "FakePluginTagInit": [], + "FetchEvent": [ + "Event", + "ExtendableEvent" + ], + "FetchEventInit": [], + "FetchObserver": [ + "EventTarget" + ], + "FetchReadableStreamReadDataArray": [], + "FetchReadableStreamReadDataDone": [], + "FetchState": [], + "File": [ + "Blob" + ], + "FileCallback": [], + "FileList": [], + "FilePickerAcceptType": [], + "FilePickerOptions": [], + "FilePropertyBag": [], + "FileReader": [ + "EventTarget" + ], + "FileReaderSync": [], + "FileSystem": [], + "FileSystemCreateWritableOptions": [], + "FileSystemDirectoryEntry": [ + "FileSystemEntry" + ], + "FileSystemDirectoryHandle": [ + "FileSystemHandle" + ], + "FileSystemDirectoryReader": [], + "FileSystemEntriesCallback": [], + "FileSystemEntry": [], + "FileSystemEntryCallback": [], + "FileSystemFileEntry": [ + "FileSystemEntry" + ], + "FileSystemFileHandle": [ + "FileSystemHandle" + ], + "FileSystemFlags": [], + "FileSystemGetDirectoryOptions": [], + "FileSystemGetFileOptions": [], + "FileSystemHandle": [], + "FileSystemHandleKind": [], + "FileSystemHandlePermissionDescriptor": [], + "FileSystemPermissionDescriptor": [], + "FileSystemPermissionMode": [], + "FileSystemReadWriteOptions": [], + "FileSystemRemoveOptions": [], + "FileSystemSyncAccessHandle": [], + "FileSystemWritableFileStream": [ + "WritableStream" + ], + "FillMode": [], + "FlashClassification": [], + "FlowControlType": [], + "FocusEvent": [ + "Event", + "UiEvent" + ], + "FocusEventInit": [], + "FocusOptions": [], + "FontData": [], + "FontFace": [], + "FontFaceDescriptors": [], + "FontFaceLoadStatus": [], + "FontFaceSet": [ + "EventTarget" + ], + "FontFaceSetIterator": [], + "FontFaceSetIteratorResult": [], + "FontFaceSetLoadEvent": [ + "Event" + ], + "FontFaceSetLoadEventInit": [], + "FontFaceSetLoadStatus": [], + "FormData": [], + "FrameType": [], + "FuzzingFunctions": [], + "GainNode": [ + "AudioNode", + "EventTarget" + ], + "GainOptions": [], + "Gamepad": [], + "GamepadButton": [], + "GamepadEffectParameters": [], + "GamepadEvent": [ + "Event" + ], + "GamepadEventInit": [], + "GamepadHand": [], + "GamepadHapticActuator": [], + "GamepadHapticActuatorType": [], + "GamepadHapticEffectType": [], + "GamepadHapticsResult": [], + "GamepadMappingType": [], + "GamepadPose": [], + "GamepadTouch": [], + "Geolocation": [], + "GetAnimationsOptions": [], + "GetRootNodeOptions": [], + "GetUserMediaRequest": [], + "Gpu": [], + "GpuAdapter": [], + "GpuAdapterInfo": [], + "GpuAddressMode": [], + "GpuAutoLayoutMode": [], + "GpuBindGroup": [], + "GpuBindGroupDescriptor": [], + "GpuBindGroupEntry": [], + "GpuBindGroupLayout": [], + "GpuBindGroupLayoutDescriptor": [], + "GpuBindGroupLayoutEntry": [], + "GpuBlendComponent": [], + "GpuBlendFactor": [], + "GpuBlendOperation": [], + "GpuBlendState": [], + "GpuBuffer": [], + "GpuBufferBinding": [], + "GpuBufferBindingLayout": [], + "GpuBufferBindingType": [], + "GpuBufferDescriptor": [], + "GpuBufferMapState": [], + "GpuCanvasAlphaMode": [], + "GpuCanvasConfiguration": [], + "GpuCanvasContext": [], + "GpuCanvasToneMapping": [], + "GpuCanvasToneMappingMode": [], + "GpuColorDict": [], + "GpuColorTargetState": [], + "GpuCommandBuffer": [], + "GpuCommandBufferDescriptor": [], + "GpuCommandEncoder": [], + "GpuCommandEncoderDescriptor": [], + "GpuCompareFunction": [], + "GpuCompilationInfo": [], + "GpuCompilationMessage": [], + "GpuCompilationMessageType": [], + "GpuComputePassDescriptor": [], + "GpuComputePassEncoder": [], + "GpuComputePassTimestampWrites": [], + "GpuComputePipeline": [], + "GpuComputePipelineDescriptor": [], + "GpuCopyExternalImageDestInfo": [], + "GpuCopyExternalImageSourceInfo": [], + "GpuCullMode": [], + "GpuDepthStencilState": [], + "GpuDevice": [ + "EventTarget" + ], + "GpuDeviceDescriptor": [], + "GpuDeviceLostInfo": [], + "GpuDeviceLostReason": [], + "GpuError": [], + "GpuErrorFilter": [], + "GpuExtent3dDict": [], + "GpuExternalTexture": [], + "GpuExternalTextureBindingLayout": [], + "GpuExternalTextureDescriptor": [], + "GpuFeatureName": [], + "GpuFilterMode": [], + "GpuFragmentState": [], + "GpuFrontFace": [], + "GpuIndexFormat": [], + "GpuInternalError": [ + "GpuError" + ], + "GpuLoadOp": [], + "GpuMipmapFilterMode": [], + "GpuMultisampleState": [], + "GpuObjectDescriptorBase": [], + "GpuOrigin2dDict": [], + "GpuOrigin3dDict": [], + "GpuOutOfMemoryError": [ + "GpuError" + ], + "GpuPipelineDescriptorBase": [], + "GpuPipelineError": [ + "DomException" + ], + "GpuPipelineErrorInit": [], + "GpuPipelineErrorReason": [], + "GpuPipelineLayout": [], + "GpuPipelineLayoutDescriptor": [], + "GpuPowerPreference": [], + "GpuPrimitiveState": [], + "GpuPrimitiveTopology": [], + "GpuProgrammableStage": [], + "GpuQuerySet": [], + "GpuQuerySetDescriptor": [], + "GpuQueryType": [], + "GpuQueue": [], + "GpuQueueDescriptor": [], + "GpuRenderBundle": [], + "GpuRenderBundleDescriptor": [], + "GpuRenderBundleEncoder": [], + "GpuRenderBundleEncoderDescriptor": [], + "GpuRenderPassColorAttachment": [], + "GpuRenderPassDepthStencilAttachment": [], + "GpuRenderPassDescriptor": [], + "GpuRenderPassEncoder": [], + "GpuRenderPassLayout": [], + "GpuRenderPassTimestampWrites": [], + "GpuRenderPipeline": [], + "GpuRenderPipelineDescriptor": [], + "GpuRequestAdapterOptions": [], + "GpuSampler": [], + "GpuSamplerBindingLayout": [], + "GpuSamplerBindingType": [], + "GpuSamplerDescriptor": [], + "GpuShaderModule": [], + "GpuShaderModuleCompilationHint": [], + "GpuShaderModuleDescriptor": [], + "GpuStencilFaceState": [], + "GpuStencilOperation": [], + "GpuStorageTextureAccess": [], + "GpuStorageTextureBindingLayout": [], + "GpuStoreOp": [], + "GpuSupportedFeatures": [], + "GpuSupportedLimits": [], + "GpuTexelCopyBufferInfo": [], + "GpuTexelCopyBufferLayout": [], + "GpuTexelCopyTextureInfo": [], + "GpuTexture": [], + "GpuTextureAspect": [], + "GpuTextureBindingLayout": [], + "GpuTextureDescriptor": [], + "GpuTextureDimension": [], + "GpuTextureFormat": [], + "GpuTextureSampleType": [], + "GpuTextureView": [], + "GpuTextureViewDescriptor": [], + "GpuTextureViewDimension": [], + "GpuUncapturedErrorEvent": [ + "Event" + ], + "GpuUncapturedErrorEventInit": [], + "GpuValidationError": [ + "GpuError" + ], + "GpuVertexAttribute": [], + "GpuVertexBufferLayout": [], + "GpuVertexFormat": [], + "GpuVertexState": [], + "GpuVertexStepMode": [], + "GroupedHistoryEventInit": [], + "HalfOpenInfoDict": [], + "HardwareAcceleration": [], + "HashChangeEvent": [ + "Event" + ], + "HashChangeEventInit": [], + "Headers": [], + "HeadersGuardEnum": [], + "Hid": [ + "EventTarget" + ], + "HidCollectionInfo": [], + "HidConnectionEvent": [ + "Event" + ], + "HidConnectionEventInit": [], + "HidDevice": [ + "EventTarget" + ], + "HidDeviceFilter": [], + "HidDeviceRequestOptions": [], + "HidInputReportEvent": [ + "Event" + ], + "HidInputReportEventInit": [], + "HidReportInfo": [], + "HidReportItem": [], + "HidUnitSystem": [], + "HiddenPluginEventInit": [], + "History": [], + "HitRegionOptions": [], + "HkdfParams": [], + "HmacDerivedKeyParams": [], + "HmacImportParams": [], + "HmacKeyAlgorithm": [], + "HmacKeyGenParams": [], + "HtmlAllCollection": [], + "HtmlAnchorElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlAreaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlAudioElement": [ + "Element", + "EventTarget", + "HtmlElement", + "HtmlMediaElement", + "Node" + ], + "HtmlBaseElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlBodyElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlBrElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlButtonElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlCanvasElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlCollection": [], + "HtmlDListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDataElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDataListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDetailsElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDialogElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDirectoryElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDivElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDocument": [ + "Document", + "EventTarget", + "Node" + ], + "HtmlElement": [ + "Element", + "EventTarget", + "Node" + ], + "HtmlEmbedElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFieldSetElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFontElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFormControlsCollection": [ + "HtmlCollection" + ], + "HtmlFormElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFrameElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFrameSetElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHeadElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHeadingElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHrElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHtmlElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlIFrameElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlImageElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlInputElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLabelElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLegendElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLiElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLinkElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMapElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMediaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMenuElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMenuItemElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMetaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMeterElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlModElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlObjectElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOptGroupElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOptionElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOptionsCollection": [ + "HtmlCollection" + ], + "HtmlOutputElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlParagraphElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlParamElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlPictureElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlPreElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlProgressElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlQuoteElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlScriptElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSelectElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSlotElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSourceElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSpanElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlStyleElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableCaptionElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableCellElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableColElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableRowElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableSectionElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTemplateElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTextAreaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTimeElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTitleElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTrackElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlUListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlUnknownElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlVideoElement": [ + "Element", + "EventTarget", + "HtmlElement", + "HtmlMediaElement", + "Node" + ], + "HttpConnDict": [], + "HttpConnInfo": [], + "HttpConnectionElement": [], + "IdbCursor": [], + "IdbCursorDirection": [], + "IdbCursorWithValue": [ + "IdbCursor" + ], + "IdbDatabase": [ + "EventTarget" + ], + "IdbFactory": [], + "IdbFileHandle": [ + "EventTarget" + ], + "IdbFileMetadataParameters": [], + "IdbFileRequest": [ + "DomRequest", + "EventTarget" + ], + "IdbIndex": [], + "IdbIndexParameters": [], + "IdbKeyRange": [], + "IdbLocaleAwareKeyRange": [ + "IdbKeyRange" + ], + "IdbMutableFile": [ + "EventTarget" + ], + "IdbObjectStore": [], + "IdbObjectStoreParameters": [], + "IdbOpenDbOptions": [], + "IdbOpenDbRequest": [ + "EventTarget", + "IdbRequest" + ], + "IdbRequest": [ + "EventTarget" + ], + "IdbRequestReadyState": [], + "IdbTransaction": [ + "EventTarget" + ], + "IdbTransactionDurability": [], + "IdbTransactionMode": [], + "IdbTransactionOptions": [], + "IdbVersionChangeEvent": [ + "Event" + ], + "IdbVersionChangeEventInit": [], + "IdleDeadline": [], + "IdleRequestOptions": [], + "IirFilterNode": [ + "AudioNode", + "EventTarget" + ], + "IirFilterOptions": [], + "ImageBitmap": [], + "ImageBitmapOptions": [], + "ImageBitmapRenderingContext": [], + "ImageCapture": [], + "ImageCaptureError": [], + "ImageCaptureErrorEvent": [ + "Event" + ], + "ImageCaptureErrorEventInit": [], + "ImageData": [], + "ImageDecodeOptions": [], + "ImageDecodeResult": [], + "ImageDecoder": [], + "ImageDecoderInit": [], + "ImageEncodeOptions": [], + "ImageOrientation": [], + "ImageTrack": [ + "EventTarget" + ], + "ImageTrackList": [], + "InputDeviceInfo": [ + "MediaDeviceInfo" + ], + "InputEvent": [ + "Event", + "UiEvent" + ], + "InputEventInit": [], + "IntersectionObserver": [], + "IntersectionObserverEntry": [], + "IntersectionObserverEntryInit": [], + "IntersectionObserverInit": [], + "IntlUtils": [], + "IsInputPendingOptions": [], + "IterableKeyAndValueResult": [], + "IterableKeyOrValueResult": [], + "IterationCompositeOperation": [], + "JsonWebKey": [], + "KeyAlgorithm": [], + "KeyEvent": [], + "KeyFrameRequestEvent": [ + "Event" + ], + "KeyIdsInitData": [], + "KeyboardEvent": [ + "Event", + "UiEvent" + ], + "KeyboardEventInit": [], + "KeyframeAnimationOptions": [], + "KeyframeEffect": [ + "AnimationEffect" + ], + "KeyframeEffectOptions": [], + "L10nElement": [], + "L10nValue": [], + "LargeBlobSupport": [], + "LatencyMode": [], + "LifecycleCallbacks": [], + "LineAlignSetting": [], + "ListBoxObject": [], + "LocalMediaStream": [ + "EventTarget", + "MediaStream" + ], + "LocaleInfo": [], + "Location": [], + "Lock": [], + "LockInfo": [], + "LockManager": [], + "LockManagerSnapshot": [], + "LockMode": [], + "LockOptions": [], + "MathMlElement": [ + "Element", + "EventTarget", + "Node" + ], + "MediaCapabilities": [], + "MediaCapabilitiesInfo": [], + "MediaConfiguration": [], + "MediaDecodingConfiguration": [], + "MediaDecodingType": [], + "MediaDeviceInfo": [], + "MediaDeviceKind": [], + "MediaDevices": [ + "EventTarget" + ], + "MediaElementAudioSourceNode": [ + "AudioNode", + "EventTarget" + ], + "MediaElementAudioSourceOptions": [], + "MediaEncodingConfiguration": [], + "MediaEncodingType": [], + "MediaEncryptedEvent": [ + "Event" + ], + "MediaError": [], + "MediaImage": [], + "MediaKeyError": [ + "Event" + ], + "MediaKeyMessageEvent": [ + "Event" + ], + "MediaKeyMessageEventInit": [], + "MediaKeyMessageType": [], + "MediaKeyNeededEventInit": [], + "MediaKeySession": [ + "EventTarget" + ], + "MediaKeySessionType": [], + "MediaKeyStatus": [], + "MediaKeyStatusMap": [], + "MediaKeySystemAccess": [], + "MediaKeySystemConfiguration": [], + "MediaKeySystemMediaCapability": [], + "MediaKeySystemStatus": [], + "MediaKeys": [], + "MediaKeysPolicy": [], + "MediaKeysRequirement": [], + "MediaList": [], + "MediaMetadata": [], + "MediaMetadataInit": [], + "MediaPositionState": [], + "MediaQueryList": [ + "EventTarget" + ], + "MediaQueryListEvent": [ + "Event" + ], + "MediaQueryListEventInit": [], + "MediaRecorder": [ + "EventTarget" + ], + "MediaRecorderErrorEvent": [ + "Event" + ], + "MediaRecorderErrorEventInit": [], + "MediaRecorderOptions": [], + "MediaSession": [], + "MediaSessionAction": [], + "MediaSessionActionDetails": [], + "MediaSessionPlaybackState": [], + "MediaSource": [ + "EventTarget" + ], + "MediaSourceEndOfStreamError": [], + "MediaSourceEnum": [], + "MediaSourceReadyState": [], + "MediaStream": [ + "EventTarget" + ], + "MediaStreamAudioDestinationNode": [ + "AudioNode", + "EventTarget" + ], + "MediaStreamAudioSourceNode": [ + "AudioNode", + "EventTarget" + ], + "MediaStreamAudioSourceOptions": [], + "MediaStreamConstraints": [], + "MediaStreamError": [], + "MediaStreamEvent": [ + "Event" + ], + "MediaStreamEventInit": [], + "MediaStreamTrack": [ + "EventTarget" + ], + "MediaStreamTrackEvent": [ + "Event" + ], + "MediaStreamTrackEventInit": [], + "MediaStreamTrackGenerator": [ + "EventTarget", + "MediaStreamTrack" + ], + "MediaStreamTrackGeneratorInit": [], + "MediaStreamTrackProcessor": [], + "MediaStreamTrackProcessorInit": [], + "MediaStreamTrackState": [], + "MediaTrackCapabilities": [], + "MediaTrackConstraintSet": [], + "MediaTrackConstraints": [], + "MediaTrackSettings": [], + "MediaTrackSupportedConstraints": [], + "MemoryAttribution": [], + "MemoryAttributionContainer": [], + "MemoryBreakdownEntry": [], + "MemoryMeasurement": [], + "MessageChannel": [], + "MessageEvent": [ + "Event" + ], + "MessageEventInit": [], + "MessagePort": [ + "EventTarget" + ], + "MidiAccess": [ + "EventTarget" + ], + "MidiConnectionEvent": [ + "Event" + ], + "MidiConnectionEventInit": [], + "MidiInput": [ + "EventTarget", + "MidiPort" + ], + "MidiInputMap": [], + "MidiMessageEvent": [ + "Event" + ], + "MidiMessageEventInit": [], + "MidiOptions": [], + "MidiOutput": [ + "EventTarget", + "MidiPort" + ], + "MidiOutputMap": [], + "MidiPort": [ + "EventTarget" + ], + "MidiPortConnectionState": [], + "MidiPortDeviceState": [], + "MidiPortType": [], + "MimeType": [], + "MimeTypeArray": [], + "MouseEvent": [ + "Event", + "UiEvent" + ], + "MouseEventInit": [], + "MouseScrollEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "MozDebug": [], + "MutationEvent": [ + "Event" + ], + "MutationObserver": [], + "MutationObserverInit": [], + "MutationObservingInfo": [], + "MutationRecord": [], + "NamedNodeMap": [], + "NativeOsFileReadOptions": [], + "NativeOsFileWriteAtomicOptions": [], + "NavigationType": [], + "Navigator": [], + "NavigatorAutomationInformation": [], + "NavigatorUaBrandVersion": [], + "NavigatorUaData": [], + "NetworkCommandOptions": [], + "NetworkInformation": [ + "EventTarget" + ], + "NetworkResultOptions": [], + "Node": [ + "EventTarget" + ], + "NodeFilter": [], + "NodeIterator": [], + "NodeList": [], + "Notification": [ + "EventTarget" + ], + "NotificationAction": [], + "NotificationDirection": [], + "NotificationEvent": [ + "Event", + "ExtendableEvent" + ], + "NotificationEventInit": [], + "NotificationOptions": [], + "NotificationPermission": [], + "ObserverCallback": [], + "OesElementIndexUint": [], + "OesStandardDerivatives": [], + "OesTextureFloat": [], + "OesTextureFloatLinear": [], + "OesTextureHalfFloat": [], + "OesTextureHalfFloatLinear": [], + "OesVertexArrayObject": [], + "OfflineAudioCompletionEvent": [ + "Event" + ], + "OfflineAudioCompletionEventInit": [], + "OfflineAudioContext": [ + "BaseAudioContext", + "EventTarget" + ], + "OfflineAudioContextOptions": [], + "OfflineResourceList": [ + "EventTarget" + ], + "OffscreenCanvas": [ + "EventTarget" + ], + "OffscreenCanvasRenderingContext2d": [], + "OpenFilePickerOptions": [], + "OpenWindowEventDetail": [], + "OptionalEffectTiming": [], + "OrientationLockType": [], + "OrientationType": [], + "OscillatorNode": [ + "AudioNode", + "AudioScheduledSourceNode", + "EventTarget" + ], + "OscillatorOptions": [], + "OscillatorType": [], + "OverSampleType": [], + "OvrMultiview2": [], + "PageTransitionEvent": [ + "Event" + ], + "PageTransitionEventInit": [], + "PaintRequest": [], + "PaintRequestList": [], + "PaintWorkletGlobalScope": [ + "WorkletGlobalScope" + ], + "PannerNode": [ + "AudioNode", + "EventTarget" + ], + "PannerOptions": [], + "PanningModelType": [], + "ParityType": [], + "Path2d": [], + "PaymentAddress": [], + "PaymentComplete": [], + "PaymentMethodChangeEvent": [ + "Event", + "PaymentRequestUpdateEvent" + ], + "PaymentMethodChangeEventInit": [], + "PaymentRequestUpdateEvent": [ + "Event" + ], + "PaymentRequestUpdateEventInit": [], + "PaymentResponse": [], + "Pbkdf2Params": [], + "PcImplIceConnectionState": [], + "PcImplIceGatheringState": [], + "PcImplSignalingState": [], + "PcObserverStateType": [], + "Performance": [ + "EventTarget" + ], + "PerformanceEntry": [], + "PerformanceEntryEventInit": [], + "PerformanceEntryFilterOptions": [], + "PerformanceMark": [ + "PerformanceEntry" + ], + "PerformanceMeasure": [ + "PerformanceEntry" + ], + "PerformanceNavigation": [], + "PerformanceNavigationTiming": [ + "PerformanceEntry", + "PerformanceResourceTiming" + ], + "PerformanceObserver": [], + "PerformanceObserverEntryList": [], + "PerformanceObserverInit": [], + "PerformanceResourceTiming": [ + "PerformanceEntry" + ], + "PerformanceServerTiming": [], + "PerformanceTiming": [], + "PeriodicWave": [], + "PeriodicWaveConstraints": [], + "PeriodicWaveOptions": [], + "PermissionDescriptor": [], + "PermissionName": [], + "PermissionState": [], + "PermissionStatus": [ + "EventTarget" + ], + "Permissions": [], + "PlaneLayout": [], + "PlaybackDirection": [], + "Plugin": [], + "PluginArray": [], + "PluginCrashedEventInit": [], + "PointerEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "PointerEventInit": [], + "PopStateEvent": [ + "Event" + ], + "PopStateEventInit": [], + "PopupBlockedEvent": [ + "Event" + ], + "PopupBlockedEventInit": [], + "Position": [], + "PositionAlignSetting": [], + "PositionError": [], + "PositionOptions": [], + "PremultiplyAlpha": [], + "Presentation": [], + "PresentationAvailability": [ + "EventTarget" + ], + "PresentationConnection": [ + "EventTarget" + ], + "PresentationConnectionAvailableEvent": [ + "Event" + ], + "PresentationConnectionAvailableEventInit": [], + "PresentationConnectionBinaryType": [], + "PresentationConnectionCloseEvent": [ + "Event" + ], + "PresentationConnectionCloseEventInit": [], + "PresentationConnectionClosedReason": [], + "PresentationConnectionList": [ + "EventTarget" + ], + "PresentationConnectionState": [], + "PresentationReceiver": [], + "PresentationRequest": [ + "EventTarget" + ], + "PresentationStyle": [], + "ProcessingInstruction": [ + "CharacterData", + "EventTarget", + "Node" + ], + "ProfileTimelineLayerRect": [], + "ProfileTimelineMarker": [], + "ProfileTimelineMessagePortOperationType": [], + "ProfileTimelineStackFrame": [], + "ProfileTimelineWorkerOperationType": [], + "ProgressEvent": [ + "Event" + ], + "ProgressEventInit": [], + "PromiseNativeHandler": [], + "PromiseRejectionEvent": [ + "Event" + ], + "PromiseRejectionEventInit": [], + "PublicKeyCredential": [ + "Credential" + ], + "PublicKeyCredentialCreationOptions": [], + "PublicKeyCredentialCreationOptionsJson": [], + "PublicKeyCredentialDescriptor": [], + "PublicKeyCredentialDescriptorJson": [], + "PublicKeyCredentialEntity": [], + "PublicKeyCredentialHints": [], + "PublicKeyCredentialParameters": [], + "PublicKeyCredentialRequestOptions": [], + "PublicKeyCredentialRequestOptionsJson": [], + "PublicKeyCredentialRpEntity": [], + "PublicKeyCredentialType": [], + "PublicKeyCredentialUserEntity": [], + "PublicKeyCredentialUserEntityJson": [], + "PushEncryptionKeyName": [], + "PushEvent": [ + "Event", + "ExtendableEvent" + ], + "PushEventInit": [], + "PushManager": [], + "PushMessageData": [], + "PushPermissionState": [], + "PushSubscription": [], + "PushSubscriptionInit": [], + "PushSubscriptionJson": [], + "PushSubscriptionKeys": [], + "PushSubscriptionOptions": [], + "PushSubscriptionOptionsInit": [], + "QueryOptions": [], + "QueuingStrategy": [], + "QueuingStrategyInit": [], + "RadioNodeList": [ + "NodeList" + ], + "Range": [], + "RcwnPerfStats": [], + "RcwnStatus": [], + "ReadableByteStreamController": [], + "ReadableStream": [], + "ReadableStreamByobReader": [], + "ReadableStreamByobRequest": [], + "ReadableStreamDefaultController": [], + "ReadableStreamDefaultReader": [], + "ReadableStreamGetReaderOptions": [], + "ReadableStreamIteratorOptions": [], + "ReadableStreamReadResult": [], + "ReadableStreamReaderMode": [], + "ReadableStreamType": [], + "ReadableWritablePair": [], + "RecordingState": [], + "ReferrerPolicy": [], + "RegisterRequest": [], + "RegisterResponse": [], + "RegisteredKey": [], + "RegistrationOptions": [], + "RegistrationResponseJson": [], + "Request": [], + "RequestCache": [], + "RequestCredentials": [], + "RequestDestination": [], + "RequestDeviceOptions": [], + "RequestInit": [], + "RequestMediaKeySystemAccessNotification": [], + "RequestMode": [], + "RequestRedirect": [], + "ResidentKeyRequirement": [], + "ResizeObserver": [], + "ResizeObserverBoxOptions": [], + "ResizeObserverEntry": [], + "ResizeObserverOptions": [], + "ResizeObserverSize": [], + "ResizeQuality": [], + "Response": [], + "ResponseInit": [], + "ResponseType": [], + "RsaHashedImportParams": [], + "RsaOaepParams": [], + "RsaOtherPrimesInfo": [], + "RsaPssParams": [], + "RtcAnswerOptions": [], + "RtcBundlePolicy": [], + "RtcCertificate": [], + "RtcCertificateExpiration": [], + "RtcCodecStats": [], + "RtcConfiguration": [], + "RtcDataChannel": [ + "EventTarget" + ], + "RtcDataChannelEvent": [ + "Event" + ], + "RtcDataChannelEventInit": [], + "RtcDataChannelInit": [], + "RtcDataChannelState": [], + "RtcDataChannelType": [], + "RtcDegradationPreference": [], + "RtcEncodedAudioFrame": [], + "RtcEncodedAudioFrameMetadata": [], + "RtcEncodedAudioFrameOptions": [], + "RtcEncodedVideoFrame": [], + "RtcEncodedVideoFrameMetadata": [], + "RtcEncodedVideoFrameOptions": [], + "RtcEncodedVideoFrameType": [], + "RtcFecParameters": [], + "RtcIceCandidate": [], + "RtcIceCandidateInit": [], + "RtcIceCandidatePairStats": [], + "RtcIceCandidateStats": [], + "RtcIceComponentStats": [], + "RtcIceConnectionState": [], + "RtcIceCredentialType": [], + "RtcIceGatheringState": [], + "RtcIceServer": [], + "RtcIceTransportPolicy": [], + "RtcIdentityAssertion": [], + "RtcIdentityAssertionResult": [], + "RtcIdentityProvider": [], + "RtcIdentityProviderDetails": [], + "RtcIdentityProviderOptions": [], + "RtcIdentityProviderRegistrar": [], + "RtcIdentityValidationResult": [], + "RtcInboundRtpStreamStats": [], + "RtcMediaStreamStats": [], + "RtcMediaStreamTrackStats": [], + "RtcOfferAnswerOptions": [], + "RtcOfferOptions": [], + "RtcOutboundRtpStreamStats": [], + "RtcPeerConnection": [ + "EventTarget" + ], + "RtcPeerConnectionIceErrorEvent": [ + "Event" + ], + "RtcPeerConnectionIceEvent": [ + "Event" + ], + "RtcPeerConnectionIceEventInit": [], + "RtcPeerConnectionState": [], + "RtcPriorityType": [], + "RtcRtcpParameters": [], + "RtcRtpCapabilities": [], + "RtcRtpCodecCapability": [], + "RtcRtpCodecParameters": [], + "RtcRtpContributingSource": [], + "RtcRtpEncodingParameters": [], + "RtcRtpHeaderExtensionCapability": [], + "RtcRtpHeaderExtensionParameters": [], + "RtcRtpParameters": [], + "RtcRtpReceiver": [], + "RtcRtpScriptTransform": [], + "RtcRtpScriptTransformer": [ + "EventTarget" + ], + "RtcRtpSender": [], + "RtcRtpSourceEntry": [], + "RtcRtpSourceEntryType": [], + "RtcRtpSynchronizationSource": [], + "RtcRtpTransceiver": [], + "RtcRtpTransceiverDirection": [], + "RtcRtpTransceiverInit": [], + "RtcRtxParameters": [], + "RtcSdpType": [], + "RtcSessionDescription": [], + "RtcSessionDescriptionInit": [], + "RtcSignalingState": [], + "RtcStats": [], + "RtcStatsIceCandidatePairState": [], + "RtcStatsIceCandidateType": [], + "RtcStatsReport": [], + "RtcStatsReportInternal": [], + "RtcStatsType": [], + "RtcTrackEvent": [ + "Event" + ], + "RtcTrackEventInit": [], + "RtcTransformEvent": [ + "Event" + ], + "RtcTransportStats": [], + "RtcdtmfSender": [ + "EventTarget" + ], + "RtcdtmfToneChangeEvent": [ + "Event" + ], + "RtcdtmfToneChangeEventInit": [], + "RtcrtpContributingSourceStats": [], + "RtcrtpStreamStats": [], + "SFrameTransform": [ + "EventTarget" + ], + "SFrameTransformErrorEvent": [ + "Event" + ], + "SFrameTransformErrorEventInit": [], + "SFrameTransformErrorEventType": [], + "SFrameTransformOptions": [], + "SFrameTransformRole": [], + "SaveFilePickerOptions": [], + "Scheduler": [], + "SchedulerPostTaskOptions": [], + "Scheduling": [], + "Screen": [ + "EventTarget" + ], + "ScreenColorGamut": [], + "ScreenLuminance": [], + "ScreenOrientation": [ + "EventTarget" + ], + "ScriptProcessorNode": [ + "AudioNode", + "EventTarget" + ], + "ScrollAreaEvent": [ + "Event", + "UiEvent" + ], + "ScrollBehavior": [], + "ScrollBoxObject": [], + "ScrollIntoViewOptions": [], + "ScrollLogicalPosition": [], + "ScrollOptions": [], + "ScrollRestoration": [], + "ScrollSetting": [], + "ScrollState": [], + "ScrollToOptions": [], + "ScrollViewChangeEventInit": [], + "SecurityPolicyViolationEvent": [ + "Event" + ], + "SecurityPolicyViolationEventDisposition": [], + "SecurityPolicyViolationEventInit": [], + "Selection": [], + "SelectionMode": [], + "Serial": [ + "EventTarget" + ], + "SerialInputSignals": [], + "SerialOptions": [], + "SerialOutputSignals": [], + "SerialPort": [ + "EventTarget" + ], + "SerialPortFilter": [], + "SerialPortInfo": [], + "SerialPortRequestOptions": [], + "ServerSocketOptions": [], + "ServiceWorker": [ + "EventTarget" + ], + "ServiceWorkerContainer": [ + "EventTarget" + ], + "ServiceWorkerGlobalScope": [ + "EventTarget", + "WorkerGlobalScope" + ], + "ServiceWorkerRegistration": [ + "EventTarget" + ], + "ServiceWorkerState": [], + "ServiceWorkerUpdateViaCache": [], + "ShadowRoot": [ + "DocumentFragment", + "EventTarget", + "Node" + ], + "ShadowRootInit": [], + "ShadowRootMode": [], + "ShareData": [], + "SharedWorker": [ + "EventTarget" + ], + "SharedWorkerGlobalScope": [ + "EventTarget", + "WorkerGlobalScope" + ], + "SignResponse": [], + "SocketElement": [], + "SocketOptions": [], + "SocketReadyState": [], + "SocketsDict": [], + "SourceBuffer": [ + "EventTarget" + ], + "SourceBufferAppendMode": [], + "SourceBufferList": [ + "EventTarget" + ], + "SpeechGrammar": [], + "SpeechGrammarList": [], + "SpeechRecognition": [ + "EventTarget" + ], + "SpeechRecognitionAlternative": [], + "SpeechRecognitionError": [ + "Event" + ], + "SpeechRecognitionErrorCode": [], + "SpeechRecognitionErrorInit": [], + "SpeechRecognitionEvent": [ + "Event" + ], + "SpeechRecognitionEventInit": [], + "SpeechRecognitionResult": [], + "SpeechRecognitionResultList": [], + "SpeechSynthesis": [ + "EventTarget" + ], + "SpeechSynthesisErrorCode": [], + "SpeechSynthesisErrorEvent": [ + "Event", + "SpeechSynthesisEvent" + ], + "SpeechSynthesisErrorEventInit": [], + "SpeechSynthesisEvent": [ + "Event" + ], + "SpeechSynthesisEventInit": [], + "SpeechSynthesisUtterance": [ + "EventTarget" + ], + "SpeechSynthesisVoice": [], + "StereoPannerNode": [ + "AudioNode", + "EventTarget" + ], + "StereoPannerOptions": [], + "Storage": [], + "StorageEstimate": [], + "StorageEvent": [ + "Event" + ], + "StorageEventInit": [], + "StorageManager": [], + "StorageType": [], + "StreamPipeOptions": [], + "StyleRuleChangeEventInit": [], + "StyleSheet": [], + "StyleSheetApplicableStateChangeEventInit": [], + "StyleSheetChangeEventInit": [], + "StyleSheetList": [], + "SubmitEvent": [ + "Event" + ], + "SubmitEventInit": [], + "SubtleCrypto": [], + "SupportedType": [], + "SvcOutputMetadata": [], + "SvgAngle": [], + "SvgAnimateElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgAnimateMotionElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgAnimateTransformElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgAnimatedAngle": [], + "SvgAnimatedBoolean": [], + "SvgAnimatedEnumeration": [], + "SvgAnimatedInteger": [], + "SvgAnimatedLength": [], + "SvgAnimatedLengthList": [], + "SvgAnimatedNumber": [], + "SvgAnimatedNumberList": [], + "SvgAnimatedPreserveAspectRatio": [], + "SvgAnimatedRect": [], + "SvgAnimatedString": [], + "SvgAnimatedTransformList": [], + "SvgAnimationElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgBoundingBoxOptions": [], + "SvgCircleElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgClipPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgComponentTransferFunctionElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgDefsElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgDescElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgElement": [ + "Element", + "EventTarget", + "Node" + ], + "SvgEllipseElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgFilterElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgForeignObjectElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgGeometryElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgGradientElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgGraphicsElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgImageElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgLength": [], + "SvgLengthList": [], + "SvgLineElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgLinearGradientElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGradientElement" + ], + "SvgMarkerElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgMaskElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgMatrix": [], + "SvgMetadataElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgNumber": [], + "SvgNumberList": [], + "SvgPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgPathSeg": [], + "SvgPathSegArcAbs": [ + "SvgPathSeg" + ], + "SvgPathSegArcRel": [ + "SvgPathSeg" + ], + "SvgPathSegClosePath": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicRel": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicSmoothAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicSmoothRel": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticRel": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticSmoothAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticSmoothRel": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoAbs": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoHorizontalAbs": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoHorizontalRel": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoRel": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoVerticalAbs": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoVerticalRel": [ + "SvgPathSeg" + ], + "SvgPathSegList": [], + "SvgPathSegMovetoAbs": [ + "SvgPathSeg" + ], + "SvgPathSegMovetoRel": [ + "SvgPathSeg" + ], + "SvgPatternElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgPoint": [], + "SvgPointList": [], + "SvgPolygonElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgPolylineElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgPreserveAspectRatio": [], + "SvgRadialGradientElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGradientElement" + ], + "SvgRect": [], + "SvgRectElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgScriptElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgSetElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgStopElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgStringList": [], + "SvgStyleElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgSwitchElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgSymbolElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgTextContentElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgTextElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement", + "SvgTextPositioningElement" + ], + "SvgTextPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement" + ], + "SvgTextPositioningElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement" + ], + "SvgTitleElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgTransform": [], + "SvgTransformList": [], + "SvgUnitTypes": [], + "SvgUseElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgViewElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgZoomAndPan": [], + "SvgaElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgfeBlendElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeColorMatrixElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeComponentTransferElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeCompositeElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeConvolveMatrixElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDiffuseLightingElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDisplacementMapElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDistantLightElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDropShadowElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeFloodElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeFuncAElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeFuncBElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeFuncGElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeFuncRElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeGaussianBlurElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeImageElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeMergeElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeMergeNodeElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeMorphologyElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeOffsetElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfePointLightElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeSpecularLightingElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeSpotLightElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeTileElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeTurbulenceElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvggElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgmPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgsvgElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgtSpanElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement", + "SvgTextPositioningElement" + ], + "TaskController": [ + "AbortController" + ], + "TaskControllerInit": [], + "TaskPriority": [], + "TaskPriorityChangeEvent": [ + "Event" + ], + "TaskPriorityChangeEventInit": [], + "TaskSignal": [ + "AbortSignal", + "EventTarget" + ], + "TaskSignalAnyInit": [], + "TcpReadyState": [], + "TcpServerSocket": [ + "EventTarget" + ], + "TcpServerSocketEvent": [ + "Event" + ], + "TcpServerSocketEventInit": [], + "TcpSocket": [ + "EventTarget" + ], + "TcpSocketBinaryType": [], + "TcpSocketErrorEvent": [ + "Event" + ], + "TcpSocketErrorEventInit": [], + "TcpSocketEvent": [ + "Event" + ], + "TcpSocketEventInit": [], + "Text": [ + "CharacterData", + "EventTarget", + "Node" + ], + "TextDecodeOptions": [], + "TextDecoder": [], + "TextDecoderOptions": [], + "TextEncoder": [], + "TextMetrics": [], + "TextTrack": [ + "EventTarget" + ], + "TextTrackCue": [ + "EventTarget" + ], + "TextTrackCueList": [], + "TextTrackKind": [], + "TextTrackList": [ + "EventTarget" + ], + "TextTrackMode": [], + "TimeEvent": [ + "Event" + ], + "TimeRanges": [], + "ToggleEvent": [ + "Event" + ], + "ToggleEventInit": [], + "TokenBinding": [], + "TokenBindingStatus": [], + "Touch": [], + "TouchEvent": [ + "Event", + "UiEvent" + ], + "TouchEventInit": [], + "TouchInit": [], + "TouchList": [], + "TrackEvent": [ + "Event" + ], + "TrackEventInit": [], + "TransformStream": [], + "TransformStreamDefaultController": [], + "Transformer": [], + "TransitionEvent": [ + "Event" + ], + "TransitionEventInit": [], + "Transport": [], + "TreeBoxObject": [], + "TreeCellInfo": [], + "TreeView": [], + "TreeWalker": [], + "U2f": [], + "U2fClientData": [], + "ULongRange": [], + "UaDataValues": [], + "UaLowEntropyJson": [], + "UdpMessageEventInit": [], + "UdpOptions": [], + "UiEvent": [ + "Event" + ], + "UiEventInit": [], + "UnderlyingSink": [], + "UnderlyingSource": [], + "Url": [], + "UrlSearchParams": [], + "Usb": [ + "EventTarget" + ], + "UsbAlternateInterface": [], + "UsbConfiguration": [], + "UsbConnectionEvent": [ + "Event" + ], + "UsbConnectionEventInit": [], + "UsbControlTransferParameters": [], + "UsbDevice": [], + "UsbDeviceFilter": [], + "UsbDeviceRequestOptions": [], + "UsbDirection": [], + "UsbEndpoint": [], + "UsbEndpointType": [], + "UsbInTransferResult": [], + "UsbInterface": [], + "UsbIsochronousInTransferPacket": [], + "UsbIsochronousInTransferResult": [], + "UsbIsochronousOutTransferPacket": [], + "UsbIsochronousOutTransferResult": [], + "UsbOutTransferResult": [], + "UsbPermissionDescriptor": [], + "UsbPermissionResult": [ + "EventTarget", + "PermissionStatus" + ], + "UsbPermissionStorage": [], + "UsbRecipient": [], + "UsbRequestType": [], + "UsbTransferStatus": [], + "UserActivation": [], + "UserProximityEvent": [ + "Event" + ], + "UserProximityEventInit": [], + "UserVerificationRequirement": [], + "ValidityState": [], + "ValueEvent": [ + "Event" + ], + "ValueEventInit": [], + "VideoColorPrimaries": [], + "VideoColorSpace": [], + "VideoColorSpaceInit": [], + "VideoConfiguration": [], + "VideoDecoder": [], + "VideoDecoderConfig": [], + "VideoDecoderInit": [], + "VideoDecoderSupport": [], + "VideoEncoder": [], + "VideoEncoderConfig": [], + "VideoEncoderEncodeOptions": [], + "VideoEncoderInit": [], + "VideoEncoderSupport": [], + "VideoFacingModeEnum": [], + "VideoFrame": [], + "VideoFrameBufferInit": [], + "VideoFrameCopyToOptions": [], + "VideoFrameInit": [], + "VideoMatrixCoefficients": [], + "VideoPixelFormat": [], + "VideoPlaybackQuality": [], + "VideoStreamTrack": [ + "EventTarget", + "MediaStreamTrack" + ], + "VideoTrack": [], + "VideoTrackList": [ + "EventTarget" + ], + "VideoTransferCharacteristics": [], + "ViewTransition": [], + "VisibilityState": [], + "VisualViewport": [ + "EventTarget" + ], + "VoidCallback": [], + "VrDisplay": [ + "EventTarget" + ], + "VrDisplayCapabilities": [], + "VrEye": [], + "VrEyeParameters": [], + "VrFieldOfView": [], + "VrFrameData": [], + "VrLayer": [], + "VrMockController": [], + "VrMockDisplay": [], + "VrPose": [], + "VrServiceTest": [], + "VrStageParameters": [], + "VrSubmitFrameResult": [], + "VttCue": [ + "EventTarget", + "TextTrackCue" + ], + "VttRegion": [], + "WakeLock": [], + "WakeLockSentinel": [ + "EventTarget" + ], + "WakeLockType": [], + "WatchAdvertisementsOptions": [], + "WaveShaperNode": [ + "AudioNode", + "EventTarget" + ], + "WaveShaperOptions": [], + "WebGl2RenderingContext": [], + "WebGlActiveInfo": [], + "WebGlBuffer": [], + "WebGlContextAttributes": [], + "WebGlContextEvent": [ + "Event" + ], + "WebGlContextEventInit": [], + "WebGlFramebuffer": [], + "WebGlPowerPreference": [], + "WebGlProgram": [], + "WebGlQuery": [], + "WebGlRenderbuffer": [], + "WebGlRenderingContext": [], + "WebGlSampler": [], + "WebGlShader": [], + "WebGlShaderPrecisionFormat": [], + "WebGlSync": [], + "WebGlTexture": [], + "WebGlTransformFeedback": [], + "WebGlUniformLocation": [], + "WebGlVertexArrayObject": [], + "WebKitCssMatrix": [ + "DomMatrix", + "DomMatrixReadOnly" + ], + "WebSocket": [ + "EventTarget" + ], + "WebSocketDict": [], + "WebSocketElement": [], + "WebTransport": [], + "WebTransportBidirectionalStream": [], + "WebTransportCloseInfo": [], + "WebTransportCongestionControl": [], + "WebTransportDatagramDuplexStream": [], + "WebTransportDatagramStats": [], + "WebTransportError": [ + "DomException" + ], + "WebTransportErrorOptions": [], + "WebTransportErrorSource": [], + "WebTransportHash": [], + "WebTransportOptions": [], + "WebTransportReceiveStream": [ + "ReadableStream" + ], + "WebTransportReceiveStreamStats": [], + "WebTransportReliabilityMode": [], + "WebTransportSendStream": [ + "WritableStream" + ], + "WebTransportSendStreamOptions": [], + "WebTransportSendStreamStats": [], + "WebTransportStats": [], + "WebglColorBufferFloat": [], + "WebglCompressedTextureAstc": [], + "WebglCompressedTextureAtc": [], + "WebglCompressedTextureEtc": [], + "WebglCompressedTextureEtc1": [], + "WebglCompressedTexturePvrtc": [], + "WebglCompressedTextureS3tc": [], + "WebglCompressedTextureS3tcSrgb": [], + "WebglDebugRendererInfo": [], + "WebglDebugShaders": [], + "WebglDepthTexture": [], + "WebglDrawBuffers": [], + "WebglLoseContext": [], + "WebglMultiDraw": [], + "WellKnownDirectory": [], + "WgslLanguageFeatures": [], + "WheelEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "WheelEventInit": [], + "WidevineCdmManifest": [], + "Window": [ + "EventTarget" + ], + "WindowClient": [ + "Client" + ], + "Worker": [ + "EventTarget" + ], + "WorkerDebuggerGlobalScope": [ + "EventTarget" + ], + "WorkerGlobalScope": [ + "EventTarget" + ], + "WorkerLocation": [], + "WorkerNavigator": [], + "WorkerOptions": [], + "WorkerType": [], + "Worklet": [], + "WorkletGlobalScope": [], + "WorkletOptions": [], + "WritableStream": [], + "WritableStreamDefaultController": [], + "WritableStreamDefaultWriter": [], + "WriteCommandType": [], + "WriteParams": [], + "XPathExpression": [], + "XPathNsResolver": [], + "XPathResult": [], + "XmlDocument": [ + "Document", + "EventTarget", + "Node" + ], + "XmlHttpRequest": [ + "EventTarget", + "XmlHttpRequestEventTarget" + ], + "XmlHttpRequestEventTarget": [ + "EventTarget" + ], + "XmlHttpRequestResponseType": [], + "XmlHttpRequestUpload": [ + "EventTarget", + "XmlHttpRequestEventTarget" + ], + "XmlSerializer": [], + "XrBoundedReferenceSpace": [ + "EventTarget", + "XrReferenceSpace", + "XrSpace" + ], + "XrEye": [], + "XrFrame": [], + "XrHand": [], + "XrHandJoint": [], + "XrHandedness": [], + "XrInputSource": [], + "XrInputSourceArray": [], + "XrInputSourceEvent": [ + "Event" + ], + "XrInputSourceEventInit": [], + "XrInputSourcesChangeEvent": [ + "Event" + ], + "XrInputSourcesChangeEventInit": [], + "XrJointPose": [ + "XrPose" + ], + "XrJointSpace": [ + "EventTarget", + "XrSpace" + ], + "XrLayer": [ + "EventTarget" + ], + "XrPermissionDescriptor": [], + "XrPermissionStatus": [ + "EventTarget", + "PermissionStatus" + ], + "XrPose": [], + "XrReferenceSpace": [ + "EventTarget", + "XrSpace" + ], + "XrReferenceSpaceEvent": [ + "Event" + ], + "XrReferenceSpaceEventInit": [], + "XrReferenceSpaceType": [], + "XrRenderState": [], + "XrRenderStateInit": [], + "XrRigidTransform": [], + "XrSession": [ + "EventTarget" + ], + "XrSessionEvent": [ + "Event" + ], + "XrSessionEventInit": [], + "XrSessionInit": [], + "XrSessionMode": [], + "XrSessionSupportedPermissionDescriptor": [], + "XrSpace": [ + "EventTarget" + ], + "XrSystem": [ + "EventTarget" + ], + "XrTargetRayMode": [], + "XrView": [], + "XrViewerPose": [ + "XrPose" + ], + "XrViewport": [], + "XrVisibilityState": [], + "XrWebGlLayer": [ + "EventTarget", + "XrLayer" + ], + "XrWebGlLayerInit": [], + "XsltProcessor": [], + "console": [], + "css": [], + "default": [ + "std" + ], + "gpu_buffer_usage": [], + "gpu_color_write": [], + "gpu_map_mode": [], + "gpu_shader_stage": [], + "gpu_texture_usage": [], + "std": [ + "wasm-bindgen/std", + "js-sys/std" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.77/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg=web_sys_unstable_apis" + ] + } + } + }, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", + "homepage": "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html", + "documentation": "https://rustwasm.github.io/wasm-bindgen/api/web_sys/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "webpki-roots", + "version": "0.26.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", + "license": "CDLA-Permissive-2.0", + "license_file": null, + "description": "Mozilla's CA root certificates for use with webpki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "rt-multi-thread" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-webpki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.102", + "kind": "dev", + "rename": "webpki", + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "x509-parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yasna", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "webpki_roots", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "codegen", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/tests/codegen.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "verify", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/tests/verify.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/webpki-roots", + "homepage": "https://github.com/rustls/webpki-roots", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "which", + "version": "4.4.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#which@4.4.2", + "license": "MIT", + "license_file": null, + "description": "A Rust equivalent of Unix command \"which\". Locate installed executable in cross platforms.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.38.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "fs", + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "home", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(windows, unix, target_os = \"redox\"))", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "which", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/which-4.4.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/which-4.4.2/tests/basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "regex": [ + "dep:regex" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/which-4.4.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Harry Fei " + ], + "categories": [ + "os", + "filesystem" + ], + "keywords": [ + "which", + "which-rs", + "unix", + "command" + ], + "readme": "README.md", + "repository": "https://github.com/harryfei/which-rs.git", + "homepage": null, + "documentation": "https://docs.rs/which/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "winnow", + "version": "0.5.40", + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", + "license": "MIT", + "license_file": null, + "description": "A byte-oriented, zero-copy, parser combinators library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "terminal_size", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "circular", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "escargot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "examples" + ], + "target": null, + "registry": null + }, + { + "name": "term-transcript", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winnow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/arithmetic/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "css", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/css/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/custom_error.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/http/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ini/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/iterator.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json_iterator.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ndjson", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ndjson/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "s_expression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/s_expression/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/string/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/arithmetic/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "contains_token", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/contains_token.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "find_slice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/find_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/http/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ini/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/iter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "next_slice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/next_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "number", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/number.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "debug": [ + "dep:anstream", + "dep:anstyle", + "dep:is-terminal", + "dep:terminal_size" + ], + "default": [ + "std" + ], + "simd": [ + "dep:memchr" + ], + "std": [ + "alloc", + "memchr?/std" + ], + "unstable-doc": [ + "alloc", + "std", + "simd", + "unstable-recover" + ], + "unstable-recover": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "-Zunstable-options", + "-Zrustdoc-scrape-examples" + ], + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", + "search": "" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "blob/v{{version}}/CHANGELOG.md", + "search": "blob/v.+\\..+\\..+/CHANGELOG.md" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "parsing" + ], + "keywords": [ + "parser", + "parser-combinators", + "parsing", + "streaming", + "bit" + ], + "readme": "README.md", + "repository": "https://github.com/winnow-rs/winnow", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "winnow", + "version": "0.7.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", + "license": "MIT", + "license_file": null, + "description": "A byte-oriented, zero-copy, parser combinators library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "terminal_size", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "annotate-snippets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.86", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "circular", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.21", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "examples" + ], + "target": null, + "registry": null + }, + { + "name": "term-transcript", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winnow", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/arithmetic/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "css", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/css/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_error", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/custom_error.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/http/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ini/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/iterator.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_iterator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json_iterator.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ndjson", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ndjson/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "s_expression", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/s_expression/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/string/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/arithmetic/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "contains_token", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/contains_token.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "find_slice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/find_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/http/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ini/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iter", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/iter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "next_slice", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/next_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "number", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/number.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "debug": [ + "std", + "dep:anstream", + "dep:anstyle", + "dep:is-terminal", + "dep:terminal_size" + ], + "default": [ + "std" + ], + "simd": [ + "dep:memchr" + ], + "std": [ + "alloc", + "memchr?/std" + ], + "unstable-doc": [ + "alloc", + "std", + "simd", + "unstable-recover" + ], + "unstable-recover": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "file": "CHANGELOG.md", + "min": 1, + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n## [Unreleased] - ReleaseDate\n", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", + "search": "" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "blob/v{{version}}/CHANGELOG.md", + "search": "blob/v.+\\..+\\..+/CHANGELOG.md" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "parsing" + ], + "keywords": [ + "parser", + "parser-combinators", + "parsing", + "streaming", + "bit" + ], + "readme": "README.md", + "repository": "https://github.com/winnow-rs/winnow", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "write16", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A UTF-16 analog of the Write trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "write16", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/write16-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "arrayvec": [ + "dep:arrayvec" + ], + "smallvec": [ + "dep:smallvec" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/write16-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "text-processing", + "internationalization" + ], + "keywords": [ + "unicode", + "utf-16" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/write16", + "homepage": "https://docs.rs/write16/", + "documentation": "https://docs.rs/write16/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "writeable", + "version": "0.5.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "license": "Unicode-3.0", + "license_file": null, + "description": "A more efficient alternative to fmt::Display", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "writeable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "writeable_message", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/examples/writeable_message.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "writeable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/tests/writeable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "writeable", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/benches/writeable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "either": [ + "dep:either" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "wyz", + "version": "0.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wyz@0.5.1", + "license": "MIT", + "license_file": null, + "description": "myrrlyn’s utility collection", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typemap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wyz", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wyz-0.5.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "garbage": [ + "once_cell", + "typemap" + ], + "once_cell": [ + "dep:once_cell" + ], + "std": [ + "alloc" + ], + "typemap": [ + "dep:typemap" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wyz-0.5.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "myrrlyn " + ], + "categories": [ + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/myrrlyn/wyz", + "homepage": "https://myrrlyn.net/crates/wyz", + "documentation": "https://docs.rs/wyz", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "xattr", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "unix extended filesystem attributes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "fs", + "std" + ], + "target": "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.150", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "xattr", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/tests/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "unsupported" + ], + "unsupported": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Allen " + ], + "categories": [], + "keywords": [ + "xattr", + "filesystem", + "unix" + ], + "readme": "README.md", + "repository": "https://github.com/Stebalien/xattr", + "homepage": null, + "documentation": "https://docs.rs/xattr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "xxhash-rust", + "version": "0.8.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", + "license": "BSL-1.0", + "license_file": null, + "description": "Implementation of xxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "xxhash-c-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "xxhash_rust", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "assert_correctness", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/assert_correctness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "assert_correctness_miri", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/assert_correctness_miri.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "size", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/size.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test-vectors", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/test-vectors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "const_xxh3": [], + "const_xxh32": [], + "const_xxh64": [], + "std": [], + "xxh3": [], + "xxh32": [], + "xxh64": [] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "xxh32", + "const_xxh32", + "xxh64", + "const_xxh64", + "xxh3", + "const_xxh3" + ] + } + } + }, + "publish": null, + "authors": [ + "Douman " + ], + "categories": [ + "algorithms", + "no-std::no-alloc" + ], + "keywords": [ + "hash", + "xxhash", + "xxh3", + "hasher", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/DoumanAsh/xxhash-rust", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "yew", + "version": "0.20.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A framework for creating reliable and efficient web applications", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64ct", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "console_error_panic_hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "gloo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "html-escape", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "implicit-clone", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "map" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "prokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.36", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "AnimationEvent", + "Document", + "DragEvent", + "Element", + "ErrorEvent", + "Event", + "EventInit", + "EventTarget", + "FocusEvent", + "HtmlElement", + "HtmlInputElement", + "HtmlCollection", + "HtmlTextAreaElement", + "InputEvent", + "InputEventInit", + "KeyboardEvent", + "Location", + "MouseEvent", + "Node", + "NodeList", + "PointerEvent", + "ProgressEvent", + "ShadowRoot", + "Text", + "TouchEvent", + "TransitionEvent", + "UiEvent", + "WheelEvent", + "Window", + "HtmlScriptElement", + "SubmitEvent" + ], + "target": null, + "registry": null + }, + { + "name": "yew-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gloo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "ShadowRootInit", + "ShadowRootMode", + "HtmlButtonElement" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rt" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yew", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hydration", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/hydration.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "layout", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/layout.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "raw_html", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/raw_html.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "suspense", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/suspense.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_callback", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_callback.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_context", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_context.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_effect", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_effect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_memo", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_memo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_prepared_state", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_prepared_state.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_reducer", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_reducer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_ref", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_ref.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_state", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_state.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_transitive_state", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_transitive_state.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "csr": [], + "default": [], + "hydration": [ + "csr", + "dep:bincode" + ], + "ssr": [ + "dep:html-escape", + "dep:base64ct", + "dep:bincode" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "documenting" + ] + } + } + }, + "publish": null, + "authors": [ + "Denis Kolodin ", + "Justin Starry " + ], + "categories": [ + "gui", + "wasm", + "web-programming" + ], + "keywords": [ + "web", + "webasm", + "javascript" + ], + "readme": "README.md", + "repository": "https://github.com/yewstack/yew", + "homepage": "https://yew.rs", + "documentation": "https://docs.rs/yew/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "yew-macro", + "version": "0.20.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A framework for making client-side single-page apps", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "boolinator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "prettyplease", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro-error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits", + "visit-mut" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "yew_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "classes_macro_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/classes_macro_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derive_props_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/derive_props_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "function_attr_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/function_attr_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hook_attr_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/hook_attr_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hook_macro_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/hook_macro_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "html_lints_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/html_lints_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "html_macro_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/html_macro_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "props_macro_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/props_macro_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Justin Starry " + ], + "categories": [ + "gui", + "web-programming", + "wasm" + ], + "keywords": [ + "web", + "wasm", + "frontend", + "webasm", + "webassembly" + ], + "readme": null, + "repository": "https://github.com/yewstack/yew", + "homepage": "https://github.com/yewstack/yew", + "documentation": "https://docs.rs/yew-macro/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "yew-router", + "version": "0.17.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A router implementation for the Yew framework", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "gloo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "futures" + ], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "route-recognizer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.36", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Document", + "HtmlBaseElement", + "Window" + ], + "target": null, + "registry": null + }, + { + "name": "yew", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yew-router-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "HtmlHeadElement" + ], + "target": null, + "registry": null + }, + { + "name": "yew", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "csr" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yew_router", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basename", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/basename.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser_router", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/browser_router.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_router", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/hash_router.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "link", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/link.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "router_unit_tests", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/router_unit_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/utils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Hamza " + ], + "categories": [ + "gui", + "web-programming" + ], + "keywords": [ + "web", + "yew", + "router" + ], + "readme": "README.md", + "repository": "https://github.com/yewstack/yew", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "yew-router-macro", + "version": "0.17.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Contains macros used with yew-router", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "yew_router_macro", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "routable_derive_test", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/tests/routable_derive_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Hamza " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/yewstack/yew", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "yew_icons", + "version": "0.7.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", + "license": "MIT", + "license_file": null, + "description": "Easily include a variety of SVG icons into your Yew app", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "convert_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enum-iterator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yew", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "csr" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rt", + "macros" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yew_icons", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "generator", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/src/generator.rs", + "edition": "2021", + "required-features": [ + "generator" + ], + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "Bootstrap0Circle": [], + "Bootstrap0CircleFill": [], + "Bootstrap0Square": [], + "Bootstrap0SquareFill": [], + "Bootstrap123": [], + "Bootstrap1Circle": [], + "Bootstrap1CircleFill": [], + "Bootstrap1Square": [], + "Bootstrap1SquareFill": [], + "Bootstrap2Circle": [], + "Bootstrap2CircleFill": [], + "Bootstrap2Square": [], + "Bootstrap2SquareFill": [], + "Bootstrap3Circle": [], + "Bootstrap3CircleFill": [], + "Bootstrap3Square": [], + "Bootstrap3SquareFill": [], + "Bootstrap4Circle": [], + "Bootstrap4CircleFill": [], + "Bootstrap4Square": [], + "Bootstrap4SquareFill": [], + "Bootstrap5Circle": [], + "Bootstrap5CircleFill": [], + "Bootstrap5Square": [], + "Bootstrap5SquareFill": [], + "Bootstrap6Circle": [], + "Bootstrap6CircleFill": [], + "Bootstrap6Square": [], + "Bootstrap6SquareFill": [], + "Bootstrap7Circle": [], + "Bootstrap7CircleFill": [], + "Bootstrap7Square": [], + "Bootstrap7SquareFill": [], + "Bootstrap8Circle": [], + "Bootstrap8CircleFill": [], + "Bootstrap8Square": [], + "Bootstrap8SquareFill": [], + "Bootstrap9Circle": [], + "Bootstrap9CircleFill": [], + "Bootstrap9Square": [], + "Bootstrap9SquareFill": [], + "BootstrapActivity": [], + "BootstrapAirplane": [], + "BootstrapAirplaneEngines": [], + "BootstrapAirplaneEnginesFill": [], + "BootstrapAirplaneFill": [], + "BootstrapAlarm": [], + "BootstrapAlarmFill": [], + "BootstrapAlexa": [], + "BootstrapAlignBottom": [], + "BootstrapAlignCenter": [], + "BootstrapAlignEnd": [], + "BootstrapAlignMiddle": [], + "BootstrapAlignStart": [], + "BootstrapAlignTop": [], + "BootstrapAlipay": [], + "BootstrapAlt": [], + "BootstrapAmd": [], + "BootstrapAndroid": [], + "BootstrapAndroid2": [], + "BootstrapApp": [], + "BootstrapAppIndicator": [], + "BootstrapApple": [], + "BootstrapArchive": [], + "BootstrapArchiveFill": [], + "BootstrapArrow90DegDown": [], + "BootstrapArrow90DegLeft": [], + "BootstrapArrow90DegRight": [], + "BootstrapArrow90DegUp": [], + "BootstrapArrowBarDown": [], + "BootstrapArrowBarLeft": [], + "BootstrapArrowBarRight": [], + "BootstrapArrowBarUp": [], + "BootstrapArrowClockwise": [], + "BootstrapArrowCounterclockwise": [], + "BootstrapArrowDown": [], + "BootstrapArrowDownCircle": [], + "BootstrapArrowDownCircleFill": [], + "BootstrapArrowDownLeft": [], + "BootstrapArrowDownLeftCircle": [], + "BootstrapArrowDownLeftCircleFill": [], + "BootstrapArrowDownLeftSquare": [], + "BootstrapArrowDownLeftSquareFill": [], + "BootstrapArrowDownRight": [], + "BootstrapArrowDownRightCircle": [], + "BootstrapArrowDownRightCircleFill": [], + "BootstrapArrowDownRightSquare": [], + "BootstrapArrowDownRightSquareFill": [], + "BootstrapArrowDownShort": [], + "BootstrapArrowDownSquare": [], + "BootstrapArrowDownSquareFill": [], + "BootstrapArrowDownUp": [], + "BootstrapArrowLeft": [], + "BootstrapArrowLeftCircle": [], + "BootstrapArrowLeftCircleFill": [], + "BootstrapArrowLeftRight": [], + "BootstrapArrowLeftShort": [], + "BootstrapArrowLeftSquare": [], + "BootstrapArrowLeftSquareFill": [], + "BootstrapArrowRepeat": [], + "BootstrapArrowReturnLeft": [], + "BootstrapArrowReturnRight": [], + "BootstrapArrowRight": [], + "BootstrapArrowRightCircle": [], + "BootstrapArrowRightCircleFill": [], + "BootstrapArrowRightShort": [], + "BootstrapArrowRightSquare": [], + "BootstrapArrowRightSquareFill": [], + "BootstrapArrowThroughHeart": [], + "BootstrapArrowThroughHeartFill": [], + "BootstrapArrowUp": [], + "BootstrapArrowUpCircle": [], + "BootstrapArrowUpCircleFill": [], + "BootstrapArrowUpLeft": [], + "BootstrapArrowUpLeftCircle": [], + "BootstrapArrowUpLeftCircleFill": [], + "BootstrapArrowUpLeftSquare": [], + "BootstrapArrowUpLeftSquareFill": [], + "BootstrapArrowUpRight": [], + "BootstrapArrowUpRightCircle": [], + "BootstrapArrowUpRightCircleFill": [], + "BootstrapArrowUpRightSquare": [], + "BootstrapArrowUpRightSquareFill": [], + "BootstrapArrowUpShort": [], + "BootstrapArrowUpSquare": [], + "BootstrapArrowUpSquareFill": [], + "BootstrapArrowsAngleContract": [], + "BootstrapArrowsAngleExpand": [], + "BootstrapArrowsCollapse": [], + "BootstrapArrowsExpand": [], + "BootstrapArrowsFullscreen": [], + "BootstrapArrowsMove": [], + "BootstrapAspectRatio": [], + "BootstrapAspectRatioFill": [], + "BootstrapAsterisk": [], + "BootstrapAt": [], + "BootstrapAward": [], + "BootstrapAwardFill": [], + "BootstrapBack": [], + "BootstrapBackspace": [], + "BootstrapBackspaceFill": [], + "BootstrapBackspaceReverse": [], + "BootstrapBackspaceReverseFill": [], + "BootstrapBadge3D": [], + "BootstrapBadge3DFill": [], + "BootstrapBadge4K": [], + "BootstrapBadge4KFill": [], + "BootstrapBadge8K": [], + "BootstrapBadge8KFill": [], + "BootstrapBadgeAd": [], + "BootstrapBadgeAdFill": [], + "BootstrapBadgeAr": [], + "BootstrapBadgeArFill": [], + "BootstrapBadgeCc": [], + "BootstrapBadgeCcFill": [], + "BootstrapBadgeHd": [], + "BootstrapBadgeHdFill": [], + "BootstrapBadgeSd": [], + "BootstrapBadgeSdFill": [], + "BootstrapBadgeTm": [], + "BootstrapBadgeTmFill": [], + "BootstrapBadgeVo": [], + "BootstrapBadgeVoFill": [], + "BootstrapBadgeVr": [], + "BootstrapBadgeVrFill": [], + "BootstrapBadgeWc": [], + "BootstrapBadgeWcFill": [], + "BootstrapBag": [], + "BootstrapBagCheck": [], + "BootstrapBagCheckFill": [], + "BootstrapBagDash": [], + "BootstrapBagDashFill": [], + "BootstrapBagFill": [], + "BootstrapBagHeart": [], + "BootstrapBagHeartFill": [], + "BootstrapBagPlus": [], + "BootstrapBagPlusFill": [], + "BootstrapBagX": [], + "BootstrapBagXFill": [], + "BootstrapBalloon": [], + "BootstrapBalloonFill": [], + "BootstrapBalloonHeart": [], + "BootstrapBalloonHeartFill": [], + "BootstrapBandaid": [], + "BootstrapBandaidFill": [], + "BootstrapBank": [], + "BootstrapBank2": [], + "BootstrapBarChart": [], + "BootstrapBarChartFill": [], + "BootstrapBarChartLine": [], + "BootstrapBarChartLineFill": [], + "BootstrapBarChartSteps": [], + "BootstrapBasket": [], + "BootstrapBasket2": [], + "BootstrapBasket2Fill": [], + "BootstrapBasket3": [], + "BootstrapBasket3Fill": [], + "BootstrapBasketFill": [], + "BootstrapBattery": [], + "BootstrapBatteryCharging": [], + "BootstrapBatteryFull": [], + "BootstrapBatteryHalf": [], + "BootstrapBehance": [], + "BootstrapBell": [], + "BootstrapBellFill": [], + "BootstrapBellSlash": [], + "BootstrapBellSlashFill": [], + "BootstrapBezier": [], + "BootstrapBezier2": [], + "BootstrapBicycle": [], + "BootstrapBinoculars": [], + "BootstrapBinocularsFill": [], + "BootstrapBlockquoteLeft": [], + "BootstrapBlockquoteRight": [], + "BootstrapBluetooth": [], + "BootstrapBodyText": [], + "BootstrapBook": [], + "BootstrapBookFill": [], + "BootstrapBookHalf": [], + "BootstrapBookmark": [], + "BootstrapBookmarkCheck": [], + "BootstrapBookmarkCheckFill": [], + "BootstrapBookmarkDash": [], + "BootstrapBookmarkDashFill": [], + "BootstrapBookmarkFill": [], + "BootstrapBookmarkHeart": [], + "BootstrapBookmarkHeartFill": [], + "BootstrapBookmarkPlus": [], + "BootstrapBookmarkPlusFill": [], + "BootstrapBookmarkStar": [], + "BootstrapBookmarkStarFill": [], + "BootstrapBookmarkX": [], + "BootstrapBookmarkXFill": [], + "BootstrapBookmarks": [], + "BootstrapBookmarksFill": [], + "BootstrapBookshelf": [], + "BootstrapBoombox": [], + "BootstrapBoomboxFill": [], + "BootstrapBootstrap": [], + "BootstrapBootstrapFill": [], + "BootstrapBootstrapReboot": [], + "BootstrapBorder": [], + "BootstrapBorderAll": [], + "BootstrapBorderBottom": [], + "BootstrapBorderCenter": [], + "BootstrapBorderInner": [], + "BootstrapBorderLeft": [], + "BootstrapBorderMiddle": [], + "BootstrapBorderOuter": [], + "BootstrapBorderRight": [], + "BootstrapBorderStyle": [], + "BootstrapBorderTop": [], + "BootstrapBorderWidth": [], + "BootstrapBoundingBox": [], + "BootstrapBoundingBoxCircles": [], + "BootstrapBox": [], + "BootstrapBox2": [], + "BootstrapBox2Fill": [], + "BootstrapBox2Heart": [], + "BootstrapBox2HeartFill": [], + "BootstrapBoxArrowDown": [], + "BootstrapBoxArrowDownLeft": [], + "BootstrapBoxArrowDownRight": [], + "BootstrapBoxArrowInDown": [], + "BootstrapBoxArrowInDownLeft": [], + "BootstrapBoxArrowInDownRight": [], + "BootstrapBoxArrowInLeft": [], + "BootstrapBoxArrowInRight": [], + "BootstrapBoxArrowInUp": [], + "BootstrapBoxArrowInUpLeft": [], + "BootstrapBoxArrowInUpRight": [], + "BootstrapBoxArrowLeft": [], + "BootstrapBoxArrowRight": [], + "BootstrapBoxArrowUp": [], + "BootstrapBoxArrowUpLeft": [], + "BootstrapBoxArrowUpRight": [], + "BootstrapBoxFill": [], + "BootstrapBoxSeam": [], + "BootstrapBoxSeamFill": [], + "BootstrapBoxes": [], + "BootstrapBraces": [], + "BootstrapBracesAsterisk": [], + "BootstrapBricks": [], + "BootstrapBriefcase": [], + "BootstrapBriefcaseFill": [], + "BootstrapBrightnessAltHigh": [], + "BootstrapBrightnessAltHighFill": [], + "BootstrapBrightnessAltLow": [], + "BootstrapBrightnessAltLowFill": [], + "BootstrapBrightnessHigh": [], + "BootstrapBrightnessHighFill": [], + "BootstrapBrightnessLow": [], + "BootstrapBrightnessLowFill": [], + "BootstrapBroadcast": [], + "BootstrapBroadcastPin": [], + "BootstrapBrowserChrome": [], + "BootstrapBrowserEdge": [], + "BootstrapBrowserFirefox": [], + "BootstrapBrowserSafari": [], + "BootstrapBrush": [], + "BootstrapBrushFill": [], + "BootstrapBucket": [], + "BootstrapBucketFill": [], + "BootstrapBug": [], + "BootstrapBugFill": [], + "BootstrapBuilding": [], + "BootstrapBuildingAdd": [], + "BootstrapBuildingCheck": [], + "BootstrapBuildingDash": [], + "BootstrapBuildingDown": [], + "BootstrapBuildingExclamation": [], + "BootstrapBuildingFill": [], + "BootstrapBuildingFillAdd": [], + "BootstrapBuildingFillCheck": [], + "BootstrapBuildingFillDash": [], + "BootstrapBuildingFillDown": [], + "BootstrapBuildingFillExclamation": [], + "BootstrapBuildingFillGear": [], + "BootstrapBuildingFillLock": [], + "BootstrapBuildingFillSlash": [], + "BootstrapBuildingFillUp": [], + "BootstrapBuildingFillX": [], + "BootstrapBuildingGear": [], + "BootstrapBuildingLock": [], + "BootstrapBuildingSlash": [], + "BootstrapBuildingUp": [], + "BootstrapBuildingX": [], + "BootstrapBuildings": [], + "BootstrapBuildingsFill": [], + "BootstrapBullseye": [], + "BootstrapBusFront": [], + "BootstrapBusFrontFill": [], + "BootstrapCCircle": [], + "BootstrapCCircleFill": [], + "BootstrapCSquare": [], + "BootstrapCSquareFill": [], + "BootstrapCalculator": [], + "BootstrapCalculatorFill": [], + "BootstrapCalendar": [], + "BootstrapCalendar2": [], + "BootstrapCalendar2Check": [], + "BootstrapCalendar2CheckFill": [], + "BootstrapCalendar2Date": [], + "BootstrapCalendar2DateFill": [], + "BootstrapCalendar2Day": [], + "BootstrapCalendar2DayFill": [], + "BootstrapCalendar2Event": [], + "BootstrapCalendar2EventFill": [], + "BootstrapCalendar2Fill": [], + "BootstrapCalendar2Heart": [], + "BootstrapCalendar2HeartFill": [], + "BootstrapCalendar2Minus": [], + "BootstrapCalendar2MinusFill": [], + "BootstrapCalendar2Month": [], + "BootstrapCalendar2MonthFill": [], + "BootstrapCalendar2Plus": [], + "BootstrapCalendar2PlusFill": [], + "BootstrapCalendar2Range": [], + "BootstrapCalendar2RangeFill": [], + "BootstrapCalendar2Week": [], + "BootstrapCalendar2WeekFill": [], + "BootstrapCalendar2X": [], + "BootstrapCalendar2XFill": [], + "BootstrapCalendar3": [], + "BootstrapCalendar3Event": [], + "BootstrapCalendar3EventFill": [], + "BootstrapCalendar3Fill": [], + "BootstrapCalendar3Range": [], + "BootstrapCalendar3RangeFill": [], + "BootstrapCalendar3Week": [], + "BootstrapCalendar3WeekFill": [], + "BootstrapCalendar4": [], + "BootstrapCalendar4Event": [], + "BootstrapCalendar4Range": [], + "BootstrapCalendar4Week": [], + "BootstrapCalendarCheck": [], + "BootstrapCalendarCheckFill": [], + "BootstrapCalendarDate": [], + "BootstrapCalendarDateFill": [], + "BootstrapCalendarDay": [], + "BootstrapCalendarDayFill": [], + "BootstrapCalendarEvent": [], + "BootstrapCalendarEventFill": [], + "BootstrapCalendarFill": [], + "BootstrapCalendarHeart": [], + "BootstrapCalendarHeartFill": [], + "BootstrapCalendarMinus": [], + "BootstrapCalendarMinusFill": [], + "BootstrapCalendarMonth": [], + "BootstrapCalendarMonthFill": [], + "BootstrapCalendarPlus": [], + "BootstrapCalendarPlusFill": [], + "BootstrapCalendarRange": [], + "BootstrapCalendarRangeFill": [], + "BootstrapCalendarWeek": [], + "BootstrapCalendarWeekFill": [], + "BootstrapCalendarX": [], + "BootstrapCalendarXFill": [], + "BootstrapCamera": [], + "BootstrapCamera2": [], + "BootstrapCameraFill": [], + "BootstrapCameraReels": [], + "BootstrapCameraReelsFill": [], + "BootstrapCameraVideo": [], + "BootstrapCameraVideoFill": [], + "BootstrapCameraVideoOff": [], + "BootstrapCameraVideoOffFill": [], + "BootstrapCapslock": [], + "BootstrapCapslockFill": [], + "BootstrapCapsule": [], + "BootstrapCapsulePill": [], + "BootstrapCarFront": [], + "BootstrapCarFrontFill": [], + "BootstrapCardChecklist": [], + "BootstrapCardHeading": [], + "BootstrapCardImage": [], + "BootstrapCardList": [], + "BootstrapCardText": [], + "BootstrapCaretDown": [], + "BootstrapCaretDownFill": [], + "BootstrapCaretDownSquare": [], + "BootstrapCaretDownSquareFill": [], + "BootstrapCaretLeft": [], + "BootstrapCaretLeftFill": [], + "BootstrapCaretLeftSquare": [], + "BootstrapCaretLeftSquareFill": [], + "BootstrapCaretRight": [], + "BootstrapCaretRightFill": [], + "BootstrapCaretRightSquare": [], + "BootstrapCaretRightSquareFill": [], + "BootstrapCaretUp": [], + "BootstrapCaretUpFill": [], + "BootstrapCaretUpSquare": [], + "BootstrapCaretUpSquareFill": [], + "BootstrapCart": [], + "BootstrapCart2": [], + "BootstrapCart3": [], + "BootstrapCart4": [], + "BootstrapCartCheck": [], + "BootstrapCartCheckFill": [], + "BootstrapCartDash": [], + "BootstrapCartDashFill": [], + "BootstrapCartFill": [], + "BootstrapCartPlus": [], + "BootstrapCartPlusFill": [], + "BootstrapCartX": [], + "BootstrapCartXFill": [], + "BootstrapCash": [], + "BootstrapCashCoin": [], + "BootstrapCashStack": [], + "BootstrapCassette": [], + "BootstrapCassetteFill": [], + "BootstrapCast": [], + "BootstrapCcCircle": [], + "BootstrapCcCircleFill": [], + "BootstrapCcSquare": [], + "BootstrapCcSquareFill": [], + "BootstrapChat": [], + "BootstrapChatDots": [], + "BootstrapChatDotsFill": [], + "BootstrapChatFill": [], + "BootstrapChatHeart": [], + "BootstrapChatHeartFill": [], + "BootstrapChatLeft": [], + "BootstrapChatLeftDots": [], + "BootstrapChatLeftDotsFill": [], + "BootstrapChatLeftFill": [], + "BootstrapChatLeftHeart": [], + "BootstrapChatLeftHeartFill": [], + "BootstrapChatLeftQuote": [], + "BootstrapChatLeftQuoteFill": [], + "BootstrapChatLeftText": [], + "BootstrapChatLeftTextFill": [], + "BootstrapChatQuote": [], + "BootstrapChatQuoteFill": [], + "BootstrapChatRight": [], + "BootstrapChatRightDots": [], + "BootstrapChatRightDotsFill": [], + "BootstrapChatRightFill": [], + "BootstrapChatRightHeart": [], + "BootstrapChatRightHeartFill": [], + "BootstrapChatRightQuote": [], + "BootstrapChatRightQuoteFill": [], + "BootstrapChatRightText": [], + "BootstrapChatRightTextFill": [], + "BootstrapChatSquare": [], + "BootstrapChatSquareDots": [], + "BootstrapChatSquareDotsFill": [], + "BootstrapChatSquareFill": [], + "BootstrapChatSquareHeart": [], + "BootstrapChatSquareHeartFill": [], + "BootstrapChatSquareQuote": [], + "BootstrapChatSquareQuoteFill": [], + "BootstrapChatSquareText": [], + "BootstrapChatSquareTextFill": [], + "BootstrapChatText": [], + "BootstrapChatTextFill": [], + "BootstrapCheck": [], + "BootstrapCheck2": [], + "BootstrapCheck2All": [], + "BootstrapCheck2Circle": [], + "BootstrapCheck2Square": [], + "BootstrapCheckAll": [], + "BootstrapCheckCircle": [], + "BootstrapCheckCircleFill": [], + "BootstrapCheckLg": [], + "BootstrapCheckSquare": [], + "BootstrapCheckSquareFill": [], + "BootstrapChevronBarContract": [], + "BootstrapChevronBarDown": [], + "BootstrapChevronBarExpand": [], + "BootstrapChevronBarLeft": [], + "BootstrapChevronBarRight": [], + "BootstrapChevronBarUp": [], + "BootstrapChevronCompactDown": [], + "BootstrapChevronCompactLeft": [], + "BootstrapChevronCompactRight": [], + "BootstrapChevronCompactUp": [], + "BootstrapChevronContract": [], + "BootstrapChevronDoubleDown": [], + "BootstrapChevronDoubleLeft": [], + "BootstrapChevronDoubleRight": [], + "BootstrapChevronDoubleUp": [], + "BootstrapChevronDown": [], + "BootstrapChevronExpand": [], + "BootstrapChevronLeft": [], + "BootstrapChevronRight": [], + "BootstrapChevronUp": [], + "BootstrapCircle": [], + "BootstrapCircleFill": [], + "BootstrapCircleHalf": [], + "BootstrapCircleSquare": [], + "BootstrapClipboard": [], + "BootstrapClipboard2": [], + "BootstrapClipboard2Check": [], + "BootstrapClipboard2CheckFill": [], + "BootstrapClipboard2Data": [], + "BootstrapClipboard2DataFill": [], + "BootstrapClipboard2Fill": [], + "BootstrapClipboard2Heart": [], + "BootstrapClipboard2HeartFill": [], + "BootstrapClipboard2Minus": [], + "BootstrapClipboard2MinusFill": [], + "BootstrapClipboard2Plus": [], + "BootstrapClipboard2PlusFill": [], + "BootstrapClipboard2Pulse": [], + "BootstrapClipboard2PulseFill": [], + "BootstrapClipboard2X": [], + "BootstrapClipboard2XFill": [], + "BootstrapClipboardCheck": [], + "BootstrapClipboardCheckFill": [], + "BootstrapClipboardData": [], + "BootstrapClipboardDataFill": [], + "BootstrapClipboardFill": [], + "BootstrapClipboardHeart": [], + "BootstrapClipboardHeartFill": [], + "BootstrapClipboardMinus": [], + "BootstrapClipboardMinusFill": [], + "BootstrapClipboardPlus": [], + "BootstrapClipboardPlusFill": [], + "BootstrapClipboardPulse": [], + "BootstrapClipboardX": [], + "BootstrapClipboardXFill": [], + "BootstrapClock": [], + "BootstrapClockFill": [], + "BootstrapClockHistory": [], + "BootstrapCloud": [], + "BootstrapCloudArrowDown": [], + "BootstrapCloudArrowDownFill": [], + "BootstrapCloudArrowUp": [], + "BootstrapCloudArrowUpFill": [], + "BootstrapCloudCheck": [], + "BootstrapCloudCheckFill": [], + "BootstrapCloudDownload": [], + "BootstrapCloudDownloadFill": [], + "BootstrapCloudDrizzle": [], + "BootstrapCloudDrizzleFill": [], + "BootstrapCloudFill": [], + "BootstrapCloudFog": [], + "BootstrapCloudFog2": [], + "BootstrapCloudFog2Fill": [], + "BootstrapCloudFogFill": [], + "BootstrapCloudHail": [], + "BootstrapCloudHailFill": [], + "BootstrapCloudHaze": [], + "BootstrapCloudHaze2": [], + "BootstrapCloudHaze2Fill": [], + "BootstrapCloudHazeFill": [], + "BootstrapCloudLightning": [], + "BootstrapCloudLightningFill": [], + "BootstrapCloudLightningRain": [], + "BootstrapCloudLightningRainFill": [], + "BootstrapCloudMinus": [], + "BootstrapCloudMinusFill": [], + "BootstrapCloudMoon": [], + "BootstrapCloudMoonFill": [], + "BootstrapCloudPlus": [], + "BootstrapCloudPlusFill": [], + "BootstrapCloudRain": [], + "BootstrapCloudRainFill": [], + "BootstrapCloudRainHeavy": [], + "BootstrapCloudRainHeavyFill": [], + "BootstrapCloudSlash": [], + "BootstrapCloudSlashFill": [], + "BootstrapCloudSleet": [], + "BootstrapCloudSleetFill": [], + "BootstrapCloudSnow": [], + "BootstrapCloudSnowFill": [], + "BootstrapCloudSun": [], + "BootstrapCloudSunFill": [], + "BootstrapCloudUpload": [], + "BootstrapCloudUploadFill": [], + "BootstrapClouds": [], + "BootstrapCloudsFill": [], + "BootstrapCloudy": [], + "BootstrapCloudyFill": [], + "BootstrapCode": [], + "BootstrapCodeSlash": [], + "BootstrapCodeSquare": [], + "BootstrapCoin": [], + "BootstrapCollection": [], + "BootstrapCollectionFill": [], + "BootstrapCollectionPlay": [], + "BootstrapCollectionPlayFill": [], + "BootstrapColumns": [], + "BootstrapColumnsGap": [], + "BootstrapCommand": [], + "BootstrapCompass": [], + "BootstrapCompassFill": [], + "BootstrapCone": [], + "BootstrapConeStriped": [], + "BootstrapController": [], + "BootstrapCpu": [], + "BootstrapCpuFill": [], + "BootstrapCreditCard": [], + "BootstrapCreditCard2Back": [], + "BootstrapCreditCard2BackFill": [], + "BootstrapCreditCard2Front": [], + "BootstrapCreditCard2FrontFill": [], + "BootstrapCreditCardFill": [], + "BootstrapCrop": [], + "BootstrapCup": [], + "BootstrapCupFill": [], + "BootstrapCupHot": [], + "BootstrapCupHotFill": [], + "BootstrapCupStraw": [], + "BootstrapCurrencyBitcoin": [], + "BootstrapCurrencyDollar": [], + "BootstrapCurrencyEuro": [], + "BootstrapCurrencyExchange": [], + "BootstrapCurrencyPound": [], + "BootstrapCurrencyRupee": [], + "BootstrapCurrencyYen": [], + "BootstrapCursor": [], + "BootstrapCursorFill": [], + "BootstrapCursorText": [], + "BootstrapDash": [], + "BootstrapDashCircle": [], + "BootstrapDashCircleDotted": [], + "BootstrapDashCircleFill": [], + "BootstrapDashLg": [], + "BootstrapDashSquare": [], + "BootstrapDashSquareDotted": [], + "BootstrapDashSquareFill": [], + "BootstrapDatabase": [], + "BootstrapDatabaseAdd": [], + "BootstrapDatabaseCheck": [], + "BootstrapDatabaseDash": [], + "BootstrapDatabaseDown": [], + "BootstrapDatabaseExclamation": [], + "BootstrapDatabaseFill": [], + "BootstrapDatabaseFillAdd": [], + "BootstrapDatabaseFillCheck": [], + "BootstrapDatabaseFillDash": [], + "BootstrapDatabaseFillDown": [], + "BootstrapDatabaseFillExclamation": [], + "BootstrapDatabaseFillGear": [], + "BootstrapDatabaseFillLock": [], + "BootstrapDatabaseFillSlash": [], + "BootstrapDatabaseFillUp": [], + "BootstrapDatabaseFillX": [], + "BootstrapDatabaseGear": [], + "BootstrapDatabaseLock": [], + "BootstrapDatabaseSlash": [], + "BootstrapDatabaseUp": [], + "BootstrapDatabaseX": [], + "BootstrapDeviceHdd": [], + "BootstrapDeviceHddFill": [], + "BootstrapDeviceSsd": [], + "BootstrapDeviceSsdFill": [], + "BootstrapDiagram2": [], + "BootstrapDiagram2Fill": [], + "BootstrapDiagram3": [], + "BootstrapDiagram3Fill": [], + "BootstrapDiamond": [], + "BootstrapDiamondFill": [], + "BootstrapDiamondHalf": [], + "BootstrapDice1": [], + "BootstrapDice1Fill": [], + "BootstrapDice2": [], + "BootstrapDice2Fill": [], + "BootstrapDice3": [], + "BootstrapDice3Fill": [], + "BootstrapDice4": [], + "BootstrapDice4Fill": [], + "BootstrapDice5": [], + "BootstrapDice5Fill": [], + "BootstrapDice6": [], + "BootstrapDice6Fill": [], + "BootstrapDisc": [], + "BootstrapDiscFill": [], + "BootstrapDiscord": [], + "BootstrapDisplay": [], + "BootstrapDisplayFill": [], + "BootstrapDisplayport": [], + "BootstrapDisplayportFill": [], + "BootstrapDistributeHorizontal": [], + "BootstrapDistributeVertical": [], + "BootstrapDoorClosed": [], + "BootstrapDoorClosedFill": [], + "BootstrapDoorOpen": [], + "BootstrapDoorOpenFill": [], + "BootstrapDot": [], + "BootstrapDownload": [], + "BootstrapDpad": [], + "BootstrapDpadFill": [], + "BootstrapDribbble": [], + "BootstrapDropbox": [], + "BootstrapDroplet": [], + "BootstrapDropletFill": [], + "BootstrapDropletHalf": [], + "BootstrapEar": [], + "BootstrapEarFill": [], + "BootstrapEarbuds": [], + "BootstrapEasel": [], + "BootstrapEasel2": [], + "BootstrapEasel2Fill": [], + "BootstrapEasel3": [], + "BootstrapEasel3Fill": [], + "BootstrapEaselFill": [], + "BootstrapEgg": [], + "BootstrapEggFill": [], + "BootstrapEggFried": [], + "BootstrapEject": [], + "BootstrapEjectFill": [], + "BootstrapEmojiAngry": [], + "BootstrapEmojiAngryFill": [], + "BootstrapEmojiDizzy": [], + "BootstrapEmojiDizzyFill": [], + "BootstrapEmojiExpressionless": [], + "BootstrapEmojiExpressionlessFill": [], + "BootstrapEmojiFrown": [], + "BootstrapEmojiFrownFill": [], + "BootstrapEmojiHeartEyes": [], + "BootstrapEmojiHeartEyesFill": [], + "BootstrapEmojiKiss": [], + "BootstrapEmojiKissFill": [], + "BootstrapEmojiLaughing": [], + "BootstrapEmojiLaughingFill": [], + "BootstrapEmojiNeutral": [], + "BootstrapEmojiNeutralFill": [], + "BootstrapEmojiSmile": [], + "BootstrapEmojiSmileFill": [], + "BootstrapEmojiSmileUpsideDown": [], + "BootstrapEmojiSmileUpsideDownFill": [], + "BootstrapEmojiSunglasses": [], + "BootstrapEmojiSunglassesFill": [], + "BootstrapEmojiWink": [], + "BootstrapEmojiWinkFill": [], + "BootstrapEnvelope": [], + "BootstrapEnvelopeAt": [], + "BootstrapEnvelopeAtFill": [], + "BootstrapEnvelopeCheck": [], + "BootstrapEnvelopeCheckFill": [], + "BootstrapEnvelopeDash": [], + "BootstrapEnvelopeDashFill": [], + "BootstrapEnvelopeExclamation": [], + "BootstrapEnvelopeExclamationFill": [], + "BootstrapEnvelopeFill": [], + "BootstrapEnvelopeHeart": [], + "BootstrapEnvelopeHeartFill": [], + "BootstrapEnvelopeOpen": [], + "BootstrapEnvelopeOpenFill": [], + "BootstrapEnvelopeOpenHeart": [], + "BootstrapEnvelopeOpenHeartFill": [], + "BootstrapEnvelopePaper": [], + "BootstrapEnvelopePaperFill": [], + "BootstrapEnvelopePaperHeart": [], + "BootstrapEnvelopePaperHeartFill": [], + "BootstrapEnvelopePlus": [], + "BootstrapEnvelopePlusFill": [], + "BootstrapEnvelopeSlash": [], + "BootstrapEnvelopeSlashFill": [], + "BootstrapEnvelopeX": [], + "BootstrapEnvelopeXFill": [], + "BootstrapEraser": [], + "BootstrapEraserFill": [], + "BootstrapEscape": [], + "BootstrapEthernet": [], + "BootstrapEvFront": [], + "BootstrapEvFrontFill": [], + "BootstrapEvStation": [], + "BootstrapEvStationFill": [], + "BootstrapExclamation": [], + "BootstrapExclamationCircle": [], + "BootstrapExclamationCircleFill": [], + "BootstrapExclamationDiamond": [], + "BootstrapExclamationDiamondFill": [], + "BootstrapExclamationLg": [], + "BootstrapExclamationOctagon": [], + "BootstrapExclamationOctagonFill": [], + "BootstrapExclamationSquare": [], + "BootstrapExclamationSquareFill": [], + "BootstrapExclamationTriangle": [], + "BootstrapExclamationTriangleFill": [], + "BootstrapExclude": [], + "BootstrapExplicit": [], + "BootstrapExplicitFill": [], + "BootstrapEye": [], + "BootstrapEyeFill": [], + "BootstrapEyeSlash": [], + "BootstrapEyeSlashFill": [], + "BootstrapEyedropper": [], + "BootstrapEyeglasses": [], + "BootstrapFacebook": [], + "BootstrapFan": [], + "BootstrapFastForward": [], + "BootstrapFastForwardBtn": [], + "BootstrapFastForwardBtnFill": [], + "BootstrapFastForwardCircle": [], + "BootstrapFastForwardCircleFill": [], + "BootstrapFastForwardFill": [], + "BootstrapFile": [], + "BootstrapFileArrowDown": [], + "BootstrapFileArrowDownFill": [], + "BootstrapFileArrowUp": [], + "BootstrapFileArrowUpFill": [], + "BootstrapFileBarGraph": [], + "BootstrapFileBarGraphFill": [], + "BootstrapFileBinary": [], + "BootstrapFileBinaryFill": [], + "BootstrapFileBreak": [], + "BootstrapFileBreakFill": [], + "BootstrapFileCheck": [], + "BootstrapFileCheckFill": [], + "BootstrapFileCode": [], + "BootstrapFileCodeFill": [], + "BootstrapFileDiff": [], + "BootstrapFileDiffFill": [], + "BootstrapFileEarmark": [], + "BootstrapFileEarmarkArrowDown": [], + "BootstrapFileEarmarkArrowDownFill": [], + "BootstrapFileEarmarkArrowUp": [], + "BootstrapFileEarmarkArrowUpFill": [], + "BootstrapFileEarmarkBarGraph": [], + "BootstrapFileEarmarkBarGraphFill": [], + "BootstrapFileEarmarkBinary": [], + "BootstrapFileEarmarkBinaryFill": [], + "BootstrapFileEarmarkBreak": [], + "BootstrapFileEarmarkBreakFill": [], + "BootstrapFileEarmarkCheck": [], + "BootstrapFileEarmarkCheckFill": [], + "BootstrapFileEarmarkCode": [], + "BootstrapFileEarmarkCodeFill": [], + "BootstrapFileEarmarkDiff": [], + "BootstrapFileEarmarkDiffFill": [], + "BootstrapFileEarmarkEasel": [], + "BootstrapFileEarmarkEaselFill": [], + "BootstrapFileEarmarkExcel": [], + "BootstrapFileEarmarkExcelFill": [], + "BootstrapFileEarmarkFill": [], + "BootstrapFileEarmarkFont": [], + "BootstrapFileEarmarkFontFill": [], + "BootstrapFileEarmarkImage": [], + "BootstrapFileEarmarkImageFill": [], + "BootstrapFileEarmarkLock": [], + "BootstrapFileEarmarkLock2": [], + "BootstrapFileEarmarkLock2Fill": [], + "BootstrapFileEarmarkLockFill": [], + "BootstrapFileEarmarkMedical": [], + "BootstrapFileEarmarkMedicalFill": [], + "BootstrapFileEarmarkMinus": [], + "BootstrapFileEarmarkMinusFill": [], + "BootstrapFileEarmarkMusic": [], + "BootstrapFileEarmarkMusicFill": [], + "BootstrapFileEarmarkPdf": [], + "BootstrapFileEarmarkPdfFill": [], + "BootstrapFileEarmarkPerson": [], + "BootstrapFileEarmarkPersonFill": [], + "BootstrapFileEarmarkPlay": [], + "BootstrapFileEarmarkPlayFill": [], + "BootstrapFileEarmarkPlus": [], + "BootstrapFileEarmarkPlusFill": [], + "BootstrapFileEarmarkPost": [], + "BootstrapFileEarmarkPostFill": [], + "BootstrapFileEarmarkPpt": [], + "BootstrapFileEarmarkPptFill": [], + "BootstrapFileEarmarkRichtext": [], + "BootstrapFileEarmarkRichtextFill": [], + "BootstrapFileEarmarkRuled": [], + "BootstrapFileEarmarkRuledFill": [], + "BootstrapFileEarmarkSlides": [], + "BootstrapFileEarmarkSlidesFill": [], + "BootstrapFileEarmarkSpreadsheet": [], + "BootstrapFileEarmarkSpreadsheetFill": [], + "BootstrapFileEarmarkText": [], + "BootstrapFileEarmarkTextFill": [], + "BootstrapFileEarmarkWord": [], + "BootstrapFileEarmarkWordFill": [], + "BootstrapFileEarmarkX": [], + "BootstrapFileEarmarkXFill": [], + "BootstrapFileEarmarkZip": [], + "BootstrapFileEarmarkZipFill": [], + "BootstrapFileEasel": [], + "BootstrapFileEaselFill": [], + "BootstrapFileExcel": [], + "BootstrapFileExcelFill": [], + "BootstrapFileFill": [], + "BootstrapFileFont": [], + "BootstrapFileFontFill": [], + "BootstrapFileImage": [], + "BootstrapFileImageFill": [], + "BootstrapFileLock": [], + "BootstrapFileLock2": [], + "BootstrapFileLock2Fill": [], + "BootstrapFileLockFill": [], + "BootstrapFileMedical": [], + "BootstrapFileMedicalFill": [], + "BootstrapFileMinus": [], + "BootstrapFileMinusFill": [], + "BootstrapFileMusic": [], + "BootstrapFileMusicFill": [], + "BootstrapFilePdf": [], + "BootstrapFilePdfFill": [], + "BootstrapFilePerson": [], + "BootstrapFilePersonFill": [], + "BootstrapFilePlay": [], + "BootstrapFilePlayFill": [], + "BootstrapFilePlus": [], + "BootstrapFilePlusFill": [], + "BootstrapFilePost": [], + "BootstrapFilePostFill": [], + "BootstrapFilePpt": [], + "BootstrapFilePptFill": [], + "BootstrapFileRichtext": [], + "BootstrapFileRichtextFill": [], + "BootstrapFileRuled": [], + "BootstrapFileRuledFill": [], + "BootstrapFileSlides": [], + "BootstrapFileSlidesFill": [], + "BootstrapFileSpreadsheet": [], + "BootstrapFileSpreadsheetFill": [], + "BootstrapFileText": [], + "BootstrapFileTextFill": [], + "BootstrapFileWord": [], + "BootstrapFileWordFill": [], + "BootstrapFileX": [], + "BootstrapFileXFill": [], + "BootstrapFileZip": [], + "BootstrapFileZipFill": [], + "BootstrapFiles": [], + "BootstrapFilesAlt": [], + "BootstrapFiletypeAac": [], + "BootstrapFiletypeAi": [], + "BootstrapFiletypeBmp": [], + "BootstrapFiletypeCs": [], + "BootstrapFiletypeCss": [], + "BootstrapFiletypeCsv": [], + "BootstrapFiletypeDoc": [], + "BootstrapFiletypeDocx": [], + "BootstrapFiletypeExe": [], + "BootstrapFiletypeGif": [], + "BootstrapFiletypeHeic": [], + "BootstrapFiletypeHtml": [], + "BootstrapFiletypeJava": [], + "BootstrapFiletypeJpg": [], + "BootstrapFiletypeJs": [], + "BootstrapFiletypeJson": [], + "BootstrapFiletypeJsx": [], + "BootstrapFiletypeKey": [], + "BootstrapFiletypeM4P": [], + "BootstrapFiletypeMd": [], + "BootstrapFiletypeMdx": [], + "BootstrapFiletypeMov": [], + "BootstrapFiletypeMp3": [], + "BootstrapFiletypeMp4": [], + "BootstrapFiletypeOtf": [], + "BootstrapFiletypePdf": [], + "BootstrapFiletypePhp": [], + "BootstrapFiletypePng": [], + "BootstrapFiletypePpt": [], + "BootstrapFiletypePptx": [], + "BootstrapFiletypePsd": [], + "BootstrapFiletypePy": [], + "BootstrapFiletypeRaw": [], + "BootstrapFiletypeRb": [], + "BootstrapFiletypeSass": [], + "BootstrapFiletypeScss": [], + "BootstrapFiletypeSh": [], + "BootstrapFiletypeSql": [], + "BootstrapFiletypeSvg": [], + "BootstrapFiletypeTiff": [], + "BootstrapFiletypeTsx": [], + "BootstrapFiletypeTtf": [], + "BootstrapFiletypeTxt": [], + "BootstrapFiletypeWav": [], + "BootstrapFiletypeWoff": [], + "BootstrapFiletypeXls": [], + "BootstrapFiletypeXlsx": [], + "BootstrapFiletypeXml": [], + "BootstrapFiletypeYml": [], + "BootstrapFilm": [], + "BootstrapFilter": [], + "BootstrapFilterCircle": [], + "BootstrapFilterCircleFill": [], + "BootstrapFilterLeft": [], + "BootstrapFilterRight": [], + "BootstrapFilterSquare": [], + "BootstrapFilterSquareFill": [], + "BootstrapFingerprint": [], + "BootstrapFire": [], + "BootstrapFlag": [], + "BootstrapFlagFill": [], + "BootstrapFlower1": [], + "BootstrapFlower2": [], + "BootstrapFlower3": [], + "BootstrapFolder": [], + "BootstrapFolder2": [], + "BootstrapFolder2Open": [], + "BootstrapFolderCheck": [], + "BootstrapFolderFill": [], + "BootstrapFolderMinus": [], + "BootstrapFolderPlus": [], + "BootstrapFolderSymlink": [], + "BootstrapFolderSymlinkFill": [], + "BootstrapFolderX": [], + "BootstrapFonts": [], + "BootstrapForward": [], + "BootstrapForwardFill": [], + "BootstrapFront": [], + "BootstrapFuelPump": [], + "BootstrapFuelPumpDiesel": [], + "BootstrapFuelPumpDieselFill": [], + "BootstrapFuelPumpFill": [], + "BootstrapFullscreen": [], + "BootstrapFullscreenExit": [], + "BootstrapFunnel": [], + "BootstrapFunnelFill": [], + "BootstrapGear": [], + "BootstrapGearFill": [], + "BootstrapGearWide": [], + "BootstrapGearWideConnected": [], + "BootstrapGem": [], + "BootstrapGenderAmbiguous": [], + "BootstrapGenderFemale": [], + "BootstrapGenderMale": [], + "BootstrapGenderTrans": [], + "BootstrapGeo": [], + "BootstrapGeoAlt": [], + "BootstrapGeoAltFill": [], + "BootstrapGeoFill": [], + "BootstrapGift": [], + "BootstrapGiftFill": [], + "BootstrapGit": [], + "BootstrapGithub": [], + "BootstrapGlobe": [], + "BootstrapGlobe2": [], + "BootstrapGlobeAmericas": [], + "BootstrapGlobeAsiaAustralia": [], + "BootstrapGlobeCentralSouthAsia": [], + "BootstrapGlobeEuropeAfrica": [], + "BootstrapGoogle": [], + "BootstrapGooglePlay": [], + "BootstrapGpuCard": [], + "BootstrapGraphDown": [], + "BootstrapGraphDownArrow": [], + "BootstrapGraphUp": [], + "BootstrapGraphUpArrow": [], + "BootstrapGrid": [], + "BootstrapGrid1X2": [], + "BootstrapGrid1X2Fill": [], + "BootstrapGrid3X2": [], + "BootstrapGrid3X2Gap": [], + "BootstrapGrid3X2GapFill": [], + "BootstrapGrid3X3": [], + "BootstrapGrid3X3Gap": [], + "BootstrapGrid3X3GapFill": [], + "BootstrapGridFill": [], + "BootstrapGripHorizontal": [], + "BootstrapGripVertical": [], + "BootstrapHCircle": [], + "BootstrapHCircleFill": [], + "BootstrapHSquare": [], + "BootstrapHSquareFill": [], + "BootstrapHammer": [], + "BootstrapHandIndex": [], + "BootstrapHandIndexFill": [], + "BootstrapHandIndexThumb": [], + "BootstrapHandIndexThumbFill": [], + "BootstrapHandThumbsDown": [], + "BootstrapHandThumbsDownFill": [], + "BootstrapHandThumbsUp": [], + "BootstrapHandThumbsUpFill": [], + "BootstrapHandbag": [], + "BootstrapHandbagFill": [], + "BootstrapHash": [], + "BootstrapHdd": [], + "BootstrapHddFill": [], + "BootstrapHddNetwork": [], + "BootstrapHddNetworkFill": [], + "BootstrapHddRack": [], + "BootstrapHddRackFill": [], + "BootstrapHddStack": [], + "BootstrapHddStackFill": [], + "BootstrapHdmi": [], + "BootstrapHdmiFill": [], + "BootstrapHeadphones": [], + "BootstrapHeadset": [], + "BootstrapHeadsetVr": [], + "BootstrapHeart": [], + "BootstrapHeartArrow": [], + "BootstrapHeartFill": [], + "BootstrapHeartHalf": [], + "BootstrapHeartPulse": [], + "BootstrapHeartPulseFill": [], + "BootstrapHeartbreak": [], + "BootstrapHeartbreakFill": [], + "BootstrapHearts": [], + "BootstrapHeptagon": [], + "BootstrapHeptagonFill": [], + "BootstrapHeptagonHalf": [], + "BootstrapHexagon": [], + "BootstrapHexagonFill": [], + "BootstrapHexagonHalf": [], + "BootstrapHospital": [], + "BootstrapHospitalFill": [], + "BootstrapHourglass": [], + "BootstrapHourglassBottom": [], + "BootstrapHourglassSplit": [], + "BootstrapHourglassTop": [], + "BootstrapHouse": [], + "BootstrapHouseAdd": [], + "BootstrapHouseAddFill": [], + "BootstrapHouseCheck": [], + "BootstrapHouseCheckFill": [], + "BootstrapHouseDash": [], + "BootstrapHouseDashFill": [], + "BootstrapHouseDoor": [], + "BootstrapHouseDoorFill": [], + "BootstrapHouseDown": [], + "BootstrapHouseDownFill": [], + "BootstrapHouseExclamation": [], + "BootstrapHouseExclamationFill": [], + "BootstrapHouseFill": [], + "BootstrapHouseGear": [], + "BootstrapHouseGearFill": [], + "BootstrapHouseHeart": [], + "BootstrapHouseHeartFill": [], + "BootstrapHouseLock": [], + "BootstrapHouseLockFill": [], + "BootstrapHouseSlash": [], + "BootstrapHouseSlashFill": [], + "BootstrapHouseUp": [], + "BootstrapHouseUpFill": [], + "BootstrapHouseX": [], + "BootstrapHouseXFill": [], + "BootstrapHouses": [], + "BootstrapHousesFill": [], + "BootstrapHr": [], + "BootstrapHurricane": [], + "BootstrapHypnotize": [], + "BootstrapImage": [], + "BootstrapImageAlt": [], + "BootstrapImageFill": [], + "BootstrapImages": [], + "BootstrapInbox": [], + "BootstrapInboxFill": [], + "BootstrapInboxes": [], + "BootstrapInboxesFill": [], + "BootstrapIncognito": [], + "BootstrapIndent": [], + "BootstrapInfinity": [], + "BootstrapInfo": [], + "BootstrapInfoCircle": [], + "BootstrapInfoCircleFill": [], + "BootstrapInfoLg": [], + "BootstrapInfoSquare": [], + "BootstrapInfoSquareFill": [], + "BootstrapInputCursor": [], + "BootstrapInputCursorText": [], + "BootstrapInstagram": [], + "BootstrapIntersect": [], + "BootstrapJournal": [], + "BootstrapJournalAlbum": [], + "BootstrapJournalArrowDown": [], + "BootstrapJournalArrowUp": [], + "BootstrapJournalBookmark": [], + "BootstrapJournalBookmarkFill": [], + "BootstrapJournalCheck": [], + "BootstrapJournalCode": [], + "BootstrapJournalMedical": [], + "BootstrapJournalMinus": [], + "BootstrapJournalPlus": [], + "BootstrapJournalRichtext": [], + "BootstrapJournalText": [], + "BootstrapJournalX": [], + "BootstrapJournals": [], + "BootstrapJoystick": [], + "BootstrapJustify": [], + "BootstrapJustifyLeft": [], + "BootstrapJustifyRight": [], + "BootstrapKanban": [], + "BootstrapKanbanFill": [], + "BootstrapKey": [], + "BootstrapKeyFill": [], + "BootstrapKeyboard": [], + "BootstrapKeyboardFill": [], + "BootstrapLadder": [], + "BootstrapLamp": [], + "BootstrapLampFill": [], + "BootstrapLaptop": [], + "BootstrapLaptopFill": [], + "BootstrapLayerBackward": [], + "BootstrapLayerForward": [], + "BootstrapLayers": [], + "BootstrapLayersFill": [], + "BootstrapLayersHalf": [], + "BootstrapLayoutSidebar": [], + "BootstrapLayoutSidebarInset": [], + "BootstrapLayoutSidebarInsetReverse": [], + "BootstrapLayoutSidebarReverse": [], + "BootstrapLayoutSplit": [], + "BootstrapLayoutTextSidebar": [], + "BootstrapLayoutTextSidebarReverse": [], + "BootstrapLayoutTextWindow": [], + "BootstrapLayoutTextWindowReverse": [], + "BootstrapLayoutThreeColumns": [], + "BootstrapLayoutWtf": [], + "BootstrapLifePreserver": [], + "BootstrapLightbulb": [], + "BootstrapLightbulbFill": [], + "BootstrapLightbulbOff": [], + "BootstrapLightbulbOffFill": [], + "BootstrapLightning": [], + "BootstrapLightningCharge": [], + "BootstrapLightningChargeFill": [], + "BootstrapLightningFill": [], + "BootstrapLine": [], + "BootstrapLink": [], + "BootstrapLink45Deg": [], + "BootstrapLinkedin": [], + "BootstrapList": [], + "BootstrapListCheck": [], + "BootstrapListColumns": [], + "BootstrapListColumnsReverse": [], + "BootstrapListNested": [], + "BootstrapListOl": [], + "BootstrapListStars": [], + "BootstrapListTask": [], + "BootstrapListUl": [], + "BootstrapLock": [], + "BootstrapLockFill": [], + "BootstrapLungs": [], + "BootstrapLungsFill": [], + "BootstrapMagic": [], + "BootstrapMagnet": [], + "BootstrapMagnetFill": [], + "BootstrapMailbox": [], + "BootstrapMailbox2": [], + "BootstrapMap": [], + "BootstrapMapFill": [], + "BootstrapMarkdown": [], + "BootstrapMarkdownFill": [], + "BootstrapMask": [], + "BootstrapMastodon": [], + "BootstrapMedium": [], + "BootstrapMegaphone": [], + "BootstrapMegaphoneFill": [], + "BootstrapMemory": [], + "BootstrapMenuApp": [], + "BootstrapMenuAppFill": [], + "BootstrapMenuButton": [], + "BootstrapMenuButtonFill": [], + "BootstrapMenuButtonWide": [], + "BootstrapMenuButtonWideFill": [], + "BootstrapMenuDown": [], + "BootstrapMenuUp": [], + "BootstrapMessenger": [], + "BootstrapMeta": [], + "BootstrapMic": [], + "BootstrapMicFill": [], + "BootstrapMicMute": [], + "BootstrapMicMuteFill": [], + "BootstrapMicrosoft": [], + "BootstrapMicrosoftTeams": [], + "BootstrapMinecart": [], + "BootstrapMinecartLoaded": [], + "BootstrapModem": [], + "BootstrapModemFill": [], + "BootstrapMoisture": [], + "BootstrapMoon": [], + "BootstrapMoonFill": [], + "BootstrapMoonStars": [], + "BootstrapMoonStarsFill": [], + "BootstrapMortarboard": [], + "BootstrapMortarboardFill": [], + "BootstrapMotherboard": [], + "BootstrapMotherboardFill": [], + "BootstrapMouse": [], + "BootstrapMouse2": [], + "BootstrapMouse2Fill": [], + "BootstrapMouse3": [], + "BootstrapMouse3Fill": [], + "BootstrapMouseFill": [], + "BootstrapMusicNote": [], + "BootstrapMusicNoteBeamed": [], + "BootstrapMusicNoteList": [], + "BootstrapMusicPlayer": [], + "BootstrapMusicPlayerFill": [], + "BootstrapNewspaper": [], + "BootstrapNintendoSwitch": [], + "BootstrapNodeMinus": [], + "BootstrapNodeMinusFill": [], + "BootstrapNodePlus": [], + "BootstrapNodePlusFill": [], + "BootstrapNut": [], + "BootstrapNutFill": [], + "BootstrapNvidia": [], + "BootstrapOctagon": [], + "BootstrapOctagonFill": [], + "BootstrapOctagonHalf": [], + "BootstrapOpticalAudio": [], + "BootstrapOpticalAudioFill": [], + "BootstrapOption": [], + "BootstrapOutlet": [], + "BootstrapPCircle": [], + "BootstrapPCircleFill": [], + "BootstrapPSquare": [], + "BootstrapPSquareFill": [], + "BootstrapPaintBucket": [], + "BootstrapPalette": [], + "BootstrapPalette2": [], + "BootstrapPaletteFill": [], + "BootstrapPaperclip": [], + "BootstrapParagraph": [], + "BootstrapPass": [], + "BootstrapPassFill": [], + "BootstrapPatchCheck": [], + "BootstrapPatchCheckFill": [], + "BootstrapPatchExclamation": [], + "BootstrapPatchExclamationFill": [], + "BootstrapPatchMinus": [], + "BootstrapPatchMinusFill": [], + "BootstrapPatchPlus": [], + "BootstrapPatchPlusFill": [], + "BootstrapPatchQuestion": [], + "BootstrapPatchQuestionFill": [], + "BootstrapPause": [], + "BootstrapPauseBtn": [], + "BootstrapPauseBtnFill": [], + "BootstrapPauseCircle": [], + "BootstrapPauseCircleFill": [], + "BootstrapPauseFill": [], + "BootstrapPaypal": [], + "BootstrapPc": [], + "BootstrapPcDisplay": [], + "BootstrapPcDisplayHorizontal": [], + "BootstrapPcHorizontal": [], + "BootstrapPciCard": [], + "BootstrapPeace": [], + "BootstrapPeaceFill": [], + "BootstrapPen": [], + "BootstrapPenFill": [], + "BootstrapPencil": [], + "BootstrapPencilFill": [], + "BootstrapPencilSquare": [], + "BootstrapPentagon": [], + "BootstrapPentagonFill": [], + "BootstrapPentagonHalf": [], + "BootstrapPeople": [], + "BootstrapPeopleFill": [], + "BootstrapPercent": [], + "BootstrapPerson": [], + "BootstrapPersonAdd": [], + "BootstrapPersonBadge": [], + "BootstrapPersonBadgeFill": [], + "BootstrapPersonBoundingBox": [], + "BootstrapPersonCheck": [], + "BootstrapPersonCheckFill": [], + "BootstrapPersonCircle": [], + "BootstrapPersonDash": [], + "BootstrapPersonDashFill": [], + "BootstrapPersonDown": [], + "BootstrapPersonExclamation": [], + "BootstrapPersonFill": [], + "BootstrapPersonFillAdd": [], + "BootstrapPersonFillCheck": [], + "BootstrapPersonFillDash": [], + "BootstrapPersonFillDown": [], + "BootstrapPersonFillExclamation": [], + "BootstrapPersonFillGear": [], + "BootstrapPersonFillLock": [], + "BootstrapPersonFillSlash": [], + "BootstrapPersonFillUp": [], + "BootstrapPersonFillX": [], + "BootstrapPersonGear": [], + "BootstrapPersonHeart": [], + "BootstrapPersonHearts": [], + "BootstrapPersonLinesFill": [], + "BootstrapPersonLock": [], + "BootstrapPersonPlus": [], + "BootstrapPersonPlusFill": [], + "BootstrapPersonRolodex": [], + "BootstrapPersonSlash": [], + "BootstrapPersonSquare": [], + "BootstrapPersonUp": [], + "BootstrapPersonVcard": [], + "BootstrapPersonVcardFill": [], + "BootstrapPersonVideo": [], + "BootstrapPersonVideo2": [], + "BootstrapPersonVideo3": [], + "BootstrapPersonWorkspace": [], + "BootstrapPersonX": [], + "BootstrapPersonXFill": [], + "BootstrapPhone": [], + "BootstrapPhoneFill": [], + "BootstrapPhoneFlip": [], + "BootstrapPhoneLandscape": [], + "BootstrapPhoneLandscapeFill": [], + "BootstrapPhoneVibrate": [], + "BootstrapPhoneVibrateFill": [], + "BootstrapPieChart": [], + "BootstrapPieChartFill": [], + "BootstrapPiggyBank": [], + "BootstrapPiggyBankFill": [], + "BootstrapPin": [], + "BootstrapPinAngle": [], + "BootstrapPinAngleFill": [], + "BootstrapPinFill": [], + "BootstrapPinMap": [], + "BootstrapPinMapFill": [], + "BootstrapPinterest": [], + "BootstrapPip": [], + "BootstrapPipFill": [], + "BootstrapPlay": [], + "BootstrapPlayBtn": [], + "BootstrapPlayBtnFill": [], + "BootstrapPlayCircle": [], + "BootstrapPlayCircleFill": [], + "BootstrapPlayFill": [], + "BootstrapPlaystation": [], + "BootstrapPlug": [], + "BootstrapPlugFill": [], + "BootstrapPlugin": [], + "BootstrapPlus": [], + "BootstrapPlusCircle": [], + "BootstrapPlusCircleDotted": [], + "BootstrapPlusCircleFill": [], + "BootstrapPlusLg": [], + "BootstrapPlusSlashMinus": [], + "BootstrapPlusSquare": [], + "BootstrapPlusSquareDotted": [], + "BootstrapPlusSquareFill": [], + "BootstrapPostage": [], + "BootstrapPostageFill": [], + "BootstrapPostageHeart": [], + "BootstrapPostageHeartFill": [], + "BootstrapPostcard": [], + "BootstrapPostcardFill": [], + "BootstrapPostcardHeart": [], + "BootstrapPostcardHeartFill": [], + "BootstrapPower": [], + "BootstrapPrescription": [], + "BootstrapPrescription2": [], + "BootstrapPrinter": [], + "BootstrapPrinterFill": [], + "BootstrapProjector": [], + "BootstrapProjectorFill": [], + "BootstrapPuzzle": [], + "BootstrapPuzzleFill": [], + "BootstrapQrCode": [], + "BootstrapQrCodeScan": [], + "BootstrapQuestion": [], + "BootstrapQuestionCircle": [], + "BootstrapQuestionCircleFill": [], + "BootstrapQuestionDiamond": [], + "BootstrapQuestionDiamondFill": [], + "BootstrapQuestionLg": [], + "BootstrapQuestionOctagon": [], + "BootstrapQuestionOctagonFill": [], + "BootstrapQuestionSquare": [], + "BootstrapQuestionSquareFill": [], + "BootstrapQuora": [], + "BootstrapQuote": [], + "BootstrapRCircle": [], + "BootstrapRCircleFill": [], + "BootstrapRSquare": [], + "BootstrapRSquareFill": [], + "BootstrapRadioactive": [], + "BootstrapRainbow": [], + "BootstrapReceipt": [], + "BootstrapReceiptCutoff": [], + "BootstrapReception0": [], + "BootstrapReception1": [], + "BootstrapReception2": [], + "BootstrapReception3": [], + "BootstrapReception4": [], + "BootstrapRecord": [], + "BootstrapRecord2": [], + "BootstrapRecord2Fill": [], + "BootstrapRecordBtn": [], + "BootstrapRecordBtnFill": [], + "BootstrapRecordCircle": [], + "BootstrapRecordCircleFill": [], + "BootstrapRecordFill": [], + "BootstrapRecycle": [], + "BootstrapReddit": [], + "BootstrapRegex": [], + "BootstrapRepeat": [], + "BootstrapRepeat1": [], + "BootstrapReply": [], + "BootstrapReplyAll": [], + "BootstrapReplyAllFill": [], + "BootstrapReplyFill": [], + "BootstrapRewind": [], + "BootstrapRewindBtn": [], + "BootstrapRewindBtnFill": [], + "BootstrapRewindCircle": [], + "BootstrapRewindCircleFill": [], + "BootstrapRewindFill": [], + "BootstrapRobot": [], + "BootstrapRocket": [], + "BootstrapRocketFill": [], + "BootstrapRocketTakeoff": [], + "BootstrapRocketTakeoffFill": [], + "BootstrapRouter": [], + "BootstrapRouterFill": [], + "BootstrapRss": [], + "BootstrapRssFill": [], + "BootstrapRulers": [], + "BootstrapSafe": [], + "BootstrapSafe2": [], + "BootstrapSafe2Fill": [], + "BootstrapSafeFill": [], + "BootstrapSave": [], + "BootstrapSave2": [], + "BootstrapSave2Fill": [], + "BootstrapSaveFill": [], + "BootstrapScissors": [], + "BootstrapScooter": [], + "BootstrapScrewdriver": [], + "BootstrapSdCard": [], + "BootstrapSdCardFill": [], + "BootstrapSearch": [], + "BootstrapSearchHeart": [], + "BootstrapSearchHeartFill": [], + "BootstrapSegmentedNav": [], + "BootstrapSend": [], + "BootstrapSendCheck": [], + "BootstrapSendCheckFill": [], + "BootstrapSendDash": [], + "BootstrapSendDashFill": [], + "BootstrapSendExclamation": [], + "BootstrapSendExclamationFill": [], + "BootstrapSendFill": [], + "BootstrapSendPlus": [], + "BootstrapSendPlusFill": [], + "BootstrapSendSlash": [], + "BootstrapSendSlashFill": [], + "BootstrapSendX": [], + "BootstrapSendXFill": [], + "BootstrapServer": [], + "BootstrapShare": [], + "BootstrapShareFill": [], + "BootstrapShield": [], + "BootstrapShieldCheck": [], + "BootstrapShieldExclamation": [], + "BootstrapShieldFill": [], + "BootstrapShieldFillCheck": [], + "BootstrapShieldFillExclamation": [], + "BootstrapShieldFillMinus": [], + "BootstrapShieldFillPlus": [], + "BootstrapShieldFillX": [], + "BootstrapShieldLock": [], + "BootstrapShieldLockFill": [], + "BootstrapShieldMinus": [], + "BootstrapShieldPlus": [], + "BootstrapShieldShaded": [], + "BootstrapShieldSlash": [], + "BootstrapShieldSlashFill": [], + "BootstrapShieldX": [], + "BootstrapShift": [], + "BootstrapShiftFill": [], + "BootstrapShop": [], + "BootstrapShopWindow": [], + "BootstrapShuffle": [], + "BootstrapSignDeadEnd": [], + "BootstrapSignDeadEndFill": [], + "BootstrapSignDoNotEnter": [], + "BootstrapSignDoNotEnterFill": [], + "BootstrapSignIntersection": [], + "BootstrapSignIntersectionFill": [], + "BootstrapSignIntersectionSide": [], + "BootstrapSignIntersectionSideFill": [], + "BootstrapSignIntersectionT": [], + "BootstrapSignIntersectionTFill": [], + "BootstrapSignIntersectionY": [], + "BootstrapSignIntersectionYFill": [], + "BootstrapSignMergeLeft": [], + "BootstrapSignMergeLeftFill": [], + "BootstrapSignMergeRight": [], + "BootstrapSignMergeRightFill": [], + "BootstrapSignNoLeftTurn": [], + "BootstrapSignNoLeftTurnFill": [], + "BootstrapSignNoParking": [], + "BootstrapSignNoParkingFill": [], + "BootstrapSignNoRightTurn": [], + "BootstrapSignNoRightTurnFill": [], + "BootstrapSignRailroad": [], + "BootstrapSignRailroadFill": [], + "BootstrapSignStop": [], + "BootstrapSignStopFill": [], + "BootstrapSignStopLights": [], + "BootstrapSignStopLightsFill": [], + "BootstrapSignTurnLeft": [], + "BootstrapSignTurnLeftFill": [], + "BootstrapSignTurnRight": [], + "BootstrapSignTurnRightFill": [], + "BootstrapSignTurnSlightLeft": [], + "BootstrapSignTurnSlightLeftFill": [], + "BootstrapSignTurnSlightRight": [], + "BootstrapSignTurnSlightRightFill": [], + "BootstrapSignYield": [], + "BootstrapSignYieldFill": [], + "BootstrapSignal": [], + "BootstrapSignpost": [], + "BootstrapSignpost2": [], + "BootstrapSignpost2Fill": [], + "BootstrapSignpostFill": [], + "BootstrapSignpostSplit": [], + "BootstrapSignpostSplitFill": [], + "BootstrapSim": [], + "BootstrapSimFill": [], + "BootstrapSinaWeibo": [], + "BootstrapSkipBackward": [], + "BootstrapSkipBackwardBtn": [], + "BootstrapSkipBackwardBtnFill": [], + "BootstrapSkipBackwardCircle": [], + "BootstrapSkipBackwardCircleFill": [], + "BootstrapSkipBackwardFill": [], + "BootstrapSkipEnd": [], + "BootstrapSkipEndBtn": [], + "BootstrapSkipEndBtnFill": [], + "BootstrapSkipEndCircle": [], + "BootstrapSkipEndCircleFill": [], + "BootstrapSkipEndFill": [], + "BootstrapSkipForward": [], + "BootstrapSkipForwardBtn": [], + "BootstrapSkipForwardBtnFill": [], + "BootstrapSkipForwardCircle": [], + "BootstrapSkipForwardCircleFill": [], + "BootstrapSkipForwardFill": [], + "BootstrapSkipStart": [], + "BootstrapSkipStartBtn": [], + "BootstrapSkipStartBtnFill": [], + "BootstrapSkipStartCircle": [], + "BootstrapSkipStartCircleFill": [], + "BootstrapSkipStartFill": [], + "BootstrapSkype": [], + "BootstrapSlack": [], + "BootstrapSlash": [], + "BootstrapSlashCircle": [], + "BootstrapSlashCircleFill": [], + "BootstrapSlashLg": [], + "BootstrapSlashSquare": [], + "BootstrapSlashSquareFill": [], + "BootstrapSliders": [], + "BootstrapSliders2": [], + "BootstrapSliders2Vertical": [], + "BootstrapSmartwatch": [], + "BootstrapSnapchat": [], + "BootstrapSnow": [], + "BootstrapSnow2": [], + "BootstrapSnow3": [], + "BootstrapSortAlphaDown": [], + "BootstrapSortAlphaDownAlt": [], + "BootstrapSortAlphaUp": [], + "BootstrapSortAlphaUpAlt": [], + "BootstrapSortDown": [], + "BootstrapSortDownAlt": [], + "BootstrapSortNumericDown": [], + "BootstrapSortNumericDownAlt": [], + "BootstrapSortNumericUp": [], + "BootstrapSortNumericUpAlt": [], + "BootstrapSortUp": [], + "BootstrapSortUpAlt": [], + "BootstrapSoundwave": [], + "BootstrapSpeaker": [], + "BootstrapSpeakerFill": [], + "BootstrapSpeedometer": [], + "BootstrapSpeedometer2": [], + "BootstrapSpellcheck": [], + "BootstrapSpotify": [], + "BootstrapSquare": [], + "BootstrapSquareFill": [], + "BootstrapSquareHalf": [], + "BootstrapStack": [], + "BootstrapStackOverflow": [], + "BootstrapStar": [], + "BootstrapStarFill": [], + "BootstrapStarHalf": [], + "BootstrapStars": [], + "BootstrapSteam": [], + "BootstrapStickies": [], + "BootstrapStickiesFill": [], + "BootstrapSticky": [], + "BootstrapStickyFill": [], + "BootstrapStop": [], + "BootstrapStopBtn": [], + "BootstrapStopBtnFill": [], + "BootstrapStopCircle": [], + "BootstrapStopCircleFill": [], + "BootstrapStopFill": [], + "BootstrapStoplights": [], + "BootstrapStoplightsFill": [], + "BootstrapStopwatch": [], + "BootstrapStopwatchFill": [], + "BootstrapStrava": [], + "BootstrapStripe": [], + "BootstrapSubscript": [], + "BootstrapSubtract": [], + "BootstrapSuitClub": [], + "BootstrapSuitClubFill": [], + "BootstrapSuitDiamond": [], + "BootstrapSuitDiamondFill": [], + "BootstrapSuitHeart": [], + "BootstrapSuitHeartFill": [], + "BootstrapSuitSpade": [], + "BootstrapSuitSpadeFill": [], + "BootstrapSun": [], + "BootstrapSunFill": [], + "BootstrapSunglasses": [], + "BootstrapSunrise": [], + "BootstrapSunriseFill": [], + "BootstrapSunset": [], + "BootstrapSunsetFill": [], + "BootstrapSuperscript": [], + "BootstrapSymmetryHorizontal": [], + "BootstrapSymmetryVertical": [], + "BootstrapTable": [], + "BootstrapTablet": [], + "BootstrapTabletFill": [], + "BootstrapTabletLandscape": [], + "BootstrapTabletLandscapeFill": [], + "BootstrapTag": [], + "BootstrapTagFill": [], + "BootstrapTags": [], + "BootstrapTagsFill": [], + "BootstrapTaxiFront": [], + "BootstrapTaxiFrontFill": [], + "BootstrapTelegram": [], + "BootstrapTelephone": [], + "BootstrapTelephoneFill": [], + "BootstrapTelephoneForward": [], + "BootstrapTelephoneForwardFill": [], + "BootstrapTelephoneInbound": [], + "BootstrapTelephoneInboundFill": [], + "BootstrapTelephoneMinus": [], + "BootstrapTelephoneMinusFill": [], + "BootstrapTelephoneOutbound": [], + "BootstrapTelephoneOutboundFill": [], + "BootstrapTelephonePlus": [], + "BootstrapTelephonePlusFill": [], + "BootstrapTelephoneX": [], + "BootstrapTelephoneXFill": [], + "BootstrapTencentQq": [], + "BootstrapTerminal": [], + "BootstrapTerminalDash": [], + "BootstrapTerminalFill": [], + "BootstrapTerminalPlus": [], + "BootstrapTerminalSplit": [], + "BootstrapTerminalX": [], + "BootstrapTextCenter": [], + "BootstrapTextIndentLeft": [], + "BootstrapTextIndentRight": [], + "BootstrapTextLeft": [], + "BootstrapTextParagraph": [], + "BootstrapTextRight": [], + "BootstrapTextWrap": [], + "BootstrapTextarea": [], + "BootstrapTextareaResize": [], + "BootstrapTextareaT": [], + "BootstrapThermometer": [], + "BootstrapThermometerHalf": [], + "BootstrapThermometerHigh": [], + "BootstrapThermometerLow": [], + "BootstrapThermometerSnow": [], + "BootstrapThermometerSun": [], + "BootstrapThreeDots": [], + "BootstrapThreeDotsVertical": [], + "BootstrapThunderbolt": [], + "BootstrapThunderboltFill": [], + "BootstrapTicket": [], + "BootstrapTicketDetailed": [], + "BootstrapTicketDetailedFill": [], + "BootstrapTicketFill": [], + "BootstrapTicketPerforated": [], + "BootstrapTicketPerforatedFill": [], + "BootstrapTiktok": [], + "BootstrapToggle2Off": [], + "BootstrapToggle2On": [], + "BootstrapToggleOff": [], + "BootstrapToggleOn": [], + "BootstrapToggles": [], + "BootstrapToggles2": [], + "BootstrapTools": [], + "BootstrapTornado": [], + "BootstrapTrainFreightFront": [], + "BootstrapTrainFreightFrontFill": [], + "BootstrapTrainFront": [], + "BootstrapTrainFrontFill": [], + "BootstrapTrainLightrailFront": [], + "BootstrapTrainLightrailFrontFill": [], + "BootstrapTranslate": [], + "BootstrapTrash": [], + "BootstrapTrash2": [], + "BootstrapTrash2Fill": [], + "BootstrapTrash3": [], + "BootstrapTrash3Fill": [], + "BootstrapTrashFill": [], + "BootstrapTree": [], + "BootstrapTreeFill": [], + "BootstrapTrello": [], + "BootstrapTriangle": [], + "BootstrapTriangleFill": [], + "BootstrapTriangleHalf": [], + "BootstrapTrophy": [], + "BootstrapTrophyFill": [], + "BootstrapTropicalStorm": [], + "BootstrapTruck": [], + "BootstrapTruckFlatbed": [], + "BootstrapTruckFront": [], + "BootstrapTruckFrontFill": [], + "BootstrapTsunami": [], + "BootstrapTv": [], + "BootstrapTvFill": [], + "BootstrapTwitch": [], + "BootstrapTwitter": [], + "BootstrapType": [], + "BootstrapTypeBold": [], + "BootstrapTypeH1": [], + "BootstrapTypeH2": [], + "BootstrapTypeH3": [], + "BootstrapTypeItalic": [], + "BootstrapTypeStrikethrough": [], + "BootstrapTypeUnderline": [], + "BootstrapUbuntu": [], + "BootstrapUiChecks": [], + "BootstrapUiChecksGrid": [], + "BootstrapUiRadios": [], + "BootstrapUiRadiosGrid": [], + "BootstrapUmbrella": [], + "BootstrapUmbrellaFill": [], + "BootstrapUnindent": [], + "BootstrapUnion": [], + "BootstrapUnity": [], + "BootstrapUniversalAccess": [], + "BootstrapUniversalAccessCircle": [], + "BootstrapUnlock": [], + "BootstrapUnlockFill": [], + "BootstrapUpc": [], + "BootstrapUpcScan": [], + "BootstrapUpload": [], + "BootstrapUsb": [], + "BootstrapUsbC": [], + "BootstrapUsbCFill": [], + "BootstrapUsbDrive": [], + "BootstrapUsbDriveFill": [], + "BootstrapUsbFill": [], + "BootstrapUsbMicro": [], + "BootstrapUsbMicroFill": [], + "BootstrapUsbMini": [], + "BootstrapUsbMiniFill": [], + "BootstrapUsbPlug": [], + "BootstrapUsbPlugFill": [], + "BootstrapUsbSymbol": [], + "BootstrapValentine": [], + "BootstrapValentine2": [], + "BootstrapVectorPen": [], + "BootstrapViewList": [], + "BootstrapViewStacked": [], + "BootstrapVimeo": [], + "BootstrapVinyl": [], + "BootstrapVinylFill": [], + "BootstrapVirus": [], + "BootstrapVirus2": [], + "BootstrapVoicemail": [], + "BootstrapVolumeDown": [], + "BootstrapVolumeDownFill": [], + "BootstrapVolumeMute": [], + "BootstrapVolumeMuteFill": [], + "BootstrapVolumeOff": [], + "BootstrapVolumeOffFill": [], + "BootstrapVolumeUp": [], + "BootstrapVolumeUpFill": [], + "BootstrapVr": [], + "BootstrapWallet": [], + "BootstrapWallet2": [], + "BootstrapWalletFill": [], + "BootstrapWatch": [], + "BootstrapWater": [], + "BootstrapWebcam": [], + "BootstrapWebcamFill": [], + "BootstrapWechat": [], + "BootstrapWhatsapp": [], + "BootstrapWifi": [], + "BootstrapWifi1": [], + "BootstrapWifi2": [], + "BootstrapWifiOff": [], + "BootstrapWikipedia": [], + "BootstrapWind": [], + "BootstrapWindow": [], + "BootstrapWindowDash": [], + "BootstrapWindowDesktop": [], + "BootstrapWindowDock": [], + "BootstrapWindowFullscreen": [], + "BootstrapWindowPlus": [], + "BootstrapWindowSidebar": [], + "BootstrapWindowSplit": [], + "BootstrapWindowStack": [], + "BootstrapWindowX": [], + "BootstrapWindows": [], + "BootstrapWordpress": [], + "BootstrapWrench": [], + "BootstrapWrenchAdjustable": [], + "BootstrapWrenchAdjustableCircle": [], + "BootstrapWrenchAdjustableCircleFill": [], + "BootstrapX": [], + "BootstrapXCircle": [], + "BootstrapXCircleFill": [], + "BootstrapXDiamond": [], + "BootstrapXDiamondFill": [], + "BootstrapXLg": [], + "BootstrapXOctagon": [], + "BootstrapXOctagonFill": [], + "BootstrapXSquare": [], + "BootstrapXSquareFill": [], + "BootstrapXbox": [], + "BootstrapYelp": [], + "BootstrapYinYang": [], + "BootstrapYoutube": [], + "BootstrapZoomIn": [], + "BootstrapZoomOut": [], + "ExtraGooglePlay": [], + "FeatherActivity": [], + "FeatherAirplay": [], + "FeatherAlertCircle": [], + "FeatherAlertOctagon": [], + "FeatherAlertTriangle": [], + "FeatherAlignCenter": [], + "FeatherAlignJustify": [], + "FeatherAlignLeft": [], + "FeatherAlignRight": [], + "FeatherAnchor": [], + "FeatherAperture": [], + "FeatherArchive": [], + "FeatherArrowDown": [], + "FeatherArrowDownCircle": [], + "FeatherArrowDownLeft": [], + "FeatherArrowDownRight": [], + "FeatherArrowLeft": [], + "FeatherArrowLeftCircle": [], + "FeatherArrowRight": [], + "FeatherArrowRightCircle": [], + "FeatherArrowUp": [], + "FeatherArrowUpCircle": [], + "FeatherArrowUpLeft": [], + "FeatherArrowUpRight": [], + "FeatherAtSign": [], + "FeatherAward": [], + "FeatherBarChart": [], + "FeatherBarChart2": [], + "FeatherBattery": [], + "FeatherBatteryCharging": [], + "FeatherBell": [], + "FeatherBellOff": [], + "FeatherBluetooth": [], + "FeatherBold": [], + "FeatherBook": [], + "FeatherBookOpen": [], + "FeatherBookmark": [], + "FeatherBox": [], + "FeatherBriefcase": [], + "FeatherCalendar": [], + "FeatherCamera": [], + "FeatherCameraOff": [], + "FeatherCast": [], + "FeatherCheck": [], + "FeatherCheckCircle": [], + "FeatherCheckSquare": [], + "FeatherChevronDown": [], + "FeatherChevronLeft": [], + "FeatherChevronRight": [], + "FeatherChevronUp": [], + "FeatherChevronsDown": [], + "FeatherChevronsLeft": [], + "FeatherChevronsRight": [], + "FeatherChevronsUp": [], + "FeatherChrome": [], + "FeatherCircle": [], + "FeatherClipboard": [], + "FeatherClock": [], + "FeatherCloud": [], + "FeatherCloudDrizzle": [], + "FeatherCloudLightning": [], + "FeatherCloudOff": [], + "FeatherCloudRain": [], + "FeatherCloudSnow": [], + "FeatherCode": [], + "FeatherCodepen": [], + "FeatherCodesandbox": [], + "FeatherCoffee": [], + "FeatherColumns": [], + "FeatherCommand": [], + "FeatherCompass": [], + "FeatherCopy": [], + "FeatherCornerDownLeft": [], + "FeatherCornerDownRight": [], + "FeatherCornerLeftDown": [], + "FeatherCornerLeftUp": [], + "FeatherCornerRightDown": [], + "FeatherCornerRightUp": [], + "FeatherCornerUpLeft": [], + "FeatherCornerUpRight": [], + "FeatherCpu": [], + "FeatherCreditCard": [], + "FeatherCrop": [], + "FeatherCrosshair": [], + "FeatherDatabase": [], + "FeatherDelete": [], + "FeatherDisc": [], + "FeatherDivide": [], + "FeatherDivideCircle": [], + "FeatherDivideSquare": [], + "FeatherDollarSign": [], + "FeatherDownload": [], + "FeatherDownloadCloud": [], + "FeatherDribbble": [], + "FeatherDroplet": [], + "FeatherEdit": [], + "FeatherEdit2": [], + "FeatherEdit3": [], + "FeatherExternalLink": [], + "FeatherEye": [], + "FeatherEyeOff": [], + "FeatherFacebook": [], + "FeatherFastForward": [], + "FeatherFeather": [], + "FeatherFigma": [], + "FeatherFile": [], + "FeatherFileMinus": [], + "FeatherFilePlus": [], + "FeatherFileText": [], + "FeatherFilm": [], + "FeatherFilter": [], + "FeatherFlag": [], + "FeatherFolder": [], + "FeatherFolderMinus": [], + "FeatherFolderPlus": [], + "FeatherFramer": [], + "FeatherFrown": [], + "FeatherGift": [], + "FeatherGitBranch": [], + "FeatherGitCommit": [], + "FeatherGitMerge": [], + "FeatherGitPullRequest": [], + "FeatherGithub": [], + "FeatherGitlab": [], + "FeatherGlobe": [], + "FeatherGrid": [], + "FeatherHardDrive": [], + "FeatherHash": [], + "FeatherHeadphones": [], + "FeatherHeart": [], + "FeatherHelpCircle": [], + "FeatherHexagon": [], + "FeatherHome": [], + "FeatherImage": [], + "FeatherInbox": [], + "FeatherInfo": [], + "FeatherInstagram": [], + "FeatherItalic": [], + "FeatherKey": [], + "FeatherLayers": [], + "FeatherLayout": [], + "FeatherLifeBuoy": [], + "FeatherLink": [], + "FeatherLink2": [], + "FeatherLinkedin": [], + "FeatherList": [], + "FeatherLoader": [], + "FeatherLock": [], + "FeatherLogIn": [], + "FeatherLogOut": [], + "FeatherMail": [], + "FeatherMap": [], + "FeatherMapPin": [], + "FeatherMaximize": [], + "FeatherMaximize2": [], + "FeatherMeh": [], + "FeatherMenu": [], + "FeatherMessageCircle": [], + "FeatherMessageSquare": [], + "FeatherMic": [], + "FeatherMicOff": [], + "FeatherMinimize": [], + "FeatherMinimize2": [], + "FeatherMinus": [], + "FeatherMinusCircle": [], + "FeatherMinusSquare": [], + "FeatherMonitor": [], + "FeatherMoon": [], + "FeatherMoreHorizontal": [], + "FeatherMoreVertical": [], + "FeatherMousePointer": [], + "FeatherMove": [], + "FeatherMusic": [], + "FeatherNavigation": [], + "FeatherNavigation2": [], + "FeatherOctagon": [], + "FeatherPackage": [], + "FeatherPaperclip": [], + "FeatherPause": [], + "FeatherPauseCircle": [], + "FeatherPenTool": [], + "FeatherPercent": [], + "FeatherPhone": [], + "FeatherPhoneCall": [], + "FeatherPhoneForwarded": [], + "FeatherPhoneIncoming": [], + "FeatherPhoneMissed": [], + "FeatherPhoneOff": [], + "FeatherPhoneOutgoing": [], + "FeatherPieChart": [], + "FeatherPlay": [], + "FeatherPlayCircle": [], + "FeatherPlus": [], + "FeatherPlusCircle": [], + "FeatherPlusSquare": [], + "FeatherPocket": [], + "FeatherPower": [], + "FeatherPrinter": [], + "FeatherRadio": [], + "FeatherRefreshCcw": [], + "FeatherRefreshCw": [], + "FeatherRepeat": [], + "FeatherRewind": [], + "FeatherRotateCcw": [], + "FeatherRotateCw": [], + "FeatherRss": [], + "FeatherSave": [], + "FeatherScissors": [], + "FeatherSearch": [], + "FeatherSend": [], + "FeatherServer": [], + "FeatherSettings": [], + "FeatherShare": [], + "FeatherShare2": [], + "FeatherShield": [], + "FeatherShieldOff": [], + "FeatherShoppingBag": [], + "FeatherShoppingCart": [], + "FeatherShuffle": [], + "FeatherSidebar": [], + "FeatherSkipBack": [], + "FeatherSkipForward": [], + "FeatherSlack": [], + "FeatherSlash": [], + "FeatherSliders": [], + "FeatherSmartphone": [], + "FeatherSmile": [], + "FeatherSpeaker": [], + "FeatherSquare": [], + "FeatherStar": [], + "FeatherStopCircle": [], + "FeatherSun": [], + "FeatherSunrise": [], + "FeatherSunset": [], + "FeatherTable": [], + "FeatherTablet": [], + "FeatherTag": [], + "FeatherTarget": [], + "FeatherTerminal": [], + "FeatherThermometer": [], + "FeatherThumbsDown": [], + "FeatherThumbsUp": [], + "FeatherToggleLeft": [], + "FeatherToggleRight": [], + "FeatherTool": [], + "FeatherTrash": [], + "FeatherTrash2": [], + "FeatherTrello": [], + "FeatherTrendingDown": [], + "FeatherTrendingUp": [], + "FeatherTriangle": [], + "FeatherTruck": [], + "FeatherTv": [], + "FeatherTwitch": [], + "FeatherTwitter": [], + "FeatherType": [], + "FeatherUmbrella": [], + "FeatherUnderline": [], + "FeatherUnlock": [], + "FeatherUpload": [], + "FeatherUploadCloud": [], + "FeatherUser": [], + "FeatherUserCheck": [], + "FeatherUserMinus": [], + "FeatherUserPlus": [], + "FeatherUserX": [], + "FeatherUsers": [], + "FeatherVideo": [], + "FeatherVideoOff": [], + "FeatherVoicemail": [], + "FeatherVolume": [], + "FeatherVolume1": [], + "FeatherVolume2": [], + "FeatherVolumeX": [], + "FeatherWatch": [], + "FeatherWifi": [], + "FeatherWifiOff": [], + "FeatherWind": [], + "FeatherX": [], + "FeatherXCircle": [], + "FeatherXOctagon": [], + "FeatherXSquare": [], + "FeatherYoutube": [], + "FeatherZap": [], + "FeatherZapOff": [], + "FeatherZoomIn": [], + "FeatherZoomOut": [], + "FontAwesomeRegularAddressBook": [], + "FontAwesomeRegularAddressCard": [], + "FontAwesomeRegularBell": [], + "FontAwesomeRegularBellSlash": [], + "FontAwesomeRegularBookmark": [], + "FontAwesomeRegularBuilding": [], + "FontAwesomeRegularCalendar": [], + "FontAwesomeRegularCalendarCheck": [], + "FontAwesomeRegularCalendarDays": [], + "FontAwesomeRegularCalendarMinus": [], + "FontAwesomeRegularCalendarPlus": [], + "FontAwesomeRegularCalendarXmark": [], + "FontAwesomeRegularChartBar": [], + "FontAwesomeRegularChessBishop": [], + "FontAwesomeRegularChessKing": [], + "FontAwesomeRegularChessKnight": [], + "FontAwesomeRegularChessPawn": [], + "FontAwesomeRegularChessQueen": [], + "FontAwesomeRegularChessRook": [], + "FontAwesomeRegularCircle": [], + "FontAwesomeRegularCircleCheck": [], + "FontAwesomeRegularCircleDot": [], + "FontAwesomeRegularCircleDown": [], + "FontAwesomeRegularCircleLeft": [], + "FontAwesomeRegularCirclePause": [], + "FontAwesomeRegularCirclePlay": [], + "FontAwesomeRegularCircleQuestion": [], + "FontAwesomeRegularCircleRight": [], + "FontAwesomeRegularCircleStop": [], + "FontAwesomeRegularCircleUp": [], + "FontAwesomeRegularCircleUser": [], + "FontAwesomeRegularCircleXmark": [], + "FontAwesomeRegularClipboard": [], + "FontAwesomeRegularClock": [], + "FontAwesomeRegularClone": [], + "FontAwesomeRegularClosedCaptioning": [], + "FontAwesomeRegularComment": [], + "FontAwesomeRegularCommentDots": [], + "FontAwesomeRegularComments": [], + "FontAwesomeRegularCompass": [], + "FontAwesomeRegularCopy": [], + "FontAwesomeRegularCopyright": [], + "FontAwesomeRegularCreditCard": [], + "FontAwesomeRegularEnvelope": [], + "FontAwesomeRegularEnvelopeOpen": [], + "FontAwesomeRegularEye": [], + "FontAwesomeRegularEyeSlash": [], + "FontAwesomeRegularFaceAngry": [], + "FontAwesomeRegularFaceDizzy": [], + "FontAwesomeRegularFaceFlushed": [], + "FontAwesomeRegularFaceFrown": [], + "FontAwesomeRegularFaceFrownOpen": [], + "FontAwesomeRegularFaceGrimace": [], + "FontAwesomeRegularFaceGrin": [], + "FontAwesomeRegularFaceGrinBeam": [], + "FontAwesomeRegularFaceGrinBeamSweat": [], + "FontAwesomeRegularFaceGrinHearts": [], + "FontAwesomeRegularFaceGrinSquint": [], + "FontAwesomeRegularFaceGrinSquintTears": [], + "FontAwesomeRegularFaceGrinStars": [], + "FontAwesomeRegularFaceGrinTears": [], + "FontAwesomeRegularFaceGrinTongue": [], + "FontAwesomeRegularFaceGrinTongueSquint": [], + "FontAwesomeRegularFaceGrinTongueWink": [], + "FontAwesomeRegularFaceGrinWide": [], + "FontAwesomeRegularFaceGrinWink": [], + "FontAwesomeRegularFaceKiss": [], + "FontAwesomeRegularFaceKissBeam": [], + "FontAwesomeRegularFaceKissWinkHeart": [], + "FontAwesomeRegularFaceLaugh": [], + "FontAwesomeRegularFaceLaughBeam": [], + "FontAwesomeRegularFaceLaughSquint": [], + "FontAwesomeRegularFaceLaughWink": [], + "FontAwesomeRegularFaceMeh": [], + "FontAwesomeRegularFaceMehBlank": [], + "FontAwesomeRegularFaceRollingEyes": [], + "FontAwesomeRegularFaceSadCry": [], + "FontAwesomeRegularFaceSadTear": [], + "FontAwesomeRegularFaceSmile": [], + "FontAwesomeRegularFaceSmileBeam": [], + "FontAwesomeRegularFaceSmileWink": [], + "FontAwesomeRegularFaceSurprise": [], + "FontAwesomeRegularFaceTired": [], + "FontAwesomeRegularFile": [], + "FontAwesomeRegularFileAudio": [], + "FontAwesomeRegularFileCode": [], + "FontAwesomeRegularFileExcel": [], + "FontAwesomeRegularFileImage": [], + "FontAwesomeRegularFileLines": [], + "FontAwesomeRegularFilePdf": [], + "FontAwesomeRegularFilePowerpoint": [], + "FontAwesomeRegularFileVideo": [], + "FontAwesomeRegularFileWord": [], + "FontAwesomeRegularFileZipper": [], + "FontAwesomeRegularFlag": [], + "FontAwesomeRegularFloppyDisk": [], + "FontAwesomeRegularFolder": [], + "FontAwesomeRegularFolderClosed": [], + "FontAwesomeRegularFolderOpen": [], + "FontAwesomeRegularFontAwesome": [], + "FontAwesomeRegularFutbol": [], + "FontAwesomeRegularGem": [], + "FontAwesomeRegularHand": [], + "FontAwesomeRegularHandBackFist": [], + "FontAwesomeRegularHandLizard": [], + "FontAwesomeRegularHandPeace": [], + "FontAwesomeRegularHandPointDown": [], + "FontAwesomeRegularHandPointLeft": [], + "FontAwesomeRegularHandPointRight": [], + "FontAwesomeRegularHandPointUp": [], + "FontAwesomeRegularHandPointer": [], + "FontAwesomeRegularHandScissors": [], + "FontAwesomeRegularHandSpock": [], + "FontAwesomeRegularHandshake": [], + "FontAwesomeRegularHardDrive": [], + "FontAwesomeRegularHeart": [], + "FontAwesomeRegularHospital": [], + "FontAwesomeRegularHourglass": [], + "FontAwesomeRegularIdBadge": [], + "FontAwesomeRegularIdCard": [], + "FontAwesomeRegularImage": [], + "FontAwesomeRegularImages": [], + "FontAwesomeRegularKeyboard": [], + "FontAwesomeRegularLemon": [], + "FontAwesomeRegularLifeRing": [], + "FontAwesomeRegularLightbulb": [], + "FontAwesomeRegularMap": [], + "FontAwesomeRegularMessage": [], + "FontAwesomeRegularMoneyBill1": [], + "FontAwesomeRegularMoon": [], + "FontAwesomeRegularNewspaper": [], + "FontAwesomeRegularNoteSticky": [], + "FontAwesomeRegularObjectGroup": [], + "FontAwesomeRegularObjectUngroup": [], + "FontAwesomeRegularPaperPlane": [], + "FontAwesomeRegularPaste": [], + "FontAwesomeRegularPenToSquare": [], + "FontAwesomeRegularRectangleList": [], + "FontAwesomeRegularRectangleXmark": [], + "FontAwesomeRegularRegistered": [], + "FontAwesomeRegularShareFromSquare": [], + "FontAwesomeRegularSnowflake": [], + "FontAwesomeRegularSquare": [], + "FontAwesomeRegularSquareCaretDown": [], + "FontAwesomeRegularSquareCaretLeft": [], + "FontAwesomeRegularSquareCaretRight": [], + "FontAwesomeRegularSquareCaretUp": [], + "FontAwesomeRegularSquareCheck": [], + "FontAwesomeRegularSquareFull": [], + "FontAwesomeRegularSquareMinus": [], + "FontAwesomeRegularSquarePlus": [], + "FontAwesomeRegularStar": [], + "FontAwesomeRegularStarHalf": [], + "FontAwesomeRegularStarHalfStroke": [], + "FontAwesomeRegularSun": [], + "FontAwesomeRegularThumbsDown": [], + "FontAwesomeRegularThumbsUp": [], + "FontAwesomeRegularTrashCan": [], + "FontAwesomeRegularUser": [], + "FontAwesomeRegularWindowMaximize": [], + "FontAwesomeRegularWindowMinimize": [], + "FontAwesomeRegularWindowRestore": [], + "FontAwesomeSolid0": [], + "FontAwesomeSolid1": [], + "FontAwesomeSolid2": [], + "FontAwesomeSolid3": [], + "FontAwesomeSolid4": [], + "FontAwesomeSolid5": [], + "FontAwesomeSolid6": [], + "FontAwesomeSolid7": [], + "FontAwesomeSolid8": [], + "FontAwesomeSolid9": [], + "FontAwesomeSolidA": [], + "FontAwesomeSolidAddressBook": [], + "FontAwesomeSolidAddressCard": [], + "FontAwesomeSolidAlignCenter": [], + "FontAwesomeSolidAlignJustify": [], + "FontAwesomeSolidAlignLeft": [], + "FontAwesomeSolidAlignRight": [], + "FontAwesomeSolidAnchor": [], + "FontAwesomeSolidAnchorCircleCheck": [], + "FontAwesomeSolidAnchorCircleExclamation": [], + "FontAwesomeSolidAnchorCircleXmark": [], + "FontAwesomeSolidAnchorLock": [], + "FontAwesomeSolidAngleDown": [], + "FontAwesomeSolidAngleLeft": [], + "FontAwesomeSolidAngleRight": [], + "FontAwesomeSolidAngleUp": [], + "FontAwesomeSolidAnglesDown": [], + "FontAwesomeSolidAnglesLeft": [], + "FontAwesomeSolidAnglesRight": [], + "FontAwesomeSolidAnglesUp": [], + "FontAwesomeSolidAnkh": [], + "FontAwesomeSolidAppleWhole": [], + "FontAwesomeSolidArchway": [], + "FontAwesomeSolidArrowDown": [], + "FontAwesomeSolidArrowDown19": [], + "FontAwesomeSolidArrowDown91": [], + "FontAwesomeSolidArrowDownAZ": [], + "FontAwesomeSolidArrowDownLong": [], + "FontAwesomeSolidArrowDownShortWide": [], + "FontAwesomeSolidArrowDownUpAcrossLine": [], + "FontAwesomeSolidArrowDownUpLock": [], + "FontAwesomeSolidArrowDownWideShort": [], + "FontAwesomeSolidArrowDownZA": [], + "FontAwesomeSolidArrowLeft": [], + "FontAwesomeSolidArrowLeftLong": [], + "FontAwesomeSolidArrowPointer": [], + "FontAwesomeSolidArrowRight": [], + "FontAwesomeSolidArrowRightArrowLeft": [], + "FontAwesomeSolidArrowRightFromBracket": [], + "FontAwesomeSolidArrowRightLong": [], + "FontAwesomeSolidArrowRightToBracket": [], + "FontAwesomeSolidArrowRightToCity": [], + "FontAwesomeSolidArrowRotateLeft": [], + "FontAwesomeSolidArrowRotateRight": [], + "FontAwesomeSolidArrowTrendDown": [], + "FontAwesomeSolidArrowTrendUp": [], + "FontAwesomeSolidArrowTurnDown": [], + "FontAwesomeSolidArrowTurnUp": [], + "FontAwesomeSolidArrowUp": [], + "FontAwesomeSolidArrowUp19": [], + "FontAwesomeSolidArrowUp91": [], + "FontAwesomeSolidArrowUpAZ": [], + "FontAwesomeSolidArrowUpFromBracket": [], + "FontAwesomeSolidArrowUpFromGroundWater": [], + "FontAwesomeSolidArrowUpFromWaterPump": [], + "FontAwesomeSolidArrowUpLong": [], + "FontAwesomeSolidArrowUpRightDots": [], + "FontAwesomeSolidArrowUpRightFromSquare": [], + "FontAwesomeSolidArrowUpShortWide": [], + "FontAwesomeSolidArrowUpWideShort": [], + "FontAwesomeSolidArrowUpZA": [], + "FontAwesomeSolidArrowsDownToLine": [], + "FontAwesomeSolidArrowsDownToPeople": [], + "FontAwesomeSolidArrowsLeftRight": [], + "FontAwesomeSolidArrowsLeftRightToLine": [], + "FontAwesomeSolidArrowsRotate": [], + "FontAwesomeSolidArrowsSpin": [], + "FontAwesomeSolidArrowsSplitUpAndLeft": [], + "FontAwesomeSolidArrowsToCircle": [], + "FontAwesomeSolidArrowsToDot": [], + "FontAwesomeSolidArrowsToEye": [], + "FontAwesomeSolidArrowsTurnRight": [], + "FontAwesomeSolidArrowsTurnToDots": [], + "FontAwesomeSolidArrowsUpDown": [], + "FontAwesomeSolidArrowsUpDownLeftRight": [], + "FontAwesomeSolidArrowsUpToLine": [], + "FontAwesomeSolidAsterisk": [], + "FontAwesomeSolidAt": [], + "FontAwesomeSolidAtom": [], + "FontAwesomeSolidAudioDescription": [], + "FontAwesomeSolidAustralSign": [], + "FontAwesomeSolidAward": [], + "FontAwesomeSolidB": [], + "FontAwesomeSolidBaby": [], + "FontAwesomeSolidBabyCarriage": [], + "FontAwesomeSolidBackward": [], + "FontAwesomeSolidBackwardFast": [], + "FontAwesomeSolidBackwardStep": [], + "FontAwesomeSolidBacon": [], + "FontAwesomeSolidBacteria": [], + "FontAwesomeSolidBacterium": [], + "FontAwesomeSolidBagShopping": [], + "FontAwesomeSolidBahai": [], + "FontAwesomeSolidBahtSign": [], + "FontAwesomeSolidBan": [], + "FontAwesomeSolidBanSmoking": [], + "FontAwesomeSolidBandage": [], + "FontAwesomeSolidBarcode": [], + "FontAwesomeSolidBars": [], + "FontAwesomeSolidBarsProgress": [], + "FontAwesomeSolidBarsStaggered": [], + "FontAwesomeSolidBaseball": [], + "FontAwesomeSolidBaseballBatBall": [], + "FontAwesomeSolidBasketShopping": [], + "FontAwesomeSolidBasketball": [], + "FontAwesomeSolidBath": [], + "FontAwesomeSolidBatteryEmpty": [], + "FontAwesomeSolidBatteryFull": [], + "FontAwesomeSolidBatteryHalf": [], + "FontAwesomeSolidBatteryQuarter": [], + "FontAwesomeSolidBatteryThreeQuarters": [], + "FontAwesomeSolidBed": [], + "FontAwesomeSolidBedPulse": [], + "FontAwesomeSolidBeerMugEmpty": [], + "FontAwesomeSolidBell": [], + "FontAwesomeSolidBellConcierge": [], + "FontAwesomeSolidBellSlash": [], + "FontAwesomeSolidBezierCurve": [], + "FontAwesomeSolidBicycle": [], + "FontAwesomeSolidBinoculars": [], + "FontAwesomeSolidBiohazard": [], + "FontAwesomeSolidBitcoinSign": [], + "FontAwesomeSolidBlender": [], + "FontAwesomeSolidBlenderPhone": [], + "FontAwesomeSolidBlog": [], + "FontAwesomeSolidBold": [], + "FontAwesomeSolidBolt": [], + "FontAwesomeSolidBoltLightning": [], + "FontAwesomeSolidBomb": [], + "FontAwesomeSolidBone": [], + "FontAwesomeSolidBong": [], + "FontAwesomeSolidBook": [], + "FontAwesomeSolidBookAtlas": [], + "FontAwesomeSolidBookBible": [], + "FontAwesomeSolidBookBookmark": [], + "FontAwesomeSolidBookJournalWhills": [], + "FontAwesomeSolidBookMedical": [], + "FontAwesomeSolidBookOpen": [], + "FontAwesomeSolidBookOpenReader": [], + "FontAwesomeSolidBookQuran": [], + "FontAwesomeSolidBookSkull": [], + "FontAwesomeSolidBookmark": [], + "FontAwesomeSolidBorderAll": [], + "FontAwesomeSolidBorderNone": [], + "FontAwesomeSolidBorderTopLeft": [], + "FontAwesomeSolidBoreHole": [], + "FontAwesomeSolidBottleDroplet": [], + "FontAwesomeSolidBottleWater": [], + "FontAwesomeSolidBowlFood": [], + "FontAwesomeSolidBowlRice": [], + "FontAwesomeSolidBowlingBall": [], + "FontAwesomeSolidBox": [], + "FontAwesomeSolidBoxArchive": [], + "FontAwesomeSolidBoxOpen": [], + "FontAwesomeSolidBoxTissue": [], + "FontAwesomeSolidBoxesPacking": [], + "FontAwesomeSolidBoxesStacked": [], + "FontAwesomeSolidBraille": [], + "FontAwesomeSolidBrain": [], + "FontAwesomeSolidBrazilianRealSign": [], + "FontAwesomeSolidBreadSlice": [], + "FontAwesomeSolidBridge": [], + "FontAwesomeSolidBridgeCircleCheck": [], + "FontAwesomeSolidBridgeCircleExclamation": [], + "FontAwesomeSolidBridgeCircleXmark": [], + "FontAwesomeSolidBridgeLock": [], + "FontAwesomeSolidBridgeWater": [], + "FontAwesomeSolidBriefcase": [], + "FontAwesomeSolidBriefcaseMedical": [], + "FontAwesomeSolidBroom": [], + "FontAwesomeSolidBroomBall": [], + "FontAwesomeSolidBrush": [], + "FontAwesomeSolidBucket": [], + "FontAwesomeSolidBug": [], + "FontAwesomeSolidBugSlash": [], + "FontAwesomeSolidBugs": [], + "FontAwesomeSolidBuilding": [], + "FontAwesomeSolidBuildingCircleArrowRight": [], + "FontAwesomeSolidBuildingCircleCheck": [], + "FontAwesomeSolidBuildingCircleExclamation": [], + "FontAwesomeSolidBuildingCircleXmark": [], + "FontAwesomeSolidBuildingColumns": [], + "FontAwesomeSolidBuildingFlag": [], + "FontAwesomeSolidBuildingLock": [], + "FontAwesomeSolidBuildingNgo": [], + "FontAwesomeSolidBuildingShield": [], + "FontAwesomeSolidBuildingUn": [], + "FontAwesomeSolidBuildingUser": [], + "FontAwesomeSolidBuildingWheat": [], + "FontAwesomeSolidBullhorn": [], + "FontAwesomeSolidBullseye": [], + "FontAwesomeSolidBurger": [], + "FontAwesomeSolidBurst": [], + "FontAwesomeSolidBus": [], + "FontAwesomeSolidBusSimple": [], + "FontAwesomeSolidBusinessTime": [], + "FontAwesomeSolidC": [], + "FontAwesomeSolidCakeCandles": [], + "FontAwesomeSolidCalculator": [], + "FontAwesomeSolidCalendar": [], + "FontAwesomeSolidCalendarCheck": [], + "FontAwesomeSolidCalendarDay": [], + "FontAwesomeSolidCalendarDays": [], + "FontAwesomeSolidCalendarMinus": [], + "FontAwesomeSolidCalendarPlus": [], + "FontAwesomeSolidCalendarWeek": [], + "FontAwesomeSolidCalendarXmark": [], + "FontAwesomeSolidCamera": [], + "FontAwesomeSolidCameraRetro": [], + "FontAwesomeSolidCameraRotate": [], + "FontAwesomeSolidCampground": [], + "FontAwesomeSolidCandyCane": [], + "FontAwesomeSolidCannabis": [], + "FontAwesomeSolidCapsules": [], + "FontAwesomeSolidCar": [], + "FontAwesomeSolidCarBattery": [], + "FontAwesomeSolidCarBurst": [], + "FontAwesomeSolidCarCrash": [], + "FontAwesomeSolidCarOn": [], + "FontAwesomeSolidCarRear": [], + "FontAwesomeSolidCarSide": [], + "FontAwesomeSolidCarTunnel": [], + "FontAwesomeSolidCaravan": [], + "FontAwesomeSolidCaretDown": [], + "FontAwesomeSolidCaretLeft": [], + "FontAwesomeSolidCaretRight": [], + "FontAwesomeSolidCaretUp": [], + "FontAwesomeSolidCarrot": [], + "FontAwesomeSolidCartArrowDown": [], + "FontAwesomeSolidCartFlatbed": [], + "FontAwesomeSolidCartFlatbedSuitcase": [], + "FontAwesomeSolidCartPlus": [], + "FontAwesomeSolidCartShopping": [], + "FontAwesomeSolidCashRegister": [], + "FontAwesomeSolidCat": [], + "FontAwesomeSolidCediSign": [], + "FontAwesomeSolidCentSign": [], + "FontAwesomeSolidCertificate": [], + "FontAwesomeSolidChair": [], + "FontAwesomeSolidChalkboard": [], + "FontAwesomeSolidChalkboardUser": [], + "FontAwesomeSolidChampagneGlasses": [], + "FontAwesomeSolidChargingStation": [], + "FontAwesomeSolidChartArea": [], + "FontAwesomeSolidChartBar": [], + "FontAwesomeSolidChartColumn": [], + "FontAwesomeSolidChartGantt": [], + "FontAwesomeSolidChartLine": [], + "FontAwesomeSolidChartPie": [], + "FontAwesomeSolidChartSimple": [], + "FontAwesomeSolidCheck": [], + "FontAwesomeSolidCheckDouble": [], + "FontAwesomeSolidCheckToSlot": [], + "FontAwesomeSolidCheese": [], + "FontAwesomeSolidChess": [], + "FontAwesomeSolidChessBishop": [], + "FontAwesomeSolidChessBoard": [], + "FontAwesomeSolidChessKing": [], + "FontAwesomeSolidChessKnight": [], + "FontAwesomeSolidChessPawn": [], + "FontAwesomeSolidChessQueen": [], + "FontAwesomeSolidChessRook": [], + "FontAwesomeSolidChevronDown": [], + "FontAwesomeSolidChevronLeft": [], + "FontAwesomeSolidChevronRight": [], + "FontAwesomeSolidChevronUp": [], + "FontAwesomeSolidChild": [], + "FontAwesomeSolidChildDress": [], + "FontAwesomeSolidChildReaching": [], + "FontAwesomeSolidChildRifle": [], + "FontAwesomeSolidChildren": [], + "FontAwesomeSolidChurch": [], + "FontAwesomeSolidCircle": [], + "FontAwesomeSolidCircleArrowDown": [], + "FontAwesomeSolidCircleArrowLeft": [], + "FontAwesomeSolidCircleArrowRight": [], + "FontAwesomeSolidCircleArrowUp": [], + "FontAwesomeSolidCircleCheck": [], + "FontAwesomeSolidCircleChevronDown": [], + "FontAwesomeSolidCircleChevronLeft": [], + "FontAwesomeSolidCircleChevronRight": [], + "FontAwesomeSolidCircleChevronUp": [], + "FontAwesomeSolidCircleDollarToSlot": [], + "FontAwesomeSolidCircleDot": [], + "FontAwesomeSolidCircleDown": [], + "FontAwesomeSolidCircleExclamation": [], + "FontAwesomeSolidCircleH": [], + "FontAwesomeSolidCircleHalfStroke": [], + "FontAwesomeSolidCircleInfo": [], + "FontAwesomeSolidCircleLeft": [], + "FontAwesomeSolidCircleMinus": [], + "FontAwesomeSolidCircleNodes": [], + "FontAwesomeSolidCircleNotch": [], + "FontAwesomeSolidCirclePause": [], + "FontAwesomeSolidCirclePlay": [], + "FontAwesomeSolidCirclePlus": [], + "FontAwesomeSolidCircleQuestion": [], + "FontAwesomeSolidCircleRadiation": [], + "FontAwesomeSolidCircleRight": [], + "FontAwesomeSolidCircleStop": [], + "FontAwesomeSolidCircleUp": [], + "FontAwesomeSolidCircleUser": [], + "FontAwesomeSolidCircleXmark": [], + "FontAwesomeSolidCity": [], + "FontAwesomeSolidClapperboard": [], + "FontAwesomeSolidClipboard": [], + "FontAwesomeSolidClipboardCheck": [], + "FontAwesomeSolidClipboardList": [], + "FontAwesomeSolidClipboardQuestion": [], + "FontAwesomeSolidClipboardUser": [], + "FontAwesomeSolidClock": [], + "FontAwesomeSolidClockRotateLeft": [], + "FontAwesomeSolidClone": [], + "FontAwesomeSolidClosedCaptioning": [], + "FontAwesomeSolidCloud": [], + "FontAwesomeSolidCloudArrowDown": [], + "FontAwesomeSolidCloudArrowUp": [], + "FontAwesomeSolidCloudBolt": [], + "FontAwesomeSolidCloudMeatball": [], + "FontAwesomeSolidCloudMoon": [], + "FontAwesomeSolidCloudMoonRain": [], + "FontAwesomeSolidCloudRain": [], + "FontAwesomeSolidCloudShowersHeavy": [], + "FontAwesomeSolidCloudShowersWater": [], + "FontAwesomeSolidCloudSun": [], + "FontAwesomeSolidCloudSunRain": [], + "FontAwesomeSolidClover": [], + "FontAwesomeSolidCode": [], + "FontAwesomeSolidCodeBranch": [], + "FontAwesomeSolidCodeCommit": [], + "FontAwesomeSolidCodeCompare": [], + "FontAwesomeSolidCodeFork": [], + "FontAwesomeSolidCodeMerge": [], + "FontAwesomeSolidCodePullRequest": [], + "FontAwesomeSolidCoins": [], + "FontAwesomeSolidColonSign": [], + "FontAwesomeSolidComment": [], + "FontAwesomeSolidCommentDollar": [], + "FontAwesomeSolidCommentDots": [], + "FontAwesomeSolidCommentMedical": [], + "FontAwesomeSolidCommentSlash": [], + "FontAwesomeSolidCommentSms": [], + "FontAwesomeSolidComments": [], + "FontAwesomeSolidCommentsDollar": [], + "FontAwesomeSolidCompactDisc": [], + "FontAwesomeSolidCompass": [], + "FontAwesomeSolidCompassDrafting": [], + "FontAwesomeSolidCompress": [], + "FontAwesomeSolidComputer": [], + "FontAwesomeSolidComputerMouse": [], + "FontAwesomeSolidCookie": [], + "FontAwesomeSolidCookieBite": [], + "FontAwesomeSolidCopy": [], + "FontAwesomeSolidCopyright": [], + "FontAwesomeSolidCouch": [], + "FontAwesomeSolidCow": [], + "FontAwesomeSolidCreditCard": [], + "FontAwesomeSolidCrop": [], + "FontAwesomeSolidCropSimple": [], + "FontAwesomeSolidCross": [], + "FontAwesomeSolidCrosshairs": [], + "FontAwesomeSolidCrow": [], + "FontAwesomeSolidCrown": [], + "FontAwesomeSolidCrutch": [], + "FontAwesomeSolidCruzeiroSign": [], + "FontAwesomeSolidCube": [], + "FontAwesomeSolidCubes": [], + "FontAwesomeSolidCubesStacked": [], + "FontAwesomeSolidD": [], + "FontAwesomeSolidDatabase": [], + "FontAwesomeSolidDeleteLeft": [], + "FontAwesomeSolidDemocrat": [], + "FontAwesomeSolidDesktop": [], + "FontAwesomeSolidDharmachakra": [], + "FontAwesomeSolidDiagramNext": [], + "FontAwesomeSolidDiagramPredecessor": [], + "FontAwesomeSolidDiagramProject": [], + "FontAwesomeSolidDiagramSuccessor": [], + "FontAwesomeSolidDiamond": [], + "FontAwesomeSolidDiamondTurnRight": [], + "FontAwesomeSolidDice": [], + "FontAwesomeSolidDiceD20": [], + "FontAwesomeSolidDiceD6": [], + "FontAwesomeSolidDiceFive": [], + "FontAwesomeSolidDiceFour": [], + "FontAwesomeSolidDiceOne": [], + "FontAwesomeSolidDiceSix": [], + "FontAwesomeSolidDiceThree": [], + "FontAwesomeSolidDiceTwo": [], + "FontAwesomeSolidDisease": [], + "FontAwesomeSolidDisplay": [], + "FontAwesomeSolidDivide": [], + "FontAwesomeSolidDna": [], + "FontAwesomeSolidDog": [], + "FontAwesomeSolidDollarSign": [], + "FontAwesomeSolidDolly": [], + "FontAwesomeSolidDongSign": [], + "FontAwesomeSolidDoorClosed": [], + "FontAwesomeSolidDoorOpen": [], + "FontAwesomeSolidDove": [], + "FontAwesomeSolidDownLeftAndUpRightToCenter": [], + "FontAwesomeSolidDownLong": [], + "FontAwesomeSolidDownload": [], + "FontAwesomeSolidDragon": [], + "FontAwesomeSolidDrawPolygon": [], + "FontAwesomeSolidDroplet": [], + "FontAwesomeSolidDropletSlash": [], + "FontAwesomeSolidDrum": [], + "FontAwesomeSolidDrumSteelpan": [], + "FontAwesomeSolidDrumstickBite": [], + "FontAwesomeSolidDumbbell": [], + "FontAwesomeSolidDumpster": [], + "FontAwesomeSolidDumpsterFire": [], + "FontAwesomeSolidDungeon": [], + "FontAwesomeSolidE": [], + "FontAwesomeSolidEarDeaf": [], + "FontAwesomeSolidEarListen": [], + "FontAwesomeSolidEarthAfrica": [], + "FontAwesomeSolidEarthAmericas": [], + "FontAwesomeSolidEarthAsia": [], + "FontAwesomeSolidEarthEurope": [], + "FontAwesomeSolidEarthOceania": [], + "FontAwesomeSolidEgg": [], + "FontAwesomeSolidEject": [], + "FontAwesomeSolidElevator": [], + "FontAwesomeSolidEllipsis": [], + "FontAwesomeSolidEllipsisVertical": [], + "FontAwesomeSolidEnvelope": [], + "FontAwesomeSolidEnvelopeCircleCheck": [], + "FontAwesomeSolidEnvelopeOpen": [], + "FontAwesomeSolidEnvelopeOpenText": [], + "FontAwesomeSolidEnvelopesBulk": [], + "FontAwesomeSolidEquals": [], + "FontAwesomeSolidEraser": [], + "FontAwesomeSolidEthernet": [], + "FontAwesomeSolidEuroSign": [], + "FontAwesomeSolidExclamation": [], + "FontAwesomeSolidExpand": [], + "FontAwesomeSolidExplosion": [], + "FontAwesomeSolidEye": [], + "FontAwesomeSolidEyeDropper": [], + "FontAwesomeSolidEyeLowVision": [], + "FontAwesomeSolidEyeSlash": [], + "FontAwesomeSolidF": [], + "FontAwesomeSolidFaceAngry": [], + "FontAwesomeSolidFaceDizzy": [], + "FontAwesomeSolidFaceFlushed": [], + "FontAwesomeSolidFaceFrown": [], + "FontAwesomeSolidFaceFrownOpen": [], + "FontAwesomeSolidFaceGrimace": [], + "FontAwesomeSolidFaceGrin": [], + "FontAwesomeSolidFaceGrinBeam": [], + "FontAwesomeSolidFaceGrinBeamSweat": [], + "FontAwesomeSolidFaceGrinHearts": [], + "FontAwesomeSolidFaceGrinSquint": [], + "FontAwesomeSolidFaceGrinSquintTears": [], + "FontAwesomeSolidFaceGrinStars": [], + "FontAwesomeSolidFaceGrinTears": [], + "FontAwesomeSolidFaceGrinTongue": [], + "FontAwesomeSolidFaceGrinTongueSquint": [], + "FontAwesomeSolidFaceGrinTongueWink": [], + "FontAwesomeSolidFaceGrinWide": [], + "FontAwesomeSolidFaceGrinWink": [], + "FontAwesomeSolidFaceKiss": [], + "FontAwesomeSolidFaceKissBeam": [], + "FontAwesomeSolidFaceKissWinkHeart": [], + "FontAwesomeSolidFaceLaugh": [], + "FontAwesomeSolidFaceLaughBeam": [], + "FontAwesomeSolidFaceLaughSquint": [], + "FontAwesomeSolidFaceLaughWink": [], + "FontAwesomeSolidFaceMeh": [], + "FontAwesomeSolidFaceMehBlank": [], + "FontAwesomeSolidFaceRollingEyes": [], + "FontAwesomeSolidFaceSadCry": [], + "FontAwesomeSolidFaceSadTear": [], + "FontAwesomeSolidFaceSmile": [], + "FontAwesomeSolidFaceSmileBeam": [], + "FontAwesomeSolidFaceSmileWink": [], + "FontAwesomeSolidFaceSurprise": [], + "FontAwesomeSolidFaceTired": [], + "FontAwesomeSolidFan": [], + "FontAwesomeSolidFaucet": [], + "FontAwesomeSolidFaucetDrip": [], + "FontAwesomeSolidFax": [], + "FontAwesomeSolidFeather": [], + "FontAwesomeSolidFeatherPointed": [], + "FontAwesomeSolidFerry": [], + "FontAwesomeSolidFile": [], + "FontAwesomeSolidFileArrowDown": [], + "FontAwesomeSolidFileArrowUp": [], + "FontAwesomeSolidFileAudio": [], + "FontAwesomeSolidFileCircleCheck": [], + "FontAwesomeSolidFileCircleExclamation": [], + "FontAwesomeSolidFileCircleMinus": [], + "FontAwesomeSolidFileCirclePlus": [], + "FontAwesomeSolidFileCircleQuestion": [], + "FontAwesomeSolidFileCircleXmark": [], + "FontAwesomeSolidFileCode": [], + "FontAwesomeSolidFileContract": [], + "FontAwesomeSolidFileCsv": [], + "FontAwesomeSolidFileExcel": [], + "FontAwesomeSolidFileExport": [], + "FontAwesomeSolidFileImage": [], + "FontAwesomeSolidFileImport": [], + "FontAwesomeSolidFileInvoice": [], + "FontAwesomeSolidFileInvoiceDollar": [], + "FontAwesomeSolidFileLines": [], + "FontAwesomeSolidFileMedical": [], + "FontAwesomeSolidFilePdf": [], + "FontAwesomeSolidFilePen": [], + "FontAwesomeSolidFilePowerpoint": [], + "FontAwesomeSolidFilePrescription": [], + "FontAwesomeSolidFileShield": [], + "FontAwesomeSolidFileSignature": [], + "FontAwesomeSolidFileVideo": [], + "FontAwesomeSolidFileWaveform": [], + "FontAwesomeSolidFileWord": [], + "FontAwesomeSolidFileZipper": [], + "FontAwesomeSolidFill": [], + "FontAwesomeSolidFillDrip": [], + "FontAwesomeSolidFilm": [], + "FontAwesomeSolidFilter": [], + "FontAwesomeSolidFilterCircleDollar": [], + "FontAwesomeSolidFilterCircleXmark": [], + "FontAwesomeSolidFingerprint": [], + "FontAwesomeSolidFire": [], + "FontAwesomeSolidFireBurner": [], + "FontAwesomeSolidFireExtinguisher": [], + "FontAwesomeSolidFireFlameCurved": [], + "FontAwesomeSolidFireFlameSimple": [], + "FontAwesomeSolidFish": [], + "FontAwesomeSolidFishFins": [], + "FontAwesomeSolidFlag": [], + "FontAwesomeSolidFlagCheckered": [], + "FontAwesomeSolidFlagUsa": [], + "FontAwesomeSolidFlask": [], + "FontAwesomeSolidFlaskVial": [], + "FontAwesomeSolidFloppyDisk": [], + "FontAwesomeSolidFlorinSign": [], + "FontAwesomeSolidFolder": [], + "FontAwesomeSolidFolderClosed": [], + "FontAwesomeSolidFolderMinus": [], + "FontAwesomeSolidFolderOpen": [], + "FontAwesomeSolidFolderPlus": [], + "FontAwesomeSolidFolderTree": [], + "FontAwesomeSolidFont": [], + "FontAwesomeSolidFontAwesome": [], + "FontAwesomeSolidFootball": [], + "FontAwesomeSolidForward": [], + "FontAwesomeSolidForwardFast": [], + "FontAwesomeSolidForwardStep": [], + "FontAwesomeSolidFrancSign": [], + "FontAwesomeSolidFrog": [], + "FontAwesomeSolidFutbol": [], + "FontAwesomeSolidG": [], + "FontAwesomeSolidGamepad": [], + "FontAwesomeSolidGasPump": [], + "FontAwesomeSolidGauge": [], + "FontAwesomeSolidGaugeHigh": [], + "FontAwesomeSolidGaugeSimple": [], + "FontAwesomeSolidGaugeSimpleHigh": [], + "FontAwesomeSolidGavel": [], + "FontAwesomeSolidGear": [], + "FontAwesomeSolidGears": [], + "FontAwesomeSolidGem": [], + "FontAwesomeSolidGenderless": [], + "FontAwesomeSolidGhost": [], + "FontAwesomeSolidGift": [], + "FontAwesomeSolidGifts": [], + "FontAwesomeSolidGlassWater": [], + "FontAwesomeSolidGlassWaterDroplet": [], + "FontAwesomeSolidGlasses": [], + "FontAwesomeSolidGlobe": [], + "FontAwesomeSolidGolfBallTee": [], + "FontAwesomeSolidGopuram": [], + "FontAwesomeSolidGraduationCap": [], + "FontAwesomeSolidGreaterThan": [], + "FontAwesomeSolidGreaterThanEqual": [], + "FontAwesomeSolidGrip": [], + "FontAwesomeSolidGripLines": [], + "FontAwesomeSolidGripLinesVertical": [], + "FontAwesomeSolidGripVertical": [], + "FontAwesomeSolidGroupArrowsRotate": [], + "FontAwesomeSolidGuaraniSign": [], + "FontAwesomeSolidGuitar": [], + "FontAwesomeSolidGun": [], + "FontAwesomeSolidH": [], + "FontAwesomeSolidHammer": [], + "FontAwesomeSolidHamsa": [], + "FontAwesomeSolidHand": [], + "FontAwesomeSolidHandBackFist": [], + "FontAwesomeSolidHandDots": [], + "FontAwesomeSolidHandFist": [], + "FontAwesomeSolidHandHolding": [], + "FontAwesomeSolidHandHoldingDollar": [], + "FontAwesomeSolidHandHoldingDroplet": [], + "FontAwesomeSolidHandHoldingHand": [], + "FontAwesomeSolidHandHoldingHeart": [], + "FontAwesomeSolidHandHoldingMedical": [], + "FontAwesomeSolidHandLizard": [], + "FontAwesomeSolidHandMiddleFinger": [], + "FontAwesomeSolidHandPeace": [], + "FontAwesomeSolidHandPointDown": [], + "FontAwesomeSolidHandPointLeft": [], + "FontAwesomeSolidHandPointRight": [], + "FontAwesomeSolidHandPointUp": [], + "FontAwesomeSolidHandPointer": [], + "FontAwesomeSolidHandScissors": [], + "FontAwesomeSolidHandSparkles": [], + "FontAwesomeSolidHandSpock": [], + "FontAwesomeSolidHandcuffs": [], + "FontAwesomeSolidHands": [], + "FontAwesomeSolidHandsAslInterpreting": [], + "FontAwesomeSolidHandsBound": [], + "FontAwesomeSolidHandsBubbles": [], + "FontAwesomeSolidHandsClapping": [], + "FontAwesomeSolidHandsHolding": [], + "FontAwesomeSolidHandsHoldingChild": [], + "FontAwesomeSolidHandsHoldingCircle": [], + "FontAwesomeSolidHandsPraying": [], + "FontAwesomeSolidHandshake": [], + "FontAwesomeSolidHandshakeAngle": [], + "FontAwesomeSolidHandshakeSimple": [], + "FontAwesomeSolidHandshakeSimpleSlash": [], + "FontAwesomeSolidHandshakeSlash": [], + "FontAwesomeSolidHanukiah": [], + "FontAwesomeSolidHardDrive": [], + "FontAwesomeSolidHashtag": [], + "FontAwesomeSolidHatCowboy": [], + "FontAwesomeSolidHatCowboySide": [], + "FontAwesomeSolidHatWizard": [], + "FontAwesomeSolidHeadSideCough": [], + "FontAwesomeSolidHeadSideCoughSlash": [], + "FontAwesomeSolidHeadSideMask": [], + "FontAwesomeSolidHeadSideVirus": [], + "FontAwesomeSolidHeading": [], + "FontAwesomeSolidHeadphones": [], + "FontAwesomeSolidHeadphonesSimple": [], + "FontAwesomeSolidHeadset": [], + "FontAwesomeSolidHeart": [], + "FontAwesomeSolidHeartCircleBolt": [], + "FontAwesomeSolidHeartCircleCheck": [], + "FontAwesomeSolidHeartCircleExclamation": [], + "FontAwesomeSolidHeartCircleMinus": [], + "FontAwesomeSolidHeartCirclePlus": [], + "FontAwesomeSolidHeartCircleXmark": [], + "FontAwesomeSolidHeartCrack": [], + "FontAwesomeSolidHeartPulse": [], + "FontAwesomeSolidHelicopter": [], + "FontAwesomeSolidHelicopterSymbol": [], + "FontAwesomeSolidHelmetSafety": [], + "FontAwesomeSolidHelmetUn": [], + "FontAwesomeSolidHighlighter": [], + "FontAwesomeSolidHillAvalanche": [], + "FontAwesomeSolidHillRockslide": [], + "FontAwesomeSolidHippo": [], + "FontAwesomeSolidHockeyPuck": [], + "FontAwesomeSolidHollyBerry": [], + "FontAwesomeSolidHorse": [], + "FontAwesomeSolidHorseHead": [], + "FontAwesomeSolidHospital": [], + "FontAwesomeSolidHospitalUser": [], + "FontAwesomeSolidHotTubPerson": [], + "FontAwesomeSolidHotdog": [], + "FontAwesomeSolidHotel": [], + "FontAwesomeSolidHourglass": [], + "FontAwesomeSolidHourglassEmpty": [], + "FontAwesomeSolidHourglassEnd": [], + "FontAwesomeSolidHourglassStart": [], + "FontAwesomeSolidHouse": [], + "FontAwesomeSolidHouseChimney": [], + "FontAwesomeSolidHouseChimneyCrack": [], + "FontAwesomeSolidHouseChimneyMedical": [], + "FontAwesomeSolidHouseChimneyUser": [], + "FontAwesomeSolidHouseChimneyWindow": [], + "FontAwesomeSolidHouseCircleCheck": [], + "FontAwesomeSolidHouseCircleExclamation": [], + "FontAwesomeSolidHouseCircleXmark": [], + "FontAwesomeSolidHouseCrack": [], + "FontAwesomeSolidHouseFire": [], + "FontAwesomeSolidHouseFlag": [], + "FontAwesomeSolidHouseFloodWater": [], + "FontAwesomeSolidHouseFloodWaterCircleArrowRight": [], + "FontAwesomeSolidHouseLaptop": [], + "FontAwesomeSolidHouseLock": [], + "FontAwesomeSolidHouseMedical": [], + "FontAwesomeSolidHouseMedicalCircleCheck": [], + "FontAwesomeSolidHouseMedicalCircleExclamation": [], + "FontAwesomeSolidHouseMedicalCircleXmark": [], + "FontAwesomeSolidHouseMedicalFlag": [], + "FontAwesomeSolidHouseSignal": [], + "FontAwesomeSolidHouseTsunami": [], + "FontAwesomeSolidHouseUser": [], + "FontAwesomeSolidHryvniaSign": [], + "FontAwesomeSolidHurricane": [], + "FontAwesomeSolidI": [], + "FontAwesomeSolidICursor": [], + "FontAwesomeSolidIceCream": [], + "FontAwesomeSolidIcicles": [], + "FontAwesomeSolidIcons": [], + "FontAwesomeSolidIdBadge": [], + "FontAwesomeSolidIdCard": [], + "FontAwesomeSolidIdCardClip": [], + "FontAwesomeSolidIgloo": [], + "FontAwesomeSolidImage": [], + "FontAwesomeSolidImagePortrait": [], + "FontAwesomeSolidImages": [], + "FontAwesomeSolidInbox": [], + "FontAwesomeSolidIndent": [], + "FontAwesomeSolidIndianRupeeSign": [], + "FontAwesomeSolidIndustry": [], + "FontAwesomeSolidInfinity": [], + "FontAwesomeSolidInfo": [], + "FontAwesomeSolidItalic": [], + "FontAwesomeSolidJ": [], + "FontAwesomeSolidJar": [], + "FontAwesomeSolidJarWheat": [], + "FontAwesomeSolidJedi": [], + "FontAwesomeSolidJetFighter": [], + "FontAwesomeSolidJetFighterUp": [], + "FontAwesomeSolidJoint": [], + "FontAwesomeSolidJugDetergent": [], + "FontAwesomeSolidK": [], + "FontAwesomeSolidKaaba": [], + "FontAwesomeSolidKey": [], + "FontAwesomeSolidKeyboard": [], + "FontAwesomeSolidKhanda": [], + "FontAwesomeSolidKipSign": [], + "FontAwesomeSolidKitMedical": [], + "FontAwesomeSolidKitchenSet": [], + "FontAwesomeSolidKiwiBird": [], + "FontAwesomeSolidL": [], + "FontAwesomeSolidLandMineOn": [], + "FontAwesomeSolidLandmark": [], + "FontAwesomeSolidLandmarkDome": [], + "FontAwesomeSolidLandmarkFlag": [], + "FontAwesomeSolidLanguage": [], + "FontAwesomeSolidLaptop": [], + "FontAwesomeSolidLaptopCode": [], + "FontAwesomeSolidLaptopFile": [], + "FontAwesomeSolidLaptopMedical": [], + "FontAwesomeSolidLariSign": [], + "FontAwesomeSolidLayerGroup": [], + "FontAwesomeSolidLeaf": [], + "FontAwesomeSolidLeftLong": [], + "FontAwesomeSolidLeftRight": [], + "FontAwesomeSolidLemon": [], + "FontAwesomeSolidLessThan": [], + "FontAwesomeSolidLessThanEqual": [], + "FontAwesomeSolidLifeRing": [], + "FontAwesomeSolidLightbulb": [], + "FontAwesomeSolidLinesLeaning": [], + "FontAwesomeSolidLink": [], + "FontAwesomeSolidLinkSlash": [], + "FontAwesomeSolidLiraSign": [], + "FontAwesomeSolidList": [], + "FontAwesomeSolidListCheck": [], + "FontAwesomeSolidListOl": [], + "FontAwesomeSolidListUl": [], + "FontAwesomeSolidLitecoinSign": [], + "FontAwesomeSolidLocationArrow": [], + "FontAwesomeSolidLocationCrosshairs": [], + "FontAwesomeSolidLocationDot": [], + "FontAwesomeSolidLocationPin": [], + "FontAwesomeSolidLocationPinLock": [], + "FontAwesomeSolidLock": [], + "FontAwesomeSolidLockOpen": [], + "FontAwesomeSolidLocust": [], + "FontAwesomeSolidLungs": [], + "FontAwesomeSolidLungsVirus": [], + "FontAwesomeSolidM": [], + "FontAwesomeSolidMagnet": [], + "FontAwesomeSolidMagnifyingGlass": [], + "FontAwesomeSolidMagnifyingGlassArrowRight": [], + "FontAwesomeSolidMagnifyingGlassChart": [], + "FontAwesomeSolidMagnifyingGlassDollar": [], + "FontAwesomeSolidMagnifyingGlassLocation": [], + "FontAwesomeSolidMagnifyingGlassMinus": [], + "FontAwesomeSolidMagnifyingGlassPlus": [], + "FontAwesomeSolidManatSign": [], + "FontAwesomeSolidMap": [], + "FontAwesomeSolidMapLocation": [], + "FontAwesomeSolidMapLocationDot": [], + "FontAwesomeSolidMapPin": [], + "FontAwesomeSolidMarker": [], + "FontAwesomeSolidMars": [], + "FontAwesomeSolidMarsAndVenus": [], + "FontAwesomeSolidMarsAndVenusBurst": [], + "FontAwesomeSolidMarsDouble": [], + "FontAwesomeSolidMarsStroke": [], + "FontAwesomeSolidMarsStrokeRight": [], + "FontAwesomeSolidMarsStrokeUp": [], + "FontAwesomeSolidMartiniGlass": [], + "FontAwesomeSolidMartiniGlassCitrus": [], + "FontAwesomeSolidMartiniGlassEmpty": [], + "FontAwesomeSolidMask": [], + "FontAwesomeSolidMaskFace": [], + "FontAwesomeSolidMaskVentilator": [], + "FontAwesomeSolidMasksTheater": [], + "FontAwesomeSolidMattressPillow": [], + "FontAwesomeSolidMaximize": [], + "FontAwesomeSolidMedal": [], + "FontAwesomeSolidMemory": [], + "FontAwesomeSolidMenorah": [], + "FontAwesomeSolidMercury": [], + "FontAwesomeSolidMessage": [], + "FontAwesomeSolidMeteor": [], + "FontAwesomeSolidMicrochip": [], + "FontAwesomeSolidMicrophone": [], + "FontAwesomeSolidMicrophoneLines": [], + "FontAwesomeSolidMicrophoneLinesSlash": [], + "FontAwesomeSolidMicrophoneSlash": [], + "FontAwesomeSolidMicroscope": [], + "FontAwesomeSolidMillSign": [], + "FontAwesomeSolidMinimize": [], + "FontAwesomeSolidMinus": [], + "FontAwesomeSolidMitten": [], + "FontAwesomeSolidMobile": [], + "FontAwesomeSolidMobileButton": [], + "FontAwesomeSolidMobileRetro": [], + "FontAwesomeSolidMobileScreen": [], + "FontAwesomeSolidMobileScreenButton": [], + "FontAwesomeSolidMoneyBill": [], + "FontAwesomeSolidMoneyBill1": [], + "FontAwesomeSolidMoneyBill1Wave": [], + "FontAwesomeSolidMoneyBillTransfer": [], + "FontAwesomeSolidMoneyBillTrendUp": [], + "FontAwesomeSolidMoneyBillWave": [], + "FontAwesomeSolidMoneyBillWheat": [], + "FontAwesomeSolidMoneyBills": [], + "FontAwesomeSolidMoneyCheck": [], + "FontAwesomeSolidMoneyCheckDollar": [], + "FontAwesomeSolidMonument": [], + "FontAwesomeSolidMoon": [], + "FontAwesomeSolidMortarPestle": [], + "FontAwesomeSolidMosque": [], + "FontAwesomeSolidMosquito": [], + "FontAwesomeSolidMosquitoNet": [], + "FontAwesomeSolidMotorcycle": [], + "FontAwesomeSolidMound": [], + "FontAwesomeSolidMountain": [], + "FontAwesomeSolidMountainCity": [], + "FontAwesomeSolidMountainSun": [], + "FontAwesomeSolidMugHot": [], + "FontAwesomeSolidMugSaucer": [], + "FontAwesomeSolidMusic": [], + "FontAwesomeSolidN": [], + "FontAwesomeSolidNairaSign": [], + "FontAwesomeSolidNetworkWired": [], + "FontAwesomeSolidNeuter": [], + "FontAwesomeSolidNewspaper": [], + "FontAwesomeSolidNotEqual": [], + "FontAwesomeSolidNoteSticky": [], + "FontAwesomeSolidNotesMedical": [], + "FontAwesomeSolidO": [], + "FontAwesomeSolidObjectGroup": [], + "FontAwesomeSolidObjectUngroup": [], + "FontAwesomeSolidOilCan": [], + "FontAwesomeSolidOilWell": [], + "FontAwesomeSolidOm": [], + "FontAwesomeSolidOtter": [], + "FontAwesomeSolidOutdent": [], + "FontAwesomeSolidP": [], + "FontAwesomeSolidPager": [], + "FontAwesomeSolidPaintRoller": [], + "FontAwesomeSolidPaintbrush": [], + "FontAwesomeSolidPalette": [], + "FontAwesomeSolidPallet": [], + "FontAwesomeSolidPanorama": [], + "FontAwesomeSolidPaperPlane": [], + "FontAwesomeSolidPaperclip": [], + "FontAwesomeSolidParachuteBox": [], + "FontAwesomeSolidParagraph": [], + "FontAwesomeSolidPassport": [], + "FontAwesomeSolidPaste": [], + "FontAwesomeSolidPause": [], + "FontAwesomeSolidPaw": [], + "FontAwesomeSolidPeace": [], + "FontAwesomeSolidPen": [], + "FontAwesomeSolidPenClip": [], + "FontAwesomeSolidPenFancy": [], + "FontAwesomeSolidPenNib": [], + "FontAwesomeSolidPenRuler": [], + "FontAwesomeSolidPenToSquare": [], + "FontAwesomeSolidPencil": [], + "FontAwesomeSolidPeopleArrowsLeftRight": [], + "FontAwesomeSolidPeopleCarryBox": [], + "FontAwesomeSolidPeopleGroup": [], + "FontAwesomeSolidPeopleLine": [], + "FontAwesomeSolidPeoplePulling": [], + "FontAwesomeSolidPeopleRobbery": [], + "FontAwesomeSolidPeopleRoof": [], + "FontAwesomeSolidPepperHot": [], + "FontAwesomeSolidPercent": [], + "FontAwesomeSolidPerson": [], + "FontAwesomeSolidPersonArrowDownToLine": [], + "FontAwesomeSolidPersonArrowUpFromLine": [], + "FontAwesomeSolidPersonBiking": [], + "FontAwesomeSolidPersonBooth": [], + "FontAwesomeSolidPersonBreastfeeding": [], + "FontAwesomeSolidPersonBurst": [], + "FontAwesomeSolidPersonCane": [], + "FontAwesomeSolidPersonChalkboard": [], + "FontAwesomeSolidPersonCircleCheck": [], + "FontAwesomeSolidPersonCircleExclamation": [], + "FontAwesomeSolidPersonCircleMinus": [], + "FontAwesomeSolidPersonCirclePlus": [], + "FontAwesomeSolidPersonCircleQuestion": [], + "FontAwesomeSolidPersonCircleXmark": [], + "FontAwesomeSolidPersonDigging": [], + "FontAwesomeSolidPersonDotsFromLine": [], + "FontAwesomeSolidPersonDress": [], + "FontAwesomeSolidPersonDressBurst": [], + "FontAwesomeSolidPersonDrowning": [], + "FontAwesomeSolidPersonFalling": [], + "FontAwesomeSolidPersonFallingBurst": [], + "FontAwesomeSolidPersonHalfDress": [], + "FontAwesomeSolidPersonHarassing": [], + "FontAwesomeSolidPersonHiking": [], + "FontAwesomeSolidPersonMilitaryPointing": [], + "FontAwesomeSolidPersonMilitaryRifle": [], + "FontAwesomeSolidPersonMilitaryToPerson": [], + "FontAwesomeSolidPersonPraying": [], + "FontAwesomeSolidPersonPregnant": [], + "FontAwesomeSolidPersonRays": [], + "FontAwesomeSolidPersonRifle": [], + "FontAwesomeSolidPersonRunning": [], + "FontAwesomeSolidPersonShelter": [], + "FontAwesomeSolidPersonSkating": [], + "FontAwesomeSolidPersonSkiing": [], + "FontAwesomeSolidPersonSkiingNordic": [], + "FontAwesomeSolidPersonSnowboarding": [], + "FontAwesomeSolidPersonSwimming": [], + "FontAwesomeSolidPersonThroughWindow": [], + "FontAwesomeSolidPersonWalking": [], + "FontAwesomeSolidPersonWalkingArrowLoopLeft": [], + "FontAwesomeSolidPersonWalkingArrowRight": [], + "FontAwesomeSolidPersonWalkingDashedLineArrowRight": [], + "FontAwesomeSolidPersonWalkingLuggage": [], + "FontAwesomeSolidPersonWalkingWithCane": [], + "FontAwesomeSolidPesetaSign": [], + "FontAwesomeSolidPesoSign": [], + "FontAwesomeSolidPhone": [], + "FontAwesomeSolidPhoneFlip": [], + "FontAwesomeSolidPhoneSlash": [], + "FontAwesomeSolidPhoneVolume": [], + "FontAwesomeSolidPhotoFilm": [], + "FontAwesomeSolidPiggyBank": [], + "FontAwesomeSolidPills": [], + "FontAwesomeSolidPizzaSlice": [], + "FontAwesomeSolidPlaceOfWorship": [], + "FontAwesomeSolidPlane": [], + "FontAwesomeSolidPlaneArrival": [], + "FontAwesomeSolidPlaneCircleCheck": [], + "FontAwesomeSolidPlaneCircleExclamation": [], + "FontAwesomeSolidPlaneCircleXmark": [], + "FontAwesomeSolidPlaneDeparture": [], + "FontAwesomeSolidPlaneLock": [], + "FontAwesomeSolidPlaneSlash": [], + "FontAwesomeSolidPlaneUp": [], + "FontAwesomeSolidPlantWilt": [], + "FontAwesomeSolidPlateWheat": [], + "FontAwesomeSolidPlay": [], + "FontAwesomeSolidPlug": [], + "FontAwesomeSolidPlugCircleBolt": [], + "FontAwesomeSolidPlugCircleCheck": [], + "FontAwesomeSolidPlugCircleExclamation": [], + "FontAwesomeSolidPlugCircleMinus": [], + "FontAwesomeSolidPlugCirclePlus": [], + "FontAwesomeSolidPlugCircleXmark": [], + "FontAwesomeSolidPlus": [], + "FontAwesomeSolidPlusMinus": [], + "FontAwesomeSolidPodcast": [], + "FontAwesomeSolidPoo": [], + "FontAwesomeSolidPooStorm": [], + "FontAwesomeSolidPoop": [], + "FontAwesomeSolidPowerOff": [], + "FontAwesomeSolidPrescription": [], + "FontAwesomeSolidPrescriptionBottle": [], + "FontAwesomeSolidPrescriptionBottleMedical": [], + "FontAwesomeSolidPrint": [], + "FontAwesomeSolidPumpMedical": [], + "FontAwesomeSolidPumpSoap": [], + "FontAwesomeSolidPuzzlePiece": [], + "FontAwesomeSolidQ": [], + "FontAwesomeSolidQrcode": [], + "FontAwesomeSolidQuestion": [], + "FontAwesomeSolidQuoteLeft": [], + "FontAwesomeSolidQuoteRight": [], + "FontAwesomeSolidR": [], + "FontAwesomeSolidRadiation": [], + "FontAwesomeSolidRadio": [], + "FontAwesomeSolidRainbow": [], + "FontAwesomeSolidRankingStar": [], + "FontAwesomeSolidReceipt": [], + "FontAwesomeSolidRecordVinyl": [], + "FontAwesomeSolidRectangleAd": [], + "FontAwesomeSolidRectangleList": [], + "FontAwesomeSolidRectangleXmark": [], + "FontAwesomeSolidRecycle": [], + "FontAwesomeSolidRegistered": [], + "FontAwesomeSolidRepeat": [], + "FontAwesomeSolidReply": [], + "FontAwesomeSolidReplyAll": [], + "FontAwesomeSolidRepublican": [], + "FontAwesomeSolidRestroom": [], + "FontAwesomeSolidRetweet": [], + "FontAwesomeSolidRibbon": [], + "FontAwesomeSolidRightFromBracket": [], + "FontAwesomeSolidRightLeft": [], + "FontAwesomeSolidRightLong": [], + "FontAwesomeSolidRightToBracket": [], + "FontAwesomeSolidRing": [], + "FontAwesomeSolidRoad": [], + "FontAwesomeSolidRoadBarrier": [], + "FontAwesomeSolidRoadBridge": [], + "FontAwesomeSolidRoadCircleCheck": [], + "FontAwesomeSolidRoadCircleExclamation": [], + "FontAwesomeSolidRoadCircleXmark": [], + "FontAwesomeSolidRoadLock": [], + "FontAwesomeSolidRoadSpikes": [], + "FontAwesomeSolidRobot": [], + "FontAwesomeSolidRocket": [], + "FontAwesomeSolidRotate": [], + "FontAwesomeSolidRotateLeft": [], + "FontAwesomeSolidRotateRight": [], + "FontAwesomeSolidRoute": [], + "FontAwesomeSolidRss": [], + "FontAwesomeSolidRubleSign": [], + "FontAwesomeSolidRug": [], + "FontAwesomeSolidRuler": [], + "FontAwesomeSolidRulerCombined": [], + "FontAwesomeSolidRulerHorizontal": [], + "FontAwesomeSolidRulerVertical": [], + "FontAwesomeSolidRupeeSign": [], + "FontAwesomeSolidRupiahSign": [], + "FontAwesomeSolidS": [], + "FontAwesomeSolidSackDollar": [], + "FontAwesomeSolidSackXmark": [], + "FontAwesomeSolidSailboat": [], + "FontAwesomeSolidSatellite": [], + "FontAwesomeSolidSatelliteDish": [], + "FontAwesomeSolidScaleBalanced": [], + "FontAwesomeSolidScaleUnbalanced": [], + "FontAwesomeSolidScaleUnbalancedFlip": [], + "FontAwesomeSolidSchool": [], + "FontAwesomeSolidSchoolCircleCheck": [], + "FontAwesomeSolidSchoolCircleExclamation": [], + "FontAwesomeSolidSchoolCircleXmark": [], + "FontAwesomeSolidSchoolFlag": [], + "FontAwesomeSolidSchoolLock": [], + "FontAwesomeSolidScissors": [], + "FontAwesomeSolidScrewdriver": [], + "FontAwesomeSolidScrewdriverWrench": [], + "FontAwesomeSolidScroll": [], + "FontAwesomeSolidScrollTorah": [], + "FontAwesomeSolidSdCard": [], + "FontAwesomeSolidSection": [], + "FontAwesomeSolidSeedling": [], + "FontAwesomeSolidServer": [], + "FontAwesomeSolidShapes": [], + "FontAwesomeSolidShare": [], + "FontAwesomeSolidShareFromSquare": [], + "FontAwesomeSolidShareNodes": [], + "FontAwesomeSolidSheetPlastic": [], + "FontAwesomeSolidShekelSign": [], + "FontAwesomeSolidShield": [], + "FontAwesomeSolidShieldBlank": [], + "FontAwesomeSolidShieldCat": [], + "FontAwesomeSolidShieldDog": [], + "FontAwesomeSolidShieldHalved": [], + "FontAwesomeSolidShieldHeart": [], + "FontAwesomeSolidShieldVirus": [], + "FontAwesomeSolidShip": [], + "FontAwesomeSolidShirt": [], + "FontAwesomeSolidShoePrints": [], + "FontAwesomeSolidShop": [], + "FontAwesomeSolidShopLock": [], + "FontAwesomeSolidShopSlash": [], + "FontAwesomeSolidShower": [], + "FontAwesomeSolidShrimp": [], + "FontAwesomeSolidShuffle": [], + "FontAwesomeSolidShuttleSpace": [], + "FontAwesomeSolidSignHanging": [], + "FontAwesomeSolidSignal": [], + "FontAwesomeSolidSignature": [], + "FontAwesomeSolidSignsPost": [], + "FontAwesomeSolidSimCard": [], + "FontAwesomeSolidSink": [], + "FontAwesomeSolidSitemap": [], + "FontAwesomeSolidSkull": [], + "FontAwesomeSolidSkullCrossbones": [], + "FontAwesomeSolidSlash": [], + "FontAwesomeSolidSleigh": [], + "FontAwesomeSolidSliders": [], + "FontAwesomeSolidSmog": [], + "FontAwesomeSolidSmoking": [], + "FontAwesomeSolidSnowflake": [], + "FontAwesomeSolidSnowman": [], + "FontAwesomeSolidSnowplow": [], + "FontAwesomeSolidSoap": [], + "FontAwesomeSolidSocks": [], + "FontAwesomeSolidSolarPanel": [], + "FontAwesomeSolidSort": [], + "FontAwesomeSolidSortDown": [], + "FontAwesomeSolidSortUp": [], + "FontAwesomeSolidSpa": [], + "FontAwesomeSolidSpaghettiMonsterFlying": [], + "FontAwesomeSolidSpellCheck": [], + "FontAwesomeSolidSpider": [], + "FontAwesomeSolidSpinner": [], + "FontAwesomeSolidSplotch": [], + "FontAwesomeSolidSpoon": [], + "FontAwesomeSolidSprayCan": [], + "FontAwesomeSolidSprayCanSparkles": [], + "FontAwesomeSolidSquare": [], + "FontAwesomeSolidSquareArrowUpRight": [], + "FontAwesomeSolidSquareCaretDown": [], + "FontAwesomeSolidSquareCaretLeft": [], + "FontAwesomeSolidSquareCaretRight": [], + "FontAwesomeSolidSquareCaretUp": [], + "FontAwesomeSolidSquareCheck": [], + "FontAwesomeSolidSquareEnvelope": [], + "FontAwesomeSolidSquareFull": [], + "FontAwesomeSolidSquareH": [], + "FontAwesomeSolidSquareMinus": [], + "FontAwesomeSolidSquareNfi": [], + "FontAwesomeSolidSquareParking": [], + "FontAwesomeSolidSquarePen": [], + "FontAwesomeSolidSquarePersonConfined": [], + "FontAwesomeSolidSquarePhone": [], + "FontAwesomeSolidSquarePhoneFlip": [], + "FontAwesomeSolidSquarePlus": [], + "FontAwesomeSolidSquarePollHorizontal": [], + "FontAwesomeSolidSquarePollVertical": [], + "FontAwesomeSolidSquareRootVariable": [], + "FontAwesomeSolidSquareRss": [], + "FontAwesomeSolidSquareShareNodes": [], + "FontAwesomeSolidSquareUpRight": [], + "FontAwesomeSolidSquareVirus": [], + "FontAwesomeSolidSquareXmark": [], + "FontAwesomeSolidStaffAesculapius": [], + "FontAwesomeSolidStairs": [], + "FontAwesomeSolidStamp": [], + "FontAwesomeSolidStar": [], + "FontAwesomeSolidStarAndCrescent": [], + "FontAwesomeSolidStarHalf": [], + "FontAwesomeSolidStarHalfStroke": [], + "FontAwesomeSolidStarOfDavid": [], + "FontAwesomeSolidStarOfLife": [], + "FontAwesomeSolidSterlingSign": [], + "FontAwesomeSolidStethoscope": [], + "FontAwesomeSolidStop": [], + "FontAwesomeSolidStopwatch": [], + "FontAwesomeSolidStopwatch20": [], + "FontAwesomeSolidStore": [], + "FontAwesomeSolidStoreSlash": [], + "FontAwesomeSolidStreetView": [], + "FontAwesomeSolidStrikethrough": [], + "FontAwesomeSolidStroopwafel": [], + "FontAwesomeSolidSubscript": [], + "FontAwesomeSolidSuitcase": [], + "FontAwesomeSolidSuitcaseMedical": [], + "FontAwesomeSolidSuitcaseRolling": [], + "FontAwesomeSolidSun": [], + "FontAwesomeSolidSunPlantWilt": [], + "FontAwesomeSolidSuperscript": [], + "FontAwesomeSolidSwatchbook": [], + "FontAwesomeSolidSynagogue": [], + "FontAwesomeSolidSyringe": [], + "FontAwesomeSolidT": [], + "FontAwesomeSolidTable": [], + "FontAwesomeSolidTableCells": [], + "FontAwesomeSolidTableCellsLarge": [], + "FontAwesomeSolidTableColumns": [], + "FontAwesomeSolidTableList": [], + "FontAwesomeSolidTableTennisPaddleBall": [], + "FontAwesomeSolidTablet": [], + "FontAwesomeSolidTabletButton": [], + "FontAwesomeSolidTabletScreenButton": [], + "FontAwesomeSolidTablets": [], + "FontAwesomeSolidTachographDigital": [], + "FontAwesomeSolidTag": [], + "FontAwesomeSolidTags": [], + "FontAwesomeSolidTape": [], + "FontAwesomeSolidTarp": [], + "FontAwesomeSolidTarpDroplet": [], + "FontAwesomeSolidTaxi": [], + "FontAwesomeSolidTeeth": [], + "FontAwesomeSolidTeethOpen": [], + "FontAwesomeSolidTemperatureArrowDown": [], + "FontAwesomeSolidTemperatureArrowUp": [], + "FontAwesomeSolidTemperatureEmpty": [], + "FontAwesomeSolidTemperatureFull": [], + "FontAwesomeSolidTemperatureHalf": [], + "FontAwesomeSolidTemperatureHigh": [], + "FontAwesomeSolidTemperatureLow": [], + "FontAwesomeSolidTemperatureQuarter": [], + "FontAwesomeSolidTemperatureThreeQuarters": [], + "FontAwesomeSolidTengeSign": [], + "FontAwesomeSolidTent": [], + "FontAwesomeSolidTentArrowDownToLine": [], + "FontAwesomeSolidTentArrowLeftRight": [], + "FontAwesomeSolidTentArrowTurnLeft": [], + "FontAwesomeSolidTentArrowsDown": [], + "FontAwesomeSolidTents": [], + "FontAwesomeSolidTerminal": [], + "FontAwesomeSolidTextHeight": [], + "FontAwesomeSolidTextSlash": [], + "FontAwesomeSolidTextWidth": [], + "FontAwesomeSolidThermometer": [], + "FontAwesomeSolidThumbsDown": [], + "FontAwesomeSolidThumbsUp": [], + "FontAwesomeSolidThumbtack": [], + "FontAwesomeSolidTicket": [], + "FontAwesomeSolidTicketSimple": [], + "FontAwesomeSolidTimeline": [], + "FontAwesomeSolidToggleOff": [], + "FontAwesomeSolidToggleOn": [], + "FontAwesomeSolidToilet": [], + "FontAwesomeSolidToiletPaper": [], + "FontAwesomeSolidToiletPaperSlash": [], + "FontAwesomeSolidToiletPortable": [], + "FontAwesomeSolidToiletsPortable": [], + "FontAwesomeSolidToolbox": [], + "FontAwesomeSolidTooth": [], + "FontAwesomeSolidToriiGate": [], + "FontAwesomeSolidTornado": [], + "FontAwesomeSolidTowerBroadcast": [], + "FontAwesomeSolidTowerCell": [], + "FontAwesomeSolidTowerObservation": [], + "FontAwesomeSolidTractor": [], + "FontAwesomeSolidTrademark": [], + "FontAwesomeSolidTrafficLight": [], + "FontAwesomeSolidTrailer": [], + "FontAwesomeSolidTrain": [], + "FontAwesomeSolidTrainSubway": [], + "FontAwesomeSolidTrainTram": [], + "FontAwesomeSolidTransgender": [], + "FontAwesomeSolidTrash": [], + "FontAwesomeSolidTrashArrowUp": [], + "FontAwesomeSolidTrashCan": [], + "FontAwesomeSolidTrashCanArrowUp": [], + "FontAwesomeSolidTree": [], + "FontAwesomeSolidTreeCity": [], + "FontAwesomeSolidTriangleExclamation": [], + "FontAwesomeSolidTrophy": [], + "FontAwesomeSolidTrowel": [], + "FontAwesomeSolidTrowelBricks": [], + "FontAwesomeSolidTruck": [], + "FontAwesomeSolidTruckArrowRight": [], + "FontAwesomeSolidTruckDroplet": [], + "FontAwesomeSolidTruckFast": [], + "FontAwesomeSolidTruckField": [], + "FontAwesomeSolidTruckFieldUn": [], + "FontAwesomeSolidTruckFront": [], + "FontAwesomeSolidTruckMedical": [], + "FontAwesomeSolidTruckMonster": [], + "FontAwesomeSolidTruckMoving": [], + "FontAwesomeSolidTruckPickup": [], + "FontAwesomeSolidTruckPlane": [], + "FontAwesomeSolidTruckRampBox": [], + "FontAwesomeSolidTty": [], + "FontAwesomeSolidTurkishLiraSign": [], + "FontAwesomeSolidTurnDown": [], + "FontAwesomeSolidTurnUp": [], + "FontAwesomeSolidTv": [], + "FontAwesomeSolidU": [], + "FontAwesomeSolidUmbrella": [], + "FontAwesomeSolidUmbrellaBeach": [], + "FontAwesomeSolidUnderline": [], + "FontAwesomeSolidUniversalAccess": [], + "FontAwesomeSolidUnlock": [], + "FontAwesomeSolidUnlockKeyhole": [], + "FontAwesomeSolidUpDown": [], + "FontAwesomeSolidUpDownLeftRight": [], + "FontAwesomeSolidUpLong": [], + "FontAwesomeSolidUpRightAndDownLeftFromCenter": [], + "FontAwesomeSolidUpRightFromSquare": [], + "FontAwesomeSolidUpload": [], + "FontAwesomeSolidUser": [], + "FontAwesomeSolidUserAstronaut": [], + "FontAwesomeSolidUserCheck": [], + "FontAwesomeSolidUserClock": [], + "FontAwesomeSolidUserDoctor": [], + "FontAwesomeSolidUserGear": [], + "FontAwesomeSolidUserGraduate": [], + "FontAwesomeSolidUserGroup": [], + "FontAwesomeSolidUserInjured": [], + "FontAwesomeSolidUserLarge": [], + "FontAwesomeSolidUserLargeSlash": [], + "FontAwesomeSolidUserLock": [], + "FontAwesomeSolidUserMinus": [], + "FontAwesomeSolidUserNinja": [], + "FontAwesomeSolidUserNurse": [], + "FontAwesomeSolidUserPen": [], + "FontAwesomeSolidUserPlus": [], + "FontAwesomeSolidUserSecret": [], + "FontAwesomeSolidUserShield": [], + "FontAwesomeSolidUserSlash": [], + "FontAwesomeSolidUserTag": [], + "FontAwesomeSolidUserTie": [], + "FontAwesomeSolidUserXmark": [], + "FontAwesomeSolidUsers": [], + "FontAwesomeSolidUsersBetweenLines": [], + "FontAwesomeSolidUsersGear": [], + "FontAwesomeSolidUsersLine": [], + "FontAwesomeSolidUsersRays": [], + "FontAwesomeSolidUsersRectangle": [], + "FontAwesomeSolidUsersSlash": [], + "FontAwesomeSolidUsersViewfinder": [], + "FontAwesomeSolidUtensils": [], + "FontAwesomeSolidV": [], + "FontAwesomeSolidVanShuttle": [], + "FontAwesomeSolidVault": [], + "FontAwesomeSolidVectorSquare": [], + "FontAwesomeSolidVenus": [], + "FontAwesomeSolidVenusDouble": [], + "FontAwesomeSolidVenusMars": [], + "FontAwesomeSolidVest": [], + "FontAwesomeSolidVestPatches": [], + "FontAwesomeSolidVial": [], + "FontAwesomeSolidVialCircleCheck": [], + "FontAwesomeSolidVialVirus": [], + "FontAwesomeSolidVials": [], + "FontAwesomeSolidVideo": [], + "FontAwesomeSolidVideoSlash": [], + "FontAwesomeSolidVihara": [], + "FontAwesomeSolidVirus": [], + "FontAwesomeSolidVirusCovid": [], + "FontAwesomeSolidVirusCovidSlash": [], + "FontAwesomeSolidVirusSlash": [], + "FontAwesomeSolidViruses": [], + "FontAwesomeSolidVoicemail": [], + "FontAwesomeSolidVolcano": [], + "FontAwesomeSolidVolleyball": [], + "FontAwesomeSolidVolumeHigh": [], + "FontAwesomeSolidVolumeLow": [], + "FontAwesomeSolidVolumeOff": [], + "FontAwesomeSolidVolumeXmark": [], + "FontAwesomeSolidVrCardboard": [], + "FontAwesomeSolidW": [], + "FontAwesomeSolidWalkieTalkie": [], + "FontAwesomeSolidWallet": [], + "FontAwesomeSolidWandMagic": [], + "FontAwesomeSolidWandMagicSparkles": [], + "FontAwesomeSolidWandSparkles": [], + "FontAwesomeSolidWarehouse": [], + "FontAwesomeSolidWater": [], + "FontAwesomeSolidWaterLadder": [], + "FontAwesomeSolidWaveSquare": [], + "FontAwesomeSolidWeightHanging": [], + "FontAwesomeSolidWeightScale": [], + "FontAwesomeSolidWheatAwn": [], + "FontAwesomeSolidWheatAwnCircleExclamation": [], + "FontAwesomeSolidWheelchair": [], + "FontAwesomeSolidWheelchairMove": [], + "FontAwesomeSolidWhiskeyGlass": [], + "FontAwesomeSolidWifi": [], + "FontAwesomeSolidWind": [], + "FontAwesomeSolidWindowMaximize": [], + "FontAwesomeSolidWindowMinimize": [], + "FontAwesomeSolidWindowRestore": [], + "FontAwesomeSolidWineBottle": [], + "FontAwesomeSolidWineGlass": [], + "FontAwesomeSolidWineGlassEmpty": [], + "FontAwesomeSolidWonSign": [], + "FontAwesomeSolidWorm": [], + "FontAwesomeSolidWrench": [], + "FontAwesomeSolidX": [], + "FontAwesomeSolidXRay": [], + "FontAwesomeSolidXmark": [], + "FontAwesomeSolidXmarksLines": [], + "FontAwesomeSolidY": [], + "FontAwesomeSolidYenSign": [], + "FontAwesomeSolidYinYang": [], + "FontAwesomeSolidZ": [], + "HeroiconsMiniSolidAcademicCap": [], + "HeroiconsMiniSolidAdjustmentsHorizontal": [], + "HeroiconsMiniSolidAdjustmentsVertical": [], + "HeroiconsMiniSolidArchiveBox": [], + "HeroiconsMiniSolidArchiveBoxArrowDown": [], + "HeroiconsMiniSolidArchiveBoxXMark": [], + "HeroiconsMiniSolidArrowDown": [], + "HeroiconsMiniSolidArrowDownCircle": [], + "HeroiconsMiniSolidArrowDownLeft": [], + "HeroiconsMiniSolidArrowDownOnSquare": [], + "HeroiconsMiniSolidArrowDownOnSquareStack": [], + "HeroiconsMiniSolidArrowDownRight": [], + "HeroiconsMiniSolidArrowDownTray": [], + "HeroiconsMiniSolidArrowLeft": [], + "HeroiconsMiniSolidArrowLeftCircle": [], + "HeroiconsMiniSolidArrowLeftOnRectangle": [], + "HeroiconsMiniSolidArrowLongDown": [], + "HeroiconsMiniSolidArrowLongLeft": [], + "HeroiconsMiniSolidArrowLongRight": [], + "HeroiconsMiniSolidArrowLongUp": [], + "HeroiconsMiniSolidArrowPath": [], + "HeroiconsMiniSolidArrowPathRoundedSquare": [], + "HeroiconsMiniSolidArrowRight": [], + "HeroiconsMiniSolidArrowRightCircle": [], + "HeroiconsMiniSolidArrowRightOnRectangle": [], + "HeroiconsMiniSolidArrowSmallDown": [], + "HeroiconsMiniSolidArrowSmallLeft": [], + "HeroiconsMiniSolidArrowSmallRight": [], + "HeroiconsMiniSolidArrowSmallUp": [], + "HeroiconsMiniSolidArrowTopRightOnSquare": [], + "HeroiconsMiniSolidArrowTrendingDown": [], + "HeroiconsMiniSolidArrowTrendingUp": [], + "HeroiconsMiniSolidArrowUp": [], + "HeroiconsMiniSolidArrowUpCircle": [], + "HeroiconsMiniSolidArrowUpLeft": [], + "HeroiconsMiniSolidArrowUpOnSquare": [], + "HeroiconsMiniSolidArrowUpOnSquareStack": [], + "HeroiconsMiniSolidArrowUpRight": [], + "HeroiconsMiniSolidArrowUpTray": [], + "HeroiconsMiniSolidArrowUturnDown": [], + "HeroiconsMiniSolidArrowUturnLeft": [], + "HeroiconsMiniSolidArrowUturnRight": [], + "HeroiconsMiniSolidArrowUturnUp": [], + "HeroiconsMiniSolidArrowsPointingIn": [], + "HeroiconsMiniSolidArrowsPointingOut": [], + "HeroiconsMiniSolidArrowsRightLeft": [], + "HeroiconsMiniSolidArrowsUpDown": [], + "HeroiconsMiniSolidAtSymbol": [], + "HeroiconsMiniSolidBackspace": [], + "HeroiconsMiniSolidBackward": [], + "HeroiconsMiniSolidBanknotes": [], + "HeroiconsMiniSolidBars2": [], + "HeroiconsMiniSolidBars3": [], + "HeroiconsMiniSolidBars3BottomLeft": [], + "HeroiconsMiniSolidBars3BottomRight": [], + "HeroiconsMiniSolidBars3CenterLeft": [], + "HeroiconsMiniSolidBars4": [], + "HeroiconsMiniSolidBarsArrowDown": [], + "HeroiconsMiniSolidBarsArrowUp": [], + "HeroiconsMiniSolidBattery0": [], + "HeroiconsMiniSolidBattery100": [], + "HeroiconsMiniSolidBattery50": [], + "HeroiconsMiniSolidBeaker": [], + "HeroiconsMiniSolidBell": [], + "HeroiconsMiniSolidBellAlert": [], + "HeroiconsMiniSolidBellSlash": [], + "HeroiconsMiniSolidBellSnooze": [], + "HeroiconsMiniSolidBolt": [], + "HeroiconsMiniSolidBoltSlash": [], + "HeroiconsMiniSolidBookOpen": [], + "HeroiconsMiniSolidBookmark": [], + "HeroiconsMiniSolidBookmarkSlash": [], + "HeroiconsMiniSolidBookmarkSquare": [], + "HeroiconsMiniSolidBriefcase": [], + "HeroiconsMiniSolidBugAnt": [], + "HeroiconsMiniSolidBuildingLibrary": [], + "HeroiconsMiniSolidBuildingOffice": [], + "HeroiconsMiniSolidBuildingOffice2": [], + "HeroiconsMiniSolidBuildingStorefront": [], + "HeroiconsMiniSolidCake": [], + "HeroiconsMiniSolidCalculator": [], + "HeroiconsMiniSolidCalendar": [], + "HeroiconsMiniSolidCalendarDays": [], + "HeroiconsMiniSolidCamera": [], + "HeroiconsMiniSolidChartBar": [], + "HeroiconsMiniSolidChartBarSquare": [], + "HeroiconsMiniSolidChartPie": [], + "HeroiconsMiniSolidChatBubbleBottomCenter": [], + "HeroiconsMiniSolidChatBubbleBottomCenterText": [], + "HeroiconsMiniSolidChatBubbleLeft": [], + "HeroiconsMiniSolidChatBubbleLeftEllipsis": [], + "HeroiconsMiniSolidChatBubbleLeftRight": [], + "HeroiconsMiniSolidChatBubbleOvalLeft": [], + "HeroiconsMiniSolidChatBubbleOvalLeftEllipsis": [], + "HeroiconsMiniSolidCheck": [], + "HeroiconsMiniSolidCheckBadge": [], + "HeroiconsMiniSolidCheckCircle": [], + "HeroiconsMiniSolidChevronDoubleDown": [], + "HeroiconsMiniSolidChevronDoubleLeft": [], + "HeroiconsMiniSolidChevronDoubleRight": [], + "HeroiconsMiniSolidChevronDoubleUp": [], + "HeroiconsMiniSolidChevronDown": [], + "HeroiconsMiniSolidChevronLeft": [], + "HeroiconsMiniSolidChevronRight": [], + "HeroiconsMiniSolidChevronUp": [], + "HeroiconsMiniSolidChevronUpDown": [], + "HeroiconsMiniSolidCircleStack": [], + "HeroiconsMiniSolidClipboard": [], + "HeroiconsMiniSolidClipboardDocument": [], + "HeroiconsMiniSolidClipboardDocumentCheck": [], + "HeroiconsMiniSolidClipboardDocumentList": [], + "HeroiconsMiniSolidClock": [], + "HeroiconsMiniSolidCloud": [], + "HeroiconsMiniSolidCloudArrowDown": [], + "HeroiconsMiniSolidCloudArrowUp": [], + "HeroiconsMiniSolidCodeBracket": [], + "HeroiconsMiniSolidCodeBracketSquare": [], + "HeroiconsMiniSolidCog": [], + "HeroiconsMiniSolidCog6Tooth": [], + "HeroiconsMiniSolidCog8Tooth": [], + "HeroiconsMiniSolidCommandLine": [], + "HeroiconsMiniSolidComputerDesktop": [], + "HeroiconsMiniSolidCpuChip": [], + "HeroiconsMiniSolidCreditCard": [], + "HeroiconsMiniSolidCube": [], + "HeroiconsMiniSolidCubeTransparent": [], + "HeroiconsMiniSolidCurrencyBangladeshi": [], + "HeroiconsMiniSolidCurrencyDollar": [], + "HeroiconsMiniSolidCurrencyEuro": [], + "HeroiconsMiniSolidCurrencyPound": [], + "HeroiconsMiniSolidCurrencyRupee": [], + "HeroiconsMiniSolidCurrencyYen": [], + "HeroiconsMiniSolidCursorArrowRays": [], + "HeroiconsMiniSolidCursorArrowRipple": [], + "HeroiconsMiniSolidDevicePhoneMobile": [], + "HeroiconsMiniSolidDeviceTablet": [], + "HeroiconsMiniSolidDocument": [], + "HeroiconsMiniSolidDocumentArrowDown": [], + "HeroiconsMiniSolidDocumentArrowUp": [], + "HeroiconsMiniSolidDocumentChartBar": [], + "HeroiconsMiniSolidDocumentCheck": [], + "HeroiconsMiniSolidDocumentDuplicate": [], + "HeroiconsMiniSolidDocumentMagnifyingGlass": [], + "HeroiconsMiniSolidDocumentMinus": [], + "HeroiconsMiniSolidDocumentPlus": [], + "HeroiconsMiniSolidDocumentText": [], + "HeroiconsMiniSolidEllipsisHorizontal": [], + "HeroiconsMiniSolidEllipsisHorizontalCircle": [], + "HeroiconsMiniSolidEllipsisVertical": [], + "HeroiconsMiniSolidEnvelope": [], + "HeroiconsMiniSolidEnvelopeOpen": [], + "HeroiconsMiniSolidExclamationCircle": [], + "HeroiconsMiniSolidExclamationTriangle": [], + "HeroiconsMiniSolidEye": [], + "HeroiconsMiniSolidEyeDropper": [], + "HeroiconsMiniSolidEyeSlash": [], + "HeroiconsMiniSolidFaceFrown": [], + "HeroiconsMiniSolidFaceSmile": [], + "HeroiconsMiniSolidFilm": [], + "HeroiconsMiniSolidFingerPrint": [], + "HeroiconsMiniSolidFire": [], + "HeroiconsMiniSolidFlag": [], + "HeroiconsMiniSolidFolder": [], + "HeroiconsMiniSolidFolderArrowDown": [], + "HeroiconsMiniSolidFolderMinus": [], + "HeroiconsMiniSolidFolderOpen": [], + "HeroiconsMiniSolidFolderPlus": [], + "HeroiconsMiniSolidForward": [], + "HeroiconsMiniSolidFunnel": [], + "HeroiconsMiniSolidGif": [], + "HeroiconsMiniSolidGift": [], + "HeroiconsMiniSolidGiftTop": [], + "HeroiconsMiniSolidGlobeAlt": [], + "HeroiconsMiniSolidGlobeAmericas": [], + "HeroiconsMiniSolidGlobeAsiaAustralia": [], + "HeroiconsMiniSolidGlobeEuropeAfrica": [], + "HeroiconsMiniSolidHandRaised": [], + "HeroiconsMiniSolidHandThumbDown": [], + "HeroiconsMiniSolidHandThumbUp": [], + "HeroiconsMiniSolidHashtag": [], + "HeroiconsMiniSolidHeart": [], + "HeroiconsMiniSolidHome": [], + "HeroiconsMiniSolidHomeModern": [], + "HeroiconsMiniSolidIdentification": [], + "HeroiconsMiniSolidInbox": [], + "HeroiconsMiniSolidInboxArrowDown": [], + "HeroiconsMiniSolidInboxStack": [], + "HeroiconsMiniSolidInformationCircle": [], + "HeroiconsMiniSolidKey": [], + "HeroiconsMiniSolidLanguage": [], + "HeroiconsMiniSolidLifebuoy": [], + "HeroiconsMiniSolidLightBulb": [], + "HeroiconsMiniSolidLink": [], + "HeroiconsMiniSolidListBullet": [], + "HeroiconsMiniSolidLockClosed": [], + "HeroiconsMiniSolidLockOpen": [], + "HeroiconsMiniSolidMagnifyingGlass": [], + "HeroiconsMiniSolidMagnifyingGlassCircle": [], + "HeroiconsMiniSolidMagnifyingGlassMinus": [], + "HeroiconsMiniSolidMagnifyingGlassPlus": [], + "HeroiconsMiniSolidMap": [], + "HeroiconsMiniSolidMapPin": [], + "HeroiconsMiniSolidMegaphone": [], + "HeroiconsMiniSolidMicrophone": [], + "HeroiconsMiniSolidMinus": [], + "HeroiconsMiniSolidMinusCircle": [], + "HeroiconsMiniSolidMinusSmall": [], + "HeroiconsMiniSolidMoon": [], + "HeroiconsMiniSolidMusicalNote": [], + "HeroiconsMiniSolidNewspaper": [], + "HeroiconsMiniSolidNoSymbol": [], + "HeroiconsMiniSolidPaintBrush": [], + "HeroiconsMiniSolidPaperAirplane": [], + "HeroiconsMiniSolidPaperClip": [], + "HeroiconsMiniSolidPause": [], + "HeroiconsMiniSolidPauseCircle": [], + "HeroiconsMiniSolidPencil": [], + "HeroiconsMiniSolidPencilSquare": [], + "HeroiconsMiniSolidPhone": [], + "HeroiconsMiniSolidPhoneArrowDownLeft": [], + "HeroiconsMiniSolidPhoneArrowUpRight": [], + "HeroiconsMiniSolidPhoneXMark": [], + "HeroiconsMiniSolidPhoto": [], + "HeroiconsMiniSolidPlay": [], + "HeroiconsMiniSolidPlayCircle": [], + "HeroiconsMiniSolidPlayPause": [], + "HeroiconsMiniSolidPlus": [], + "HeroiconsMiniSolidPlusCircle": [], + "HeroiconsMiniSolidPlusSmall": [], + "HeroiconsMiniSolidPower": [], + "HeroiconsMiniSolidPresentationChartBar": [], + "HeroiconsMiniSolidPresentationChartLine": [], + "HeroiconsMiniSolidPrinter": [], + "HeroiconsMiniSolidPuzzlePiece": [], + "HeroiconsMiniSolidQrCode": [], + "HeroiconsMiniSolidQuestionMarkCircle": [], + "HeroiconsMiniSolidQueueList": [], + "HeroiconsMiniSolidRadio": [], + "HeroiconsMiniSolidReceiptPercent": [], + "HeroiconsMiniSolidReceiptRefund": [], + "HeroiconsMiniSolidRectangleGroup": [], + "HeroiconsMiniSolidRectangleStack": [], + "HeroiconsMiniSolidRocketLaunch": [], + "HeroiconsMiniSolidRss": [], + "HeroiconsMiniSolidScale": [], + "HeroiconsMiniSolidScissors": [], + "HeroiconsMiniSolidServer": [], + "HeroiconsMiniSolidServerStack": [], + "HeroiconsMiniSolidShare": [], + "HeroiconsMiniSolidShieldCheck": [], + "HeroiconsMiniSolidShieldExclamation": [], + "HeroiconsMiniSolidShoppingBag": [], + "HeroiconsMiniSolidShoppingCart": [], + "HeroiconsMiniSolidSignal": [], + "HeroiconsMiniSolidSignalSlash": [], + "HeroiconsMiniSolidSparkles": [], + "HeroiconsMiniSolidSpeakerWave": [], + "HeroiconsMiniSolidSpeakerXMark": [], + "HeroiconsMiniSolidSquare2Stack": [], + "HeroiconsMiniSolidSquare3Stack3D": [], + "HeroiconsMiniSolidSquares2X2": [], + "HeroiconsMiniSolidSquaresPlus": [], + "HeroiconsMiniSolidStar": [], + "HeroiconsMiniSolidStop": [], + "HeroiconsMiniSolidStopCircle": [], + "HeroiconsMiniSolidSun": [], + "HeroiconsMiniSolidSwatch": [], + "HeroiconsMiniSolidTableCells": [], + "HeroiconsMiniSolidTag": [], + "HeroiconsMiniSolidTicket": [], + "HeroiconsMiniSolidTrash": [], + "HeroiconsMiniSolidTrophy": [], + "HeroiconsMiniSolidTruck": [], + "HeroiconsMiniSolidTv": [], + "HeroiconsMiniSolidUser": [], + "HeroiconsMiniSolidUserCircle": [], + "HeroiconsMiniSolidUserGroup": [], + "HeroiconsMiniSolidUserMinus": [], + "HeroiconsMiniSolidUserPlus": [], + "HeroiconsMiniSolidUsers": [], + "HeroiconsMiniSolidVariable": [], + "HeroiconsMiniSolidVideoCamera": [], + "HeroiconsMiniSolidVideoCameraSlash": [], + "HeroiconsMiniSolidViewColumns": [], + "HeroiconsMiniSolidViewfinderCircle": [], + "HeroiconsMiniSolidWallet": [], + "HeroiconsMiniSolidWifi": [], + "HeroiconsMiniSolidWindow": [], + "HeroiconsMiniSolidWrench": [], + "HeroiconsMiniSolidWrenchScrewdriver": [], + "HeroiconsMiniSolidXCircle": [], + "HeroiconsMiniSolidXMark": [], + "HeroiconsOutlineAcademicCap": [], + "HeroiconsOutlineAdjustmentsHorizontal": [], + "HeroiconsOutlineAdjustmentsVertical": [], + "HeroiconsOutlineArchiveBox": [], + "HeroiconsOutlineArchiveBoxArrowDown": [], + "HeroiconsOutlineArchiveBoxXMark": [], + "HeroiconsOutlineArrowDown": [], + "HeroiconsOutlineArrowDownCircle": [], + "HeroiconsOutlineArrowDownLeft": [], + "HeroiconsOutlineArrowDownOnSquare": [], + "HeroiconsOutlineArrowDownOnSquareStack": [], + "HeroiconsOutlineArrowDownRight": [], + "HeroiconsOutlineArrowDownTray": [], + "HeroiconsOutlineArrowLeft": [], + "HeroiconsOutlineArrowLeftCircle": [], + "HeroiconsOutlineArrowLeftOnRectangle": [], + "HeroiconsOutlineArrowLongDown": [], + "HeroiconsOutlineArrowLongLeft": [], + "HeroiconsOutlineArrowLongRight": [], + "HeroiconsOutlineArrowLongUp": [], + "HeroiconsOutlineArrowPath": [], + "HeroiconsOutlineArrowPathRoundedSquare": [], + "HeroiconsOutlineArrowRight": [], + "HeroiconsOutlineArrowRightCircle": [], + "HeroiconsOutlineArrowRightOnRectangle": [], + "HeroiconsOutlineArrowSmallDown": [], + "HeroiconsOutlineArrowSmallLeft": [], + "HeroiconsOutlineArrowSmallRight": [], + "HeroiconsOutlineArrowSmallUp": [], + "HeroiconsOutlineArrowTopRightOnSquare": [], + "HeroiconsOutlineArrowTrendingDown": [], + "HeroiconsOutlineArrowTrendingUp": [], + "HeroiconsOutlineArrowUp": [], + "HeroiconsOutlineArrowUpCircle": [], + "HeroiconsOutlineArrowUpLeft": [], + "HeroiconsOutlineArrowUpOnSquare": [], + "HeroiconsOutlineArrowUpOnSquareStack": [], + "HeroiconsOutlineArrowUpRight": [], + "HeroiconsOutlineArrowUpTray": [], + "HeroiconsOutlineArrowUturnDown": [], + "HeroiconsOutlineArrowUturnLeft": [], + "HeroiconsOutlineArrowUturnRight": [], + "HeroiconsOutlineArrowUturnUp": [], + "HeroiconsOutlineArrowsPointingIn": [], + "HeroiconsOutlineArrowsPointingOut": [], + "HeroiconsOutlineArrowsRightLeft": [], + "HeroiconsOutlineArrowsUpDown": [], + "HeroiconsOutlineAtSymbol": [], + "HeroiconsOutlineBackspace": [], + "HeroiconsOutlineBackward": [], + "HeroiconsOutlineBanknotes": [], + "HeroiconsOutlineBars2": [], + "HeroiconsOutlineBars3": [], + "HeroiconsOutlineBars3BottomLeft": [], + "HeroiconsOutlineBars3BottomRight": [], + "HeroiconsOutlineBars3CenterLeft": [], + "HeroiconsOutlineBars4": [], + "HeroiconsOutlineBarsArrowDown": [], + "HeroiconsOutlineBarsArrowUp": [], + "HeroiconsOutlineBattery0": [], + "HeroiconsOutlineBattery100": [], + "HeroiconsOutlineBattery50": [], + "HeroiconsOutlineBeaker": [], + "HeroiconsOutlineBell": [], + "HeroiconsOutlineBellAlert": [], + "HeroiconsOutlineBellSlash": [], + "HeroiconsOutlineBellSnooze": [], + "HeroiconsOutlineBolt": [], + "HeroiconsOutlineBoltSlash": [], + "HeroiconsOutlineBookOpen": [], + "HeroiconsOutlineBookmark": [], + "HeroiconsOutlineBookmarkSlash": [], + "HeroiconsOutlineBookmarkSquare": [], + "HeroiconsOutlineBriefcase": [], + "HeroiconsOutlineBugAnt": [], + "HeroiconsOutlineBuildingLibrary": [], + "HeroiconsOutlineBuildingOffice": [], + "HeroiconsOutlineBuildingOffice2": [], + "HeroiconsOutlineBuildingStorefront": [], + "HeroiconsOutlineCake": [], + "HeroiconsOutlineCalculator": [], + "HeroiconsOutlineCalendar": [], + "HeroiconsOutlineCalendarDays": [], + "HeroiconsOutlineCamera": [], + "HeroiconsOutlineChartBar": [], + "HeroiconsOutlineChartBarSquare": [], + "HeroiconsOutlineChartPie": [], + "HeroiconsOutlineChatBubbleBottomCenter": [], + "HeroiconsOutlineChatBubbleBottomCenterText": [], + "HeroiconsOutlineChatBubbleLeft": [], + "HeroiconsOutlineChatBubbleLeftEllipsis": [], + "HeroiconsOutlineChatBubbleLeftRight": [], + "HeroiconsOutlineChatBubbleOvalLeft": [], + "HeroiconsOutlineChatBubbleOvalLeftEllipsis": [], + "HeroiconsOutlineCheck": [], + "HeroiconsOutlineCheckBadge": [], + "HeroiconsOutlineCheckCircle": [], + "HeroiconsOutlineChevronDoubleDown": [], + "HeroiconsOutlineChevronDoubleLeft": [], + "HeroiconsOutlineChevronDoubleRight": [], + "HeroiconsOutlineChevronDoubleUp": [], + "HeroiconsOutlineChevronDown": [], + "HeroiconsOutlineChevronLeft": [], + "HeroiconsOutlineChevronRight": [], + "HeroiconsOutlineChevronUp": [], + "HeroiconsOutlineChevronUpDown": [], + "HeroiconsOutlineCircleStack": [], + "HeroiconsOutlineClipboard": [], + "HeroiconsOutlineClipboardDocument": [], + "HeroiconsOutlineClipboardDocumentCheck": [], + "HeroiconsOutlineClipboardDocumentList": [], + "HeroiconsOutlineClock": [], + "HeroiconsOutlineCloud": [], + "HeroiconsOutlineCloudArrowDown": [], + "HeroiconsOutlineCloudArrowUp": [], + "HeroiconsOutlineCodeBracket": [], + "HeroiconsOutlineCodeBracketSquare": [], + "HeroiconsOutlineCog": [], + "HeroiconsOutlineCog6Tooth": [], + "HeroiconsOutlineCog8Tooth": [], + "HeroiconsOutlineCommandLine": [], + "HeroiconsOutlineComputerDesktop": [], + "HeroiconsOutlineCpuChip": [], + "HeroiconsOutlineCreditCard": [], + "HeroiconsOutlineCube": [], + "HeroiconsOutlineCubeTransparent": [], + "HeroiconsOutlineCurrencyBangladeshi": [], + "HeroiconsOutlineCurrencyDollar": [], + "HeroiconsOutlineCurrencyEuro": [], + "HeroiconsOutlineCurrencyPound": [], + "HeroiconsOutlineCurrencyRupee": [], + "HeroiconsOutlineCurrencyYen": [], + "HeroiconsOutlineCursorArrowRays": [], + "HeroiconsOutlineCursorArrowRipple": [], + "HeroiconsOutlineDevicePhoneMobile": [], + "HeroiconsOutlineDeviceTablet": [], + "HeroiconsOutlineDocument": [], + "HeroiconsOutlineDocumentArrowDown": [], + "HeroiconsOutlineDocumentArrowUp": [], + "HeroiconsOutlineDocumentChartBar": [], + "HeroiconsOutlineDocumentCheck": [], + "HeroiconsOutlineDocumentDuplicate": [], + "HeroiconsOutlineDocumentMagnifyingGlass": [], + "HeroiconsOutlineDocumentMinus": [], + "HeroiconsOutlineDocumentPlus": [], + "HeroiconsOutlineDocumentText": [], + "HeroiconsOutlineEllipsisHorizontal": [], + "HeroiconsOutlineEllipsisHorizontalCircle": [], + "HeroiconsOutlineEllipsisVertical": [], + "HeroiconsOutlineEnvelope": [], + "HeroiconsOutlineEnvelopeOpen": [], + "HeroiconsOutlineExclamationCircle": [], + "HeroiconsOutlineExclamationTriangle": [], + "HeroiconsOutlineEye": [], + "HeroiconsOutlineEyeDropper": [], + "HeroiconsOutlineEyeSlash": [], + "HeroiconsOutlineFaceFrown": [], + "HeroiconsOutlineFaceSmile": [], + "HeroiconsOutlineFilm": [], + "HeroiconsOutlineFingerPrint": [], + "HeroiconsOutlineFire": [], + "HeroiconsOutlineFlag": [], + "HeroiconsOutlineFolder": [], + "HeroiconsOutlineFolderArrowDown": [], + "HeroiconsOutlineFolderMinus": [], + "HeroiconsOutlineFolderOpen": [], + "HeroiconsOutlineFolderPlus": [], + "HeroiconsOutlineForward": [], + "HeroiconsOutlineFunnel": [], + "HeroiconsOutlineGif": [], + "HeroiconsOutlineGift": [], + "HeroiconsOutlineGiftTop": [], + "HeroiconsOutlineGlobeAlt": [], + "HeroiconsOutlineGlobeAmericas": [], + "HeroiconsOutlineGlobeAsiaAustralia": [], + "HeroiconsOutlineGlobeEuropeAfrica": [], + "HeroiconsOutlineHandRaised": [], + "HeroiconsOutlineHandThumbDown": [], + "HeroiconsOutlineHandThumbUp": [], + "HeroiconsOutlineHashtag": [], + "HeroiconsOutlineHeart": [], + "HeroiconsOutlineHome": [], + "HeroiconsOutlineHomeModern": [], + "HeroiconsOutlineIdentification": [], + "HeroiconsOutlineInbox": [], + "HeroiconsOutlineInboxArrowDown": [], + "HeroiconsOutlineInboxStack": [], + "HeroiconsOutlineInformationCircle": [], + "HeroiconsOutlineKey": [], + "HeroiconsOutlineLanguage": [], + "HeroiconsOutlineLifebuoy": [], + "HeroiconsOutlineLightBulb": [], + "HeroiconsOutlineLink": [], + "HeroiconsOutlineListBullet": [], + "HeroiconsOutlineLockClosed": [], + "HeroiconsOutlineLockOpen": [], + "HeroiconsOutlineMagnifyingGlass": [], + "HeroiconsOutlineMagnifyingGlassCircle": [], + "HeroiconsOutlineMagnifyingGlassMinus": [], + "HeroiconsOutlineMagnifyingGlassPlus": [], + "HeroiconsOutlineMap": [], + "HeroiconsOutlineMapPin": [], + "HeroiconsOutlineMegaphone": [], + "HeroiconsOutlineMicrophone": [], + "HeroiconsOutlineMinus": [], + "HeroiconsOutlineMinusCircle": [], + "HeroiconsOutlineMinusSmall": [], + "HeroiconsOutlineMoon": [], + "HeroiconsOutlineMusicalNote": [], + "HeroiconsOutlineNewspaper": [], + "HeroiconsOutlineNoSymbol": [], + "HeroiconsOutlinePaintBrush": [], + "HeroiconsOutlinePaperAirplane": [], + "HeroiconsOutlinePaperClip": [], + "HeroiconsOutlinePause": [], + "HeroiconsOutlinePauseCircle": [], + "HeroiconsOutlinePencil": [], + "HeroiconsOutlinePencilSquare": [], + "HeroiconsOutlinePhone": [], + "HeroiconsOutlinePhoneArrowDownLeft": [], + "HeroiconsOutlinePhoneArrowUpRight": [], + "HeroiconsOutlinePhoneXMark": [], + "HeroiconsOutlinePhoto": [], + "HeroiconsOutlinePlay": [], + "HeroiconsOutlinePlayCircle": [], + "HeroiconsOutlinePlayPause": [], + "HeroiconsOutlinePlus": [], + "HeroiconsOutlinePlusCircle": [], + "HeroiconsOutlinePlusSmall": [], + "HeroiconsOutlinePower": [], + "HeroiconsOutlinePresentationChartBar": [], + "HeroiconsOutlinePresentationChartLine": [], + "HeroiconsOutlinePrinter": [], + "HeroiconsOutlinePuzzlePiece": [], + "HeroiconsOutlineQrCode": [], + "HeroiconsOutlineQuestionMarkCircle": [], + "HeroiconsOutlineQueueList": [], + "HeroiconsOutlineRadio": [], + "HeroiconsOutlineReceiptPercent": [], + "HeroiconsOutlineReceiptRefund": [], + "HeroiconsOutlineRectangleGroup": [], + "HeroiconsOutlineRectangleStack": [], + "HeroiconsOutlineRocketLaunch": [], + "HeroiconsOutlineRss": [], + "HeroiconsOutlineScale": [], + "HeroiconsOutlineScissors": [], + "HeroiconsOutlineServer": [], + "HeroiconsOutlineServerStack": [], + "HeroiconsOutlineShare": [], + "HeroiconsOutlineShieldCheck": [], + "HeroiconsOutlineShieldExclamation": [], + "HeroiconsOutlineShoppingBag": [], + "HeroiconsOutlineShoppingCart": [], + "HeroiconsOutlineSignal": [], + "HeroiconsOutlineSignalSlash": [], + "HeroiconsOutlineSparkles": [], + "HeroiconsOutlineSpeakerWave": [], + "HeroiconsOutlineSpeakerXMark": [], + "HeroiconsOutlineSquare2Stack": [], + "HeroiconsOutlineSquare3Stack3D": [], + "HeroiconsOutlineSquares2X2": [], + "HeroiconsOutlineSquaresPlus": [], + "HeroiconsOutlineStar": [], + "HeroiconsOutlineStop": [], + "HeroiconsOutlineStopCircle": [], + "HeroiconsOutlineSun": [], + "HeroiconsOutlineSwatch": [], + "HeroiconsOutlineTableCells": [], + "HeroiconsOutlineTag": [], + "HeroiconsOutlineTicket": [], + "HeroiconsOutlineTrash": [], + "HeroiconsOutlineTrophy": [], + "HeroiconsOutlineTruck": [], + "HeroiconsOutlineTv": [], + "HeroiconsOutlineUser": [], + "HeroiconsOutlineUserCircle": [], + "HeroiconsOutlineUserGroup": [], + "HeroiconsOutlineUserMinus": [], + "HeroiconsOutlineUserPlus": [], + "HeroiconsOutlineUsers": [], + "HeroiconsOutlineVariable": [], + "HeroiconsOutlineVideoCamera": [], + "HeroiconsOutlineVideoCameraSlash": [], + "HeroiconsOutlineViewColumns": [], + "HeroiconsOutlineViewfinderCircle": [], + "HeroiconsOutlineWallet": [], + "HeroiconsOutlineWifi": [], + "HeroiconsOutlineWindow": [], + "HeroiconsOutlineWrench": [], + "HeroiconsOutlineWrenchScrewdriver": [], + "HeroiconsOutlineXCircle": [], + "HeroiconsOutlineXMark": [], + "HeroiconsSolidAcademicCap": [], + "HeroiconsSolidAdjustmentsHorizontal": [], + "HeroiconsSolidAdjustmentsVertical": [], + "HeroiconsSolidArchiveBox": [], + "HeroiconsSolidArchiveBoxArrowDown": [], + "HeroiconsSolidArchiveBoxXMark": [], + "HeroiconsSolidArrowDown": [], + "HeroiconsSolidArrowDownCircle": [], + "HeroiconsSolidArrowDownLeft": [], + "HeroiconsSolidArrowDownOnSquare": [], + "HeroiconsSolidArrowDownOnSquareStack": [], + "HeroiconsSolidArrowDownRight": [], + "HeroiconsSolidArrowDownTray": [], + "HeroiconsSolidArrowLeft": [], + "HeroiconsSolidArrowLeftCircle": [], + "HeroiconsSolidArrowLeftOnRectangle": [], + "HeroiconsSolidArrowLongDown": [], + "HeroiconsSolidArrowLongLeft": [], + "HeroiconsSolidArrowLongRight": [], + "HeroiconsSolidArrowLongUp": [], + "HeroiconsSolidArrowPath": [], + "HeroiconsSolidArrowPathRoundedSquare": [], + "HeroiconsSolidArrowRight": [], + "HeroiconsSolidArrowRightCircle": [], + "HeroiconsSolidArrowRightOnRectangle": [], + "HeroiconsSolidArrowSmallDown": [], + "HeroiconsSolidArrowSmallLeft": [], + "HeroiconsSolidArrowSmallRight": [], + "HeroiconsSolidArrowSmallUp": [], + "HeroiconsSolidArrowTopRightOnSquare": [], + "HeroiconsSolidArrowTrendingDown": [], + "HeroiconsSolidArrowTrendingUp": [], + "HeroiconsSolidArrowUp": [], + "HeroiconsSolidArrowUpCircle": [], + "HeroiconsSolidArrowUpLeft": [], + "HeroiconsSolidArrowUpOnSquare": [], + "HeroiconsSolidArrowUpOnSquareStack": [], + "HeroiconsSolidArrowUpRight": [], + "HeroiconsSolidArrowUpTray": [], + "HeroiconsSolidArrowUturnDown": [], + "HeroiconsSolidArrowUturnLeft": [], + "HeroiconsSolidArrowUturnRight": [], + "HeroiconsSolidArrowUturnUp": [], + "HeroiconsSolidArrowsPointingIn": [], + "HeroiconsSolidArrowsPointingOut": [], + "HeroiconsSolidArrowsRightLeft": [], + "HeroiconsSolidArrowsUpDown": [], + "HeroiconsSolidAtSymbol": [], + "HeroiconsSolidBackspace": [], + "HeroiconsSolidBackward": [], + "HeroiconsSolidBanknotes": [], + "HeroiconsSolidBars2": [], + "HeroiconsSolidBars3": [], + "HeroiconsSolidBars3BottomLeft": [], + "HeroiconsSolidBars3BottomRight": [], + "HeroiconsSolidBars3CenterLeft": [], + "HeroiconsSolidBars4": [], + "HeroiconsSolidBarsArrowDown": [], + "HeroiconsSolidBarsArrowUp": [], + "HeroiconsSolidBattery0": [], + "HeroiconsSolidBattery100": [], + "HeroiconsSolidBattery50": [], + "HeroiconsSolidBeaker": [], + "HeroiconsSolidBell": [], + "HeroiconsSolidBellAlert": [], + "HeroiconsSolidBellSlash": [], + "HeroiconsSolidBellSnooze": [], + "HeroiconsSolidBolt": [], + "HeroiconsSolidBoltSlash": [], + "HeroiconsSolidBookOpen": [], + "HeroiconsSolidBookmark": [], + "HeroiconsSolidBookmarkSlash": [], + "HeroiconsSolidBookmarkSquare": [], + "HeroiconsSolidBriefcase": [], + "HeroiconsSolidBugAnt": [], + "HeroiconsSolidBuildingLibrary": [], + "HeroiconsSolidBuildingOffice": [], + "HeroiconsSolidBuildingOffice2": [], + "HeroiconsSolidBuildingStorefront": [], + "HeroiconsSolidCake": [], + "HeroiconsSolidCalculator": [], + "HeroiconsSolidCalendar": [], + "HeroiconsSolidCalendarDays": [], + "HeroiconsSolidCamera": [], + "HeroiconsSolidChartBar": [], + "HeroiconsSolidChartBarSquare": [], + "HeroiconsSolidChartPie": [], + "HeroiconsSolidChatBubbleBottomCenter": [], + "HeroiconsSolidChatBubbleBottomCenterText": [], + "HeroiconsSolidChatBubbleLeft": [], + "HeroiconsSolidChatBubbleLeftEllipsis": [], + "HeroiconsSolidChatBubbleLeftRight": [], + "HeroiconsSolidChatBubbleOvalLeft": [], + "HeroiconsSolidChatBubbleOvalLeftEllipsis": [], + "HeroiconsSolidCheck": [], + "HeroiconsSolidCheckBadge": [], + "HeroiconsSolidCheckCircle": [], + "HeroiconsSolidChevronDoubleDown": [], + "HeroiconsSolidChevronDoubleLeft": [], + "HeroiconsSolidChevronDoubleRight": [], + "HeroiconsSolidChevronDoubleUp": [], + "HeroiconsSolidChevronDown": [], + "HeroiconsSolidChevronLeft": [], + "HeroiconsSolidChevronRight": [], + "HeroiconsSolidChevronUp": [], + "HeroiconsSolidChevronUpDown": [], + "HeroiconsSolidCircleStack": [], + "HeroiconsSolidClipboard": [], + "HeroiconsSolidClipboardDocument": [], + "HeroiconsSolidClipboardDocumentCheck": [], + "HeroiconsSolidClipboardDocumentList": [], + "HeroiconsSolidClock": [], + "HeroiconsSolidCloud": [], + "HeroiconsSolidCloudArrowDown": [], + "HeroiconsSolidCloudArrowUp": [], + "HeroiconsSolidCodeBracket": [], + "HeroiconsSolidCodeBracketSquare": [], + "HeroiconsSolidCog": [], + "HeroiconsSolidCog6Tooth": [], + "HeroiconsSolidCog8Tooth": [], + "HeroiconsSolidCommandLine": [], + "HeroiconsSolidComputerDesktop": [], + "HeroiconsSolidCpuChip": [], + "HeroiconsSolidCreditCard": [], + "HeroiconsSolidCube": [], + "HeroiconsSolidCubeTransparent": [], + "HeroiconsSolidCurrencyBangladeshi": [], + "HeroiconsSolidCurrencyDollar": [], + "HeroiconsSolidCurrencyEuro": [], + "HeroiconsSolidCurrencyPound": [], + "HeroiconsSolidCurrencyRupee": [], + "HeroiconsSolidCurrencyYen": [], + "HeroiconsSolidCursorArrowRays": [], + "HeroiconsSolidCursorArrowRipple": [], + "HeroiconsSolidDevicePhoneMobile": [], + "HeroiconsSolidDeviceTablet": [], + "HeroiconsSolidDocument": [], + "HeroiconsSolidDocumentArrowDown": [], + "HeroiconsSolidDocumentArrowUp": [], + "HeroiconsSolidDocumentChartBar": [], + "HeroiconsSolidDocumentCheck": [], + "HeroiconsSolidDocumentDuplicate": [], + "HeroiconsSolidDocumentMagnifyingGlass": [], + "HeroiconsSolidDocumentMinus": [], + "HeroiconsSolidDocumentPlus": [], + "HeroiconsSolidDocumentText": [], + "HeroiconsSolidEllipsisHorizontal": [], + "HeroiconsSolidEllipsisHorizontalCircle": [], + "HeroiconsSolidEllipsisVertical": [], + "HeroiconsSolidEnvelope": [], + "HeroiconsSolidEnvelopeOpen": [], + "HeroiconsSolidExclamationCircle": [], + "HeroiconsSolidExclamationTriangle": [], + "HeroiconsSolidEye": [], + "HeroiconsSolidEyeDropper": [], + "HeroiconsSolidEyeSlash": [], + "HeroiconsSolidFaceFrown": [], + "HeroiconsSolidFaceSmile": [], + "HeroiconsSolidFilm": [], + "HeroiconsSolidFingerPrint": [], + "HeroiconsSolidFire": [], + "HeroiconsSolidFlag": [], + "HeroiconsSolidFolder": [], + "HeroiconsSolidFolderArrowDown": [], + "HeroiconsSolidFolderMinus": [], + "HeroiconsSolidFolderOpen": [], + "HeroiconsSolidFolderPlus": [], + "HeroiconsSolidForward": [], + "HeroiconsSolidFunnel": [], + "HeroiconsSolidGif": [], + "HeroiconsSolidGift": [], + "HeroiconsSolidGiftTop": [], + "HeroiconsSolidGlobeAlt": [], + "HeroiconsSolidGlobeAmericas": [], + "HeroiconsSolidGlobeAsiaAustralia": [], + "HeroiconsSolidGlobeEuropeAfrica": [], + "HeroiconsSolidHandRaised": [], + "HeroiconsSolidHandThumbDown": [], + "HeroiconsSolidHandThumbUp": [], + "HeroiconsSolidHashtag": [], + "HeroiconsSolidHeart": [], + "HeroiconsSolidHome": [], + "HeroiconsSolidHomeModern": [], + "HeroiconsSolidIdentification": [], + "HeroiconsSolidInbox": [], + "HeroiconsSolidInboxArrowDown": [], + "HeroiconsSolidInboxStack": [], + "HeroiconsSolidInformationCircle": [], + "HeroiconsSolidKey": [], + "HeroiconsSolidLanguage": [], + "HeroiconsSolidLifebuoy": [], + "HeroiconsSolidLightBulb": [], + "HeroiconsSolidLink": [], + "HeroiconsSolidListBullet": [], + "HeroiconsSolidLockClosed": [], + "HeroiconsSolidLockOpen": [], + "HeroiconsSolidMagnifyingGlass": [], + "HeroiconsSolidMagnifyingGlassCircle": [], + "HeroiconsSolidMagnifyingGlassMinus": [], + "HeroiconsSolidMagnifyingGlassPlus": [], + "HeroiconsSolidMap": [], + "HeroiconsSolidMapPin": [], + "HeroiconsSolidMegaphone": [], + "HeroiconsSolidMicrophone": [], + "HeroiconsSolidMinus": [], + "HeroiconsSolidMinusCircle": [], + "HeroiconsSolidMinusSmall": [], + "HeroiconsSolidMoon": [], + "HeroiconsSolidMusicalNote": [], + "HeroiconsSolidNewspaper": [], + "HeroiconsSolidNoSymbol": [], + "HeroiconsSolidPaintBrush": [], + "HeroiconsSolidPaperAirplane": [], + "HeroiconsSolidPaperClip": [], + "HeroiconsSolidPause": [], + "HeroiconsSolidPauseCircle": [], + "HeroiconsSolidPencil": [], + "HeroiconsSolidPencilSquare": [], + "HeroiconsSolidPhone": [], + "HeroiconsSolidPhoneArrowDownLeft": [], + "HeroiconsSolidPhoneArrowUpRight": [], + "HeroiconsSolidPhoneXMark": [], + "HeroiconsSolidPhoto": [], + "HeroiconsSolidPlay": [], + "HeroiconsSolidPlayCircle": [], + "HeroiconsSolidPlayPause": [], + "HeroiconsSolidPlus": [], + "HeroiconsSolidPlusCircle": [], + "HeroiconsSolidPlusSmall": [], + "HeroiconsSolidPower": [], + "HeroiconsSolidPresentationChartBar": [], + "HeroiconsSolidPresentationChartLine": [], + "HeroiconsSolidPrinter": [], + "HeroiconsSolidPuzzlePiece": [], + "HeroiconsSolidQrCode": [], + "HeroiconsSolidQuestionMarkCircle": [], + "HeroiconsSolidQueueList": [], + "HeroiconsSolidRadio": [], + "HeroiconsSolidReceiptPercent": [], + "HeroiconsSolidReceiptRefund": [], + "HeroiconsSolidRectangleGroup": [], + "HeroiconsSolidRectangleStack": [], + "HeroiconsSolidRocketLaunch": [], + "HeroiconsSolidRss": [], + "HeroiconsSolidScale": [], + "HeroiconsSolidScissors": [], + "HeroiconsSolidServer": [], + "HeroiconsSolidServerStack": [], + "HeroiconsSolidShare": [], + "HeroiconsSolidShieldCheck": [], + "HeroiconsSolidShieldExclamation": [], + "HeroiconsSolidShoppingBag": [], + "HeroiconsSolidShoppingCart": [], + "HeroiconsSolidSignal": [], + "HeroiconsSolidSignalSlash": [], + "HeroiconsSolidSparkles": [], + "HeroiconsSolidSpeakerWave": [], + "HeroiconsSolidSpeakerXMark": [], + "HeroiconsSolidSquare2Stack": [], + "HeroiconsSolidSquare3Stack3D": [], + "HeroiconsSolidSquares2X2": [], + "HeroiconsSolidSquaresPlus": [], + "HeroiconsSolidStar": [], + "HeroiconsSolidStop": [], + "HeroiconsSolidStopCircle": [], + "HeroiconsSolidSun": [], + "HeroiconsSolidSwatch": [], + "HeroiconsSolidTableCells": [], + "HeroiconsSolidTag": [], + "HeroiconsSolidTicket": [], + "HeroiconsSolidTrash": [], + "HeroiconsSolidTrophy": [], + "HeroiconsSolidTruck": [], + "HeroiconsSolidTv": [], + "HeroiconsSolidUser": [], + "HeroiconsSolidUserCircle": [], + "HeroiconsSolidUserGroup": [], + "HeroiconsSolidUserMinus": [], + "HeroiconsSolidUserPlus": [], + "HeroiconsSolidUsers": [], + "HeroiconsSolidVariable": [], + "HeroiconsSolidVideoCamera": [], + "HeroiconsSolidVideoCameraSlash": [], + "HeroiconsSolidViewColumns": [], + "HeroiconsSolidViewfinderCircle": [], + "HeroiconsSolidWallet": [], + "HeroiconsSolidWifi": [], + "HeroiconsSolidWindow": [], + "HeroiconsSolidWrench": [], + "HeroiconsSolidWrenchScrewdriver": [], + "HeroiconsSolidXCircle": [], + "HeroiconsSolidXMark": [], + "LipisFlagIcons1X1Ac": [], + "LipisFlagIcons1X1Ad": [], + "LipisFlagIcons1X1Ae": [], + "LipisFlagIcons1X1Af": [], + "LipisFlagIcons1X1Ag": [], + "LipisFlagIcons1X1Ai": [], + "LipisFlagIcons1X1Al": [], + "LipisFlagIcons1X1Am": [], + "LipisFlagIcons1X1Ao": [], + "LipisFlagIcons1X1Aq": [], + "LipisFlagIcons1X1Ar": [], + "LipisFlagIcons1X1As": [], + "LipisFlagIcons1X1At": [], + "LipisFlagIcons1X1Au": [], + "LipisFlagIcons1X1Aw": [], + "LipisFlagIcons1X1Ax": [], + "LipisFlagIcons1X1Az": [], + "LipisFlagIcons1X1Ba": [], + "LipisFlagIcons1X1Bb": [], + "LipisFlagIcons1X1Bd": [], + "LipisFlagIcons1X1Be": [], + "LipisFlagIcons1X1Bf": [], + "LipisFlagIcons1X1Bg": [], + "LipisFlagIcons1X1Bh": [], + "LipisFlagIcons1X1Bi": [], + "LipisFlagIcons1X1Bj": [], + "LipisFlagIcons1X1Bl": [], + "LipisFlagIcons1X1Bm": [], + "LipisFlagIcons1X1Bn": [], + "LipisFlagIcons1X1Bo": [], + "LipisFlagIcons1X1Bq": [], + "LipisFlagIcons1X1Br": [], + "LipisFlagIcons1X1Bs": [], + "LipisFlagIcons1X1Bt": [], + "LipisFlagIcons1X1Bv": [], + "LipisFlagIcons1X1Bw": [], + "LipisFlagIcons1X1By": [], + "LipisFlagIcons1X1Bz": [], + "LipisFlagIcons1X1Ca": [], + "LipisFlagIcons1X1Cc": [], + "LipisFlagIcons1X1Cd": [], + "LipisFlagIcons1X1Cefta": [], + "LipisFlagIcons1X1Cf": [], + "LipisFlagIcons1X1Cg": [], + "LipisFlagIcons1X1Ch": [], + "LipisFlagIcons1X1Ci": [], + "LipisFlagIcons1X1Ck": [], + "LipisFlagIcons1X1Cl": [], + "LipisFlagIcons1X1Cm": [], + "LipisFlagIcons1X1Cn": [], + "LipisFlagIcons1X1Co": [], + "LipisFlagIcons1X1Cp": [], + "LipisFlagIcons1X1Cr": [], + "LipisFlagIcons1X1Cu": [], + "LipisFlagIcons1X1Cv": [], + "LipisFlagIcons1X1Cw": [], + "LipisFlagIcons1X1Cx": [], + "LipisFlagIcons1X1Cy": [], + "LipisFlagIcons1X1Cz": [], + "LipisFlagIcons1X1De": [], + "LipisFlagIcons1X1Dg": [], + "LipisFlagIcons1X1Dj": [], + "LipisFlagIcons1X1Dk": [], + "LipisFlagIcons1X1Dm": [], + "LipisFlagIcons1X1Do": [], + "LipisFlagIcons1X1Dz": [], + "LipisFlagIcons1X1Ea": [], + "LipisFlagIcons1X1Ec": [], + "LipisFlagIcons1X1Ee": [], + "LipisFlagIcons1X1Eg": [], + "LipisFlagIcons1X1Eh": [], + "LipisFlagIcons1X1Er": [], + "LipisFlagIcons1X1Es": [], + "LipisFlagIcons1X1EsCt": [], + "LipisFlagIcons1X1EsGa": [], + "LipisFlagIcons1X1Et": [], + "LipisFlagIcons1X1Eu": [], + "LipisFlagIcons1X1Fi": [], + "LipisFlagIcons1X1Fj": [], + "LipisFlagIcons1X1Fk": [], + "LipisFlagIcons1X1Fm": [], + "LipisFlagIcons1X1Fo": [], + "LipisFlagIcons1X1Fr": [], + "LipisFlagIcons1X1Ga": [], + "LipisFlagIcons1X1Gb": [], + "LipisFlagIcons1X1GbEng": [], + "LipisFlagIcons1X1GbNir": [], + "LipisFlagIcons1X1GbSct": [], + "LipisFlagIcons1X1GbWls": [], + "LipisFlagIcons1X1Gd": [], + "LipisFlagIcons1X1Ge": [], + "LipisFlagIcons1X1Gf": [], + "LipisFlagIcons1X1Gg": [], + "LipisFlagIcons1X1Gh": [], + "LipisFlagIcons1X1Gi": [], + "LipisFlagIcons1X1Gl": [], + "LipisFlagIcons1X1Gm": [], + "LipisFlagIcons1X1Gn": [], + "LipisFlagIcons1X1Gp": [], + "LipisFlagIcons1X1Gq": [], + "LipisFlagIcons1X1Gr": [], + "LipisFlagIcons1X1Gs": [], + "LipisFlagIcons1X1Gt": [], + "LipisFlagIcons1X1Gu": [], + "LipisFlagIcons1X1Gw": [], + "LipisFlagIcons1X1Gy": [], + "LipisFlagIcons1X1Hk": [], + "LipisFlagIcons1X1Hm": [], + "LipisFlagIcons1X1Hn": [], + "LipisFlagIcons1X1Hr": [], + "LipisFlagIcons1X1Ht": [], + "LipisFlagIcons1X1Hu": [], + "LipisFlagIcons1X1Ic": [], + "LipisFlagIcons1X1Id": [], + "LipisFlagIcons1X1Ie": [], + "LipisFlagIcons1X1Il": [], + "LipisFlagIcons1X1Im": [], + "LipisFlagIcons1X1In": [], + "LipisFlagIcons1X1Io": [], + "LipisFlagIcons1X1Iq": [], + "LipisFlagIcons1X1Ir": [], + "LipisFlagIcons1X1Is": [], + "LipisFlagIcons1X1It": [], + "LipisFlagIcons1X1Je": [], + "LipisFlagIcons1X1Jm": [], + "LipisFlagIcons1X1Jo": [], + "LipisFlagIcons1X1Jp": [], + "LipisFlagIcons1X1Ke": [], + "LipisFlagIcons1X1Kg": [], + "LipisFlagIcons1X1Kh": [], + "LipisFlagIcons1X1Ki": [], + "LipisFlagIcons1X1Km": [], + "LipisFlagIcons1X1Kn": [], + "LipisFlagIcons1X1Kp": [], + "LipisFlagIcons1X1Kr": [], + "LipisFlagIcons1X1Kw": [], + "LipisFlagIcons1X1Ky": [], + "LipisFlagIcons1X1Kz": [], + "LipisFlagIcons1X1La": [], + "LipisFlagIcons1X1Lb": [], + "LipisFlagIcons1X1Lc": [], + "LipisFlagIcons1X1Li": [], + "LipisFlagIcons1X1Lk": [], + "LipisFlagIcons1X1Lr": [], + "LipisFlagIcons1X1Ls": [], + "LipisFlagIcons1X1Lt": [], + "LipisFlagIcons1X1Lu": [], + "LipisFlagIcons1X1Lv": [], + "LipisFlagIcons1X1Ly": [], + "LipisFlagIcons1X1Ma": [], + "LipisFlagIcons1X1Mc": [], + "LipisFlagIcons1X1Md": [], + "LipisFlagIcons1X1Me": [], + "LipisFlagIcons1X1Mf": [], + "LipisFlagIcons1X1Mg": [], + "LipisFlagIcons1X1Mh": [], + "LipisFlagIcons1X1Mk": [], + "LipisFlagIcons1X1Ml": [], + "LipisFlagIcons1X1Mm": [], + "LipisFlagIcons1X1Mn": [], + "LipisFlagIcons1X1Mo": [], + "LipisFlagIcons1X1Mp": [], + "LipisFlagIcons1X1Mq": [], + "LipisFlagIcons1X1Mr": [], + "LipisFlagIcons1X1Ms": [], + "LipisFlagIcons1X1Mt": [], + "LipisFlagIcons1X1Mu": [], + "LipisFlagIcons1X1Mv": [], + "LipisFlagIcons1X1Mw": [], + "LipisFlagIcons1X1Mx": [], + "LipisFlagIcons1X1My": [], + "LipisFlagIcons1X1Mz": [], + "LipisFlagIcons1X1Na": [], + "LipisFlagIcons1X1Nc": [], + "LipisFlagIcons1X1Ne": [], + "LipisFlagIcons1X1Nf": [], + "LipisFlagIcons1X1Ng": [], + "LipisFlagIcons1X1Ni": [], + "LipisFlagIcons1X1Nl": [], + "LipisFlagIcons1X1No": [], + "LipisFlagIcons1X1Np": [], + "LipisFlagIcons1X1Nr": [], + "LipisFlagIcons1X1Nu": [], + "LipisFlagIcons1X1Nz": [], + "LipisFlagIcons1X1Om": [], + "LipisFlagIcons1X1Pa": [], + "LipisFlagIcons1X1Pe": [], + "LipisFlagIcons1X1Pf": [], + "LipisFlagIcons1X1Pg": [], + "LipisFlagIcons1X1Ph": [], + "LipisFlagIcons1X1Pk": [], + "LipisFlagIcons1X1Pl": [], + "LipisFlagIcons1X1Pm": [], + "LipisFlagIcons1X1Pn": [], + "LipisFlagIcons1X1Pr": [], + "LipisFlagIcons1X1Ps": [], + "LipisFlagIcons1X1Pt": [], + "LipisFlagIcons1X1Pw": [], + "LipisFlagIcons1X1Py": [], + "LipisFlagIcons1X1Qa": [], + "LipisFlagIcons1X1Re": [], + "LipisFlagIcons1X1Ro": [], + "LipisFlagIcons1X1Rs": [], + "LipisFlagIcons1X1Ru": [], + "LipisFlagIcons1X1Rw": [], + "LipisFlagIcons1X1Sa": [], + "LipisFlagIcons1X1Sb": [], + "LipisFlagIcons1X1Sc": [], + "LipisFlagIcons1X1Sd": [], + "LipisFlagIcons1X1Se": [], + "LipisFlagIcons1X1Sg": [], + "LipisFlagIcons1X1Sh": [], + "LipisFlagIcons1X1Si": [], + "LipisFlagIcons1X1Sj": [], + "LipisFlagIcons1X1Sk": [], + "LipisFlagIcons1X1Sl": [], + "LipisFlagIcons1X1Sm": [], + "LipisFlagIcons1X1Sn": [], + "LipisFlagIcons1X1So": [], + "LipisFlagIcons1X1Sr": [], + "LipisFlagIcons1X1Ss": [], + "LipisFlagIcons1X1St": [], + "LipisFlagIcons1X1Sv": [], + "LipisFlagIcons1X1Sx": [], + "LipisFlagIcons1X1Sy": [], + "LipisFlagIcons1X1Sz": [], + "LipisFlagIcons1X1Ta": [], + "LipisFlagIcons1X1Tc": [], + "LipisFlagIcons1X1Td": [], + "LipisFlagIcons1X1Tf": [], + "LipisFlagIcons1X1Tg": [], + "LipisFlagIcons1X1Th": [], + "LipisFlagIcons1X1Tj": [], + "LipisFlagIcons1X1Tk": [], + "LipisFlagIcons1X1Tl": [], + "LipisFlagIcons1X1Tm": [], + "LipisFlagIcons1X1Tn": [], + "LipisFlagIcons1X1To": [], + "LipisFlagIcons1X1Tr": [], + "LipisFlagIcons1X1Tt": [], + "LipisFlagIcons1X1Tv": [], + "LipisFlagIcons1X1Tw": [], + "LipisFlagIcons1X1Tz": [], + "LipisFlagIcons1X1Ua": [], + "LipisFlagIcons1X1Ug": [], + "LipisFlagIcons1X1Um": [], + "LipisFlagIcons1X1Un": [], + "LipisFlagIcons1X1Us": [], + "LipisFlagIcons1X1Uy": [], + "LipisFlagIcons1X1Uz": [], + "LipisFlagIcons1X1Va": [], + "LipisFlagIcons1X1Vc": [], + "LipisFlagIcons1X1Ve": [], + "LipisFlagIcons1X1Vg": [], + "LipisFlagIcons1X1Vi": [], + "LipisFlagIcons1X1Vn": [], + "LipisFlagIcons1X1Vu": [], + "LipisFlagIcons1X1Wf": [], + "LipisFlagIcons1X1Ws": [], + "LipisFlagIcons1X1Xk": [], + "LipisFlagIcons1X1Xx": [], + "LipisFlagIcons1X1Ye": [], + "LipisFlagIcons1X1Yt": [], + "LipisFlagIcons1X1Za": [], + "LipisFlagIcons1X1Zm": [], + "LipisFlagIcons1X1Zw": [], + "LipisFlagIcons4X3Ac": [], + "LipisFlagIcons4X3Ad": [], + "LipisFlagIcons4X3Ae": [], + "LipisFlagIcons4X3Af": [], + "LipisFlagIcons4X3Ag": [], + "LipisFlagIcons4X3Ai": [], + "LipisFlagIcons4X3Al": [], + "LipisFlagIcons4X3Am": [], + "LipisFlagIcons4X3Ao": [], + "LipisFlagIcons4X3Aq": [], + "LipisFlagIcons4X3Ar": [], + "LipisFlagIcons4X3As": [], + "LipisFlagIcons4X3At": [], + "LipisFlagIcons4X3Au": [], + "LipisFlagIcons4X3Aw": [], + "LipisFlagIcons4X3Ax": [], + "LipisFlagIcons4X3Az": [], + "LipisFlagIcons4X3Ba": [], + "LipisFlagIcons4X3Bb": [], + "LipisFlagIcons4X3Bd": [], + "LipisFlagIcons4X3Be": [], + "LipisFlagIcons4X3Bf": [], + "LipisFlagIcons4X3Bg": [], + "LipisFlagIcons4X3Bh": [], + "LipisFlagIcons4X3Bi": [], + "LipisFlagIcons4X3Bj": [], + "LipisFlagIcons4X3Bl": [], + "LipisFlagIcons4X3Bm": [], + "LipisFlagIcons4X3Bn": [], + "LipisFlagIcons4X3Bo": [], + "LipisFlagIcons4X3Bq": [], + "LipisFlagIcons4X3Br": [], + "LipisFlagIcons4X3Bs": [], + "LipisFlagIcons4X3Bt": [], + "LipisFlagIcons4X3Bv": [], + "LipisFlagIcons4X3Bw": [], + "LipisFlagIcons4X3By": [], + "LipisFlagIcons4X3Bz": [], + "LipisFlagIcons4X3Ca": [], + "LipisFlagIcons4X3Cc": [], + "LipisFlagIcons4X3Cd": [], + "LipisFlagIcons4X3Cefta": [], + "LipisFlagIcons4X3Cf": [], + "LipisFlagIcons4X3Cg": [], + "LipisFlagIcons4X3Ch": [], + "LipisFlagIcons4X3Ci": [], + "LipisFlagIcons4X3Ck": [], + "LipisFlagIcons4X3Cl": [], + "LipisFlagIcons4X3Cm": [], + "LipisFlagIcons4X3Cn": [], + "LipisFlagIcons4X3Co": [], + "LipisFlagIcons4X3Cp": [], + "LipisFlagIcons4X3Cr": [], + "LipisFlagIcons4X3Cu": [], + "LipisFlagIcons4X3Cv": [], + "LipisFlagIcons4X3Cw": [], + "LipisFlagIcons4X3Cx": [], + "LipisFlagIcons4X3Cy": [], + "LipisFlagIcons4X3Cz": [], + "LipisFlagIcons4X3De": [], + "LipisFlagIcons4X3Dg": [], + "LipisFlagIcons4X3Dj": [], + "LipisFlagIcons4X3Dk": [], + "LipisFlagIcons4X3Dm": [], + "LipisFlagIcons4X3Do": [], + "LipisFlagIcons4X3Dz": [], + "LipisFlagIcons4X3Ea": [], + "LipisFlagIcons4X3Ec": [], + "LipisFlagIcons4X3Ee": [], + "LipisFlagIcons4X3Eg": [], + "LipisFlagIcons4X3Eh": [], + "LipisFlagIcons4X3Er": [], + "LipisFlagIcons4X3Es": [], + "LipisFlagIcons4X3EsCt": [], + "LipisFlagIcons4X3EsGa": [], + "LipisFlagIcons4X3Et": [], + "LipisFlagIcons4X3Eu": [], + "LipisFlagIcons4X3Fi": [], + "LipisFlagIcons4X3Fj": [], + "LipisFlagIcons4X3Fk": [], + "LipisFlagIcons4X3Fm": [], + "LipisFlagIcons4X3Fo": [], + "LipisFlagIcons4X3Fr": [], + "LipisFlagIcons4X3Ga": [], + "LipisFlagIcons4X3Gb": [], + "LipisFlagIcons4X3GbEng": [], + "LipisFlagIcons4X3GbNir": [], + "LipisFlagIcons4X3GbSct": [], + "LipisFlagIcons4X3GbWls": [], + "LipisFlagIcons4X3Gd": [], + "LipisFlagIcons4X3Ge": [], + "LipisFlagIcons4X3Gf": [], + "LipisFlagIcons4X3Gg": [], + "LipisFlagIcons4X3Gh": [], + "LipisFlagIcons4X3Gi": [], + "LipisFlagIcons4X3Gl": [], + "LipisFlagIcons4X3Gm": [], + "LipisFlagIcons4X3Gn": [], + "LipisFlagIcons4X3Gp": [], + "LipisFlagIcons4X3Gq": [], + "LipisFlagIcons4X3Gr": [], + "LipisFlagIcons4X3Gs": [], + "LipisFlagIcons4X3Gt": [], + "LipisFlagIcons4X3Gu": [], + "LipisFlagIcons4X3Gw": [], + "LipisFlagIcons4X3Gy": [], + "LipisFlagIcons4X3Hk": [], + "LipisFlagIcons4X3Hm": [], + "LipisFlagIcons4X3Hn": [], + "LipisFlagIcons4X3Hr": [], + "LipisFlagIcons4X3Ht": [], + "LipisFlagIcons4X3Hu": [], + "LipisFlagIcons4X3Ic": [], + "LipisFlagIcons4X3Id": [], + "LipisFlagIcons4X3Ie": [], + "LipisFlagIcons4X3Il": [], + "LipisFlagIcons4X3Im": [], + "LipisFlagIcons4X3In": [], + "LipisFlagIcons4X3Io": [], + "LipisFlagIcons4X3Iq": [], + "LipisFlagIcons4X3Ir": [], + "LipisFlagIcons4X3Is": [], + "LipisFlagIcons4X3It": [], + "LipisFlagIcons4X3Je": [], + "LipisFlagIcons4X3Jm": [], + "LipisFlagIcons4X3Jo": [], + "LipisFlagIcons4X3Jp": [], + "LipisFlagIcons4X3Ke": [], + "LipisFlagIcons4X3Kg": [], + "LipisFlagIcons4X3Kh": [], + "LipisFlagIcons4X3Ki": [], + "LipisFlagIcons4X3Km": [], + "LipisFlagIcons4X3Kn": [], + "LipisFlagIcons4X3Kp": [], + "LipisFlagIcons4X3Kr": [], + "LipisFlagIcons4X3Kw": [], + "LipisFlagIcons4X3Ky": [], + "LipisFlagIcons4X3Kz": [], + "LipisFlagIcons4X3La": [], + "LipisFlagIcons4X3Lb": [], + "LipisFlagIcons4X3Lc": [], + "LipisFlagIcons4X3Li": [], + "LipisFlagIcons4X3Lk": [], + "LipisFlagIcons4X3Lr": [], + "LipisFlagIcons4X3Ls": [], + "LipisFlagIcons4X3Lt": [], + "LipisFlagIcons4X3Lu": [], + "LipisFlagIcons4X3Lv": [], + "LipisFlagIcons4X3Ly": [], + "LipisFlagIcons4X3Ma": [], + "LipisFlagIcons4X3Mc": [], + "LipisFlagIcons4X3Md": [], + "LipisFlagIcons4X3Me": [], + "LipisFlagIcons4X3Mf": [], + "LipisFlagIcons4X3Mg": [], + "LipisFlagIcons4X3Mh": [], + "LipisFlagIcons4X3Mk": [], + "LipisFlagIcons4X3Ml": [], + "LipisFlagIcons4X3Mm": [], + "LipisFlagIcons4X3Mn": [], + "LipisFlagIcons4X3Mo": [], + "LipisFlagIcons4X3Mp": [], + "LipisFlagIcons4X3Mq": [], + "LipisFlagIcons4X3Mr": [], + "LipisFlagIcons4X3Ms": [], + "LipisFlagIcons4X3Mt": [], + "LipisFlagIcons4X3Mu": [], + "LipisFlagIcons4X3Mv": [], + "LipisFlagIcons4X3Mw": [], + "LipisFlagIcons4X3Mx": [], + "LipisFlagIcons4X3My": [], + "LipisFlagIcons4X3Mz": [], + "LipisFlagIcons4X3Na": [], + "LipisFlagIcons4X3Nc": [], + "LipisFlagIcons4X3Ne": [], + "LipisFlagIcons4X3Nf": [], + "LipisFlagIcons4X3Ng": [], + "LipisFlagIcons4X3Ni": [], + "LipisFlagIcons4X3Nl": [], + "LipisFlagIcons4X3No": [], + "LipisFlagIcons4X3Np": [], + "LipisFlagIcons4X3Nr": [], + "LipisFlagIcons4X3Nu": [], + "LipisFlagIcons4X3Nz": [], + "LipisFlagIcons4X3Om": [], + "LipisFlagIcons4X3Pa": [], + "LipisFlagIcons4X3Pe": [], + "LipisFlagIcons4X3Pf": [], + "LipisFlagIcons4X3Pg": [], + "LipisFlagIcons4X3Ph": [], + "LipisFlagIcons4X3Pk": [], + "LipisFlagIcons4X3Pl": [], + "LipisFlagIcons4X3Pm": [], + "LipisFlagIcons4X3Pn": [], + "LipisFlagIcons4X3Pr": [], + "LipisFlagIcons4X3Ps": [], + "LipisFlagIcons4X3Pt": [], + "LipisFlagIcons4X3Pw": [], + "LipisFlagIcons4X3Py": [], + "LipisFlagIcons4X3Qa": [], + "LipisFlagIcons4X3Re": [], + "LipisFlagIcons4X3Ro": [], + "LipisFlagIcons4X3Rs": [], + "LipisFlagIcons4X3Ru": [], + "LipisFlagIcons4X3Rw": [], + "LipisFlagIcons4X3Sa": [], + "LipisFlagIcons4X3Sb": [], + "LipisFlagIcons4X3Sc": [], + "LipisFlagIcons4X3Sd": [], + "LipisFlagIcons4X3Se": [], + "LipisFlagIcons4X3Sg": [], + "LipisFlagIcons4X3Sh": [], + "LipisFlagIcons4X3Si": [], + "LipisFlagIcons4X3Sj": [], + "LipisFlagIcons4X3Sk": [], + "LipisFlagIcons4X3Sl": [], + "LipisFlagIcons4X3Sm": [], + "LipisFlagIcons4X3Sn": [], + "LipisFlagIcons4X3So": [], + "LipisFlagIcons4X3Sr": [], + "LipisFlagIcons4X3Ss": [], + "LipisFlagIcons4X3St": [], + "LipisFlagIcons4X3Sv": [], + "LipisFlagIcons4X3Sx": [], + "LipisFlagIcons4X3Sy": [], + "LipisFlagIcons4X3Sz": [], + "LipisFlagIcons4X3Ta": [], + "LipisFlagIcons4X3Tc": [], + "LipisFlagIcons4X3Td": [], + "LipisFlagIcons4X3Tf": [], + "LipisFlagIcons4X3Tg": [], + "LipisFlagIcons4X3Th": [], + "LipisFlagIcons4X3Tj": [], + "LipisFlagIcons4X3Tk": [], + "LipisFlagIcons4X3Tl": [], + "LipisFlagIcons4X3Tm": [], + "LipisFlagIcons4X3Tn": [], + "LipisFlagIcons4X3To": [], + "LipisFlagIcons4X3Tr": [], + "LipisFlagIcons4X3Tt": [], + "LipisFlagIcons4X3Tv": [], + "LipisFlagIcons4X3Tw": [], + "LipisFlagIcons4X3Tz": [], + "LipisFlagIcons4X3Ua": [], + "LipisFlagIcons4X3Ug": [], + "LipisFlagIcons4X3Um": [], + "LipisFlagIcons4X3Un": [], + "LipisFlagIcons4X3Us": [], + "LipisFlagIcons4X3Uy": [], + "LipisFlagIcons4X3Uz": [], + "LipisFlagIcons4X3Va": [], + "LipisFlagIcons4X3Vc": [], + "LipisFlagIcons4X3Ve": [], + "LipisFlagIcons4X3Vg": [], + "LipisFlagIcons4X3Vi": [], + "LipisFlagIcons4X3Vn": [], + "LipisFlagIcons4X3Vu": [], + "LipisFlagIcons4X3Wf": [], + "LipisFlagIcons4X3Ws": [], + "LipisFlagIcons4X3Xk": [], + "LipisFlagIcons4X3Xx": [], + "LipisFlagIcons4X3Ye": [], + "LipisFlagIcons4X3Yt": [], + "LipisFlagIcons4X3Za": [], + "LipisFlagIcons4X3Zm": [], + "LipisFlagIcons4X3Zw": [], + "LucideAccessibility": [], + "LucideActivity": [], + "LucideAirVent": [], + "LucideAirplay": [], + "LucideAlarmCheck": [], + "LucideAlarmClock": [], + "LucideAlarmClockOff": [], + "LucideAlarmMinus": [], + "LucideAlarmPlus": [], + "LucideAlbum": [], + "LucideAlertCircle": [], + "LucideAlertOctagon": [], + "LucideAlertTriangle": [], + "LucideAlignCenter": [], + "LucideAlignCenterHorizontal": [], + "LucideAlignCenterVertical": [], + "LucideAlignEndHorizontal": [], + "LucideAlignEndVertical": [], + "LucideAlignHorizontalDistributeCenter": [], + "LucideAlignHorizontalDistributeEnd": [], + "LucideAlignHorizontalDistributeStart": [], + "LucideAlignHorizontalJustifyCenter": [], + "LucideAlignHorizontalJustifyEnd": [], + "LucideAlignHorizontalJustifyStart": [], + "LucideAlignHorizontalSpaceAround": [], + "LucideAlignHorizontalSpaceBetween": [], + "LucideAlignJustify": [], + "LucideAlignLeft": [], + "LucideAlignRight": [], + "LucideAlignStartHorizontal": [], + "LucideAlignStartVertical": [], + "LucideAlignVerticalDistributeCenter": [], + "LucideAlignVerticalDistributeEnd": [], + "LucideAlignVerticalDistributeStart": [], + "LucideAlignVerticalJustifyCenter": [], + "LucideAlignVerticalJustifyEnd": [], + "LucideAlignVerticalJustifyStart": [], + "LucideAlignVerticalSpaceAround": [], + "LucideAlignVerticalSpaceBetween": [], + "LucideAnchor": [], + "LucideAngry": [], + "LucideAnnoyed": [], + "LucideAperture": [], + "LucideApple": [], + "LucideArchive": [], + "LucideArchiveRestore": [], + "LucideArmchair": [], + "LucideArrowBigDown": [], + "LucideArrowBigLeft": [], + "LucideArrowBigRight": [], + "LucideArrowBigUp": [], + "LucideArrowDown": [], + "LucideArrowDownCircle": [], + "LucideArrowDownLeft": [], + "LucideArrowDownRight": [], + "LucideArrowLeft": [], + "LucideArrowLeftCircle": [], + "LucideArrowLeftRight": [], + "LucideArrowRight": [], + "LucideArrowRightCircle": [], + "LucideArrowUp": [], + "LucideArrowUpCircle": [], + "LucideArrowUpDown": [], + "LucideArrowUpLeft": [], + "LucideArrowUpRight": [], + "LucideAsterisk": [], + "LucideAtSign": [], + "LucideAward": [], + "LucideAxe": [], + "LucideAxis3D": [], + "LucideBaby": [], + "LucideBackpack": [], + "LucideBaggageClaim": [], + "LucideBanana": [], + "LucideBanknote": [], + "LucideBarChart": [], + "LucideBarChart2": [], + "LucideBarChart3": [], + "LucideBarChart4": [], + "LucideBarChartHorizontal": [], + "LucideBaseline": [], + "LucideBath": [], + "LucideBattery": [], + "LucideBatteryCharging": [], + "LucideBatteryFull": [], + "LucideBatteryLow": [], + "LucideBatteryMedium": [], + "LucideBeaker": [], + "LucideBed": [], + "LucideBedDouble": [], + "LucideBedSingle": [], + "LucideBeer": [], + "LucideBell": [], + "LucideBellMinus": [], + "LucideBellOff": [], + "LucideBellPlus": [], + "LucideBellRing": [], + "LucideBike": [], + "LucideBinary": [], + "LucideBitcoin": [], + "LucideBluetooth": [], + "LucideBluetoothConnected": [], + "LucideBluetoothOff": [], + "LucideBluetoothSearching": [], + "LucideBold": [], + "LucideBomb": [], + "LucideBone": [], + "LucideBook": [], + "LucideBookOpen": [], + "LucideBookOpenCheck": [], + "LucideBookmark": [], + "LucideBookmarkMinus": [], + "LucideBookmarkPlus": [], + "LucideBot": [], + "LucideBox": [], + "LucideBoxSelect": [], + "LucideBoxes": [], + "LucideBriefcase": [], + "LucideBrush": [], + "LucideBug": [], + "LucideBuilding": [], + "LucideBuilding2": [], + "LucideBus": [], + "LucideCake": [], + "LucideCalculator": [], + "LucideCalendar": [], + "LucideCalendarCheck": [], + "LucideCalendarCheck2": [], + "LucideCalendarClock": [], + "LucideCalendarDays": [], + "LucideCalendarHeart": [], + "LucideCalendarMinus": [], + "LucideCalendarOff": [], + "LucideCalendarPlus": [], + "LucideCalendarRange": [], + "LucideCalendarSearch": [], + "LucideCalendarX": [], + "LucideCalendarX2": [], + "LucideCamera": [], + "LucideCameraOff": [], + "LucideCar": [], + "LucideCarrot": [], + "LucideCast": [], + "LucideCheck": [], + "LucideCheckCircle": [], + "LucideCheckCircle2": [], + "LucideCheckSquare": [], + "LucideChefHat": [], + "LucideCherry": [], + "LucideChevronDown": [], + "LucideChevronFirst": [], + "LucideChevronLast": [], + "LucideChevronLeft": [], + "LucideChevronRight": [], + "LucideChevronUp": [], + "LucideChevronsDown": [], + "LucideChevronsDownUp": [], + "LucideChevronsLeft": [], + "LucideChevronsLeftRight": [], + "LucideChevronsRight": [], + "LucideChevronsRightLeft": [], + "LucideChevronsUp": [], + "LucideChevronsUpDown": [], + "LucideChrome": [], + "LucideCigarette": [], + "LucideCigaretteOff": [], + "LucideCircle": [], + "LucideCircleDot": [], + "LucideCircleEllipsis": [], + "LucideCircleSlashed": [], + "LucideCitrus": [], + "LucideClapperboard": [], + "LucideClipboard": [], + "LucideClipboardCheck": [], + "LucideClipboardCopy": [], + "LucideClipboardEdit": [], + "LucideClipboardList": [], + "LucideClipboardSignature": [], + "LucideClipboardType": [], + "LucideClipboardX": [], + "LucideClock": [], + "LucideClock1": [], + "LucideClock10": [], + "LucideClock11": [], + "LucideClock12": [], + "LucideClock2": [], + "LucideClock3": [], + "LucideClock4": [], + "LucideClock5": [], + "LucideClock6": [], + "LucideClock7": [], + "LucideClock8": [], + "LucideClock9": [], + "LucideCloud": [], + "LucideCloudCog": [], + "LucideCloudDrizzle": [], + "LucideCloudFog": [], + "LucideCloudHail": [], + "LucideCloudLightning": [], + "LucideCloudMoon": [], + "LucideCloudMoonRain": [], + "LucideCloudOff": [], + "LucideCloudRain": [], + "LucideCloudRainWind": [], + "LucideCloudSnow": [], + "LucideCloudSun": [], + "LucideCloudSunRain": [], + "LucideCloudy": [], + "LucideClover": [], + "LucideCode": [], + "LucideCode2": [], + "LucideCodepen": [], + "LucideCodesandbox": [], + "LucideCoffee": [], + "LucideCog": [], + "LucideCoins": [], + "LucideColumns": [], + "LucideCommand": [], + "LucideCompass": [], + "LucideComponent": [], + "LucideConciergeBell": [], + "LucideContact": [], + "LucideContrast": [], + "LucideCookie": [], + "LucideCopy": [], + "LucideCopyleft": [], + "LucideCopyright": [], + "LucideCornerDownLeft": [], + "LucideCornerDownRight": [], + "LucideCornerLeftDown": [], + "LucideCornerLeftUp": [], + "LucideCornerRightDown": [], + "LucideCornerRightUp": [], + "LucideCornerUpLeft": [], + "LucideCornerUpRight": [], + "LucideCpu": [], + "LucideCreditCard": [], + "LucideCroissant": [], + "LucideCrop": [], + "LucideCross": [], + "LucideCrosshair": [], + "LucideCrown": [], + "LucideCupSoda": [], + "LucideCurlyBraces": [], + "LucideCurrency": [], + "LucideDatabase": [], + "LucideDelete": [], + "LucideDiamond": [], + "LucideDice1": [], + "LucideDice2": [], + "LucideDice3": [], + "LucideDice4": [], + "LucideDice5": [], + "LucideDice6": [], + "LucideDices": [], + "LucideDiff": [], + "LucideDisc": [], + "LucideDivide": [], + "LucideDivideCircle": [], + "LucideDivideSquare": [], + "LucideDollarSign": [], + "LucideDownload": [], + "LucideDownloadCloud": [], + "LucideDribbble": [], + "LucideDroplet": [], + "LucideDroplets": [], + "LucideDrumstick": [], + "LucideEar": [], + "LucideEarOff": [], + "LucideEdit": [], + "LucideEdit2": [], + "LucideEdit3": [], + "LucideEgg": [], + "LucideEggFried": [], + "LucideEqual": [], + "LucideEqualNot": [], + "LucideEraser": [], + "LucideEuro": [], + "LucideExpand": [], + "LucideExternalLink": [], + "LucideEye": [], + "LucideEyeOff": [], + "LucideFacebook": [], + "LucideFactory": [], + "LucideFan": [], + "LucideFastForward": [], + "LucideFeather": [], + "LucideFigma": [], + "LucideFile": [], + "LucideFileArchive": [], + "LucideFileAudio": [], + "LucideFileAudio2": [], + "LucideFileAxis3D": [], + "LucideFileBadge": [], + "LucideFileBadge2": [], + "LucideFileBarChart": [], + "LucideFileBarChart2": [], + "LucideFileBox": [], + "LucideFileCheck": [], + "LucideFileCheck2": [], + "LucideFileClock": [], + "LucideFileCode": [], + "LucideFileCog": [], + "LucideFileCog2": [], + "LucideFileDiff": [], + "LucideFileDigit": [], + "LucideFileDown": [], + "LucideFileEdit": [], + "LucideFileHeart": [], + "LucideFileImage": [], + "LucideFileInput": [], + "LucideFileJson": [], + "LucideFileJson2": [], + "LucideFileKey": [], + "LucideFileKey2": [], + "LucideFileLineChart": [], + "LucideFileLock": [], + "LucideFileLock2": [], + "LucideFileMinus": [], + "LucideFileMinus2": [], + "LucideFileOutput": [], + "LucideFilePieChart": [], + "LucideFilePlus": [], + "LucideFilePlus2": [], + "LucideFileQuestion": [], + "LucideFileScan": [], + "LucideFileSearch": [], + "LucideFileSearch2": [], + "LucideFileSignature": [], + "LucideFileSpreadsheet": [], + "LucideFileSymlink": [], + "LucideFileTerminal": [], + "LucideFileText": [], + "LucideFileType": [], + "LucideFileType2": [], + "LucideFileUp": [], + "LucideFileVideo": [], + "LucideFileVideo2": [], + "LucideFileVolume": [], + "LucideFileVolume2": [], + "LucideFileWarning": [], + "LucideFileX": [], + "LucideFileX2": [], + "LucideFiles": [], + "LucideFilm": [], + "LucideFilter": [], + "LucideFingerprint": [], + "LucideFlag": [], + "LucideFlagOff": [], + "LucideFlagTriangleLeft": [], + "LucideFlagTriangleRight": [], + "LucideFlame": [], + "LucideFlashlight": [], + "LucideFlashlightOff": [], + "LucideFlaskConical": [], + "LucideFlaskRound": [], + "LucideFlipHorizontal": [], + "LucideFlipHorizontal2": [], + "LucideFlipVertical": [], + "LucideFlipVertical2": [], + "LucideFlower": [], + "LucideFlower2": [], + "LucideFocus": [], + "LucideFolder": [], + "LucideFolderArchive": [], + "LucideFolderCheck": [], + "LucideFolderClock": [], + "LucideFolderClosed": [], + "LucideFolderCog": [], + "LucideFolderCog2": [], + "LucideFolderDown": [], + "LucideFolderEdit": [], + "LucideFolderHeart": [], + "LucideFolderInput": [], + "LucideFolderKey": [], + "LucideFolderLock": [], + "LucideFolderMinus": [], + "LucideFolderOpen": [], + "LucideFolderOutput": [], + "LucideFolderPlus": [], + "LucideFolderSearch": [], + "LucideFolderSearch2": [], + "LucideFolderSymlink": [], + "LucideFolderTree": [], + "LucideFolderUp": [], + "LucideFolderX": [], + "LucideFolders": [], + "LucideFormInput": [], + "LucideForward": [], + "LucideFrame": [], + "LucideFramer": [], + "LucideFrown": [], + "LucideFuel": [], + "LucideFunctionSquare": [], + "LucideGamepad": [], + "LucideGamepad2": [], + "LucideGauge": [], + "LucideGavel": [], + "LucideGem": [], + "LucideGhost": [], + "LucideGift": [], + "LucideGitBranch": [], + "LucideGitBranchPlus": [], + "LucideGitCommit": [], + "LucideGitCompare": [], + "LucideGitFork": [], + "LucideGitMerge": [], + "LucideGitPullRequest": [], + "LucideGitPullRequestClosed": [], + "LucideGitPullRequestDraft": [], + "LucideGithub": [], + "LucideGitlab": [], + "LucideGlassWater": [], + "LucideGlasses": [], + "LucideGlobe": [], + "LucideGlobe2": [], + "LucideGrab": [], + "LucideGraduationCap": [], + "LucideGrape": [], + "LucideGrid": [], + "LucideGripHorizontal": [], + "LucideGripVertical": [], + "LucideHammer": [], + "LucideHand": [], + "LucideHandMetal": [], + "LucideHardDrive": [], + "LucideHardHat": [], + "LucideHash": [], + "LucideHaze": [], + "LucideHeadphones": [], + "LucideHeart": [], + "LucideHeartCrack": [], + "LucideHeartHandshake": [], + "LucideHeartOff": [], + "LucideHeartPulse": [], + "LucideHelpCircle": [], + "LucideHexagon": [], + "LucideHighlighter": [], + "LucideHistory": [], + "LucideHome": [], + "LucideHourglass": [], + "LucideIceCream": [], + "LucideImage": [], + "LucideImageMinus": [], + "LucideImageOff": [], + "LucideImagePlus": [], + "LucideImport": [], + "LucideInbox": [], + "LucideIndent": [], + "LucideIndianRupee": [], + "LucideInfinity": [], + "LucideInfo": [], + "LucideInspect": [], + "LucideInstagram": [], + "LucideItalic": [], + "LucideJapaneseYen": [], + "LucideJoystick": [], + "LucideKey": [], + "LucideKeyboard": [], + "LucideLamp": [], + "LucideLampCeiling": [], + "LucideLampDesk": [], + "LucideLampFloor": [], + "LucideLampWallDown": [], + "LucideLampWallUp": [], + "LucideLandmark": [], + "LucideLanguages": [], + "LucideLaptop": [], + "LucideLaptop2": [], + "LucideLasso": [], + "LucideLassoSelect": [], + "LucideLaugh": [], + "LucideLayers": [], + "LucideLayout": [], + "LucideLayoutDashboard": [], + "LucideLayoutGrid": [], + "LucideLayoutList": [], + "LucideLayoutTemplate": [], + "LucideLeaf": [], + "LucideLibrary": [], + "LucideLifeBuoy": [], + "LucideLightbulb": [], + "LucideLightbulbOff": [], + "LucideLineChart": [], + "LucideLink": [], + "LucideLink2": [], + "LucideLink2Off": [], + "LucideLinkedin": [], + "LucideList": [], + "LucideListChecks": [], + "LucideListEnd": [], + "LucideListMinus": [], + "LucideListMusic": [], + "LucideListOrdered": [], + "LucideListPlus": [], + "LucideListStart": [], + "LucideListVideo": [], + "LucideListX": [], + "LucideLoader": [], + "LucideLoader2": [], + "LucideLocate": [], + "LucideLocateFixed": [], + "LucideLocateOff": [], + "LucideLock": [], + "LucideLogIn": [], + "LucideLogOut": [], + "LucideLuggage": [], + "LucideMagnet": [], + "LucideMail": [], + "LucideMailCheck": [], + "LucideMailMinus": [], + "LucideMailOpen": [], + "LucideMailPlus": [], + "LucideMailQuestion": [], + "LucideMailSearch": [], + "LucideMailWarning": [], + "LucideMailX": [], + "LucideMails": [], + "LucideMap": [], + "LucideMapPin": [], + "LucideMapPinOff": [], + "LucideMartini": [], + "LucideMaximize": [], + "LucideMaximize2": [], + "LucideMedal": [], + "LucideMegaphone": [], + "LucideMegaphoneOff": [], + "LucideMeh": [], + "LucideMenu": [], + "LucideMessageCircle": [], + "LucideMessageSquare": [], + "LucideMic": [], + "LucideMic2": [], + "LucideMicOff": [], + "LucideMicroscope": [], + "LucideMicrowave": [], + "LucideMilestone": [], + "LucideMinimize": [], + "LucideMinimize2": [], + "LucideMinus": [], + "LucideMinusCircle": [], + "LucideMinusSquare": [], + "LucideMonitor": [], + "LucideMonitorOff": [], + "LucideMonitorSpeaker": [], + "LucideMoon": [], + "LucideMoreHorizontal": [], + "LucideMoreVertical": [], + "LucideMountain": [], + "LucideMountainSnow": [], + "LucideMouse": [], + "LucideMousePointer": [], + "LucideMousePointer2": [], + "LucideMousePointerClick": [], + "LucideMove": [], + "LucideMove3D": [], + "LucideMoveDiagonal": [], + "LucideMoveDiagonal2": [], + "LucideMoveHorizontal": [], + "LucideMoveVertical": [], + "LucideMusic": [], + "LucideMusic2": [], + "LucideMusic3": [], + "LucideMusic4": [], + "LucideNavigation": [], + "LucideNavigation2": [], + "LucideNavigation2Off": [], + "LucideNavigationOff": [], + "LucideNetwork": [], + "LucideNewspaper": [], + "LucideOctagon": [], + "LucideOption": [], + "LucideOutdent": [], + "LucidePackage": [], + "LucidePackage2": [], + "LucidePackageCheck": [], + "LucidePackageMinus": [], + "LucidePackageOpen": [], + "LucidePackagePlus": [], + "LucidePackageSearch": [], + "LucidePackageX": [], + "LucidePaintBucket": [], + "LucidePaintbrush": [], + "LucidePaintbrush2": [], + "LucidePalette": [], + "LucidePalmtree": [], + "LucidePaperclip": [], + "LucidePartyPopper": [], + "LucidePause": [], + "LucidePauseCircle": [], + "LucidePauseOctagon": [], + "LucidePenTool": [], + "LucidePencil": [], + "LucidePercent": [], + "LucidePersonStanding": [], + "LucidePhone": [], + "LucidePhoneCall": [], + "LucidePhoneForwarded": [], + "LucidePhoneIncoming": [], + "LucidePhoneMissed": [], + "LucidePhoneOff": [], + "LucidePhoneOutgoing": [], + "LucidePieChart": [], + "LucidePiggyBank": [], + "LucidePin": [], + "LucidePinOff": [], + "LucidePipette": [], + "LucidePizza": [], + "LucidePlane": [], + "LucidePlay": [], + "LucidePlayCircle": [], + "LucidePlug": [], + "LucidePlug2": [], + "LucidePlugZap": [], + "LucidePlus": [], + "LucidePlusCircle": [], + "LucidePlusSquare": [], + "LucidePocket": [], + "LucidePodcast": [], + "LucidePointer": [], + "LucidePoundSterling": [], + "LucidePower": [], + "LucidePowerOff": [], + "LucidePrinter": [], + "LucidePuzzle": [], + "LucideQrCode": [], + "LucideQuote": [], + "LucideRadio": [], + "LucideRadioReceiver": [], + "LucideRectangleHorizontal": [], + "LucideRectangleVertical": [], + "LucideRecycle": [], + "LucideRedo": [], + "LucideRedo2": [], + "LucideRefreshCcw": [], + "LucideRefreshCw": [], + "LucideRefrigerator": [], + "LucideRegex": [], + "LucideRepeat": [], + "LucideRepeat1": [], + "LucideReply": [], + "LucideReplyAll": [], + "LucideRewind": [], + "LucideRocket": [], + "LucideRockingChair": [], + "LucideRotate3D": [], + "LucideRotateCcw": [], + "LucideRotateCw": [], + "LucideRss": [], + "LucideRuler": [], + "LucideRussianRuble": [], + "LucideSailboat": [], + "LucideSave": [], + "LucideScale": [], + "LucideScale3D": [], + "LucideScaling": [], + "LucideScan": [], + "LucideScanFace": [], + "LucideScanLine": [], + "LucideScissors": [], + "LucideScreenShare": [], + "LucideScreenShareOff": [], + "LucideScroll": [], + "LucideSearch": [], + "LucideSend": [], + "LucideSeparatorHorizontal": [], + "LucideSeparatorVertical": [], + "LucideServer": [], + "LucideServerCog": [], + "LucideServerCrash": [], + "LucideServerOff": [], + "LucideSettings": [], + "LucideSettings2": [], + "LucideShare": [], + "LucideShare2": [], + "LucideSheet": [], + "LucideShield": [], + "LucideShieldAlert": [], + "LucideShieldCheck": [], + "LucideShieldClose": [], + "LucideShieldOff": [], + "LucideShirt": [], + "LucideShoppingBag": [], + "LucideShoppingCart": [], + "LucideShovel": [], + "LucideShowerHead": [], + "LucideShrink": [], + "LucideShrub": [], + "LucideShuffle": [], + "LucideSidebar": [], + "LucideSidebarClose": [], + "LucideSidebarOpen": [], + "LucideSigma": [], + "LucideSignal": [], + "LucideSignalHigh": [], + "LucideSignalLow": [], + "LucideSignalMedium": [], + "LucideSignalZero": [], + "LucideSiren": [], + "LucideSkipBack": [], + "LucideSkipForward": [], + "LucideSkull": [], + "LucideSlack": [], + "LucideSlash": [], + "LucideSlice": [], + "LucideSliders": [], + "LucideSlidersHorizontal": [], + "LucideSmartphone": [], + "LucideSmartphoneCharging": [], + "LucideSmile": [], + "LucideSmilePlus": [], + "LucideSnowflake": [], + "LucideSofa": [], + "LucideSortAsc": [], + "LucideSortDesc": [], + "LucideSpeaker": [], + "LucideSprout": [], + "LucideSquare": [], + "LucideStar": [], + "LucideStarHalf": [], + "LucideStarOff": [], + "LucideStethoscope": [], + "LucideSticker": [], + "LucideStickyNote": [], + "LucideStopCircle": [], + "LucideStretchHorizontal": [], + "LucideStretchVertical": [], + "LucideStrikethrough": [], + "LucideSubscript": [], + "LucideSun": [], + "LucideSunDim": [], + "LucideSunMedium": [], + "LucideSunMoon": [], + "LucideSunSnow": [], + "LucideSunrise": [], + "LucideSunset": [], + "LucideSuperscript": [], + "LucideSwissFranc": [], + "LucideSwitchCamera": [], + "LucideSword": [], + "LucideSwords": [], + "LucideSyringe": [], + "LucideTable": [], + "LucideTable2": [], + "LucideTablet": [], + "LucideTag": [], + "LucideTags": [], + "LucideTarget": [], + "LucideTent": [], + "LucideTerminal": [], + "LucideTerminalSquare": [], + "LucideTextCursor": [], + "LucideTextCursorInput": [], + "LucideThermometer": [], + "LucideThermometerSnowflake": [], + "LucideThermometerSun": [], + "LucideThumbsDown": [], + "LucideThumbsUp": [], + "LucideTicket": [], + "LucideTimer": [], + "LucideTimerOff": [], + "LucideTimerReset": [], + "LucideToggleLeft": [], + "LucideToggleRight": [], + "LucideTornado": [], + "LucideToyBrick": [], + "LucideTrain": [], + "LucideTrash": [], + "LucideTrash2": [], + "LucideTreeDeciduous": [], + "LucideTreePine": [], + "LucideTrees": [], + "LucideTrello": [], + "LucideTrendingDown": [], + "LucideTrendingUp": [], + "LucideTriangle": [], + "LucideTrophy": [], + "LucideTruck": [], + "LucideTv": [], + "LucideTv2": [], + "LucideTwitch": [], + "LucideTwitter": [], + "LucideType": [], + "LucideUmbrella": [], + "LucideUnderline": [], + "LucideUndo": [], + "LucideUndo2": [], + "LucideUnlink": [], + "LucideUnlink2": [], + "LucideUnlock": [], + "LucideUpload": [], + "LucideUploadCloud": [], + "LucideUsb": [], + "LucideUser": [], + "LucideUserCheck": [], + "LucideUserCog": [], + "LucideUserMinus": [], + "LucideUserPlus": [], + "LucideUserX": [], + "LucideUsers": [], + "LucideUtensils": [], + "LucideUtensilsCrossed": [], + "LucideVenetianMask": [], + "LucideVerified": [], + "LucideVibrate": [], + "LucideVibrateOff": [], + "LucideVideo": [], + "LucideVideoOff": [], + "LucideView": [], + "LucideVoicemail": [], + "LucideVolume": [], + "LucideVolume1": [], + "LucideVolume2": [], + "LucideVolumeX": [], + "LucideWallet": [], + "LucideWand": [], + "LucideWand2": [], + "LucideWatch": [], + "LucideWaves": [], + "LucideWebcam": [], + "LucideWebhook": [], + "LucideWifi": [], + "LucideWifiOff": [], + "LucideWind": [], + "LucideWine": [], + "LucideWrapText": [], + "LucideWrench": [], + "LucideX": [], + "LucideXCircle": [], + "LucideXOctagon": [], + "LucideXSquare": [], + "LucideYoutube": [], + "LucideZap": [], + "LucideZapOff": [], + "LucideZoomIn": [], + "LucideZoomOut": [], + "OcticonsAccessibility16": [], + "OcticonsAlert16": [], + "OcticonsAlert24": [], + "OcticonsAlertFill12": [], + "OcticonsApps16": [], + "OcticonsArchive16": [], + "OcticonsArchive24": [], + "OcticonsArrowBoth16": [], + "OcticonsArrowBoth24": [], + "OcticonsArrowDown16": [], + "OcticonsArrowDown24": [], + "OcticonsArrowDownLeft24": [], + "OcticonsArrowDownRight24": [], + "OcticonsArrowLeft16": [], + "OcticonsArrowLeft24": [], + "OcticonsArrowRight16": [], + "OcticonsArrowRight24": [], + "OcticonsArrowSwitch16": [], + "OcticonsArrowSwitch24": [], + "OcticonsArrowUp16": [], + "OcticonsArrowUp24": [], + "OcticonsArrowUpLeft24": [], + "OcticonsArrowUpRight24": [], + "OcticonsBeaker16": [], + "OcticonsBeaker24": [], + "OcticonsBell16": [], + "OcticonsBell24": [], + "OcticonsBellFill16": [], + "OcticonsBellFill24": [], + "OcticonsBellSlash16": [], + "OcticonsBellSlash24": [], + "OcticonsBlocked16": [], + "OcticonsBlocked24": [], + "OcticonsBold16": [], + "OcticonsBold24": [], + "OcticonsBook16": [], + "OcticonsBook24": [], + "OcticonsBookmark16": [], + "OcticonsBookmark24": [], + "OcticonsBookmarkFill24": [], + "OcticonsBookmarkSlash16": [], + "OcticonsBookmarkSlash24": [], + "OcticonsBookmarkSlashFill24": [], + "OcticonsBriefcase16": [], + "OcticonsBriefcase24": [], + "OcticonsBroadcast16": [], + "OcticonsBroadcast24": [], + "OcticonsBrowser16": [], + "OcticonsBrowser24": [], + "OcticonsBug16": [], + "OcticonsBug24": [], + "OcticonsCalendar16": [], + "OcticonsCalendar24": [], + "OcticonsCheck16": [], + "OcticonsCheck24": [], + "OcticonsCheckCircle16": [], + "OcticonsCheckCircle24": [], + "OcticonsCheckCircleFill12": [], + "OcticonsCheckCircleFill16": [], + "OcticonsCheckCircleFill24": [], + "OcticonsChecklist16": [], + "OcticonsChecklist24": [], + "OcticonsChevronDown16": [], + "OcticonsChevronDown24": [], + "OcticonsChevronLeft16": [], + "OcticonsChevronLeft24": [], + "OcticonsChevronRight16": [], + "OcticonsChevronRight24": [], + "OcticonsChevronUp16": [], + "OcticonsChevronUp24": [], + "OcticonsCircle16": [], + "OcticonsCircle24": [], + "OcticonsCircleSlash16": [], + "OcticonsCircleSlash24": [], + "OcticonsClock16": [], + "OcticonsClock24": [], + "OcticonsCloud16": [], + "OcticonsCloud24": [], + "OcticonsCloudOffline16": [], + "OcticonsCloudOffline24": [], + "OcticonsCode16": [], + "OcticonsCode24": [], + "OcticonsCodeOfConduct16": [], + "OcticonsCodeOfConduct24": [], + "OcticonsCodeReview16": [], + "OcticonsCodeReview24": [], + "OcticonsCodeSquare16": [], + "OcticonsCodeSquare24": [], + "OcticonsCodescan16": [], + "OcticonsCodescan24": [], + "OcticonsCodescanCheckmark16": [], + "OcticonsCodescanCheckmark24": [], + "OcticonsCodespaces16": [], + "OcticonsCodespaces24": [], + "OcticonsColumns16": [], + "OcticonsColumns24": [], + "OcticonsComment16": [], + "OcticonsComment24": [], + "OcticonsCommentDiscussion16": [], + "OcticonsCommentDiscussion24": [], + "OcticonsCommit24": [], + "OcticonsContainer16": [], + "OcticonsContainer24": [], + "OcticonsCopy16": [], + "OcticonsCopy24": [], + "OcticonsCpu16": [], + "OcticonsCpu24": [], + "OcticonsCreditCard16": [], + "OcticonsCreditCard24": [], + "OcticonsCrossReference16": [], + "OcticonsCrossReference24": [], + "OcticonsDash16": [], + "OcticonsDash24": [], + "OcticonsDatabase16": [], + "OcticonsDatabase24": [], + "OcticonsDependabot16": [], + "OcticonsDependabot24": [], + "OcticonsDesktopDownload16": [], + "OcticonsDesktopDownload24": [], + "OcticonsDeviceCamera16": [], + "OcticonsDeviceCameraVideo16": [], + "OcticonsDeviceCameraVideo24": [], + "OcticonsDeviceDesktop16": [], + "OcticonsDeviceDesktop24": [], + "OcticonsDeviceMobile16": [], + "OcticonsDeviceMobile24": [], + "OcticonsDiamond16": [], + "OcticonsDiamond24": [], + "OcticonsDiff16": [], + "OcticonsDiff24": [], + "OcticonsDiffAdded16": [], + "OcticonsDiffIgnored16": [], + "OcticonsDiffModified16": [], + "OcticonsDiffRemoved16": [], + "OcticonsDiffRenamed16": [], + "OcticonsDot16": [], + "OcticonsDot24": [], + "OcticonsDotFill16": [], + "OcticonsDotFill24": [], + "OcticonsDownload16": [], + "OcticonsDownload24": [], + "OcticonsDuplicate16": [], + "OcticonsDuplicate24": [], + "OcticonsEllipsis16": [], + "OcticonsEye16": [], + "OcticonsEye24": [], + "OcticonsEyeClosed16": [], + "OcticonsEyeClosed24": [], + "OcticonsFeedDiscussion16": [], + "OcticonsFeedForked16": [], + "OcticonsFeedHeart16": [], + "OcticonsFeedMerged16": [], + "OcticonsFeedPerson16": [], + "OcticonsFeedRepo16": [], + "OcticonsFeedRocket16": [], + "OcticonsFeedStar16": [], + "OcticonsFeedTag16": [], + "OcticonsFeedTrophy16": [], + "OcticonsFile16": [], + "OcticonsFile24": [], + "OcticonsFileBadge16": [], + "OcticonsFileBinary16": [], + "OcticonsFileBinary24": [], + "OcticonsFileCode16": [], + "OcticonsFileCode24": [], + "OcticonsFileDiff16": [], + "OcticonsFileDiff24": [], + "OcticonsFileDirectory16": [], + "OcticonsFileDirectory24": [], + "OcticonsFileDirectoryFill16": [], + "OcticonsFileDirectoryFill24": [], + "OcticonsFileDirectoryOpenFill16": [], + "OcticonsFileMedia24": [], + "OcticonsFileSubmodule16": [], + "OcticonsFileSubmodule24": [], + "OcticonsFileSymlinkFile16": [], + "OcticonsFileSymlinkFile24": [], + "OcticonsFileZip16": [], + "OcticonsFileZip24": [], + "OcticonsFilter16": [], + "OcticonsFilter24": [], + "OcticonsFlame16": [], + "OcticonsFlame24": [], + "OcticonsFold16": [], + "OcticonsFold24": [], + "OcticonsFoldDown16": [], + "OcticonsFoldDown24": [], + "OcticonsFoldUp16": [], + "OcticonsFoldUp24": [], + "OcticonsGear16": [], + "OcticonsGear24": [], + "OcticonsGift16": [], + "OcticonsGift24": [], + "OcticonsGitBranch16": [], + "OcticonsGitBranch24": [], + "OcticonsGitCommit16": [], + "OcticonsGitCommit24": [], + "OcticonsGitCompare16": [], + "OcticonsGitCompare24": [], + "OcticonsGitMerge16": [], + "OcticonsGitMerge24": [], + "OcticonsGitPullRequest16": [], + "OcticonsGitPullRequest24": [], + "OcticonsGitPullRequestClosed16": [], + "OcticonsGitPullRequestClosed24": [], + "OcticonsGitPullRequestDraft16": [], + "OcticonsGitPullRequestDraft24": [], + "OcticonsGlobe16": [], + "OcticonsGlobe24": [], + "OcticonsGrabber16": [], + "OcticonsGrabber24": [], + "OcticonsGraph16": [], + "OcticonsGraph24": [], + "OcticonsHash16": [], + "OcticonsHash24": [], + "OcticonsHeading16": [], + "OcticonsHeading24": [], + "OcticonsHeart16": [], + "OcticonsHeart24": [], + "OcticonsHeartFill16": [], + "OcticonsHeartFill24": [], + "OcticonsHistory16": [], + "OcticonsHistory24": [], + "OcticonsHome16": [], + "OcticonsHome24": [], + "OcticonsHomeFill24": [], + "OcticonsHorizontalRule16": [], + "OcticonsHorizontalRule24": [], + "OcticonsHourglass16": [], + "OcticonsHourglass24": [], + "OcticonsHubot16": [], + "OcticonsHubot24": [], + "OcticonsIdBadge16": [], + "OcticonsImage16": [], + "OcticonsImage24": [], + "OcticonsInbox16": [], + "OcticonsInbox24": [], + "OcticonsInfinity16": [], + "OcticonsInfinity24": [], + "OcticonsInfo16": [], + "OcticonsInfo24": [], + "OcticonsIssueClosed16": [], + "OcticonsIssueClosed24": [], + "OcticonsIssueDraft16": [], + "OcticonsIssueDraft24": [], + "OcticonsIssueOpened16": [], + "OcticonsIssueOpened24": [], + "OcticonsIssueReopened16": [], + "OcticonsIssueReopened24": [], + "OcticonsItalic16": [], + "OcticonsItalic24": [], + "OcticonsIterations16": [], + "OcticonsIterations24": [], + "OcticonsKebabHorizontal16": [], + "OcticonsKebabHorizontal24": [], + "OcticonsKey16": [], + "OcticonsKey24": [], + "OcticonsKeyAsterisk16": [], + "OcticonsLaw16": [], + "OcticonsLaw24": [], + "OcticonsLightBulb16": [], + "OcticonsLightBulb24": [], + "OcticonsLink16": [], + "OcticonsLink24": [], + "OcticonsLinkExternal16": [], + "OcticonsLinkExternal24": [], + "OcticonsListOrdered16": [], + "OcticonsListOrdered24": [], + "OcticonsListUnordered16": [], + "OcticonsListUnordered24": [], + "OcticonsLocation16": [], + "OcticonsLocation24": [], + "OcticonsLock16": [], + "OcticonsLock24": [], + "OcticonsLog16": [], + "OcticonsLogoGist16": [], + "OcticonsLogoGithub16": [], + "OcticonsMail16": [], + "OcticonsMail24": [], + "OcticonsMarkGithub16": [], + "OcticonsMarkdown16": [], + "OcticonsMegaphone16": [], + "OcticonsMegaphone24": [], + "OcticonsMention16": [], + "OcticonsMention24": [], + "OcticonsMeter16": [], + "OcticonsMilestone16": [], + "OcticonsMilestone24": [], + "OcticonsMirror16": [], + "OcticonsMirror24": [], + "OcticonsMoon16": [], + "OcticonsMoon24": [], + "OcticonsMortarBoard16": [], + "OcticonsMortarBoard24": [], + "OcticonsMultiSelect16": [], + "OcticonsMultiSelect24": [], + "OcticonsMute16": [], + "OcticonsMute24": [], + "OcticonsNoEntry16": [], + "OcticonsNoEntry24": [], + "OcticonsNoEntryFill12": [], + "OcticonsNorthStar16": [], + "OcticonsNorthStar24": [], + "OcticonsNote16": [], + "OcticonsNote24": [], + "OcticonsNumber16": [], + "OcticonsNumber24": [], + "OcticonsOrganization16": [], + "OcticonsOrganization24": [], + "OcticonsPackage16": [], + "OcticonsPackage24": [], + "OcticonsPackageDependencies16": [], + "OcticonsPackageDependencies24": [], + "OcticonsPackageDependents16": [], + "OcticonsPackageDependents24": [], + "OcticonsPaintbrush16": [], + "OcticonsPaperAirplane16": [], + "OcticonsPaperAirplane24": [], + "OcticonsPaste16": [], + "OcticonsPaste24": [], + "OcticonsPencil16": [], + "OcticonsPencil24": [], + "OcticonsPeople16": [], + "OcticonsPeople24": [], + "OcticonsPerson16": [], + "OcticonsPerson24": [], + "OcticonsPersonAdd16": [], + "OcticonsPersonAdd24": [], + "OcticonsPersonFill16": [], + "OcticonsPersonFill24": [], + "OcticonsPin16": [], + "OcticonsPin24": [], + "OcticonsPlay16": [], + "OcticonsPlay24": [], + "OcticonsPlug16": [], + "OcticonsPlug24": [], + "OcticonsPlus16": [], + "OcticonsPlus24": [], + "OcticonsPlusCircle16": [], + "OcticonsPlusCircle24": [], + "OcticonsProject16": [], + "OcticonsProject24": [], + "OcticonsPulse16": [], + "OcticonsPulse24": [], + "OcticonsQuestion16": [], + "OcticonsQuestion24": [], + "OcticonsQuote16": [], + "OcticonsQuote24": [], + "OcticonsReply16": [], + "OcticonsReply24": [], + "OcticonsRepo16": [], + "OcticonsRepo24": [], + "OcticonsRepoClone16": [], + "OcticonsRepoDeleted16": [], + "OcticonsRepoForked16": [], + "OcticonsRepoForked24": [], + "OcticonsRepoLocked16": [], + "OcticonsRepoPull16": [], + "OcticonsRepoPush16": [], + "OcticonsRepoPush24": [], + "OcticonsRepoTemplate16": [], + "OcticonsRepoTemplate24": [], + "OcticonsReport16": [], + "OcticonsReport24": [], + "OcticonsRocket16": [], + "OcticonsRocket24": [], + "OcticonsRows16": [], + "OcticonsRows24": [], + "OcticonsRss16": [], + "OcticonsRss24": [], + "OcticonsRuby16": [], + "OcticonsRuby24": [], + "OcticonsScreenFull16": [], + "OcticonsScreenFull24": [], + "OcticonsScreenNormal16": [], + "OcticonsScreenNormal24": [], + "OcticonsSearch16": [], + "OcticonsSearch24": [], + "OcticonsServer16": [], + "OcticonsServer24": [], + "OcticonsShare16": [], + "OcticonsShare24": [], + "OcticonsShareAndroid16": [], + "OcticonsShareAndroid24": [], + "OcticonsShield16": [], + "OcticonsShield24": [], + "OcticonsShieldCheck16": [], + "OcticonsShieldCheck24": [], + "OcticonsShieldLock16": [], + "OcticonsShieldLock24": [], + "OcticonsShieldX16": [], + "OcticonsShieldX24": [], + "OcticonsSidebarCollapse16": [], + "OcticonsSidebarCollapse24": [], + "OcticonsSidebarExpand16": [], + "OcticonsSidebarExpand24": [], + "OcticonsSignIn16": [], + "OcticonsSignIn24": [], + "OcticonsSignOut16": [], + "OcticonsSignOut24": [], + "OcticonsSingleSelect16": [], + "OcticonsSingleSelect24": [], + "OcticonsSkip16": [], + "OcticonsSkip24": [], + "OcticonsSmiley16": [], + "OcticonsSmiley24": [], + "OcticonsSortAsc16": [], + "OcticonsSortAsc24": [], + "OcticonsSortDesc16": [], + "OcticonsSortDesc24": [], + "OcticonsSquare16": [], + "OcticonsSquare24": [], + "OcticonsSquareFill16": [], + "OcticonsSquareFill24": [], + "OcticonsSquirrel16": [], + "OcticonsSquirrel24": [], + "OcticonsStack16": [], + "OcticonsStack24": [], + "OcticonsStar16": [], + "OcticonsStar24": [], + "OcticonsStarFill16": [], + "OcticonsStarFill24": [], + "OcticonsStop16": [], + "OcticonsStop24": [], + "OcticonsStopwatch16": [], + "OcticonsStopwatch24": [], + "OcticonsStrikethrough16": [], + "OcticonsStrikethrough24": [], + "OcticonsSun16": [], + "OcticonsSun24": [], + "OcticonsSync16": [], + "OcticonsSync24": [], + "OcticonsTab24": [], + "OcticonsTabExternal16": [], + "OcticonsTable16": [], + "OcticonsTable24": [], + "OcticonsTag16": [], + "OcticonsTag24": [], + "OcticonsTasklist16": [], + "OcticonsTasklist24": [], + "OcticonsTelescope16": [], + "OcticonsTelescope24": [], + "OcticonsTelescopeFill16": [], + "OcticonsTelescopeFill24": [], + "OcticonsTerminal16": [], + "OcticonsTerminal24": [], + "OcticonsThreeBars16": [], + "OcticonsThumbsdown16": [], + "OcticonsThumbsdown24": [], + "OcticonsThumbsup16": [], + "OcticonsThumbsup24": [], + "OcticonsTools16": [], + "OcticonsTools24": [], + "OcticonsTrash16": [], + "OcticonsTrash24": [], + "OcticonsTriangleDown16": [], + "OcticonsTriangleDown24": [], + "OcticonsTriangleLeft16": [], + "OcticonsTriangleLeft24": [], + "OcticonsTriangleRight16": [], + "OcticonsTriangleRight24": [], + "OcticonsTriangleUp16": [], + "OcticonsTriangleUp24": [], + "OcticonsTrophy16": [], + "OcticonsTrophy24": [], + "OcticonsTypography16": [], + "OcticonsTypography24": [], + "OcticonsUnfold16": [], + "OcticonsUnfold24": [], + "OcticonsUnlock16": [], + "OcticonsUnlock24": [], + "OcticonsUnmute16": [], + "OcticonsUnmute24": [], + "OcticonsUnverified16": [], + "OcticonsUnverified24": [], + "OcticonsUpload16": [], + "OcticonsUpload24": [], + "OcticonsVerified16": [], + "OcticonsVerified24": [], + "OcticonsVersions16": [], + "OcticonsVersions24": [], + "OcticonsVideo16": [], + "OcticonsVideo24": [], + "OcticonsWebhook16": [], + "OcticonsWorkflow16": [], + "OcticonsWorkflow24": [], + "OcticonsX16": [], + "OcticonsX24": [], + "OcticonsXCircle16": [], + "OcticonsXCircle24": [], + "OcticonsXCircleFill12": [], + "OcticonsXCircleFill16": [], + "OcticonsXCircleFill24": [], + "OcticonsZap16": [], + "OcticonsZap24": [], + "SimpleIcons1001Tracklists": [], + "SimpleIcons1Password": [], + "SimpleIcons3M": [], + "SimpleIcons42": [], + "SimpleIcons4Chan": [], + "SimpleIcons4D": [], + "SimpleIcons500Px": [], + "SimpleIconsAbbott": [], + "SimpleIconsAbbrobotstudio": [], + "SimpleIconsAbbvie": [], + "SimpleIconsAbletonlive": [], + "SimpleIconsAboutdotme": [], + "SimpleIconsAbstract": [], + "SimpleIconsAcademia": [], + "SimpleIconsAccenture": [], + "SimpleIconsAcclaim": [], + "SimpleIconsAccusoft": [], + "SimpleIconsAcer": [], + "SimpleIconsAcm": [], + "SimpleIconsActigraph": [], + "SimpleIconsActivision": [], + "SimpleIconsAdafruit": [], + "SimpleIconsAdblock": [], + "SimpleIconsAdblockplus": [], + "SimpleIconsAddthis": [], + "SimpleIconsAdguard": [], + "SimpleIconsAdidas": [], + "SimpleIconsAdminer": [], + "SimpleIconsAdobe": [], + "SimpleIconsAdobeacrobatreader": [], + "SimpleIconsAdobeaftereffects": [], + "SimpleIconsAdobeaudition": [], + "SimpleIconsAdobecreativecloud": [], + "SimpleIconsAdobedreamweaver": [], + "SimpleIconsAdobefonts": [], + "SimpleIconsAdobeillustrator": [], + "SimpleIconsAdobeindesign": [], + "SimpleIconsAdobelightroom": [], + "SimpleIconsAdobelightroomclassic": [], + "SimpleIconsAdobephotoshop": [], + "SimpleIconsAdobepremierepro": [], + "SimpleIconsAdobexd": [], + "SimpleIconsAdonisjs": [], + "SimpleIconsAdp": [], + "SimpleIconsAdyen": [], + "SimpleIconsAerlingus": [], + "SimpleIconsAeroflot": [], + "SimpleIconsAeromexico": [], + "SimpleIconsAerospike": [], + "SimpleIconsAew": [], + "SimpleIconsAffinity": [], + "SimpleIconsAffinitydesigner": [], + "SimpleIconsAffinityphoto": [], + "SimpleIconsAffinitypublisher": [], + "SimpleIconsAframe": [], + "SimpleIconsAgora": [], + "SimpleIconsAib": [], + "SimpleIconsAidungeon": [], + "SimpleIconsAiohttp": [], + "SimpleIconsAiqfome": [], + "SimpleIconsAirasia": [], + "SimpleIconsAirbnb": [], + "SimpleIconsAirbus": [], + "SimpleIconsAirbyte": [], + "SimpleIconsAircall": [], + "SimpleIconsAircanada": [], + "SimpleIconsAirchina": [], + "SimpleIconsAirfrance": [], + "SimpleIconsAirplayaudio": [], + "SimpleIconsAirplayvideo": [], + "SimpleIconsAirtable": [], + "SimpleIconsAjv": [], + "SimpleIconsAkamai": [], + "SimpleIconsAlacritty": [], + "SimpleIconsAlbertheijn": [], + "SimpleIconsAlchemy": [], + "SimpleIconsAldinord": [], + "SimpleIconsAldisud": [], + "SimpleIconsAlfaromeo": [], + "SimpleIconsAlfred": [], + "SimpleIconsAlgolia": [], + "SimpleIconsAlgorand": [], + "SimpleIconsAlibabacloud": [], + "SimpleIconsAlibabadotcom": [], + "SimpleIconsAliexpress": [], + "SimpleIconsAlipay": [], + "SimpleIconsAlitalia": [], + "SimpleIconsAllegro": [], + "SimpleIconsAlliedmodders": [], + "SimpleIconsAllocine": [], + "SimpleIconsAlltrails": [], + "SimpleIconsAlpinedotjs": [], + "SimpleIconsAlpinelinux": [], + "SimpleIconsAltiumdesigner": [], + "SimpleIconsAlwaysdata": [], + "SimpleIconsAmazon": [], + "SimpleIconsAmazonalexa": [], + "SimpleIconsAmazonapigateway": [], + "SimpleIconsAmazonaws": [], + "SimpleIconsAmazoncloudwatch": [], + "SimpleIconsAmazondynamodb": [], + "SimpleIconsAmazonec2": [], + "SimpleIconsAmazonecs": [], + "SimpleIconsAmazoneks": [], + "SimpleIconsAmazonfiretv": [], + "SimpleIconsAmazongames": [], + "SimpleIconsAmazonlumberyard": [], + "SimpleIconsAmazonpay": [], + "SimpleIconsAmazonprime": [], + "SimpleIconsAmazonrds": [], + "SimpleIconsAmazons3": [], + "SimpleIconsAmazonsqs": [], + "SimpleIconsAmd": [], + "SimpleIconsAmericanairlines": [], + "SimpleIconsAmericanexpress": [], + "SimpleIconsAmg": [], + "SimpleIconsAmp": [], + "SimpleIconsAmul": [], + "SimpleIconsAna": [], + "SimpleIconsAnaconda": [], + "SimpleIconsAnalogue": [], + "SimpleIconsAnchor": [], + "SimpleIconsAndela": [], + "SimpleIconsAndroid": [], + "SimpleIconsAndroidauto": [], + "SimpleIconsAndroidstudio": [], + "SimpleIconsAngellist": [], + "SimpleIconsAngular": [], + "SimpleIconsAngularjs": [], + "SimpleIconsAngularuniversal": [], + "SimpleIconsAnilist": [], + "SimpleIconsAnsible": [], + "SimpleIconsAnswer": [], + "SimpleIconsAnsys": [], + "SimpleIconsAnta": [], + "SimpleIconsAntdesign": [], + "SimpleIconsAntena3": [], + "SimpleIconsAnydesk": [], + "SimpleIconsAol": [], + "SimpleIconsApache": [], + "SimpleIconsApacheairflow": [], + "SimpleIconsApacheant": [], + "SimpleIconsApachecassandra": [], + "SimpleIconsApachecloudstack": [], + "SimpleIconsApachecordova": [], + "SimpleIconsApachecouchdb": [], + "SimpleIconsApachedruid": [], + "SimpleIconsApacheecharts": [], + "SimpleIconsApacheflink": [], + "SimpleIconsApachegroovy": [], + "SimpleIconsApachehadoop": [], + "SimpleIconsApachehive": [], + "SimpleIconsApachejmeter": [], + "SimpleIconsApachekafka": [], + "SimpleIconsApachekylin": [], + "SimpleIconsApachemaven": [], + "SimpleIconsApachenetbeanside": [], + "SimpleIconsApacheopenoffice": [], + "SimpleIconsApachepulsar": [], + "SimpleIconsApacherocketmq": [], + "SimpleIconsApachesolr": [], + "SimpleIconsApachespark": [], + "SimpleIconsApachetomcat": [], + "SimpleIconsAparat": [], + "SimpleIconsApollographql": [], + "SimpleIconsApostrophe": [], + "SimpleIconsAppian": [], + "SimpleIconsApple": [], + "SimpleIconsApplearcade": [], + "SimpleIconsApplemusic": [], + "SimpleIconsApplenews": [], + "SimpleIconsApplepay": [], + "SimpleIconsApplepodcasts": [], + "SimpleIconsAppletv": [], + "SimpleIconsAppsignal": [], + "SimpleIconsAppstore": [], + "SimpleIconsAppveyor": [], + "SimpleIconsAppwrite": [], + "SimpleIconsAqua": [], + "SimpleIconsAral": [], + "SimpleIconsArangodb": [], + "SimpleIconsArchicad": [], + "SimpleIconsArchiveofourown": [], + "SimpleIconsArchlinux": [], + "SimpleIconsArdour": [], + "SimpleIconsArduino": [], + "SimpleIconsArgo": [], + "SimpleIconsArgos": [], + "SimpleIconsArkecosystem": [], + "SimpleIconsArlo": [], + "SimpleIconsArm": [], + "SimpleIconsArtifacthub": [], + "SimpleIconsArtixlinux": [], + "SimpleIconsArtstation": [], + "SimpleIconsArxiv": [], + "SimpleIconsAsana": [], + "SimpleIconsAsciidoctor": [], + "SimpleIconsAsciinema": [], + "SimpleIconsAsda": [], + "SimpleIconsAseprite": [], + "SimpleIconsAskfm": [], + "SimpleIconsAskubuntu": [], + "SimpleIconsAssemblyscript": [], + "SimpleIconsAstonmartin": [], + "SimpleIconsAstro": [], + "SimpleIconsAsus": [], + "SimpleIconsAtandt": [], + "SimpleIconsAtari": [], + "SimpleIconsAtlassian": [], + "SimpleIconsAtom": [], + "SimpleIconsAuchan": [], + "SimpleIconsAudacity": [], + "SimpleIconsAudi": [], + "SimpleIconsAudible": [], + "SimpleIconsAudioboom": [], + "SimpleIconsAudiomack": [], + "SimpleIconsAudiotechnica": [], + "SimpleIconsAurelia": [], + "SimpleIconsAuth0": [], + "SimpleIconsAuthy": [], + "SimpleIconsAutodesk": [], + "SimpleIconsAutohotkey": [], + "SimpleIconsAutomattic": [], + "SimpleIconsAutoprefixer": [], + "SimpleIconsAvajs": [], + "SimpleIconsAvast": [], + "SimpleIconsAwesomelists": [], + "SimpleIconsAwesomewm": [], + "SimpleIconsAwsamplify": [], + "SimpleIconsAwsfargate": [], + "SimpleIconsAwslambda": [], + "SimpleIconsAxios": [], + "SimpleIconsAzureartifacts": [], + "SimpleIconsAzuredataexplorer": [], + "SimpleIconsAzuredevops": [], + "SimpleIconsAzurefunctions": [], + "SimpleIconsAzurepipelines": [], + "SimpleIconsBabel": [], + "SimpleIconsBackblaze": [], + "SimpleIconsBackbonedotjs": [], + "SimpleIconsBackendless": [], + "SimpleIconsBackstage": [], + "SimpleIconsBadgr": [], + "SimpleIconsBadoo": [], + "SimpleIconsBaidu": [], + "SimpleIconsBamboo": [], + "SimpleIconsBandcamp": [], + "SimpleIconsBandlab": [], + "SimpleIconsBandrautomation": [], + "SimpleIconsBandsintown": [], + "SimpleIconsBankofamerica": [], + "SimpleIconsBarclays": [], + "SimpleIconsBaremetrics": [], + "SimpleIconsBasecamp": [], + "SimpleIconsBastyon": [], + "SimpleIconsBata": [], + "SimpleIconsBathasu": [], + "SimpleIconsBattledotnet": [], + "SimpleIconsBbc": [], + "SimpleIconsBbciplayer": [], + "SimpleIconsBeatport": [], + "SimpleIconsBeats": [], + "SimpleIconsBeatsbydre": [], + "SimpleIconsBehance": [], + "SimpleIconsBeijingsubway": [], + "SimpleIconsBem": [], + "SimpleIconsBentley": [], + "SimpleIconsBetfair": [], + "SimpleIconsBigbasket": [], + "SimpleIconsBigbluebutton": [], + "SimpleIconsBigcartel": [], + "SimpleIconsBigcommerce": [], + "SimpleIconsBilibili": [], + "SimpleIconsBillboard": [], + "SimpleIconsBim": [], + "SimpleIconsBinance": [], + "SimpleIconsBiolink": [], + "SimpleIconsBit": [], + "SimpleIconsBitbucket": [], + "SimpleIconsBitcoin": [], + "SimpleIconsBitcoincash": [], + "SimpleIconsBitcoinsv": [], + "SimpleIconsBitdefender": [], + "SimpleIconsBitly": [], + "SimpleIconsBitrise": [], + "SimpleIconsBitwarden": [], + "SimpleIconsBitwig": [], + "SimpleIconsBlackberry": [], + "SimpleIconsBlazemeter": [], + "SimpleIconsBlazor": [], + "SimpleIconsBlender": [], + "SimpleIconsBlockchaindotcom": [], + "SimpleIconsBlogger": [], + "SimpleIconsBloglovin": [], + "SimpleIconsBlueprint": [], + "SimpleIconsBluetooth": [], + "SimpleIconsBmcsoftware": [], + "SimpleIconsBmw": [], + "SimpleIconsBoardgamegeek": [], + "SimpleIconsBoehringeringelheim": [], + "SimpleIconsBoeing": [], + "SimpleIconsBookalope": [], + "SimpleIconsBookbub": [], + "SimpleIconsBookmeter": [], + "SimpleIconsBookmyshow": [], + "SimpleIconsBookstack": [], + "SimpleIconsBoost": [], + "SimpleIconsBoots": [], + "SimpleIconsBootstrap": [], + "SimpleIconsBorgbackup": [], + "SimpleIconsBosch": [], + "SimpleIconsBose": [], + "SimpleIconsBoulanger": [], + "SimpleIconsBower": [], + "SimpleIconsBox": [], + "SimpleIconsBoxysvg": [], + "SimpleIconsBrandfolder": [], + "SimpleIconsBrave": [], + "SimpleIconsBreaker": [], + "SimpleIconsBritishairways": [], + "SimpleIconsBroadcom": [], + "SimpleIconsBt": [], + "SimpleIconsBuddy": [], + "SimpleIconsBudibase": [], + "SimpleIconsBuefy": [], + "SimpleIconsBuffer": [], + "SimpleIconsBugatti": [], + "SimpleIconsBugcrowd": [], + "SimpleIconsBugsnag": [], + "SimpleIconsBuildkite": [], + "SimpleIconsBukalapak": [], + "SimpleIconsBulma": [], + "SimpleIconsBun": [], + "SimpleIconsBunq": [], + "SimpleIconsBurgerking": [], + "SimpleIconsBurton": [], + "SimpleIconsBuymeacoffee": [], + "SimpleIconsBuzzfeed": [], + "SimpleIconsBvg": [], + "SimpleIconsByjus": [], + "SimpleIconsByte": [], + "SimpleIconsBytedance": [], + "SimpleIconsC": [], + "SimpleIconsCachet": [], + "SimpleIconsCafepress": [], + "SimpleIconsCaffeine": [], + "SimpleIconsCairographics": [], + "SimpleIconsCairometro": [], + "SimpleIconsCakephp": [], + "SimpleIconsCampaignmonitor": [], + "SimpleIconsCanonical": [], + "SimpleIconsCanva": [], + "SimpleIconsCapacitor": [], + "SimpleIconsCarrefour": [], + "SimpleIconsCarthrottle": [], + "SimpleIconsCarto": [], + "SimpleIconsCashapp": [], + "SimpleIconsCastbox": [], + "SimpleIconsCastorama": [], + "SimpleIconsCastro": [], + "SimpleIconsCaterpillar": [], + "SimpleIconsCbs": [], + "SimpleIconsCdprojekt": [], + "SimpleIconsCelery": [], + "SimpleIconsCentos": [], + "SimpleIconsCeph": [], + "SimpleIconsCesium": [], + "SimpleIconsChai": [], + "SimpleIconsChainguard": [], + "SimpleIconsChainlink": [], + "SimpleIconsChakraui": [], + "SimpleIconsChartdotjs": [], + "SimpleIconsChartmogul": [], + "SimpleIconsChase": [], + "SimpleIconsChatbot": [], + "SimpleIconsCheckio": [], + "SimpleIconsCheckmarx": [], + "SimpleIconsChef": [], + "SimpleIconsChemex": [], + "SimpleIconsChevrolet": [], + "SimpleIconsChinaeasternairlines": [], + "SimpleIconsChinasouthernairlines": [], + "SimpleIconsChocolatey": [], + "SimpleIconsChromecast": [], + "SimpleIconsChrysler": [], + "SimpleIconsChupachups": [], + "SimpleIconsCilium": [], + "SimpleIconsCinema4D": [], + "SimpleIconsCircle": [], + "SimpleIconsCircleci": [], + "SimpleIconsCirrusci": [], + "SimpleIconsCisco": [], + "SimpleIconsCitrix": [], + "SimpleIconsCitroen": [], + "SimpleIconsCivicrm": [], + "SimpleIconsCivo": [], + "SimpleIconsCkeditor4": [], + "SimpleIconsClaris": [], + "SimpleIconsClickhouse": [], + "SimpleIconsClickup": [], + "SimpleIconsClion": [], + "SimpleIconsCliqz": [], + "SimpleIconsClockify": [], + "SimpleIconsClojure": [], + "SimpleIconsCloud66": [], + "SimpleIconsCloudbees": [], + "SimpleIconsCloudcannon": [], + "SimpleIconsCloudera": [], + "SimpleIconsCloudflare": [], + "SimpleIconsCloudflarepages": [], + "SimpleIconsCloudfoundry": [], + "SimpleIconsCloudsmith": [], + "SimpleIconsCloudways": [], + "SimpleIconsClubhouse": [], + "SimpleIconsClyp": [], + "SimpleIconsCmake": [], + "SimpleIconsCncf": [], + "SimpleIconsCnn": [], + "SimpleIconsCockpit": [], + "SimpleIconsCockroachlabs": [], + "SimpleIconsCocoapods": [], + "SimpleIconsCocos": [], + "SimpleIconsCoda": [], + "SimpleIconsCodacy": [], + "SimpleIconsCodeberg": [], + "SimpleIconsCodecademy": [], + "SimpleIconsCodeceptjs": [], + "SimpleIconsCodechef": [], + "SimpleIconsCodeclimate": [], + "SimpleIconsCodecov": [], + "SimpleIconsCodefactor": [], + "SimpleIconsCodeforces": [], + "SimpleIconsCodeigniter": [], + "SimpleIconsCodemagic": [], + "SimpleIconsCodemirror": [], + "SimpleIconsCodenewbie": [], + "SimpleIconsCodepen": [], + "SimpleIconsCodeproject": [], + "SimpleIconsCodereview": [], + "SimpleIconsCodersrank": [], + "SimpleIconsCoderwall": [], + "SimpleIconsCodesandbox": [], + "SimpleIconsCodeship": [], + "SimpleIconsCodewars": [], + "SimpleIconsCodingame": [], + "SimpleIconsCodingninjas": [], + "SimpleIconsCodio": [], + "SimpleIconsCoffeescript": [], + "SimpleIconsCognizant": [], + "SimpleIconsCoil": [], + "SimpleIconsCoinbase": [], + "SimpleIconsCoinmarketcap": [], + "SimpleIconsCommerzbank": [], + "SimpleIconsCommitlint": [], + "SimpleIconsCommodore": [], + "SimpleIconsCommonworkflowlanguage": [], + "SimpleIconsComposer": [], + "SimpleIconsComsol": [], + "SimpleIconsConan": [], + "SimpleIconsConcourse": [], + "SimpleIconsCondaforge": [], + "SimpleIconsConekta": [], + "SimpleIconsConfluence": [], + "SimpleIconsConstruct3": [], + "SimpleIconsConsul": [], + "SimpleIconsContactlesspayment": [], + "SimpleIconsContainerd": [], + "SimpleIconsContentful": [], + "SimpleIconsConventionalcommits": [], + "SimpleIconsConvertio": [], + "SimpleIconsCookiecutter": [], + "SimpleIconsCoop": [], + "SimpleIconsCora": [], + "SimpleIconsCoronaengine": [], + "SimpleIconsCoronarenderer": [], + "SimpleIconsCorsair": [], + "SimpleIconsCouchbase": [], + "SimpleIconsCounterstrike": [], + "SimpleIconsCountingworkspro": [], + "SimpleIconsCoursera": [], + "SimpleIconsCoveralls": [], + "SimpleIconsCpanel": [], + "SimpleIconsCplusplus": [], + "SimpleIconsCraftcms": [], + "SimpleIconsCratedb": [], + "SimpleIconsCrayon": [], + "SimpleIconsCreatereactapp": [], + "SimpleIconsCreativecommons": [], + "SimpleIconsCreativetechnology": [], + "SimpleIconsCredly": [], + "SimpleIconsCrehana": [], + "SimpleIconsCriticalrole": [], + "SimpleIconsCrowdin": [], + "SimpleIconsCrowdsource": [], + "SimpleIconsCrunchbase": [], + "SimpleIconsCrunchyroll": [], + "SimpleIconsCryengine": [], + "SimpleIconsCrystal": [], + "SimpleIconsCsharp": [], + "SimpleIconsCss3": [], + "SimpleIconsCssmodules": [], + "SimpleIconsCsswizardry": [], + "SimpleIconsCts": [], + "SimpleIconsCucumber": [], + "SimpleIconsCultura": [], + "SimpleIconsCurl": [], + "SimpleIconsCurseforge": [], + "SimpleIconsCycling74": [], + "SimpleIconsCypress": [], + "SimpleIconsCytoscapedotjs": [], + "SimpleIconsD": [], + "SimpleIconsD3Dotjs": [], + "SimpleIconsDacia": [], + "SimpleIconsDaf": [], + "SimpleIconsDailymotion": [], + "SimpleIconsDaimler": [], + "SimpleIconsDaisyui": [], + "SimpleIconsDapr": [], + "SimpleIconsDarkreader": [], + "SimpleIconsDart": [], + "SimpleIconsDarty": [], + "SimpleIconsDaserste": [], + "SimpleIconsDash": [], + "SimpleIconsDashlane": [], + "SimpleIconsDask": [], + "SimpleIconsDassaultsystemes": [], + "SimpleIconsDatabricks": [], + "SimpleIconsDatacamp": [], + "SimpleIconsDatadog": [], + "SimpleIconsDatadotai": [], + "SimpleIconsDatagrip": [], + "SimpleIconsDataiku": [], + "SimpleIconsDatastax": [], + "SimpleIconsDataverse": [], + "SimpleIconsDatocms": [], + "SimpleIconsDatto": [], + "SimpleIconsDazn": [], + "SimpleIconsDblp": [], + "SimpleIconsDbt": [], + "SimpleIconsDcentertainment": [], + "SimpleIconsDebian": [], + "SimpleIconsDedge": [], + "SimpleIconsDeepin": [], + "SimpleIconsDeepnote": [], + "SimpleIconsDeezer": [], + "SimpleIconsDelicious": [], + "SimpleIconsDeliveroo": [], + "SimpleIconsDell": [], + "SimpleIconsDelonghi": [], + "SimpleIconsDelphi": [], + "SimpleIconsDelta": [], + "SimpleIconsDeno": [], + "SimpleIconsDependabot": [], + "SimpleIconsDerspiegel": [], + "SimpleIconsDesignernews": [], + "SimpleIconsDeutschebahn": [], + "SimpleIconsDeutschebank": [], + "SimpleIconsDevdotto": [], + "SimpleIconsDevexpress": [], + "SimpleIconsDeviantart": [], + "SimpleIconsDevpost": [], + "SimpleIconsDevrant": [], + "SimpleIconsDgraph": [], + "SimpleIconsDhl": [], + "SimpleIconsDiagramsdotnet": [], + "SimpleIconsDialogflow": [], + "SimpleIconsDiaspora": [], + "SimpleIconsDigg": [], + "SimpleIconsDigikeyelectronics": [], + "SimpleIconsDigitalocean": [], + "SimpleIconsDior": [], + "SimpleIconsDirectus": [], + "SimpleIconsDiscogs": [], + "SimpleIconsDiscord": [], + "SimpleIconsDiscourse": [], + "SimpleIconsDiscover": [], + "SimpleIconsDisqus": [], + "SimpleIconsDisroot": [], + "SimpleIconsDjango": [], + "SimpleIconsDlib": [], + "SimpleIconsDlna": [], + "SimpleIconsDm": [], + "SimpleIconsDocker": [], + "SimpleIconsDocsdotrs": [], + "SimpleIconsDocusign": [], + "SimpleIconsDogecoin": [], + "SimpleIconsDolby": [], + "SimpleIconsDoordash": [], + "SimpleIconsDotenv": [], + "SimpleIconsDotnet": [], + "SimpleIconsDouban": [], + "SimpleIconsDoubanread": [], + "SimpleIconsDovecot": [], + "SimpleIconsDpd": [], + "SimpleIconsDragonframe": [], + "SimpleIconsDraugiemdotlv": [], + "SimpleIconsDribbble": [], + "SimpleIconsDrone": [], + "SimpleIconsDrooble": [], + "SimpleIconsDropbox": [], + "SimpleIconsDrupal": [], + "SimpleIconsDsautomobiles": [], + "SimpleIconsDtube": [], + "SimpleIconsDucati": [], + "SimpleIconsDuckdb": [], + "SimpleIconsDuckduckgo": [], + "SimpleIconsDungeonsanddragons": [], + "SimpleIconsDunked": [], + "SimpleIconsDuolingo": [], + "SimpleIconsDvc": [], + "SimpleIconsDwavesystems": [], + "SimpleIconsDwm": [], + "SimpleIconsDynamics365": [], + "SimpleIconsDynatrace": [], + "SimpleIconsE": [], + "SimpleIconsE3": [], + "SimpleIconsEa": [], + "SimpleIconsEagle": [], + "SimpleIconsEasyjet": [], + "SimpleIconsEbay": [], + "SimpleIconsEclipseche": [], + "SimpleIconsEclipseide": [], + "SimpleIconsEclipsejetty": [], + "SimpleIconsEclipsemosquitto": [], + "SimpleIconsEclipsevertdotx": [], + "SimpleIconsEdeka": [], + "SimpleIconsEditorconfig": [], + "SimpleIconsEdotleclerc": [], + "SimpleIconsEdx": [], + "SimpleIconsEgghead": [], + "SimpleIconsEgnyte": [], + "SimpleIconsEightsleep": [], + "SimpleIconsElastic": [], + "SimpleIconsElasticcloud": [], + "SimpleIconsElasticsearch": [], + "SimpleIconsElasticstack": [], + "SimpleIconsElectron": [], + "SimpleIconsElectronbuilder": [], + "SimpleIconsElectronfiddle": [], + "SimpleIconsElement": [], + "SimpleIconsElementary": [], + "SimpleIconsElementor": [], + "SimpleIconsEleventy": [], + "SimpleIconsElgato": [], + "SimpleIconsElixir": [], + "SimpleIconsEljueves": [], + "SimpleIconsEllo": [], + "SimpleIconsElm": [], + "SimpleIconsElsevier": [], + "SimpleIconsEmbarcadero": [], + "SimpleIconsEmberdotjs": [], + "SimpleIconsEmby": [], + "SimpleIconsEmirates": [], + "SimpleIconsEmlakjet": [], + "SimpleIconsEmpirekred": [], + "SimpleIconsEngadget": [], + "SimpleIconsEnpass": [], + "SimpleIconsEnterprisedb": [], + "SimpleIconsEnvato": [], + "SimpleIconsEnvoyproxy": [], + "SimpleIconsEpel": [], + "SimpleIconsEpicgames": [], + "SimpleIconsEpson": [], + "SimpleIconsEquinixmetal": [], + "SimpleIconsErlang": [], + "SimpleIconsEsbuild": [], + "SimpleIconsEsea": [], + "SimpleIconsEslgaming": [], + "SimpleIconsEslint": [], + "SimpleIconsEsphome": [], + "SimpleIconsEspressif": [], + "SimpleIconsEtcd": [], + "SimpleIconsEthereum": [], + "SimpleIconsEthiopianairlines": [], + "SimpleIconsEtihadairways": [], + "SimpleIconsEtsy": [], + "SimpleIconsEventbrite": [], + "SimpleIconsEventstore": [], + "SimpleIconsEvernote": [], + "SimpleIconsExercism": [], + "SimpleIconsExordo": [], + "SimpleIconsExoscale": [], + "SimpleIconsExpensify": [], + "SimpleIconsExpertsexchange": [], + "SimpleIconsExpo": [], + "SimpleIconsExpress": [], + "SimpleIconsExpressvpn": [], + "SimpleIconsEyeem": [], + "SimpleIconsF1": [], + "SimpleIconsF5": [], + "SimpleIconsFacebook": [], + "SimpleIconsFacebookgaming": [], + "SimpleIconsFacebooklive": [], + "SimpleIconsFaceit": [], + "SimpleIconsFacepunch": [], + "SimpleIconsFalcon": [], + "SimpleIconsFampay": [], + "SimpleIconsFandango": [], + "SimpleIconsFandom": [], + "SimpleIconsFanfou": [], + "SimpleIconsFantom": [], + "SimpleIconsFarfetch": [], + "SimpleIconsFastapi": [], + "SimpleIconsFastify": [], + "SimpleIconsFastlane": [], + "SimpleIconsFastly": [], + "SimpleIconsFathom": [], + "SimpleIconsFauna": [], + "SimpleIconsFavro": [], + "SimpleIconsFdroid": [], + "SimpleIconsFeathub": [], + "SimpleIconsFedex": [], + "SimpleIconsFedora": [], + "SimpleIconsFeedly": [], + "SimpleIconsFerrari": [], + "SimpleIconsFerrarinv": [], + "SimpleIconsFfmpeg": [], + "SimpleIconsFiat": [], + "SimpleIconsFidoalliance": [], + "SimpleIconsFifa": [], + "SimpleIconsFig": [], + "SimpleIconsFigma": [], + "SimpleIconsFigshare": [], + "SimpleIconsFila": [], + "SimpleIconsFiles": [], + "SimpleIconsFilezilla": [], + "SimpleIconsFing": [], + "SimpleIconsFirebase": [], + "SimpleIconsFirefox": [], + "SimpleIconsFirefoxbrowser": [], + "SimpleIconsFireship": [], + "SimpleIconsFirewalla": [], + "SimpleIconsFirst": [], + "SimpleIconsFitbit": [], + "SimpleIconsFite": [], + "SimpleIconsFivem": [], + "SimpleIconsFiverr": [], + "SimpleIconsFlask": [], + "SimpleIconsFlat": [], + "SimpleIconsFlathub": [], + "SimpleIconsFlatpak": [], + "SimpleIconsFlattr": [], + "SimpleIconsFlickr": [], + "SimpleIconsFlipboard": [], + "SimpleIconsFlipkart": [], + "SimpleIconsFloatplane": [], + "SimpleIconsFlood": [], + "SimpleIconsFluentbit": [], + "SimpleIconsFluentd": [], + "SimpleIconsFlutter": [], + "SimpleIconsFluxus": [], + "SimpleIconsFlyway": [], + "SimpleIconsFmod": [], + "SimpleIconsFnac": [], + "SimpleIconsFolium": [], + "SimpleIconsFonoma": [], + "SimpleIconsFontawesome": [], + "SimpleIconsFontbase": [], + "SimpleIconsFontforge": [], + "SimpleIconsFoodpanda": [], + "SimpleIconsFord": [], + "SimpleIconsForestry": [], + "SimpleIconsFormstack": [], + "SimpleIconsFortinet": [], + "SimpleIconsFortran": [], + "SimpleIconsFossa": [], + "SimpleIconsFossilscm": [], + "SimpleIconsFoursquare": [], + "SimpleIconsFoursquarecityguide": [], + "SimpleIconsFox": [], + "SimpleIconsFoxtel": [], + "SimpleIconsFozzy": [], + "SimpleIconsFramer": [], + "SimpleIconsFramework7": [], + "SimpleIconsFranprix": [], + "SimpleIconsFraunhofergesellschaft": [], + "SimpleIconsFreebsd": [], + "SimpleIconsFreecodecamp": [], + "SimpleIconsFreedesktopdotorg": [], + "SimpleIconsFreelancer": [], + "SimpleIconsFreenas": [], + "SimpleIconsFrontendmentor": [], + "SimpleIconsFsecure": [], + "SimpleIconsFugacloud": [], + "SimpleIconsFujifilm": [], + "SimpleIconsFujitsu": [], + "SimpleIconsFunimation": [], + "SimpleIconsFuraffinity": [], + "SimpleIconsFurrynetwork": [], + "SimpleIconsFuturelearn": [], + "SimpleIconsG2": [], + "SimpleIconsG2A": [], + "SimpleIconsGameandwatch": [], + "SimpleIconsGamedeveloper": [], + "SimpleIconsGamejolt": [], + "SimpleIconsGarmin": [], + "SimpleIconsGatling": [], + "SimpleIconsGatsby": [], + "SimpleIconsGeant": [], + "SimpleIconsGeeksforgeeks": [], + "SimpleIconsGeneralelectric": [], + "SimpleIconsGeneralmotors": [], + "SimpleIconsGenius": [], + "SimpleIconsGentoo": [], + "SimpleIconsGeocaching": [], + "SimpleIconsGerrit": [], + "SimpleIconsGhost": [], + "SimpleIconsGhostery": [], + "SimpleIconsGimp": [], + "SimpleIconsGiphy": [], + "SimpleIconsGit": [], + "SimpleIconsGitbook": [], + "SimpleIconsGitea": [], + "SimpleIconsGitee": [], + "SimpleIconsGitextensions": [], + "SimpleIconsGithub": [], + "SimpleIconsGithubactions": [], + "SimpleIconsGithubpages": [], + "SimpleIconsGithubsponsors": [], + "SimpleIconsGitignoredotio": [], + "SimpleIconsGitkraken": [], + "SimpleIconsGitlab": [], + "SimpleIconsGitlfs": [], + "SimpleIconsGitpod": [], + "SimpleIconsGitter": [], + "SimpleIconsGlassdoor": [], + "SimpleIconsGlitch": [], + "SimpleIconsGlobus": [], + "SimpleIconsGmail": [], + "SimpleIconsGnome": [], + "SimpleIconsGnometerminal": [], + "SimpleIconsGnu": [], + "SimpleIconsGnubash": [], + "SimpleIconsGnuemacs": [], + "SimpleIconsGnuicecat": [], + "SimpleIconsGnuprivacyguard": [], + "SimpleIconsGnusocial": [], + "SimpleIconsGo": [], + "SimpleIconsGocd": [], + "SimpleIconsGodaddy": [], + "SimpleIconsGodotengine": [], + "SimpleIconsGofundme": [], + "SimpleIconsGogdotcom": [], + "SimpleIconsGoland": [], + "SimpleIconsGoldenline": [], + "SimpleIconsGoodreads": [], + "SimpleIconsGoogle": [], + "SimpleIconsGoogleadmob": [], + "SimpleIconsGoogleads": [], + "SimpleIconsGoogleadsense": [], + "SimpleIconsGoogleanalytics": [], + "SimpleIconsGoogleassistant": [], + "SimpleIconsGooglecalendar": [], + "SimpleIconsGooglecardboard": [], + "SimpleIconsGooglechat": [], + "SimpleIconsGooglechrome": [], + "SimpleIconsGoogleclassroom": [], + "SimpleIconsGooglecloud": [], + "SimpleIconsGooglecolab": [], + "SimpleIconsGoogledomains": [], + "SimpleIconsGoogledrive": [], + "SimpleIconsGoogleearth": [], + "SimpleIconsGooglefit": [], + "SimpleIconsGooglefonts": [], + "SimpleIconsGooglehangouts": [], + "SimpleIconsGooglehome": [], + "SimpleIconsGooglekeep": [], + "SimpleIconsGooglelens": [], + "SimpleIconsGooglemaps": [], + "SimpleIconsGooglemarketingplatform": [], + "SimpleIconsGooglemeet": [], + "SimpleIconsGooglemessages": [], + "SimpleIconsGooglemybusiness": [], + "SimpleIconsGooglenearby": [], + "SimpleIconsGooglenews": [], + "SimpleIconsGoogleoptimize": [], + "SimpleIconsGooglepay": [], + "SimpleIconsGooglephotos": [], + "SimpleIconsGoogleplay": [], + "SimpleIconsGooglepodcasts": [], + "SimpleIconsGooglescholar": [], + "SimpleIconsGooglesearchconsole": [], + "SimpleIconsGooglesheets": [], + "SimpleIconsGooglestreetview": [], + "SimpleIconsGoogletagmanager": [], + "SimpleIconsGoogletranslate": [], + "SimpleIconsGotomeeting": [], + "SimpleIconsGrab": [], + "SimpleIconsGradle": [], + "SimpleIconsGrafana": [], + "SimpleIconsGrammarly": [], + "SimpleIconsGrandfrais": [], + "SimpleIconsGraphql": [], + "SimpleIconsGrav": [], + "SimpleIconsGravatar": [], + "SimpleIconsGraylog": [], + "SimpleIconsGreenhouse": [], + "SimpleIconsGreensock": [], + "SimpleIconsGriddotai": [], + "SimpleIconsGridsome": [], + "SimpleIconsGroupme": [], + "SimpleIconsGroupon": [], + "SimpleIconsGrubhub": [], + "SimpleIconsGrunt": [], + "SimpleIconsGsk": [], + "SimpleIconsGtk": [], + "SimpleIconsGuangzhoumetro": [], + "SimpleIconsGuilded": [], + "SimpleIconsGulp": [], + "SimpleIconsGumroad": [], + "SimpleIconsGumtree": [], + "SimpleIconsGunicorn": [], + "SimpleIconsGurobi": [], + "SimpleIconsGutenberg": [], + "SimpleIconsHabr": [], + "SimpleIconsHackaday": [], + "SimpleIconsHackclub": [], + "SimpleIconsHackerearth": [], + "SimpleIconsHackernoon": [], + "SimpleIconsHackerone": [], + "SimpleIconsHackerrank": [], + "SimpleIconsHackster": [], + "SimpleIconsHackthebox": [], + "SimpleIconsHandlebarsdotjs": [], + "SimpleIconsHandshake": [], + "SimpleIconsHandshakeProtocol": [], + "SimpleIconsHappycow": [], + "SimpleIconsHarbor": [], + "SimpleIconsHarmonyos": [], + "SimpleIconsHashnode": [], + "SimpleIconsHaskell": [], + "SimpleIconsHasura": [], + "SimpleIconsHatenabookmark": [], + "SimpleIconsHaveibeenpwned": [], + "SimpleIconsHaxe": [], + "SimpleIconsHbo": [], + "SimpleIconsHcl": [], + "SimpleIconsHeadlessui": [], + "SimpleIconsHeadspace": [], + "SimpleIconsHedera": [], + "SimpleIconsHellofresh": [], + "SimpleIconsHellyhansen": [], + "SimpleIconsHelm": [], + "SimpleIconsHelpdesk": [], + "SimpleIconsHelpscout": [], + "SimpleIconsHere": [], + "SimpleIconsHeroku": [], + "SimpleIconsHetzner": [], + "SimpleIconsHexo": [], + "SimpleIconsHey": [], + "SimpleIconsHibernate": [], + "SimpleIconsHibob": [], + "SimpleIconsHilton": [], + "SimpleIconsHitachi": [], + "SimpleIconsHive": [], + "SimpleIconsHiveBlockchain": [], + "SimpleIconsHomeadvisor": [], + "SimpleIconsHomeassistant": [], + "SimpleIconsHomeassistantcommunitystore": [], + "SimpleIconsHomebrew": [], + "SimpleIconsHomebridge": [], + "SimpleIconsHomify": [], + "SimpleIconsHonda": [], + "SimpleIconsHoney": [], + "SimpleIconsHootsuite": [], + "SimpleIconsHoppscotch": [], + "SimpleIconsHotelsdotcom": [], + "SimpleIconsHotjar": [], + "SimpleIconsHoudini": [], + "SimpleIconsHouzz": [], + "SimpleIconsHp": [], + "SimpleIconsHtml5": [], + "SimpleIconsHtmlacademy": [], + "SimpleIconsHttpie": [], + "SimpleIconsHuawei": [], + "SimpleIconsHubspot": [], + "SimpleIconsHugo": [], + "SimpleIconsHulu": [], + "SimpleIconsHumblebundle": [], + "SimpleIconsHungryjacks": [], + "SimpleIconsHurriyetemlak": [], + "SimpleIconsHusqvarna": [], + "SimpleIconsHyper": [], + "SimpleIconsHyperledger": [], + "SimpleIconsHypothesis": [], + "SimpleIconsHyundai": [], + "SimpleIconsI18Next": [], + "SimpleIconsIata": [], + "SimpleIconsIbeacon": [], + "SimpleIconsIbm": [], + "SimpleIconsIbmcloud": [], + "SimpleIconsIbmwatson": [], + "SimpleIconsIced": [], + "SimpleIconsIceland": [], + "SimpleIconsIcinga": [], + "SimpleIconsIcloud": [], + "SimpleIconsIcomoon": [], + "SimpleIconsIcon": [], + "SimpleIconsIconfinder": [], + "SimpleIconsIconify": [], + "SimpleIconsIconjar": [], + "SimpleIconsIcons8": [], + "SimpleIconsIcq": [], + "SimpleIconsIeee": [], + "SimpleIconsIfixit": [], + "SimpleIconsIfood": [], + "SimpleIconsIfttt": [], + "SimpleIconsIheartradio": [], + "SimpleIconsIkea": [], + "SimpleIconsIledefrancemobilites": [], + "SimpleIconsImagej": [], + "SimpleIconsImdb": [], + "SimpleIconsImgur": [], + "SimpleIconsImmer": [], + "SimpleIconsImou": [], + "SimpleIconsIndeed": [], + "SimpleIconsInfiniti": [], + "SimpleIconsInfluxdb": [], + "SimpleIconsInformatica": [], + "SimpleIconsInfosys": [], + "SimpleIconsInfracost": [], + "SimpleIconsIngress": [], + "SimpleIconsInkdrop": [], + "SimpleIconsInkscape": [], + "SimpleIconsInsomnia": [], + "SimpleIconsInstacart": [], + "SimpleIconsInstagram": [], + "SimpleIconsInstapaper": [], + "SimpleIconsInstatus": [], + "SimpleIconsInstructables": [], + "SimpleIconsInstructure": [], + "SimpleIconsIntegromat": [], + "SimpleIconsIntel": [], + "SimpleIconsIntellijidea": [], + "SimpleIconsInteractiondesignfoundation": [], + "SimpleIconsInteractjs": [], + "SimpleIconsIntercom": [], + "SimpleIconsIntermarche": [], + "SimpleIconsInternetarchive": [], + "SimpleIconsInternetexplorer": [], + "SimpleIconsIntigriti": [], + "SimpleIconsInvision": [], + "SimpleIconsInvoiceninja": [], + "SimpleIconsIobroker": [], + "SimpleIconsIonic": [], + "SimpleIconsIonos": [], + "SimpleIconsIos": [], + "SimpleIconsIota": [], + "SimpleIconsIpfs": [], + "SimpleIconsIssuu": [], + "SimpleIconsIstio": [], + "SimpleIconsItchdotio": [], + "SimpleIconsIterm2": [], + "SimpleIconsItunes": [], + "SimpleIconsItvx": [], + "SimpleIconsIveco": [], + "SimpleIconsJabber": [], + "SimpleIconsJaguar": [], + "SimpleIconsJamboard": [], + "SimpleIconsJameson": [], + "SimpleIconsJamstack": [], + "SimpleIconsJasmine": [], + "SimpleIconsJavascript": [], + "SimpleIconsJbl": [], + "SimpleIconsJcb": [], + "SimpleIconsJeep": [], + "SimpleIconsJekyll": [], + "SimpleIconsJellyfin": [], + "SimpleIconsJenkins": [], + "SimpleIconsJenkinsx": [], + "SimpleIconsJest": [], + "SimpleIconsJet": [], + "SimpleIconsJetbrains": [], + "SimpleIconsJetpackcompose": [], + "SimpleIconsJfrog": [], + "SimpleIconsJfrogbintray": [], + "SimpleIconsJinja": [], + "SimpleIconsJira": [], + "SimpleIconsJirasoftware": [], + "SimpleIconsJitsi": [], + "SimpleIconsJohndeere": [], + "SimpleIconsJoomla": [], + "SimpleIconsJoplin": [], + "SimpleIconsJordan": [], + "SimpleIconsJpeg": [], + "SimpleIconsJquery": [], + "SimpleIconsJrgroup": [], + "SimpleIconsJsdelivr": [], + "SimpleIconsJsfiddle": [], + "SimpleIconsJson": [], + "SimpleIconsJsonwebtokens": [], + "SimpleIconsJss": [], + "SimpleIconsJuke": [], + "SimpleIconsJulia": [], + "SimpleIconsJunipernetworks": [], + "SimpleIconsJunit5": [], + "SimpleIconsJupyter": [], + "SimpleIconsJusteat": [], + "SimpleIconsJustgiving": [], + "SimpleIconsK3S": [], + "SimpleIconsK6": [], + "SimpleIconsKaggle": [], + "SimpleIconsKahoot": [], + "SimpleIconsKaios": [], + "SimpleIconsKakao": [], + "SimpleIconsKakaotalk": [], + "SimpleIconsKalilinux": [], + "SimpleIconsKaniko": [], + "SimpleIconsKarlsruherverkehrsverbund": [], + "SimpleIconsKasasmart": [], + "SimpleIconsKashflow": [], + "SimpleIconsKaspersky": [], + "SimpleIconsKatacoda": [], + "SimpleIconsKatana": [], + "SimpleIconsKaufland": [], + "SimpleIconsKde": [], + "SimpleIconsKdenlive": [], + "SimpleIconsKeepachangelog": [], + "SimpleIconsKeepassxc": [], + "SimpleIconsKentico": [], + "SimpleIconsKeras": [], + "SimpleIconsKeybase": [], + "SimpleIconsKeycdn": [], + "SimpleIconsKeystone": [], + "SimpleIconsKfc": [], + "SimpleIconsKhanacademy": [], + "SimpleIconsKhronosgroup": [], + "SimpleIconsKia": [], + "SimpleIconsKibana": [], + "SimpleIconsKicad": [], + "SimpleIconsKickstarter": [], + "SimpleIconsKik": [], + "SimpleIconsKingstontechnology": [], + "SimpleIconsKinopoisk": [], + "SimpleIconsKirby": [], + "SimpleIconsKitsu": [], + "SimpleIconsKlarna": [], + "SimpleIconsKlm": [], + "SimpleIconsKlook": [], + "SimpleIconsKnative": [], + "SimpleIconsKnowledgebase": [], + "SimpleIconsKnown": [], + "SimpleIconsKoa": [], + "SimpleIconsKoc": [], + "SimpleIconsKodi": [], + "SimpleIconsKofax": [], + "SimpleIconsKofi": [], + "SimpleIconsKomoot": [], + "SimpleIconsKonami": [], + "SimpleIconsKong": [], + "SimpleIconsKongregate": [], + "SimpleIconsKonva": [], + "SimpleIconsKotlin": [], + "SimpleIconsKoyeb": [], + "SimpleIconsKrita": [], + "SimpleIconsKtm": [], + "SimpleIconsKuaishou": [], + "SimpleIconsKubernetes": [], + "SimpleIconsKubuntu": [], + "SimpleIconsKuma": [], + "SimpleIconsKuula": [], + "SimpleIconsKyocera": [], + "SimpleIconsLabview": [], + "SimpleIconsLada": [], + "SimpleIconsLamborghini": [], + "SimpleIconsLandrover": [], + "SimpleIconsLapce": [], + "SimpleIconsLaragon": [], + "SimpleIconsLaravel": [], + "SimpleIconsLaravelhorizon": [], + "SimpleIconsLaravelnova": [], + "SimpleIconsLastdotfm": [], + "SimpleIconsLastpass": [], + "SimpleIconsLatex": [], + "SimpleIconsLaunchpad": [], + "SimpleIconsLazarus": [], + "SimpleIconsLbry": [], + "SimpleIconsLeaderprice": [], + "SimpleIconsLeaflet": [], + "SimpleIconsLeanpub": [], + "SimpleIconsLeetcode": [], + "SimpleIconsLegacygames": [], + "SimpleIconsLemmy": [], + "SimpleIconsLenovo": [], + "SimpleIconsLens": [], + "SimpleIconsLerna": [], + "SimpleIconsLeroymerlin": [], + "SimpleIconsLess": [], + "SimpleIconsLetsencrypt": [], + "SimpleIconsLetterboxd": [], + "SimpleIconsLevelsdotfyi": [], + "SimpleIconsLg": [], + "SimpleIconsLgtm": [], + "SimpleIconsLiberapay": [], + "SimpleIconsLibrariesdotio": [], + "SimpleIconsLibrarything": [], + "SimpleIconsLibreoffice": [], + "SimpleIconsLibuv": [], + "SimpleIconsLichess": [], + "SimpleIconsLidl": [], + "SimpleIconsLifx": [], + "SimpleIconsLighthouse": [], + "SimpleIconsLine": [], + "SimpleIconsLineageos": [], + "SimpleIconsLinear": [], + "SimpleIconsLinkedin": [], + "SimpleIconsLinkerd": [], + "SimpleIconsLinkfire": [], + "SimpleIconsLinktree": [], + "SimpleIconsLinode": [], + "SimpleIconsLinux": [], + "SimpleIconsLinuxcontainers": [], + "SimpleIconsLinuxfoundation": [], + "SimpleIconsLinuxmint": [], + "SimpleIconsLionair": [], + "SimpleIconsLiquibase": [], + "SimpleIconsLit": [], + "SimpleIconsLitecoin": [], + "SimpleIconsLitiengine": [], + "SimpleIconsLivechat": [], + "SimpleIconsLivejournal": [], + "SimpleIconsLivewire": [], + "SimpleIconsLlvm": [], + "SimpleIconsLmms": [], + "SimpleIconsLodash": [], + "SimpleIconsLogitech": [], + "SimpleIconsLogmein": [], + "SimpleIconsLogstash": [], + "SimpleIconsLooker": [], + "SimpleIconsLoom": [], + "SimpleIconsLoop": [], + "SimpleIconsLoopback": [], + "SimpleIconsLospec": [], + "SimpleIconsLotpolishairlines": [], + "SimpleIconsLua": [], + "SimpleIconsLubuntu": [], + "SimpleIconsLudwig": [], + "SimpleIconsLufthansa": [], + "SimpleIconsLumen": [], + "SimpleIconsLunacy": [], + "SimpleIconsLydia": [], + "SimpleIconsLyft": [], + "SimpleIconsMaas": [], + "SimpleIconsMacos": [], + "SimpleIconsMacpaw": [], + "SimpleIconsMacys": [], + "SimpleIconsMagasinsu": [], + "SimpleIconsMagento": [], + "SimpleIconsMagisk": [], + "SimpleIconsMailchimp": [], + "SimpleIconsMaildotru": [], + "SimpleIconsMailgun": [], + "SimpleIconsMajorleaguehacking": [], + "SimpleIconsMakerbot": [], + "SimpleIconsMamp": [], + "SimpleIconsMan": [], + "SimpleIconsManageiq": [], + "SimpleIconsManjaro": [], + "SimpleIconsMapbox": [], + "SimpleIconsMariadb": [], + "SimpleIconsMariadbfoundation": [], + "SimpleIconsMarkdown": [], + "SimpleIconsMarketo": [], + "SimpleIconsMarko": [], + "SimpleIconsMarriott": [], + "SimpleIconsMaserati": [], + "SimpleIconsMastercard": [], + "SimpleIconsMastercomfig": [], + "SimpleIconsMastodon": [], + "SimpleIconsMaterialdesign": [], + "SimpleIconsMaterialdesignicons": [], + "SimpleIconsMatomo": [], + "SimpleIconsMatrix": [], + "SimpleIconsMatterdotjs": [], + "SimpleIconsMattermost": [], + "SimpleIconsMatternet": [], + "SimpleIconsMax": [], + "SimpleIconsMaxplanckgesellschaft": [], + "SimpleIconsMaytag": [], + "SimpleIconsMazda": [], + "SimpleIconsMcafee": [], + "SimpleIconsMcdonalds": [], + "SimpleIconsMclaren": [], + "SimpleIconsMdbook": [], + "SimpleIconsMdnwebdocs": [], + "SimpleIconsMdx": [], + "SimpleIconsMediafire": [], + "SimpleIconsMediamarkt": [], + "SimpleIconsMediatek": [], + "SimpleIconsMediatemple": [], + "SimpleIconsMedium": [], + "SimpleIconsMeetup": [], + "SimpleIconsMega": [], + "SimpleIconsMendeley": [], + "SimpleIconsMercadopago": [], + "SimpleIconsMercedes": [], + "SimpleIconsMerck": [], + "SimpleIconsMercurial": [], + "SimpleIconsMessenger": [], + "SimpleIconsMeta": [], + "SimpleIconsMetabase": [], + "SimpleIconsMetafilter": [], + "SimpleIconsMeteor": [], + "SimpleIconsMetro": [], + "SimpleIconsMetrodelaciudaddemexico": [], + "SimpleIconsMetrodemadrid": [], + "SimpleIconsMetrodeparis": [], + "SimpleIconsMewe": [], + "SimpleIconsMicrobit": [], + "SimpleIconsMicrodotblog": [], + "SimpleIconsMicrogenetics": [], + "SimpleIconsMicropython": [], + "SimpleIconsMicrosoft": [], + "SimpleIconsMicrosoftacademic": [], + "SimpleIconsMicrosoftaccess": [], + "SimpleIconsMicrosoftazure": [], + "SimpleIconsMicrosoftbing": [], + "SimpleIconsMicrosoftedge": [], + "SimpleIconsMicrosoftexcel": [], + "SimpleIconsMicrosoftexchange": [], + "SimpleIconsMicrosoftoffice": [], + "SimpleIconsMicrosoftonedrive": [], + "SimpleIconsMicrosoftonenote": [], + "SimpleIconsMicrosoftoutlook": [], + "SimpleIconsMicrosoftpowerpoint": [], + "SimpleIconsMicrosoftsharepoint": [], + "SimpleIconsMicrosoftsqlserver": [], + "SimpleIconsMicrosoftteams": [], + "SimpleIconsMicrosofttranslator": [], + "SimpleIconsMicrosoftvisio": [], + "SimpleIconsMicrosoftword": [], + "SimpleIconsMicrostrategy": [], + "SimpleIconsMidi": [], + "SimpleIconsMinds": [], + "SimpleIconsMinecraft": [], + "SimpleIconsMinetest": [], + "SimpleIconsMini": [], + "SimpleIconsMinutemailer": [], + "SimpleIconsMiro": [], + "SimpleIconsMitsubishi": [], + "SimpleIconsMix": [], + "SimpleIconsMixcloud": [], + "SimpleIconsMlb": [], + "SimpleIconsMlflow": [], + "SimpleIconsMobx": [], + "SimpleIconsMobxstatetree": [], + "SimpleIconsMocha": [], + "SimpleIconsModin": [], + "SimpleIconsModrinth": [], + "SimpleIconsModx": [], + "SimpleIconsMojangstudios": [], + "SimpleIconsMoleculer": [], + "SimpleIconsMomenteo": [], + "SimpleIconsMonero": [], + "SimpleIconsMoneygram": [], + "SimpleIconsMongodb": [], + "SimpleIconsMonica": [], + "SimpleIconsMonkeytie": [], + "SimpleIconsMonogames": [], + "SimpleIconsMonoprix": [], + "SimpleIconsMonster": [], + "SimpleIconsMonzo": [], + "SimpleIconsMoo": [], + "SimpleIconsMoonrepo": [], + "SimpleIconsMorrisons": [], + "SimpleIconsMoscowmetro": [], + "SimpleIconsMotorola": [], + "SimpleIconsMozilla": [], + "SimpleIconsMqtt": [], + "SimpleIconsMsi": [], + "SimpleIconsMsibusiness": [], + "SimpleIconsMta": [], + "SimpleIconsMtr": [], + "SimpleIconsMui": [], + "SimpleIconsMulesoft": [], + "SimpleIconsMuller": [], + "SimpleIconsMumble": [], + "SimpleIconsMusescore": [], + "SimpleIconsMusicbrainz": [], + "SimpleIconsMxlinux": [], + "SimpleIconsMyanimelist": [], + "SimpleIconsMyob": [], + "SimpleIconsMyspace": [], + "SimpleIconsMysql": [], + "SimpleIconsN26": [], + "SimpleIconsNamebase": [], + "SimpleIconsNamecheap": [], + "SimpleIconsNano": [], + "SimpleIconsNasa": [], + "SimpleIconsNationalgrid": [], + "SimpleIconsNativescript": [], + "SimpleIconsNaver": [], + "SimpleIconsNba": [], + "SimpleIconsNbb": [], + "SimpleIconsNdr": [], + "SimpleIconsNec": [], + "SimpleIconsNeo4J": [], + "SimpleIconsNeovim": [], + "SimpleIconsNestjs": [], + "SimpleIconsNetapp": [], + "SimpleIconsNetbsd": [], + "SimpleIconsNetflix": [], + "SimpleIconsNetlify": [], + "SimpleIconsNette": [], + "SimpleIconsNetto": [], + "SimpleIconsNeutralinojs": [], + "SimpleIconsNewbalance": [], + "SimpleIconsNewjapanprowrestling": [], + "SimpleIconsNewrelic": [], + "SimpleIconsNewyorktimes": [], + "SimpleIconsNextbilliondotai": [], + "SimpleIconsNextcloud": [], + "SimpleIconsNextdoor": [], + "SimpleIconsNextdotjs": [], + "SimpleIconsNfc": [], + "SimpleIconsNginx": [], + "SimpleIconsNgrok": [], + "SimpleIconsNiconico": [], + "SimpleIconsNike": [], + "SimpleIconsNim": [], + "SimpleIconsNintendo": [], + "SimpleIconsNintendo3Ds": [], + "SimpleIconsNintendogamecube": [], + "SimpleIconsNintendonetwork": [], + "SimpleIconsNintendoswitch": [], + "SimpleIconsNissan": [], + "SimpleIconsNixos": [], + "SimpleIconsNodedotjs": [], + "SimpleIconsNodemon": [], + "SimpleIconsNodered": [], + "SimpleIconsNokia": [], + "SimpleIconsNorco": [], + "SimpleIconsNordvpn": [], + "SimpleIconsNorwegian": [], + "SimpleIconsNotepadplusplus": [], + "SimpleIconsNotion": [], + "SimpleIconsNotist": [], + "SimpleIconsNounproject": [], + "SimpleIconsNovu": [], + "SimpleIconsNow": [], + "SimpleIconsNpm": [], + "SimpleIconsNrwl": [], + "SimpleIconsNubank": [], + "SimpleIconsNucleo": [], + "SimpleIconsNuget": [], + "SimpleIconsNuke": [], + "SimpleIconsNumba": [], + "SimpleIconsNumpy": [], + "SimpleIconsNunjucks": [], + "SimpleIconsNutanix": [], + "SimpleIconsNuxtdotjs": [], + "SimpleIconsNvidia": [], + "SimpleIconsNx": [], + "SimpleIconsNzxt": [], + "SimpleIconsObservable": [], + "SimpleIconsObsidian": [], + "SimpleIconsObsstudio": [], + "SimpleIconsOcaml": [], + "SimpleIconsOctanerender": [], + "SimpleIconsOctave": [], + "SimpleIconsOctoprint": [], + "SimpleIconsOctopusdeploy": [], + "SimpleIconsOculus": [], + "SimpleIconsOdnoklassniki": [], + "SimpleIconsOdysee": [], + "SimpleIconsOhdear": [], + "SimpleIconsOkcupid": [], + "SimpleIconsOkta": [], + "SimpleIconsOneplus": [], + "SimpleIconsOnlyfans": [], + "SimpleIconsOnlyoffice": [], + "SimpleIconsOnnx": [], + "SimpleIconsOnstar": [], + "SimpleIconsOpel": [], + "SimpleIconsOpenaccess": [], + "SimpleIconsOpenai": [], + "SimpleIconsOpenaigym": [], + "SimpleIconsOpenapiinitiative": [], + "SimpleIconsOpenbadges": [], + "SimpleIconsOpenbsd": [], + "SimpleIconsOpenbugbounty": [], + "SimpleIconsOpencollective": [], + "SimpleIconsOpencontainersinitiative": [], + "SimpleIconsOpencv": [], + "SimpleIconsOpenfaas": [], + "SimpleIconsOpengl": [], + "SimpleIconsOpenid": [], + "SimpleIconsOpenjdk": [], + "SimpleIconsOpenlayers": [], + "SimpleIconsOpenmined": [], + "SimpleIconsOpennebula": [], + "SimpleIconsOpenproject": [], + "SimpleIconsOpensea": [], + "SimpleIconsOpensearch": [], + "SimpleIconsOpensourceinitiative": [], + "SimpleIconsOpenssl": [], + "SimpleIconsOpenstack": [], + "SimpleIconsOpenstreetmap": [], + "SimpleIconsOpensuse": [], + "SimpleIconsOpentelemetry": [], + "SimpleIconsOpenverse": [], + "SimpleIconsOpenvpn": [], + "SimpleIconsOpenwrt": [], + "SimpleIconsOpenzeppelin": [], + "SimpleIconsOpenzfs": [], + "SimpleIconsOpera": [], + "SimpleIconsOpnsense": [], + "SimpleIconsOpsgenie": [], + "SimpleIconsOpslevel": [], + "SimpleIconsOracle": [], + "SimpleIconsOrcid": [], + "SimpleIconsOreilly": [], + "SimpleIconsOrg": [], + "SimpleIconsOrigin": [], + "SimpleIconsOsano": [], + "SimpleIconsOshkosh": [], + "SimpleIconsOsmc": [], + "SimpleIconsOsu": [], + "SimpleIconsOtto": [], + "SimpleIconsOvercast": [], + "SimpleIconsOverleaf": [], + "SimpleIconsOvh": [], + "SimpleIconsOwasp": [], + "SimpleIconsOxygen": [], + "SimpleIconsOyo": [], + "SimpleIconsP5Dotjs": [], + "SimpleIconsPackagist": [], + "SimpleIconsPacker": [], + "SimpleIconsPaddypower": [], + "SimpleIconsPagekit": [], + "SimpleIconsPagerduty": [], + "SimpleIconsPagespeedinsights": [], + "SimpleIconsPagseguro": [], + "SimpleIconsPalantir": [], + "SimpleIconsPaloaltosoftware": [], + "SimpleIconsPandas": [], + "SimpleIconsPandora": [], + "SimpleIconsPantheon": [], + "SimpleIconsPaperspace": [], + "SimpleIconsParitysubstrate": [], + "SimpleIconsParsedotly": [], + "SimpleIconsPassport": [], + "SimpleIconsPastebin": [], + "SimpleIconsPatreon": [], + "SimpleIconsPayoneer": [], + "SimpleIconsPaypal": [], + "SimpleIconsPaytm": [], + "SimpleIconsPcgamingwiki": [], + "SimpleIconsPeakdesign": [], + "SimpleIconsPeertube": [], + "SimpleIconsPegasusairlines": [], + "SimpleIconsPelican": [], + "SimpleIconsPeloton": [], + "SimpleIconsPenny": [], + "SimpleIconsPenpot": [], + "SimpleIconsPepsi": [], + "SimpleIconsPercy": [], + "SimpleIconsPerforce": [], + "SimpleIconsPerl": [], + "SimpleIconsPersistent": [], + "SimpleIconsPersonio": [], + "SimpleIconsPetsathome": [], + "SimpleIconsPeugeot": [], + "SimpleIconsPexels": [], + "SimpleIconsPfsense": [], + "SimpleIconsPhabricator": [], + "SimpleIconsPhilipshue": [], + "SimpleIconsPhonepe": [], + "SimpleIconsPhotobucket": [], + "SimpleIconsPhotocrowd": [], + "SimpleIconsPhotopea": [], + "SimpleIconsPhp": [], + "SimpleIconsPhpmyadmin": [], + "SimpleIconsPhpstorm": [], + "SimpleIconsPicardsurgeles": [], + "SimpleIconsPicartodottv": [], + "SimpleIconsPicnic": [], + "SimpleIconsPicpay": [], + "SimpleIconsPihole": [], + "SimpleIconsPimcore": [], + "SimpleIconsPinboard": [], + "SimpleIconsPingdom": [], + "SimpleIconsPinterest": [], + "SimpleIconsPioneerdj": [], + "SimpleIconsPivotaltracker": [], + "SimpleIconsPiwigo": [], + "SimpleIconsPix": [], + "SimpleIconsPixabay": [], + "SimpleIconsPixiv": [], + "SimpleIconsPkgsrc": [], + "SimpleIconsPlanet": [], + "SimpleIconsPlanetscale": [], + "SimpleIconsPlangrid": [], + "SimpleIconsPlatformdotsh": [], + "SimpleIconsPlatzi": [], + "SimpleIconsPlausibleanalytics": [], + "SimpleIconsPlaycanvas": [], + "SimpleIconsPlayerdotme": [], + "SimpleIconsPlayerfm": [], + "SimpleIconsPlaystation": [], + "SimpleIconsPlaystation2": [], + "SimpleIconsPlaystation3": [], + "SimpleIconsPlaystation4": [], + "SimpleIconsPlaystation5": [], + "SimpleIconsPlaystationvita": [], + "SimpleIconsPlaywright": [], + "SimpleIconsPleroma": [], + "SimpleIconsPlesk": [], + "SimpleIconsPlex": [], + "SimpleIconsPlotly": [], + "SimpleIconsPluralsight": [], + "SimpleIconsPlurk": [], + "SimpleIconsPluscodes": [], + "SimpleIconsPm2": [], + "SimpleIconsPnpm": [], + "SimpleIconsPocket": [], + "SimpleIconsPocketbase": [], + "SimpleIconsPocketcasts": [], + "SimpleIconsPodcastaddict": [], + "SimpleIconsPodman": [], + "SimpleIconsPoetry": [], + "SimpleIconsPointy": [], + "SimpleIconsPokemon": [], + "SimpleIconsPolars": [], + "SimpleIconsPolkadot": [], + "SimpleIconsPoly": [], + "SimpleIconsPolymerproject": [], + "SimpleIconsPolywork": [], + "SimpleIconsPopos": [], + "SimpleIconsPorsche": [], + "SimpleIconsPortainer": [], + "SimpleIconsPostcss": [], + "SimpleIconsPostgresql": [], + "SimpleIconsPostman": [], + "SimpleIconsPostmates": [], + "SimpleIconsPowerapps": [], + "SimpleIconsPowerautomate": [], + "SimpleIconsPowerbi": [], + "SimpleIconsPowerfx": [], + "SimpleIconsPowerpages": [], + "SimpleIconsPowers": [], + "SimpleIconsPowershell": [], + "SimpleIconsPowervirtualagents": [], + "SimpleIconsPrdotco": [], + "SimpleIconsPreact": [], + "SimpleIconsPrecommit": [], + "SimpleIconsPremierleague": [], + "SimpleIconsPrestashop": [], + "SimpleIconsPresto": [], + "SimpleIconsPrettier": [], + "SimpleIconsPrevention": [], + "SimpleIconsPrezi": [], + "SimpleIconsPrime": [], + "SimpleIconsPrimevideo": [], + "SimpleIconsPrisma": [], + "SimpleIconsPrismic": [], + "SimpleIconsPrivateinternetaccess": [], + "SimpleIconsProbot": [], + "SimpleIconsProcessingfoundation": [], + "SimpleIconsProcesswire": [], + "SimpleIconsProducthunt": [], + "SimpleIconsProgate": [], + "SimpleIconsProgress": [], + "SimpleIconsPrometheus": [], + "SimpleIconsProsieben": [], + "SimpleIconsProtocolsdotio": [], + "SimpleIconsProtodotio": [], + "SimpleIconsProtondb": [], + "SimpleIconsProtonmail": [], + "SimpleIconsProtonvpn": [], + "SimpleIconsProtools": [], + "SimpleIconsProtractor": [], + "SimpleIconsProxmox": [], + "SimpleIconsPubg": [], + "SimpleIconsPublons": [], + "SimpleIconsPubmed": [], + "SimpleIconsPug": [], + "SimpleIconsPulumi": [], + "SimpleIconsPuma": [], + "SimpleIconsPuppet": [], + "SimpleIconsPuppeteer": [], + "SimpleIconsPurescript": [], + "SimpleIconsPurgecss": [], + "SimpleIconsPurism": [], + "SimpleIconsPusher": [], + "SimpleIconsPwa": [], + "SimpleIconsPycharm": [], + "SimpleIconsPyg": [], + "SimpleIconsPypi": [], + "SimpleIconsPypy": [], + "SimpleIconsPyscaffold": [], + "SimpleIconsPysyft": [], + "SimpleIconsPytest": [], + "SimpleIconsPython": [], + "SimpleIconsPytorch": [], + "SimpleIconsPytorchlightning": [], + "SimpleIconsPyup": [], + "SimpleIconsQantas": [], + "SimpleIconsQatarairways": [], + "SimpleIconsQemu": [], + "SimpleIconsQgis": [], + "SimpleIconsQi": [], + "SimpleIconsQiita": [], + "SimpleIconsQiskit": [], + "SimpleIconsQiwi": [], + "SimpleIconsQmk": [], + "SimpleIconsQt": [], + "SimpleIconsQualcomm": [], + "SimpleIconsQualtrics": [], + "SimpleIconsQualys": [], + "SimpleIconsQuantcast": [], + "SimpleIconsQuantconnect": [], + "SimpleIconsQuarkus": [], + "SimpleIconsQuasar": [], + "SimpleIconsQubesos": [], + "SimpleIconsQuest": [], + "SimpleIconsQuickbooks": [], + "SimpleIconsQuicklook": [], + "SimpleIconsQuicktime": [], + "SimpleIconsQuip": [], + "SimpleIconsQuora": [], + "SimpleIconsQwiklabs": [], + "SimpleIconsQzone": [], + "SimpleIconsR": [], + "SimpleIconsR3": [], + "SimpleIconsRabbitmq": [], + "SimpleIconsRacket": [], + "SimpleIconsRadar": [], + "SimpleIconsRadiopublic": [], + "SimpleIconsRailway": [], + "SimpleIconsRainmeter": [], + "SimpleIconsRakuten": [], + "SimpleIconsRam": [], + "SimpleIconsRancher": [], + "SimpleIconsRarible": [], + "SimpleIconsRasa": [], + "SimpleIconsRaspberrypi": [], + "SimpleIconsRavelry": [], + "SimpleIconsRay": [], + "SimpleIconsRazer": [], + "SimpleIconsRazorpay": [], + "SimpleIconsReact": [], + "SimpleIconsReacthookform": [], + "SimpleIconsReactivex": [], + "SimpleIconsReactos": [], + "SimpleIconsReactquery": [], + "SimpleIconsReactrouter": [], + "SimpleIconsReacttable": [], + "SimpleIconsReadme": [], + "SimpleIconsReadthedocs": [], + "SimpleIconsRealm": [], + "SimpleIconsReason": [], + "SimpleIconsReasonstudios": [], + "SimpleIconsRed": [], + "SimpleIconsRedbubble": [], + "SimpleIconsReddit": [], + "SimpleIconsRedhat": [], + "SimpleIconsRedhatopenshift": [], + "SimpleIconsRedis": [], + "SimpleIconsRedmine": [], + "SimpleIconsRedox": [], + "SimpleIconsRedux": [], + "SimpleIconsReduxsaga": [], + "SimpleIconsRedwoodjs": [], + "SimpleIconsReebok": [], + "SimpleIconsRelay": [], + "SimpleIconsRelianceindustrieslimited": [], + "SimpleIconsRemix": [], + "SimpleIconsRenault": [], + "SimpleIconsRender": [], + "SimpleIconsRenovatebot": [], + "SimpleIconsRenpy": [], + "SimpleIconsRenren": [], + "SimpleIconsReplit": [], + "SimpleIconsRepublicofgamers": [], + "SimpleIconsRescript": [], + "SimpleIconsRescuetime": [], + "SimpleIconsResearchgate": [], + "SimpleIconsResharper": [], + "SimpleIconsResurrectionremixos": [], + "SimpleIconsRetroarch": [], + "SimpleIconsRetropie": [], + "SimpleIconsRevealdotjs": [], + "SimpleIconsReverbnation": [], + "SimpleIconsRevoltdotchat": [], + "SimpleIconsRevolut": [], + "SimpleIconsRevue": [], + "SimpleIconsRewe": [], + "SimpleIconsRezgo": [], + "SimpleIconsRhinoceros": [], + "SimpleIconsRider": [], + "SimpleIconsRimacautomobili": [], + "SimpleIconsRing": [], + "SimpleIconsRiotgames": [], + "SimpleIconsRipple": [], + "SimpleIconsRiseup": [], + "SimpleIconsRoamresearch": [], + "SimpleIconsRoblox": [], + "SimpleIconsRobotframework": [], + "SimpleIconsRocketdotchat": [], + "SimpleIconsRocksdb": [], + "SimpleIconsRockylinux": [], + "SimpleIconsRoku": [], + "SimpleIconsRollsroyce": [], + "SimpleIconsRollupdotjs": [], + "SimpleIconsRome": [], + "SimpleIconsRoots": [], + "SimpleIconsRootsbedrock": [], + "SimpleIconsRootssage": [], + "SimpleIconsRos": [], + "SimpleIconsRossmann": [], + "SimpleIconsRotaryinternational": [], + "SimpleIconsRottentomatoes": [], + "SimpleIconsRoundcube": [], + "SimpleIconsRsocket": [], + "SimpleIconsRss": [], + "SimpleIconsRstudio": [], + "SimpleIconsRte": [], + "SimpleIconsRtl": [], + "SimpleIconsRtlzwei": [], + "SimpleIconsRubocop": [], + "SimpleIconsRuby": [], + "SimpleIconsRubygems": [], + "SimpleIconsRubyonrails": [], + "SimpleIconsRubysinatra": [], + "SimpleIconsRunkeeper": [], + "SimpleIconsRunkit": [], + "SimpleIconsRust": [], + "SimpleIconsRxdb": [], + "SimpleIconsRyanair": [], + "SimpleIconsS7Airlines": [], + "SimpleIconsSabanci": [], + "SimpleIconsSafari": [], + "SimpleIconsSahibinden": [], + "SimpleIconsSailfishos": [], + "SimpleIconsSalesforce": [], + "SimpleIconsSaltproject": [], + "SimpleIconsSamsung": [], + "SimpleIconsSamsungpay": [], + "SimpleIconsSandisk": [], + "SimpleIconsSanfranciscomunicipalrailway": [], + "SimpleIconsSaopaulometro": [], + "SimpleIconsSap": [], + "SimpleIconsSass": [], + "SimpleIconsSat1": [], + "SimpleIconsSaturn": [], + "SimpleIconsSaucelabs": [], + "SimpleIconsScala": [], + "SimpleIconsScaleway": [], + "SimpleIconsScania": [], + "SimpleIconsSchneiderelectric": [], + "SimpleIconsScikitlearn": [], + "SimpleIconsScipy": [], + "SimpleIconsScopus": [], + "SimpleIconsScpfoundation": [], + "SimpleIconsScratch": [], + "SimpleIconsScreencastify": [], + "SimpleIconsScribd": [], + "SimpleIconsScrimba": [], + "SimpleIconsScrollreveal": [], + "SimpleIconsScrumalliance": [], + "SimpleIconsScrutinizerci": [], + "SimpleIconsSeagate": [], + "SimpleIconsSeat": [], + "SimpleIconsSecurityscorecard": [], + "SimpleIconsSefaria": [], + "SimpleIconsSega": [], + "SimpleIconsSelenium": [], + "SimpleIconsSellfy": [], + "SimpleIconsSemanticrelease": [], + "SimpleIconsSemanticscholar": [], + "SimpleIconsSemanticuireact": [], + "SimpleIconsSemanticweb": [], + "SimpleIconsSemaphoreci": [], + "SimpleIconsSemver": [], + "SimpleIconsSencha": [], + "SimpleIconsSendinblue": [], + "SimpleIconsSennheiser": [], + "SimpleIconsSensu": [], + "SimpleIconsSentry": [], + "SimpleIconsSepa": [], + "SimpleIconsSequelize": [], + "SimpleIconsServerfault": [], + "SimpleIconsServerless": [], + "SimpleIconsSessionize": [], + "SimpleIconsSetapp": [], + "SimpleIconsSfml": [], + "SimpleIconsShadow": [], + "SimpleIconsShanghaimetro": [], + "SimpleIconsSharp": [], + "SimpleIconsShazam": [], + "SimpleIconsShell": [], + "SimpleIconsShelly": [], + "SimpleIconsShenzhenmetro": [], + "SimpleIconsShieldsdotio": [], + "SimpleIconsShikimori": [], + "SimpleIconsShopee": [], + "SimpleIconsShopify": [], + "SimpleIconsShopware": [], + "SimpleIconsShotcut": [], + "SimpleIconsShowpad": [], + "SimpleIconsShowtime": [], + "SimpleIconsShutterstock": [], + "SimpleIconsSiemens": [], + "SimpleIconsSignal": [], + "SimpleIconsSimilarweb": [], + "SimpleIconsSimkl": [], + "SimpleIconsSimpleanalytics": [], + "SimpleIconsSimpleicons": [], + "SimpleIconsSimplenote": [], + "SimpleIconsSinaweibo": [], + "SimpleIconsSinglestore": [], + "SimpleIconsSitepoint": [], + "SimpleIconsSketch": [], + "SimpleIconsSketchfab": [], + "SimpleIconsSketchup": [], + "SimpleIconsSkillshare": [], + "SimpleIconsSkoda": [], + "SimpleIconsSky": [], + "SimpleIconsSkynet": [], + "SimpleIconsSkypack": [], + "SimpleIconsSkype": [], + "SimpleIconsSkypeforbusiness": [], + "SimpleIconsSlack": [], + "SimpleIconsSlackware": [], + "SimpleIconsSlashdot": [], + "SimpleIconsSlickpic": [], + "SimpleIconsSlides": [], + "SimpleIconsSlideshare": [], + "SimpleIconsSmart": [], + "SimpleIconsSmartthings": [], + "SimpleIconsSmashdotgg": [], + "SimpleIconsSmashingmagazine": [], + "SimpleIconsSmrt": [], + "SimpleIconsSmugmug": [], + "SimpleIconsSnapchat": [], + "SimpleIconsSnapcraft": [], + "SimpleIconsSncf": [], + "SimpleIconsSnowflake": [], + "SimpleIconsSnowpack": [], + "SimpleIconsSnyk": [], + "SimpleIconsSocialblade": [], + "SimpleIconsSociety6": [], + "SimpleIconsSocketdotio": [], + "SimpleIconsSogou": [], + "SimpleIconsSolid": [], + "SimpleIconsSolidity": [], + "SimpleIconsSololearn": [], + "SimpleIconsSolus": [], + "SimpleIconsSonar": [], + "SimpleIconsSonarcloud": [], + "SimpleIconsSonarlint": [], + "SimpleIconsSonarqube": [], + "SimpleIconsSonarsource": [], + "SimpleIconsSongkick": [], + "SimpleIconsSongoda": [], + "SimpleIconsSonicwall": [], + "SimpleIconsSonos": [], + "SimpleIconsSony": [], + "SimpleIconsSoundcharts": [], + "SimpleIconsSoundcloud": [], + "SimpleIconsSourceengine": [], + "SimpleIconsSourceforge": [], + "SimpleIconsSourcegraph": [], + "SimpleIconsSourcetree": [], + "SimpleIconsSouthwestairlines": [], + "SimpleIconsSpacemacs": [], + "SimpleIconsSpacex": [], + "SimpleIconsSpacy": [], + "SimpleIconsSparkar": [], + "SimpleIconsSparkasse": [], + "SimpleIconsSparkfun": [], + "SimpleIconsSparkpost": [], + "SimpleIconsSpdx": [], + "SimpleIconsSpeakerdeck": [], + "SimpleIconsSpectrum": [], + "SimpleIconsSpeedtest": [], + "SimpleIconsSpinnaker": [], + "SimpleIconsSpinrilla": [], + "SimpleIconsSplunk": [], + "SimpleIconsSpond": [], + "SimpleIconsSpotify": [], + "SimpleIconsSpotlight": [], + "SimpleIconsSpreadshirt": [], + "SimpleIconsSpreaker": [], + "SimpleIconsSpring": [], + "SimpleIconsSpringCreators": [], + "SimpleIconsSpringboot": [], + "SimpleIconsSpringsecurity": [], + "SimpleIconsSpyderide": [], + "SimpleIconsSqlite": [], + "SimpleIconsSquare": [], + "SimpleIconsSquareenix": [], + "SimpleIconsSquarespace": [], + "SimpleIconsSsrn": [], + "SimpleIconsStackbit": [], + "SimpleIconsStackblitz": [], + "SimpleIconsStackedit": [], + "SimpleIconsStackexchange": [], + "SimpleIconsStackoverflow": [], + "SimpleIconsStackpath": [], + "SimpleIconsStackshare": [], + "SimpleIconsStadia": [], + "SimpleIconsStaffbase": [], + "SimpleIconsStandardjs": [], + "SimpleIconsStarbucks": [], + "SimpleIconsStardock": [], + "SimpleIconsStarlingbank": [], + "SimpleIconsStarship": [], + "SimpleIconsStartrek": [], + "SimpleIconsStarz": [], + "SimpleIconsStatamic": [], + "SimpleIconsStatuspage": [], + "SimpleIconsStatuspal": [], + "SimpleIconsSteam": [], + "SimpleIconsSteamdb": [], + "SimpleIconsSteamdeck": [], + "SimpleIconsSteamworks": [], + "SimpleIconsSteelseries": [], + "SimpleIconsSteem": [], + "SimpleIconsSteemit": [], + "SimpleIconsSteinberg": [], + "SimpleIconsStellar": [], + "SimpleIconsStencyl": [], + "SimpleIconsStimulus": [], + "SimpleIconsStitcher": [], + "SimpleIconsStmicroelectronics": [], + "SimpleIconsStopstalk": [], + "SimpleIconsStoryblok": [], + "SimpleIconsStorybook": [], + "SimpleIconsStrapi": [], + "SimpleIconsStrava": [], + "SimpleIconsStreamlit": [], + "SimpleIconsStripe": [], + "SimpleIconsStrongswan": [], + "SimpleIconsStubhub": [], + "SimpleIconsStyledcomponents": [], + "SimpleIconsStylelint": [], + "SimpleIconsStyleshare": [], + "SimpleIconsStylus": [], + "SimpleIconsSubaru": [], + "SimpleIconsSublimetext": [], + "SimpleIconsSubstack": [], + "SimpleIconsSubversion": [], + "SimpleIconsSuckless": [], + "SimpleIconsSumologic": [], + "SimpleIconsSupabase": [], + "SimpleIconsSupermicro": [], + "SimpleIconsSuperuser": [], + "SimpleIconsSurrealdb": [], + "SimpleIconsSurveymonkey": [], + "SimpleIconsSuse": [], + "SimpleIconsSuzuki": [], + "SimpleIconsSvelte": [], + "SimpleIconsSvg": [], + "SimpleIconsSvgo": [], + "SimpleIconsSwagger": [], + "SimpleIconsSwarm": [], + "SimpleIconsSwc": [], + "SimpleIconsSwift": [], + "SimpleIconsSwiggy": [], + "SimpleIconsSwiper": [], + "SimpleIconsSymantec": [], + "SimpleIconsSymfony": [], + "SimpleIconsSymphony": [], + "SimpleIconsSympy": [], + "SimpleIconsSynology": [], + "SimpleIconsSystem76": [], + "SimpleIconsTableau": [], + "SimpleIconsTablecheck": [], + "SimpleIconsTacobell": [], + "SimpleIconsTado": [], + "SimpleIconsTaichigraphics": [], + "SimpleIconsTaichilang": [], + "SimpleIconsTails": [], + "SimpleIconsTailwindcss": [], + "SimpleIconsTalend": [], + "SimpleIconsTalenthouse": [], + "SimpleIconsTamiya": [], + "SimpleIconsTampermonkey": [], + "SimpleIconsTaobao": [], + "SimpleIconsTapas": [], + "SimpleIconsTarget": [], + "SimpleIconsTask": [], + "SimpleIconsTasmota": [], + "SimpleIconsTata": [], + "SimpleIconsTauri": [], + "SimpleIconsTaxbuzz": [], + "SimpleIconsTeamcity": [], + "SimpleIconsTeamspeak": [], + "SimpleIconsTeamviewer": [], + "SimpleIconsTed": [], + "SimpleIconsTeespring": [], + "SimpleIconsTekton": [], + "SimpleIconsTele5": [], + "SimpleIconsTelegram": [], + "SimpleIconsTelegraph": [], + "SimpleIconsTemporal": [], + "SimpleIconsTencentqq": [], + "SimpleIconsTensorflow": [], + "SimpleIconsTeradata": [], + "SimpleIconsTeratail": [], + "SimpleIconsTerraform": [], + "SimpleIconsTesco": [], + "SimpleIconsTesla": [], + "SimpleIconsTestcafe": [], + "SimpleIconsTestin": [], + "SimpleIconsTestinglibrary": [], + "SimpleIconsTether": [], + "SimpleIconsTextpattern": [], + "SimpleIconsTga": [], + "SimpleIconsThealgorithms": [], + "SimpleIconsTheconversation": [], + "SimpleIconsTheirishtimes": [], + "SimpleIconsThemighty": [], + "SimpleIconsThemodelsresource": [], + "SimpleIconsThemoviedatabase": [], + "SimpleIconsThenorthface": [], + "SimpleIconsTheregister": [], + "SimpleIconsThesoundsresource": [], + "SimpleIconsThespritersresource": [], + "SimpleIconsThewashingtonpost": [], + "SimpleIconsThingiverse": [], + "SimpleIconsThinkpad": [], + "SimpleIconsThreadless": [], + "SimpleIconsThreedotjs": [], + "SimpleIconsThreema": [], + "SimpleIconsThumbtack": [], + "SimpleIconsThunderbird": [], + "SimpleIconsThymeleaf": [], + "SimpleIconsTicketmaster": [], + "SimpleIconsTidal": [], + "SimpleIconsTide": [], + "SimpleIconsTidyverse": [], + "SimpleIconsTietoevry": [], + "SimpleIconsTiktok": [], + "SimpleIconsTile": [], + "SimpleIconsTimescale": [], + "SimpleIconsTinder": [], + "SimpleIconsTinyletter": [], + "SimpleIconsTistory": [], + "SimpleIconsTmobile": [], + "SimpleIconsTmux": [], + "SimpleIconsTnt": [], + "SimpleIconsTodoist": [], + "SimpleIconsToggl": [], + "SimpleIconsTokyometro": [], + "SimpleIconsToml": [], + "SimpleIconsTomorrowland": [], + "SimpleIconsTopcoder": [], + "SimpleIconsToptal": [], + "SimpleIconsTorbrowser": [], + "SimpleIconsTorproject": [], + "SimpleIconsToshiba": [], + "SimpleIconsToyota": [], + "SimpleIconsTplink": [], + "SimpleIconsTqdm": [], + "SimpleIconsTraefikmesh": [], + "SimpleIconsTraefikproxy": [], + "SimpleIconsTrainerroad": [], + "SimpleIconsTrakt": [], + "SimpleIconsTransportforireland": [], + "SimpleIconsTransportforlondon": [], + "SimpleIconsTravisci": [], + "SimpleIconsTreehouse": [], + "SimpleIconsTrello": [], + "SimpleIconsTrendmicro": [], + "SimpleIconsTreyarch": [], + "SimpleIconsTriller": [], + "SimpleIconsTrino": [], + "SimpleIconsTripadvisor": [], + "SimpleIconsTripdotcom": [], + "SimpleIconsTrove": [], + "SimpleIconsTrpc": [], + "SimpleIconsTruenas": [], + "SimpleIconsTrulia": [], + "SimpleIconsTrustedshops": [], + "SimpleIconsTrustpilot": [], + "SimpleIconsTryhackme": [], + "SimpleIconsTryitonline": [], + "SimpleIconsTsnode": [], + "SimpleIconsTubi": [], + "SimpleIconsTui": [], + "SimpleIconsTumblr": [], + "SimpleIconsTunein": [], + "SimpleIconsTurborepo": [], + "SimpleIconsTurbosquid": [], + "SimpleIconsTurkishairlines": [], + "SimpleIconsTutanota": [], + "SimpleIconsTvtime": [], + "SimpleIconsTwilio": [], + "SimpleIconsTwitch": [], + "SimpleIconsTwitter": [], + "SimpleIconsTwoo": [], + "SimpleIconsTypeform": [], + "SimpleIconsTypescript": [], + "SimpleIconsTypo3": [], + "SimpleIconsUber": [], + "SimpleIconsUbereats": [], + "SimpleIconsUbiquiti": [], + "SimpleIconsUbisoft": [], + "SimpleIconsUblockorigin": [], + "SimpleIconsUbuntu": [], + "SimpleIconsUdacity": [], + "SimpleIconsUdemy": [], + "SimpleIconsUfc": [], + "SimpleIconsUikit": [], + "SimpleIconsUlule": [], + "SimpleIconsUmbraco": [], + "SimpleIconsUnacademy": [], + "SimpleIconsUnderarmour": [], + "SimpleIconsUnderscoredotjs": [], + "SimpleIconsUndertale": [], + "SimpleIconsUnicode": [], + "SimpleIconsUnilever": [], + "SimpleIconsUnitedairlines": [], + "SimpleIconsUnity": [], + "SimpleIconsUnlicense": [], + "SimpleIconsUnocss": [], + "SimpleIconsUnraid": [], + "SimpleIconsUnrealengine": [], + "SimpleIconsUnsplash": [], + "SimpleIconsUntangle": [], + "SimpleIconsUntappd": [], + "SimpleIconsUpcloud": [], + "SimpleIconsUplabs": [], + "SimpleIconsUploaded": [], + "SimpleIconsUps": [], + "SimpleIconsUpstash": [], + "SimpleIconsUptimekuma": [], + "SimpleIconsUptobox": [], + "SimpleIconsUpwork": [], + "SimpleIconsUsps": [], + "SimpleIconsV": [], + "SimpleIconsV2Ex": [], + "SimpleIconsV8": [], + "SimpleIconsVaadin": [], + "SimpleIconsVagrant": [], + "SimpleIconsVala": [], + "SimpleIconsValorant": [], + "SimpleIconsValve": [], + "SimpleIconsVapor": [], + "SimpleIconsVault": [], + "SimpleIconsVauxhall": [], + "SimpleIconsVbulletin": [], + "SimpleIconsVectorlogozone": [], + "SimpleIconsVectorworks": [], + "SimpleIconsVeeam": [], + "SimpleIconsVeepee": [], + "SimpleIconsVelog": [], + "SimpleIconsVenmo": [], + "SimpleIconsVercel": [], + "SimpleIconsVerdaccio": [], + "SimpleIconsVeritas": [], + "SimpleIconsVerizon": [], + "SimpleIconsVexxhost": [], + "SimpleIconsVfairs": [], + "SimpleIconsViadeo": [], + "SimpleIconsViber": [], + "SimpleIconsVim": [], + "SimpleIconsVimeo": [], + "SimpleIconsVimeolivestream": [], + "SimpleIconsVirgin": [], + "SimpleIconsVirginmedia": [], + "SimpleIconsVirtualbox": [], + "SimpleIconsVirustotal": [], + "SimpleIconsVisa": [], + "SimpleIconsVisualstudio": [], + "SimpleIconsVisualstudiocode": [], + "SimpleIconsVite": [], + "SimpleIconsVitess": [], + "SimpleIconsVitest": [], + "SimpleIconsVivaldi": [], + "SimpleIconsVivino": [], + "SimpleIconsVk": [], + "SimpleIconsVlcmediaplayer": [], + "SimpleIconsVmware": [], + "SimpleIconsVodafone": [], + "SimpleIconsVolkswagen": [], + "SimpleIconsVolvo": [], + "SimpleIconsVonage": [], + "SimpleIconsVowpalwabbit": [], + "SimpleIconsVox": [], + "SimpleIconsVsco": [], + "SimpleIconsVscodium": [], + "SimpleIconsVtex": [], + "SimpleIconsVuedotjs": [], + "SimpleIconsVuetify": [], + "SimpleIconsVulkan": [], + "SimpleIconsVultr": [], + "SimpleIconsW3C": [], + "SimpleIconsWacom": [], + "SimpleIconsWagtail": [], + "SimpleIconsWails": [], + "SimpleIconsWakatime": [], + "SimpleIconsWalkman": [], + "SimpleIconsWallabag": [], + "SimpleIconsWalmart": [], + "SimpleIconsWantedly": [], + "SimpleIconsWappalyzer": [], + "SimpleIconsWarnerbros": [], + "SimpleIconsWarp": [], + "SimpleIconsWasmcloud": [], + "SimpleIconsWasmer": [], + "SimpleIconsWattpad": [], + "SimpleIconsWayland": [], + "SimpleIconsWaze": [], + "SimpleIconsWearos": [], + "SimpleIconsWeasyl": [], + "SimpleIconsWeb3Dotjs": [], + "SimpleIconsWebassembly": [], + "SimpleIconsWebauthn": [], + "SimpleIconsWebcomponentsdotorg": [], + "SimpleIconsWebdriverio": [], + "SimpleIconsWebflow": [], + "SimpleIconsWebgl": [], + "SimpleIconsWebhint": [], + "SimpleIconsWeblate": [], + "SimpleIconsWebmin": [], + "SimpleIconsWebmoney": [], + "SimpleIconsWebpack": [], + "SimpleIconsWebrtc": [], + "SimpleIconsWebstorm": [], + "SimpleIconsWebtoon": [], + "SimpleIconsWechat": [], + "SimpleIconsWegame": [], + "SimpleIconsWeightsandbiases": [], + "SimpleIconsWelcometothejungle": [], + "SimpleIconsWemo": [], + "SimpleIconsWesterndigital": [], + "SimpleIconsWetransfer": [], + "SimpleIconsWhatsapp": [], + "SimpleIconsWheniwork": [], + "SimpleIconsWhitesource": [], + "SimpleIconsWii": [], + "SimpleIconsWiiu": [], + "SimpleIconsWikidata": [], + "SimpleIconsWikidotjs": [], + "SimpleIconsWikimediacommons": [], + "SimpleIconsWikipedia": [], + "SimpleIconsWikiquote": [], + "SimpleIconsWikivoyage": [], + "SimpleIconsWinamp": [], + "SimpleIconsWindicss": [], + "SimpleIconsWindows": [], + "SimpleIconsWindows11": [], + "SimpleIconsWindows95": [], + "SimpleIconsWindowsterminal": [], + "SimpleIconsWindowsxp": [], + "SimpleIconsWinmate": [], + "SimpleIconsWipro": [], + "SimpleIconsWire": [], + "SimpleIconsWireguard": [], + "SimpleIconsWireshark": [], + "SimpleIconsWise": [], + "SimpleIconsWish": [], + "SimpleIconsWistia": [], + "SimpleIconsWix": [], + "SimpleIconsWizzair": [], + "SimpleIconsWolfram": [], + "SimpleIconsWolframlanguage": [], + "SimpleIconsWolframmathematica": [], + "SimpleIconsWoo": [], + "SimpleIconsWoocommerce": [], + "SimpleIconsWordpress": [], + "SimpleIconsWorkplace": [], + "SimpleIconsWorldhealthorganization": [], + "SimpleIconsWpengine": [], + "SimpleIconsWpexplorer": [], + "SimpleIconsWprocket": [], + "SimpleIconsWritedotas": [], + "SimpleIconsWwe": [], + "SimpleIconsWwise": [], + "SimpleIconsXamarin": [], + "SimpleIconsXaml": [], + "SimpleIconsXampp": [], + "SimpleIconsXbox": [], + "SimpleIconsXcode": [], + "SimpleIconsXdadevelopers": [], + "SimpleIconsXdotorg": [], + "SimpleIconsXero": [], + "SimpleIconsXfce": [], + "SimpleIconsXiaomi": [], + "SimpleIconsXilinx": [], + "SimpleIconsXing": [], + "SimpleIconsXmpp": [], + "SimpleIconsXo": [], + "SimpleIconsXrp": [], + "SimpleIconsXsplit": [], + "SimpleIconsXstate": [], + "SimpleIconsYahoo": [], + "SimpleIconsYale": [], + "SimpleIconsYamahacorporation": [], + "SimpleIconsYamahamotorcorporation": [], + "SimpleIconsYammer": [], + "SimpleIconsYarn": [], + "SimpleIconsYcombinator": [], + "SimpleIconsYelp": [], + "SimpleIconsYoast": [], + "SimpleIconsYolo": [], + "SimpleIconsYourtraveldottv": [], + "SimpleIconsYoutube": [], + "SimpleIconsYoutubegaming": [], + "SimpleIconsYoutubemusic": [], + "SimpleIconsYoutubestudio": [], + "SimpleIconsYoutubetv": [], + "SimpleIconsYubico": [], + "SimpleIconsZabka": [], + "SimpleIconsZalando": [], + "SimpleIconsZalo": [], + "SimpleIconsZapier": [], + "SimpleIconsZara": [], + "SimpleIconsZazzle": [], + "SimpleIconsZcash": [], + "SimpleIconsZdf": [], + "SimpleIconsZebratechnologies": [], + "SimpleIconsZelle": [], + "SimpleIconsZend": [], + "SimpleIconsZendesk": [], + "SimpleIconsZendframework": [], + "SimpleIconsZenn": [], + "SimpleIconsZenodo": [], + "SimpleIconsZerodha": [], + "SimpleIconsZeromq": [], + "SimpleIconsZerply": [], + "SimpleIconsZettlr": [], + "SimpleIconsZhihu": [], + "SimpleIconsZig": [], + "SimpleIconsZigbee": [], + "SimpleIconsZillow": [], + "SimpleIconsZincsearch": [], + "SimpleIconsZingat": [], + "SimpleIconsZoho": [], + "SimpleIconsZoiper": [], + "SimpleIconsZomato": [], + "SimpleIconsZoom": [], + "SimpleIconsZorin": [], + "SimpleIconsZotero": [], + "SimpleIconsZulip": [], + "SimpleIconsZwave": [], + "SimpleIconsZyte": [], + "base64": [ + "dep:base64" + ], + "bootstrap": [ + "Bootstrap0CircleFill", + "Bootstrap0Circle", + "Bootstrap0SquareFill", + "Bootstrap0Square", + "Bootstrap1CircleFill", + "Bootstrap1Circle", + "Bootstrap1SquareFill", + "Bootstrap1Square", + "Bootstrap123", + "Bootstrap2CircleFill", + "Bootstrap2Circle", + "Bootstrap2SquareFill", + "Bootstrap2Square", + "Bootstrap3CircleFill", + "Bootstrap3Circle", + "Bootstrap3SquareFill", + "Bootstrap3Square", + "Bootstrap4CircleFill", + "Bootstrap4Circle", + "Bootstrap4SquareFill", + "Bootstrap4Square", + "Bootstrap5CircleFill", + "Bootstrap5Circle", + "Bootstrap5SquareFill", + "Bootstrap5Square", + "Bootstrap6CircleFill", + "Bootstrap6Circle", + "Bootstrap6SquareFill", + "Bootstrap6Square", + "Bootstrap7CircleFill", + "Bootstrap7Circle", + "Bootstrap7SquareFill", + "Bootstrap7Square", + "Bootstrap8CircleFill", + "Bootstrap8Circle", + "Bootstrap8SquareFill", + "Bootstrap8Square", + "Bootstrap9CircleFill", + "Bootstrap9Circle", + "Bootstrap9SquareFill", + "Bootstrap9Square", + "BootstrapActivity", + "BootstrapAirplaneEnginesFill", + "BootstrapAirplaneEngines", + "BootstrapAirplaneFill", + "BootstrapAirplane", + "BootstrapAlarmFill", + "BootstrapAlarm", + "BootstrapAlexa", + "BootstrapAlignBottom", + "BootstrapAlignCenter", + "BootstrapAlignEnd", + "BootstrapAlignMiddle", + "BootstrapAlignStart", + "BootstrapAlignTop", + "BootstrapAlipay", + "BootstrapAlt", + "BootstrapAmd", + "BootstrapAndroid", + "BootstrapAndroid2", + "BootstrapAppIndicator", + "BootstrapApp", + "BootstrapApple", + "BootstrapArchiveFill", + "BootstrapArchive", + "BootstrapArrow90DegDown", + "BootstrapArrow90DegLeft", + "BootstrapArrow90DegRight", + "BootstrapArrow90DegUp", + "BootstrapArrowBarDown", + "BootstrapArrowBarLeft", + "BootstrapArrowBarRight", + "BootstrapArrowBarUp", + "BootstrapArrowClockwise", + "BootstrapArrowCounterclockwise", + "BootstrapArrowDownCircleFill", + "BootstrapArrowDownCircle", + "BootstrapArrowDownLeftCircleFill", + "BootstrapArrowDownLeftCircle", + "BootstrapArrowDownLeftSquareFill", + "BootstrapArrowDownLeftSquare", + "BootstrapArrowDownLeft", + "BootstrapArrowDownRightCircleFill", + "BootstrapArrowDownRightCircle", + "BootstrapArrowDownRightSquareFill", + "BootstrapArrowDownRightSquare", + "BootstrapArrowDownRight", + "BootstrapArrowDownShort", + "BootstrapArrowDownSquareFill", + "BootstrapArrowDownSquare", + "BootstrapArrowDownUp", + "BootstrapArrowDown", + "BootstrapArrowLeftCircleFill", + "BootstrapArrowLeftCircle", + "BootstrapArrowLeftRight", + "BootstrapArrowLeftShort", + "BootstrapArrowLeftSquareFill", + "BootstrapArrowLeftSquare", + "BootstrapArrowLeft", + "BootstrapArrowRepeat", + "BootstrapArrowReturnLeft", + "BootstrapArrowReturnRight", + "BootstrapArrowRightCircleFill", + "BootstrapArrowRightCircle", + "BootstrapArrowRightShort", + "BootstrapArrowRightSquareFill", + "BootstrapArrowRightSquare", + "BootstrapArrowRight", + "BootstrapArrowThroughHeartFill", + "BootstrapArrowThroughHeart", + "BootstrapArrowUpCircleFill", + "BootstrapArrowUpCircle", + "BootstrapArrowUpLeftCircleFill", + "BootstrapArrowUpLeftCircle", + "BootstrapArrowUpLeftSquareFill", + "BootstrapArrowUpLeftSquare", + "BootstrapArrowUpLeft", + "BootstrapArrowUpRightCircleFill", + "BootstrapArrowUpRightCircle", + "BootstrapArrowUpRightSquareFill", + "BootstrapArrowUpRightSquare", + "BootstrapArrowUpRight", + "BootstrapArrowUpShort", + "BootstrapArrowUpSquareFill", + "BootstrapArrowUpSquare", + "BootstrapArrowUp", + "BootstrapArrowsAngleContract", + "BootstrapArrowsAngleExpand", + "BootstrapArrowsCollapse", + "BootstrapArrowsExpand", + "BootstrapArrowsFullscreen", + "BootstrapArrowsMove", + "BootstrapAspectRatioFill", + "BootstrapAspectRatio", + "BootstrapAsterisk", + "BootstrapAt", + "BootstrapAwardFill", + "BootstrapAward", + "BootstrapBack", + "BootstrapBackspaceFill", + "BootstrapBackspaceReverseFill", + "BootstrapBackspaceReverse", + "BootstrapBackspace", + "BootstrapBadge3DFill", + "BootstrapBadge3D", + "BootstrapBadge4KFill", + "BootstrapBadge4K", + "BootstrapBadge8KFill", + "BootstrapBadge8K", + "BootstrapBadgeAdFill", + "BootstrapBadgeAd", + "BootstrapBadgeArFill", + "BootstrapBadgeAr", + "BootstrapBadgeCcFill", + "BootstrapBadgeCc", + "BootstrapBadgeHdFill", + "BootstrapBadgeHd", + "BootstrapBadgeSdFill", + "BootstrapBadgeSd", + "BootstrapBadgeTmFill", + "BootstrapBadgeTm", + "BootstrapBadgeVoFill", + "BootstrapBadgeVo", + "BootstrapBadgeVrFill", + "BootstrapBadgeVr", + "BootstrapBadgeWcFill", + "BootstrapBadgeWc", + "BootstrapBagCheckFill", + "BootstrapBagCheck", + "BootstrapBagDashFill", + "BootstrapBagDash", + "BootstrapBagFill", + "BootstrapBagHeartFill", + "BootstrapBagHeart", + "BootstrapBagPlusFill", + "BootstrapBagPlus", + "BootstrapBagXFill", + "BootstrapBagX", + "BootstrapBag", + "BootstrapBalloonFill", + "BootstrapBalloonHeartFill", + "BootstrapBalloonHeart", + "BootstrapBalloon", + "BootstrapBandaidFill", + "BootstrapBandaid", + "BootstrapBank", + "BootstrapBank2", + "BootstrapBarChartFill", + "BootstrapBarChartLineFill", + "BootstrapBarChartLine", + "BootstrapBarChartSteps", + "BootstrapBarChart", + "BootstrapBasketFill", + "BootstrapBasket", + "BootstrapBasket2Fill", + "BootstrapBasket2", + "BootstrapBasket3Fill", + "BootstrapBasket3", + "BootstrapBatteryCharging", + "BootstrapBatteryFull", + "BootstrapBatteryHalf", + "BootstrapBattery", + "BootstrapBehance", + "BootstrapBellFill", + "BootstrapBellSlashFill", + "BootstrapBellSlash", + "BootstrapBell", + "BootstrapBezier", + "BootstrapBezier2", + "BootstrapBicycle", + "BootstrapBinocularsFill", + "BootstrapBinoculars", + "BootstrapBlockquoteLeft", + "BootstrapBlockquoteRight", + "BootstrapBluetooth", + "BootstrapBodyText", + "BootstrapBookFill", + "BootstrapBookHalf", + "BootstrapBook", + "BootstrapBookmarkCheckFill", + "BootstrapBookmarkCheck", + "BootstrapBookmarkDashFill", + "BootstrapBookmarkDash", + "BootstrapBookmarkFill", + "BootstrapBookmarkHeartFill", + "BootstrapBookmarkHeart", + "BootstrapBookmarkPlusFill", + "BootstrapBookmarkPlus", + "BootstrapBookmarkStarFill", + "BootstrapBookmarkStar", + "BootstrapBookmarkXFill", + "BootstrapBookmarkX", + "BootstrapBookmark", + "BootstrapBookmarksFill", + "BootstrapBookmarks", + "BootstrapBookshelf", + "BootstrapBoomboxFill", + "BootstrapBoombox", + "BootstrapBootstrapFill", + "BootstrapBootstrapReboot", + "BootstrapBootstrap", + "BootstrapBorderAll", + "BootstrapBorderBottom", + "BootstrapBorderCenter", + "BootstrapBorderInner", + "BootstrapBorderLeft", + "BootstrapBorderMiddle", + "BootstrapBorderOuter", + "BootstrapBorderRight", + "BootstrapBorderStyle", + "BootstrapBorderTop", + "BootstrapBorderWidth", + "BootstrapBorder", + "BootstrapBoundingBoxCircles", + "BootstrapBoundingBox", + "BootstrapBoxArrowDownLeft", + "BootstrapBoxArrowDownRight", + "BootstrapBoxArrowDown", + "BootstrapBoxArrowInDownLeft", + "BootstrapBoxArrowInDownRight", + "BootstrapBoxArrowInDown", + "BootstrapBoxArrowInLeft", + "BootstrapBoxArrowInRight", + "BootstrapBoxArrowInUpLeft", + "BootstrapBoxArrowInUpRight", + "BootstrapBoxArrowInUp", + "BootstrapBoxArrowLeft", + "BootstrapBoxArrowRight", + "BootstrapBoxArrowUpLeft", + "BootstrapBoxArrowUpRight", + "BootstrapBoxArrowUp", + "BootstrapBoxFill", + "BootstrapBoxSeamFill", + "BootstrapBoxSeam", + "BootstrapBox", + "BootstrapBox2Fill", + "BootstrapBox2HeartFill", + "BootstrapBox2Heart", + "BootstrapBox2", + "BootstrapBoxes", + "BootstrapBracesAsterisk", + "BootstrapBraces", + "BootstrapBricks", + "BootstrapBriefcaseFill", + "BootstrapBriefcase", + "BootstrapBrightnessAltHighFill", + "BootstrapBrightnessAltHigh", + "BootstrapBrightnessAltLowFill", + "BootstrapBrightnessAltLow", + "BootstrapBrightnessHighFill", + "BootstrapBrightnessHigh", + "BootstrapBrightnessLowFill", + "BootstrapBrightnessLow", + "BootstrapBroadcastPin", + "BootstrapBroadcast", + "BootstrapBrowserChrome", + "BootstrapBrowserEdge", + "BootstrapBrowserFirefox", + "BootstrapBrowserSafari", + "BootstrapBrushFill", + "BootstrapBrush", + "BootstrapBucketFill", + "BootstrapBucket", + "BootstrapBugFill", + "BootstrapBug", + "BootstrapBuildingAdd", + "BootstrapBuildingCheck", + "BootstrapBuildingDash", + "BootstrapBuildingDown", + "BootstrapBuildingExclamation", + "BootstrapBuildingFillAdd", + "BootstrapBuildingFillCheck", + "BootstrapBuildingFillDash", + "BootstrapBuildingFillDown", + "BootstrapBuildingFillExclamation", + "BootstrapBuildingFillGear", + "BootstrapBuildingFillLock", + "BootstrapBuildingFillSlash", + "BootstrapBuildingFillUp", + "BootstrapBuildingFillX", + "BootstrapBuildingFill", + "BootstrapBuildingGear", + "BootstrapBuildingLock", + "BootstrapBuildingSlash", + "BootstrapBuildingUp", + "BootstrapBuildingX", + "BootstrapBuilding", + "BootstrapBuildingsFill", + "BootstrapBuildings", + "BootstrapBullseye", + "BootstrapBusFrontFill", + "BootstrapBusFront", + "BootstrapCCircleFill", + "BootstrapCCircle", + "BootstrapCSquareFill", + "BootstrapCSquare", + "BootstrapCalculatorFill", + "BootstrapCalculator", + "BootstrapCalendarCheckFill", + "BootstrapCalendarCheck", + "BootstrapCalendarDateFill", + "BootstrapCalendarDate", + "BootstrapCalendarDayFill", + "BootstrapCalendarDay", + "BootstrapCalendarEventFill", + "BootstrapCalendarEvent", + "BootstrapCalendarFill", + "BootstrapCalendarHeartFill", + "BootstrapCalendarHeart", + "BootstrapCalendarMinusFill", + "BootstrapCalendarMinus", + "BootstrapCalendarMonthFill", + "BootstrapCalendarMonth", + "BootstrapCalendarPlusFill", + "BootstrapCalendarPlus", + "BootstrapCalendarRangeFill", + "BootstrapCalendarRange", + "BootstrapCalendarWeekFill", + "BootstrapCalendarWeek", + "BootstrapCalendarXFill", + "BootstrapCalendarX", + "BootstrapCalendar", + "BootstrapCalendar2CheckFill", + "BootstrapCalendar2Check", + "BootstrapCalendar2DateFill", + "BootstrapCalendar2Date", + "BootstrapCalendar2DayFill", + "BootstrapCalendar2Day", + "BootstrapCalendar2EventFill", + "BootstrapCalendar2Event", + "BootstrapCalendar2Fill", + "BootstrapCalendar2HeartFill", + "BootstrapCalendar2Heart", + "BootstrapCalendar2MinusFill", + "BootstrapCalendar2Minus", + "BootstrapCalendar2MonthFill", + "BootstrapCalendar2Month", + "BootstrapCalendar2PlusFill", + "BootstrapCalendar2Plus", + "BootstrapCalendar2RangeFill", + "BootstrapCalendar2Range", + "BootstrapCalendar2WeekFill", + "BootstrapCalendar2Week", + "BootstrapCalendar2XFill", + "BootstrapCalendar2X", + "BootstrapCalendar2", + "BootstrapCalendar3EventFill", + "BootstrapCalendar3Event", + "BootstrapCalendar3Fill", + "BootstrapCalendar3RangeFill", + "BootstrapCalendar3Range", + "BootstrapCalendar3WeekFill", + "BootstrapCalendar3Week", + "BootstrapCalendar3", + "BootstrapCalendar4Event", + "BootstrapCalendar4Range", + "BootstrapCalendar4Week", + "BootstrapCalendar4", + "BootstrapCameraFill", + "BootstrapCameraReelsFill", + "BootstrapCameraReels", + "BootstrapCameraVideoFill", + "BootstrapCameraVideoOffFill", + "BootstrapCameraVideoOff", + "BootstrapCameraVideo", + "BootstrapCamera", + "BootstrapCamera2", + "BootstrapCapslockFill", + "BootstrapCapslock", + "BootstrapCapsulePill", + "BootstrapCapsule", + "BootstrapCarFrontFill", + "BootstrapCarFront", + "BootstrapCardChecklist", + "BootstrapCardHeading", + "BootstrapCardImage", + "BootstrapCardList", + "BootstrapCardText", + "BootstrapCaretDownFill", + "BootstrapCaretDownSquareFill", + "BootstrapCaretDownSquare", + "BootstrapCaretDown", + "BootstrapCaretLeftFill", + "BootstrapCaretLeftSquareFill", + "BootstrapCaretLeftSquare", + "BootstrapCaretLeft", + "BootstrapCaretRightFill", + "BootstrapCaretRightSquareFill", + "BootstrapCaretRightSquare", + "BootstrapCaretRight", + "BootstrapCaretUpFill", + "BootstrapCaretUpSquareFill", + "BootstrapCaretUpSquare", + "BootstrapCaretUp", + "BootstrapCartCheckFill", + "BootstrapCartCheck", + "BootstrapCartDashFill", + "BootstrapCartDash", + "BootstrapCartFill", + "BootstrapCartPlusFill", + "BootstrapCartPlus", + "BootstrapCartXFill", + "BootstrapCartX", + "BootstrapCart", + "BootstrapCart2", + "BootstrapCart3", + "BootstrapCart4", + "BootstrapCashCoin", + "BootstrapCashStack", + "BootstrapCash", + "BootstrapCassetteFill", + "BootstrapCassette", + "BootstrapCast", + "BootstrapCcCircleFill", + "BootstrapCcCircle", + "BootstrapCcSquareFill", + "BootstrapCcSquare", + "BootstrapChatDotsFill", + "BootstrapChatDots", + "BootstrapChatFill", + "BootstrapChatHeartFill", + "BootstrapChatHeart", + "BootstrapChatLeftDotsFill", + "BootstrapChatLeftDots", + "BootstrapChatLeftFill", + "BootstrapChatLeftHeartFill", + "BootstrapChatLeftHeart", + "BootstrapChatLeftQuoteFill", + "BootstrapChatLeftQuote", + "BootstrapChatLeftTextFill", + "BootstrapChatLeftText", + "BootstrapChatLeft", + "BootstrapChatQuoteFill", + "BootstrapChatQuote", + "BootstrapChatRightDotsFill", + "BootstrapChatRightDots", + "BootstrapChatRightFill", + "BootstrapChatRightHeartFill", + "BootstrapChatRightHeart", + "BootstrapChatRightQuoteFill", + "BootstrapChatRightQuote", + "BootstrapChatRightTextFill", + "BootstrapChatRightText", + "BootstrapChatRight", + "BootstrapChatSquareDotsFill", + "BootstrapChatSquareDots", + "BootstrapChatSquareFill", + "BootstrapChatSquareHeartFill", + "BootstrapChatSquareHeart", + "BootstrapChatSquareQuoteFill", + "BootstrapChatSquareQuote", + "BootstrapChatSquareTextFill", + "BootstrapChatSquareText", + "BootstrapChatSquare", + "BootstrapChatTextFill", + "BootstrapChatText", + "BootstrapChat", + "BootstrapCheckAll", + "BootstrapCheckCircleFill", + "BootstrapCheckCircle", + "BootstrapCheckLg", + "BootstrapCheckSquareFill", + "BootstrapCheckSquare", + "BootstrapCheck", + "BootstrapCheck2All", + "BootstrapCheck2Circle", + "BootstrapCheck2Square", + "BootstrapCheck2", + "BootstrapChevronBarContract", + "BootstrapChevronBarDown", + "BootstrapChevronBarExpand", + "BootstrapChevronBarLeft", + "BootstrapChevronBarRight", + "BootstrapChevronBarUp", + "BootstrapChevronCompactDown", + "BootstrapChevronCompactLeft", + "BootstrapChevronCompactRight", + "BootstrapChevronCompactUp", + "BootstrapChevronContract", + "BootstrapChevronDoubleDown", + "BootstrapChevronDoubleLeft", + "BootstrapChevronDoubleRight", + "BootstrapChevronDoubleUp", + "BootstrapChevronDown", + "BootstrapChevronExpand", + "BootstrapChevronLeft", + "BootstrapChevronRight", + "BootstrapChevronUp", + "BootstrapCircleFill", + "BootstrapCircleHalf", + "BootstrapCircleSquare", + "BootstrapCircle", + "BootstrapClipboardCheckFill", + "BootstrapClipboardCheck", + "BootstrapClipboardDataFill", + "BootstrapClipboardData", + "BootstrapClipboardFill", + "BootstrapClipboardHeartFill", + "BootstrapClipboardHeart", + "BootstrapClipboardMinusFill", + "BootstrapClipboardMinus", + "BootstrapClipboardPlusFill", + "BootstrapClipboardPlus", + "BootstrapClipboardPulse", + "BootstrapClipboardXFill", + "BootstrapClipboardX", + "BootstrapClipboard", + "BootstrapClipboard2CheckFill", + "BootstrapClipboard2Check", + "BootstrapClipboard2DataFill", + "BootstrapClipboard2Data", + "BootstrapClipboard2Fill", + "BootstrapClipboard2HeartFill", + "BootstrapClipboard2Heart", + "BootstrapClipboard2MinusFill", + "BootstrapClipboard2Minus", + "BootstrapClipboard2PlusFill", + "BootstrapClipboard2Plus", + "BootstrapClipboard2PulseFill", + "BootstrapClipboard2Pulse", + "BootstrapClipboard2XFill", + "BootstrapClipboard2X", + "BootstrapClipboard2", + "BootstrapClockFill", + "BootstrapClockHistory", + "BootstrapClock", + "BootstrapCloudArrowDownFill", + "BootstrapCloudArrowDown", + "BootstrapCloudArrowUpFill", + "BootstrapCloudArrowUp", + "BootstrapCloudCheckFill", + "BootstrapCloudCheck", + "BootstrapCloudDownloadFill", + "BootstrapCloudDownload", + "BootstrapCloudDrizzleFill", + "BootstrapCloudDrizzle", + "BootstrapCloudFill", + "BootstrapCloudFogFill", + "BootstrapCloudFog", + "BootstrapCloudFog2Fill", + "BootstrapCloudFog2", + "BootstrapCloudHailFill", + "BootstrapCloudHail", + "BootstrapCloudHazeFill", + "BootstrapCloudHaze", + "BootstrapCloudHaze2Fill", + "BootstrapCloudHaze2", + "BootstrapCloudLightningFill", + "BootstrapCloudLightningRainFill", + "BootstrapCloudLightningRain", + "BootstrapCloudLightning", + "BootstrapCloudMinusFill", + "BootstrapCloudMinus", + "BootstrapCloudMoonFill", + "BootstrapCloudMoon", + "BootstrapCloudPlusFill", + "BootstrapCloudPlus", + "BootstrapCloudRainFill", + "BootstrapCloudRainHeavyFill", + "BootstrapCloudRainHeavy", + "BootstrapCloudRain", + "BootstrapCloudSlashFill", + "BootstrapCloudSlash", + "BootstrapCloudSleetFill", + "BootstrapCloudSleet", + "BootstrapCloudSnowFill", + "BootstrapCloudSnow", + "BootstrapCloudSunFill", + "BootstrapCloudSun", + "BootstrapCloudUploadFill", + "BootstrapCloudUpload", + "BootstrapCloud", + "BootstrapCloudsFill", + "BootstrapClouds", + "BootstrapCloudyFill", + "BootstrapCloudy", + "BootstrapCodeSlash", + "BootstrapCodeSquare", + "BootstrapCode", + "BootstrapCoin", + "BootstrapCollectionFill", + "BootstrapCollectionPlayFill", + "BootstrapCollectionPlay", + "BootstrapCollection", + "BootstrapColumnsGap", + "BootstrapColumns", + "BootstrapCommand", + "BootstrapCompassFill", + "BootstrapCompass", + "BootstrapConeStriped", + "BootstrapCone", + "BootstrapController", + "BootstrapCpuFill", + "BootstrapCpu", + "BootstrapCreditCard2BackFill", + "BootstrapCreditCard2Back", + "BootstrapCreditCard2FrontFill", + "BootstrapCreditCard2Front", + "BootstrapCreditCardFill", + "BootstrapCreditCard", + "BootstrapCrop", + "BootstrapCupFill", + "BootstrapCupHotFill", + "BootstrapCupHot", + "BootstrapCupStraw", + "BootstrapCup", + "BootstrapCurrencyBitcoin", + "BootstrapCurrencyDollar", + "BootstrapCurrencyEuro", + "BootstrapCurrencyExchange", + "BootstrapCurrencyPound", + "BootstrapCurrencyRupee", + "BootstrapCurrencyYen", + "BootstrapCursorFill", + "BootstrapCursorText", + "BootstrapCursor", + "BootstrapDashCircleDotted", + "BootstrapDashCircleFill", + "BootstrapDashCircle", + "BootstrapDashLg", + "BootstrapDashSquareDotted", + "BootstrapDashSquareFill", + "BootstrapDashSquare", + "BootstrapDash", + "BootstrapDatabaseAdd", + "BootstrapDatabaseCheck", + "BootstrapDatabaseDash", + "BootstrapDatabaseDown", + "BootstrapDatabaseExclamation", + "BootstrapDatabaseFillAdd", + "BootstrapDatabaseFillCheck", + "BootstrapDatabaseFillDash", + "BootstrapDatabaseFillDown", + "BootstrapDatabaseFillExclamation", + "BootstrapDatabaseFillGear", + "BootstrapDatabaseFillLock", + "BootstrapDatabaseFillSlash", + "BootstrapDatabaseFillUp", + "BootstrapDatabaseFillX", + "BootstrapDatabaseFill", + "BootstrapDatabaseGear", + "BootstrapDatabaseLock", + "BootstrapDatabaseSlash", + "BootstrapDatabaseUp", + "BootstrapDatabaseX", + "BootstrapDatabase", + "BootstrapDeviceHddFill", + "BootstrapDeviceHdd", + "BootstrapDeviceSsdFill", + "BootstrapDeviceSsd", + "BootstrapDiagram2Fill", + "BootstrapDiagram2", + "BootstrapDiagram3Fill", + "BootstrapDiagram3", + "BootstrapDiamondFill", + "BootstrapDiamondHalf", + "BootstrapDiamond", + "BootstrapDice1Fill", + "BootstrapDice1", + "BootstrapDice2Fill", + "BootstrapDice2", + "BootstrapDice3Fill", + "BootstrapDice3", + "BootstrapDice4Fill", + "BootstrapDice4", + "BootstrapDice5Fill", + "BootstrapDice5", + "BootstrapDice6Fill", + "BootstrapDice6", + "BootstrapDiscFill", + "BootstrapDisc", + "BootstrapDiscord", + "BootstrapDisplayFill", + "BootstrapDisplay", + "BootstrapDisplayportFill", + "BootstrapDisplayport", + "BootstrapDistributeHorizontal", + "BootstrapDistributeVertical", + "BootstrapDoorClosedFill", + "BootstrapDoorClosed", + "BootstrapDoorOpenFill", + "BootstrapDoorOpen", + "BootstrapDot", + "BootstrapDownload", + "BootstrapDpadFill", + "BootstrapDpad", + "BootstrapDribbble", + "BootstrapDropbox", + "BootstrapDropletFill", + "BootstrapDropletHalf", + "BootstrapDroplet", + "BootstrapEarFill", + "BootstrapEar", + "BootstrapEarbuds", + "BootstrapEaselFill", + "BootstrapEasel", + "BootstrapEasel2Fill", + "BootstrapEasel2", + "BootstrapEasel3Fill", + "BootstrapEasel3", + "BootstrapEggFill", + "BootstrapEggFried", + "BootstrapEgg", + "BootstrapEjectFill", + "BootstrapEject", + "BootstrapEmojiAngryFill", + "BootstrapEmojiAngry", + "BootstrapEmojiDizzyFill", + "BootstrapEmojiDizzy", + "BootstrapEmojiExpressionlessFill", + "BootstrapEmojiExpressionless", + "BootstrapEmojiFrownFill", + "BootstrapEmojiFrown", + "BootstrapEmojiHeartEyesFill", + "BootstrapEmojiHeartEyes", + "BootstrapEmojiKissFill", + "BootstrapEmojiKiss", + "BootstrapEmojiLaughingFill", + "BootstrapEmojiLaughing", + "BootstrapEmojiNeutralFill", + "BootstrapEmojiNeutral", + "BootstrapEmojiSmileFill", + "BootstrapEmojiSmileUpsideDownFill", + "BootstrapEmojiSmileUpsideDown", + "BootstrapEmojiSmile", + "BootstrapEmojiSunglassesFill", + "BootstrapEmojiSunglasses", + "BootstrapEmojiWinkFill", + "BootstrapEmojiWink", + "BootstrapEnvelopeAtFill", + "BootstrapEnvelopeAt", + "BootstrapEnvelopeCheckFill", + "BootstrapEnvelopeCheck", + "BootstrapEnvelopeDashFill", + "BootstrapEnvelopeDash", + "BootstrapEnvelopeExclamationFill", + "BootstrapEnvelopeExclamation", + "BootstrapEnvelopeFill", + "BootstrapEnvelopeHeartFill", + "BootstrapEnvelopeHeart", + "BootstrapEnvelopeOpenFill", + "BootstrapEnvelopeOpenHeartFill", + "BootstrapEnvelopeOpenHeart", + "BootstrapEnvelopeOpen", + "BootstrapEnvelopePaperFill", + "BootstrapEnvelopePaperHeartFill", + "BootstrapEnvelopePaperHeart", + "BootstrapEnvelopePaper", + "BootstrapEnvelopePlusFill", + "BootstrapEnvelopePlus", + "BootstrapEnvelopeSlashFill", + "BootstrapEnvelopeSlash", + "BootstrapEnvelopeXFill", + "BootstrapEnvelopeX", + "BootstrapEnvelope", + "BootstrapEraserFill", + "BootstrapEraser", + "BootstrapEscape", + "BootstrapEthernet", + "BootstrapEvFrontFill", + "BootstrapEvFront", + "BootstrapEvStationFill", + "BootstrapEvStation", + "BootstrapExclamationCircleFill", + "BootstrapExclamationCircle", + "BootstrapExclamationDiamondFill", + "BootstrapExclamationDiamond", + "BootstrapExclamationLg", + "BootstrapExclamationOctagonFill", + "BootstrapExclamationOctagon", + "BootstrapExclamationSquareFill", + "BootstrapExclamationSquare", + "BootstrapExclamationTriangleFill", + "BootstrapExclamationTriangle", + "BootstrapExclamation", + "BootstrapExclude", + "BootstrapExplicitFill", + "BootstrapExplicit", + "BootstrapEyeFill", + "BootstrapEyeSlashFill", + "BootstrapEyeSlash", + "BootstrapEye", + "BootstrapEyedropper", + "BootstrapEyeglasses", + "BootstrapFacebook", + "BootstrapFan", + "BootstrapFastForwardBtnFill", + "BootstrapFastForwardBtn", + "BootstrapFastForwardCircleFill", + "BootstrapFastForwardCircle", + "BootstrapFastForwardFill", + "BootstrapFastForward", + "BootstrapFileArrowDownFill", + "BootstrapFileArrowDown", + "BootstrapFileArrowUpFill", + "BootstrapFileArrowUp", + "BootstrapFileBarGraphFill", + "BootstrapFileBarGraph", + "BootstrapFileBinaryFill", + "BootstrapFileBinary", + "BootstrapFileBreakFill", + "BootstrapFileBreak", + "BootstrapFileCheckFill", + "BootstrapFileCheck", + "BootstrapFileCodeFill", + "BootstrapFileCode", + "BootstrapFileDiffFill", + "BootstrapFileDiff", + "BootstrapFileEarmarkArrowDownFill", + "BootstrapFileEarmarkArrowDown", + "BootstrapFileEarmarkArrowUpFill", + "BootstrapFileEarmarkArrowUp", + "BootstrapFileEarmarkBarGraphFill", + "BootstrapFileEarmarkBarGraph", + "BootstrapFileEarmarkBinaryFill", + "BootstrapFileEarmarkBinary", + "BootstrapFileEarmarkBreakFill", + "BootstrapFileEarmarkBreak", + "BootstrapFileEarmarkCheckFill", + "BootstrapFileEarmarkCheck", + "BootstrapFileEarmarkCodeFill", + "BootstrapFileEarmarkCode", + "BootstrapFileEarmarkDiffFill", + "BootstrapFileEarmarkDiff", + "BootstrapFileEarmarkEaselFill", + "BootstrapFileEarmarkEasel", + "BootstrapFileEarmarkExcelFill", + "BootstrapFileEarmarkExcel", + "BootstrapFileEarmarkFill", + "BootstrapFileEarmarkFontFill", + "BootstrapFileEarmarkFont", + "BootstrapFileEarmarkImageFill", + "BootstrapFileEarmarkImage", + "BootstrapFileEarmarkLockFill", + "BootstrapFileEarmarkLock", + "BootstrapFileEarmarkLock2Fill", + "BootstrapFileEarmarkLock2", + "BootstrapFileEarmarkMedicalFill", + "BootstrapFileEarmarkMedical", + "BootstrapFileEarmarkMinusFill", + "BootstrapFileEarmarkMinus", + "BootstrapFileEarmarkMusicFill", + "BootstrapFileEarmarkMusic", + "BootstrapFileEarmarkPdfFill", + "BootstrapFileEarmarkPdf", + "BootstrapFileEarmarkPersonFill", + "BootstrapFileEarmarkPerson", + "BootstrapFileEarmarkPlayFill", + "BootstrapFileEarmarkPlay", + "BootstrapFileEarmarkPlusFill", + "BootstrapFileEarmarkPlus", + "BootstrapFileEarmarkPostFill", + "BootstrapFileEarmarkPost", + "BootstrapFileEarmarkPptFill", + "BootstrapFileEarmarkPpt", + "BootstrapFileEarmarkRichtextFill", + "BootstrapFileEarmarkRichtext", + "BootstrapFileEarmarkRuledFill", + "BootstrapFileEarmarkRuled", + "BootstrapFileEarmarkSlidesFill", + "BootstrapFileEarmarkSlides", + "BootstrapFileEarmarkSpreadsheetFill", + "BootstrapFileEarmarkSpreadsheet", + "BootstrapFileEarmarkTextFill", + "BootstrapFileEarmarkText", + "BootstrapFileEarmarkWordFill", + "BootstrapFileEarmarkWord", + "BootstrapFileEarmarkXFill", + "BootstrapFileEarmarkX", + "BootstrapFileEarmarkZipFill", + "BootstrapFileEarmarkZip", + "BootstrapFileEarmark", + "BootstrapFileEaselFill", + "BootstrapFileEasel", + "BootstrapFileExcelFill", + "BootstrapFileExcel", + "BootstrapFileFill", + "BootstrapFileFontFill", + "BootstrapFileFont", + "BootstrapFileImageFill", + "BootstrapFileImage", + "BootstrapFileLockFill", + "BootstrapFileLock", + "BootstrapFileLock2Fill", + "BootstrapFileLock2", + "BootstrapFileMedicalFill", + "BootstrapFileMedical", + "BootstrapFileMinusFill", + "BootstrapFileMinus", + "BootstrapFileMusicFill", + "BootstrapFileMusic", + "BootstrapFilePdfFill", + "BootstrapFilePdf", + "BootstrapFilePersonFill", + "BootstrapFilePerson", + "BootstrapFilePlayFill", + "BootstrapFilePlay", + "BootstrapFilePlusFill", + "BootstrapFilePlus", + "BootstrapFilePostFill", + "BootstrapFilePost", + "BootstrapFilePptFill", + "BootstrapFilePpt", + "BootstrapFileRichtextFill", + "BootstrapFileRichtext", + "BootstrapFileRuledFill", + "BootstrapFileRuled", + "BootstrapFileSlidesFill", + "BootstrapFileSlides", + "BootstrapFileSpreadsheetFill", + "BootstrapFileSpreadsheet", + "BootstrapFileTextFill", + "BootstrapFileText", + "BootstrapFileWordFill", + "BootstrapFileWord", + "BootstrapFileXFill", + "BootstrapFileX", + "BootstrapFileZipFill", + "BootstrapFileZip", + "BootstrapFile", + "BootstrapFilesAlt", + "BootstrapFiles", + "BootstrapFiletypeAac", + "BootstrapFiletypeAi", + "BootstrapFiletypeBmp", + "BootstrapFiletypeCs", + "BootstrapFiletypeCss", + "BootstrapFiletypeCsv", + "BootstrapFiletypeDoc", + "BootstrapFiletypeDocx", + "BootstrapFiletypeExe", + "BootstrapFiletypeGif", + "BootstrapFiletypeHeic", + "BootstrapFiletypeHtml", + "BootstrapFiletypeJava", + "BootstrapFiletypeJpg", + "BootstrapFiletypeJs", + "BootstrapFiletypeJson", + "BootstrapFiletypeJsx", + "BootstrapFiletypeKey", + "BootstrapFiletypeM4P", + "BootstrapFiletypeMd", + "BootstrapFiletypeMdx", + "BootstrapFiletypeMov", + "BootstrapFiletypeMp3", + "BootstrapFiletypeMp4", + "BootstrapFiletypeOtf", + "BootstrapFiletypePdf", + "BootstrapFiletypePhp", + "BootstrapFiletypePng", + "BootstrapFiletypePpt", + "BootstrapFiletypePptx", + "BootstrapFiletypePsd", + "BootstrapFiletypePy", + "BootstrapFiletypeRaw", + "BootstrapFiletypeRb", + "BootstrapFiletypeSass", + "BootstrapFiletypeScss", + "BootstrapFiletypeSh", + "BootstrapFiletypeSql", + "BootstrapFiletypeSvg", + "BootstrapFiletypeTiff", + "BootstrapFiletypeTsx", + "BootstrapFiletypeTtf", + "BootstrapFiletypeTxt", + "BootstrapFiletypeWav", + "BootstrapFiletypeWoff", + "BootstrapFiletypeXls", + "BootstrapFiletypeXlsx", + "BootstrapFiletypeXml", + "BootstrapFiletypeYml", + "BootstrapFilm", + "BootstrapFilterCircleFill", + "BootstrapFilterCircle", + "BootstrapFilterLeft", + "BootstrapFilterRight", + "BootstrapFilterSquareFill", + "BootstrapFilterSquare", + "BootstrapFilter", + "BootstrapFingerprint", + "BootstrapFire", + "BootstrapFlagFill", + "BootstrapFlag", + "BootstrapFlower1", + "BootstrapFlower2", + "BootstrapFlower3", + "BootstrapFolderCheck", + "BootstrapFolderFill", + "BootstrapFolderMinus", + "BootstrapFolderPlus", + "BootstrapFolderSymlinkFill", + "BootstrapFolderSymlink", + "BootstrapFolderX", + "BootstrapFolder", + "BootstrapFolder2Open", + "BootstrapFolder2", + "BootstrapFonts", + "BootstrapForwardFill", + "BootstrapForward", + "BootstrapFront", + "BootstrapFuelPumpDieselFill", + "BootstrapFuelPumpDiesel", + "BootstrapFuelPumpFill", + "BootstrapFuelPump", + "BootstrapFullscreenExit", + "BootstrapFullscreen", + "BootstrapFunnelFill", + "BootstrapFunnel", + "BootstrapGearFill", + "BootstrapGearWideConnected", + "BootstrapGearWide", + "BootstrapGear", + "BootstrapGem", + "BootstrapGenderAmbiguous", + "BootstrapGenderFemale", + "BootstrapGenderMale", + "BootstrapGenderTrans", + "BootstrapGeoAltFill", + "BootstrapGeoAlt", + "BootstrapGeoFill", + "BootstrapGeo", + "BootstrapGiftFill", + "BootstrapGift", + "BootstrapGit", + "BootstrapGithub", + "BootstrapGlobeAmericas", + "BootstrapGlobeAsiaAustralia", + "BootstrapGlobeCentralSouthAsia", + "BootstrapGlobeEuropeAfrica", + "BootstrapGlobe", + "BootstrapGlobe2", + "BootstrapGooglePlay", + "BootstrapGoogle", + "BootstrapGpuCard", + "BootstrapGraphDownArrow", + "BootstrapGraphDown", + "BootstrapGraphUpArrow", + "BootstrapGraphUp", + "BootstrapGrid1X2Fill", + "BootstrapGrid1X2", + "BootstrapGrid3X2GapFill", + "BootstrapGrid3X2Gap", + "BootstrapGrid3X2", + "BootstrapGrid3X3GapFill", + "BootstrapGrid3X3Gap", + "BootstrapGrid3X3", + "BootstrapGridFill", + "BootstrapGrid", + "BootstrapGripHorizontal", + "BootstrapGripVertical", + "BootstrapHCircleFill", + "BootstrapHCircle", + "BootstrapHSquareFill", + "BootstrapHSquare", + "BootstrapHammer", + "BootstrapHandIndexFill", + "BootstrapHandIndexThumbFill", + "BootstrapHandIndexThumb", + "BootstrapHandIndex", + "BootstrapHandThumbsDownFill", + "BootstrapHandThumbsDown", + "BootstrapHandThumbsUpFill", + "BootstrapHandThumbsUp", + "BootstrapHandbagFill", + "BootstrapHandbag", + "BootstrapHash", + "BootstrapHddFill", + "BootstrapHddNetworkFill", + "BootstrapHddNetwork", + "BootstrapHddRackFill", + "BootstrapHddRack", + "BootstrapHddStackFill", + "BootstrapHddStack", + "BootstrapHdd", + "BootstrapHdmiFill", + "BootstrapHdmi", + "BootstrapHeadphones", + "BootstrapHeadsetVr", + "BootstrapHeadset", + "BootstrapHeartArrow", + "BootstrapHeartFill", + "BootstrapHeartHalf", + "BootstrapHeartPulseFill", + "BootstrapHeartPulse", + "BootstrapHeart", + "BootstrapHeartbreakFill", + "BootstrapHeartbreak", + "BootstrapHearts", + "BootstrapHeptagonFill", + "BootstrapHeptagonHalf", + "BootstrapHeptagon", + "BootstrapHexagonFill", + "BootstrapHexagonHalf", + "BootstrapHexagon", + "BootstrapHospitalFill", + "BootstrapHospital", + "BootstrapHourglassBottom", + "BootstrapHourglassSplit", + "BootstrapHourglassTop", + "BootstrapHourglass", + "BootstrapHouseAddFill", + "BootstrapHouseAdd", + "BootstrapHouseCheckFill", + "BootstrapHouseCheck", + "BootstrapHouseDashFill", + "BootstrapHouseDash", + "BootstrapHouseDoorFill", + "BootstrapHouseDoor", + "BootstrapHouseDownFill", + "BootstrapHouseDown", + "BootstrapHouseExclamationFill", + "BootstrapHouseExclamation", + "BootstrapHouseFill", + "BootstrapHouseGearFill", + "BootstrapHouseGear", + "BootstrapHouseHeartFill", + "BootstrapHouseHeart", + "BootstrapHouseLockFill", + "BootstrapHouseLock", + "BootstrapHouseSlashFill", + "BootstrapHouseSlash", + "BootstrapHouseUpFill", + "BootstrapHouseUp", + "BootstrapHouseXFill", + "BootstrapHouseX", + "BootstrapHouse", + "BootstrapHousesFill", + "BootstrapHouses", + "BootstrapHr", + "BootstrapHurricane", + "BootstrapHypnotize", + "BootstrapImageAlt", + "BootstrapImageFill", + "BootstrapImage", + "BootstrapImages", + "BootstrapInboxFill", + "BootstrapInbox", + "BootstrapInboxesFill", + "BootstrapInboxes", + "BootstrapIncognito", + "BootstrapIndent", + "BootstrapInfinity", + "BootstrapInfoCircleFill", + "BootstrapInfoCircle", + "BootstrapInfoLg", + "BootstrapInfoSquareFill", + "BootstrapInfoSquare", + "BootstrapInfo", + "BootstrapInputCursorText", + "BootstrapInputCursor", + "BootstrapInstagram", + "BootstrapIntersect", + "BootstrapJournalAlbum", + "BootstrapJournalArrowDown", + "BootstrapJournalArrowUp", + "BootstrapJournalBookmarkFill", + "BootstrapJournalBookmark", + "BootstrapJournalCheck", + "BootstrapJournalCode", + "BootstrapJournalMedical", + "BootstrapJournalMinus", + "BootstrapJournalPlus", + "BootstrapJournalRichtext", + "BootstrapJournalText", + "BootstrapJournalX", + "BootstrapJournal", + "BootstrapJournals", + "BootstrapJoystick", + "BootstrapJustifyLeft", + "BootstrapJustifyRight", + "BootstrapJustify", + "BootstrapKanbanFill", + "BootstrapKanban", + "BootstrapKeyFill", + "BootstrapKey", + "BootstrapKeyboardFill", + "BootstrapKeyboard", + "BootstrapLadder", + "BootstrapLampFill", + "BootstrapLamp", + "BootstrapLaptopFill", + "BootstrapLaptop", + "BootstrapLayerBackward", + "BootstrapLayerForward", + "BootstrapLayersFill", + "BootstrapLayersHalf", + "BootstrapLayers", + "BootstrapLayoutSidebarInsetReverse", + "BootstrapLayoutSidebarInset", + "BootstrapLayoutSidebarReverse", + "BootstrapLayoutSidebar", + "BootstrapLayoutSplit", + "BootstrapLayoutTextSidebarReverse", + "BootstrapLayoutTextSidebar", + "BootstrapLayoutTextWindowReverse", + "BootstrapLayoutTextWindow", + "BootstrapLayoutThreeColumns", + "BootstrapLayoutWtf", + "BootstrapLifePreserver", + "BootstrapLightbulbFill", + "BootstrapLightbulbOffFill", + "BootstrapLightbulbOff", + "BootstrapLightbulb", + "BootstrapLightningChargeFill", + "BootstrapLightningCharge", + "BootstrapLightningFill", + "BootstrapLightning", + "BootstrapLine", + "BootstrapLink45Deg", + "BootstrapLink", + "BootstrapLinkedin", + "BootstrapListCheck", + "BootstrapListColumnsReverse", + "BootstrapListColumns", + "BootstrapListNested", + "BootstrapListOl", + "BootstrapListStars", + "BootstrapListTask", + "BootstrapListUl", + "BootstrapList", + "BootstrapLockFill", + "BootstrapLock", + "BootstrapLungsFill", + "BootstrapLungs", + "BootstrapMagic", + "BootstrapMagnetFill", + "BootstrapMagnet", + "BootstrapMailbox", + "BootstrapMailbox2", + "BootstrapMapFill", + "BootstrapMap", + "BootstrapMarkdownFill", + "BootstrapMarkdown", + "BootstrapMask", + "BootstrapMastodon", + "BootstrapMedium", + "BootstrapMegaphoneFill", + "BootstrapMegaphone", + "BootstrapMemory", + "BootstrapMenuAppFill", + "BootstrapMenuApp", + "BootstrapMenuButtonFill", + "BootstrapMenuButtonWideFill", + "BootstrapMenuButtonWide", + "BootstrapMenuButton", + "BootstrapMenuDown", + "BootstrapMenuUp", + "BootstrapMessenger", + "BootstrapMeta", + "BootstrapMicFill", + "BootstrapMicMuteFill", + "BootstrapMicMute", + "BootstrapMic", + "BootstrapMicrosoftTeams", + "BootstrapMicrosoft", + "BootstrapMinecartLoaded", + "BootstrapMinecart", + "BootstrapModemFill", + "BootstrapModem", + "BootstrapMoisture", + "BootstrapMoonFill", + "BootstrapMoonStarsFill", + "BootstrapMoonStars", + "BootstrapMoon", + "BootstrapMortarboardFill", + "BootstrapMortarboard", + "BootstrapMotherboardFill", + "BootstrapMotherboard", + "BootstrapMouseFill", + "BootstrapMouse", + "BootstrapMouse2Fill", + "BootstrapMouse2", + "BootstrapMouse3Fill", + "BootstrapMouse3", + "BootstrapMusicNoteBeamed", + "BootstrapMusicNoteList", + "BootstrapMusicNote", + "BootstrapMusicPlayerFill", + "BootstrapMusicPlayer", + "BootstrapNewspaper", + "BootstrapNintendoSwitch", + "BootstrapNodeMinusFill", + "BootstrapNodeMinus", + "BootstrapNodePlusFill", + "BootstrapNodePlus", + "BootstrapNutFill", + "BootstrapNut", + "BootstrapNvidia", + "BootstrapOctagonFill", + "BootstrapOctagonHalf", + "BootstrapOctagon", + "BootstrapOpticalAudioFill", + "BootstrapOpticalAudio", + "BootstrapOption", + "BootstrapOutlet", + "BootstrapPCircleFill", + "BootstrapPCircle", + "BootstrapPSquareFill", + "BootstrapPSquare", + "BootstrapPaintBucket", + "BootstrapPaletteFill", + "BootstrapPalette", + "BootstrapPalette2", + "BootstrapPaperclip", + "BootstrapParagraph", + "BootstrapPassFill", + "BootstrapPass", + "BootstrapPatchCheckFill", + "BootstrapPatchCheck", + "BootstrapPatchExclamationFill", + "BootstrapPatchExclamation", + "BootstrapPatchMinusFill", + "BootstrapPatchMinus", + "BootstrapPatchPlusFill", + "BootstrapPatchPlus", + "BootstrapPatchQuestionFill", + "BootstrapPatchQuestion", + "BootstrapPauseBtnFill", + "BootstrapPauseBtn", + "BootstrapPauseCircleFill", + "BootstrapPauseCircle", + "BootstrapPauseFill", + "BootstrapPause", + "BootstrapPaypal", + "BootstrapPcDisplayHorizontal", + "BootstrapPcDisplay", + "BootstrapPcHorizontal", + "BootstrapPc", + "BootstrapPciCard", + "BootstrapPeaceFill", + "BootstrapPeace", + "BootstrapPenFill", + "BootstrapPen", + "BootstrapPencilFill", + "BootstrapPencilSquare", + "BootstrapPencil", + "BootstrapPentagonFill", + "BootstrapPentagonHalf", + "BootstrapPentagon", + "BootstrapPeopleFill", + "BootstrapPeople", + "BootstrapPercent", + "BootstrapPersonAdd", + "BootstrapPersonBadgeFill", + "BootstrapPersonBadge", + "BootstrapPersonBoundingBox", + "BootstrapPersonCheckFill", + "BootstrapPersonCheck", + "BootstrapPersonCircle", + "BootstrapPersonDashFill", + "BootstrapPersonDash", + "BootstrapPersonDown", + "BootstrapPersonExclamation", + "BootstrapPersonFillAdd", + "BootstrapPersonFillCheck", + "BootstrapPersonFillDash", + "BootstrapPersonFillDown", + "BootstrapPersonFillExclamation", + "BootstrapPersonFillGear", + "BootstrapPersonFillLock", + "BootstrapPersonFillSlash", + "BootstrapPersonFillUp", + "BootstrapPersonFillX", + "BootstrapPersonFill", + "BootstrapPersonGear", + "BootstrapPersonHeart", + "BootstrapPersonHearts", + "BootstrapPersonLinesFill", + "BootstrapPersonLock", + "BootstrapPersonPlusFill", + "BootstrapPersonPlus", + "BootstrapPersonRolodex", + "BootstrapPersonSlash", + "BootstrapPersonSquare", + "BootstrapPersonUp", + "BootstrapPersonVcardFill", + "BootstrapPersonVcard", + "BootstrapPersonVideo", + "BootstrapPersonVideo2", + "BootstrapPersonVideo3", + "BootstrapPersonWorkspace", + "BootstrapPersonXFill", + "BootstrapPersonX", + "BootstrapPerson", + "BootstrapPhoneFill", + "BootstrapPhoneFlip", + "BootstrapPhoneLandscapeFill", + "BootstrapPhoneLandscape", + "BootstrapPhoneVibrateFill", + "BootstrapPhoneVibrate", + "BootstrapPhone", + "BootstrapPieChartFill", + "BootstrapPieChart", + "BootstrapPiggyBankFill", + "BootstrapPiggyBank", + "BootstrapPinAngleFill", + "BootstrapPinAngle", + "BootstrapPinFill", + "BootstrapPinMapFill", + "BootstrapPinMap", + "BootstrapPin", + "BootstrapPinterest", + "BootstrapPipFill", + "BootstrapPip", + "BootstrapPlayBtnFill", + "BootstrapPlayBtn", + "BootstrapPlayCircleFill", + "BootstrapPlayCircle", + "BootstrapPlayFill", + "BootstrapPlay", + "BootstrapPlaystation", + "BootstrapPlugFill", + "BootstrapPlug", + "BootstrapPlugin", + "BootstrapPlusCircleDotted", + "BootstrapPlusCircleFill", + "BootstrapPlusCircle", + "BootstrapPlusLg", + "BootstrapPlusSlashMinus", + "BootstrapPlusSquareDotted", + "BootstrapPlusSquareFill", + "BootstrapPlusSquare", + "BootstrapPlus", + "BootstrapPostageFill", + "BootstrapPostageHeartFill", + "BootstrapPostageHeart", + "BootstrapPostage", + "BootstrapPostcardFill", + "BootstrapPostcardHeartFill", + "BootstrapPostcardHeart", + "BootstrapPostcard", + "BootstrapPower", + "BootstrapPrescription", + "BootstrapPrescription2", + "BootstrapPrinterFill", + "BootstrapPrinter", + "BootstrapProjectorFill", + "BootstrapProjector", + "BootstrapPuzzleFill", + "BootstrapPuzzle", + "BootstrapQrCodeScan", + "BootstrapQrCode", + "BootstrapQuestionCircleFill", + "BootstrapQuestionCircle", + "BootstrapQuestionDiamondFill", + "BootstrapQuestionDiamond", + "BootstrapQuestionLg", + "BootstrapQuestionOctagonFill", + "BootstrapQuestionOctagon", + "BootstrapQuestionSquareFill", + "BootstrapQuestionSquare", + "BootstrapQuestion", + "BootstrapQuora", + "BootstrapQuote", + "BootstrapRCircleFill", + "BootstrapRCircle", + "BootstrapRSquareFill", + "BootstrapRSquare", + "BootstrapRadioactive", + "BootstrapRainbow", + "BootstrapReceiptCutoff", + "BootstrapReceipt", + "BootstrapReception0", + "BootstrapReception1", + "BootstrapReception2", + "BootstrapReception3", + "BootstrapReception4", + "BootstrapRecordBtnFill", + "BootstrapRecordBtn", + "BootstrapRecordCircleFill", + "BootstrapRecordCircle", + "BootstrapRecordFill", + "BootstrapRecord", + "BootstrapRecord2Fill", + "BootstrapRecord2", + "BootstrapRecycle", + "BootstrapReddit", + "BootstrapRegex", + "BootstrapRepeat1", + "BootstrapRepeat", + "BootstrapReplyAllFill", + "BootstrapReplyAll", + "BootstrapReplyFill", + "BootstrapReply", + "BootstrapRewindBtnFill", + "BootstrapRewindBtn", + "BootstrapRewindCircleFill", + "BootstrapRewindCircle", + "BootstrapRewindFill", + "BootstrapRewind", + "BootstrapRobot", + "BootstrapRocketFill", + "BootstrapRocketTakeoffFill", + "BootstrapRocketTakeoff", + "BootstrapRocket", + "BootstrapRouterFill", + "BootstrapRouter", + "BootstrapRssFill", + "BootstrapRss", + "BootstrapRulers", + "BootstrapSafeFill", + "BootstrapSafe", + "BootstrapSafe2Fill", + "BootstrapSafe2", + "BootstrapSaveFill", + "BootstrapSave", + "BootstrapSave2Fill", + "BootstrapSave2", + "BootstrapScissors", + "BootstrapScooter", + "BootstrapScrewdriver", + "BootstrapSdCardFill", + "BootstrapSdCard", + "BootstrapSearchHeartFill", + "BootstrapSearchHeart", + "BootstrapSearch", + "BootstrapSegmentedNav", + "BootstrapSendCheckFill", + "BootstrapSendCheck", + "BootstrapSendDashFill", + "BootstrapSendDash", + "BootstrapSendExclamationFill", + "BootstrapSendExclamation", + "BootstrapSendFill", + "BootstrapSendPlusFill", + "BootstrapSendPlus", + "BootstrapSendSlashFill", + "BootstrapSendSlash", + "BootstrapSendXFill", + "BootstrapSendX", + "BootstrapSend", + "BootstrapServer", + "BootstrapShareFill", + "BootstrapShare", + "BootstrapShieldCheck", + "BootstrapShieldExclamation", + "BootstrapShieldFillCheck", + "BootstrapShieldFillExclamation", + "BootstrapShieldFillMinus", + "BootstrapShieldFillPlus", + "BootstrapShieldFillX", + "BootstrapShieldFill", + "BootstrapShieldLockFill", + "BootstrapShieldLock", + "BootstrapShieldMinus", + "BootstrapShieldPlus", + "BootstrapShieldShaded", + "BootstrapShieldSlashFill", + "BootstrapShieldSlash", + "BootstrapShieldX", + "BootstrapShield", + "BootstrapShiftFill", + "BootstrapShift", + "BootstrapShopWindow", + "BootstrapShop", + "BootstrapShuffle", + "BootstrapSignDeadEndFill", + "BootstrapSignDeadEnd", + "BootstrapSignDoNotEnterFill", + "BootstrapSignDoNotEnter", + "BootstrapSignIntersectionFill", + "BootstrapSignIntersectionSideFill", + "BootstrapSignIntersectionSide", + "BootstrapSignIntersectionTFill", + "BootstrapSignIntersectionT", + "BootstrapSignIntersectionYFill", + "BootstrapSignIntersectionY", + "BootstrapSignIntersection", + "BootstrapSignMergeLeftFill", + "BootstrapSignMergeLeft", + "BootstrapSignMergeRightFill", + "BootstrapSignMergeRight", + "BootstrapSignNoLeftTurnFill", + "BootstrapSignNoLeftTurn", + "BootstrapSignNoParkingFill", + "BootstrapSignNoParking", + "BootstrapSignNoRightTurnFill", + "BootstrapSignNoRightTurn", + "BootstrapSignRailroadFill", + "BootstrapSignRailroad", + "BootstrapSignStopFill", + "BootstrapSignStopLightsFill", + "BootstrapSignStopLights", + "BootstrapSignStop", + "BootstrapSignTurnLeftFill", + "BootstrapSignTurnLeft", + "BootstrapSignTurnRightFill", + "BootstrapSignTurnRight", + "BootstrapSignTurnSlightLeftFill", + "BootstrapSignTurnSlightLeft", + "BootstrapSignTurnSlightRightFill", + "BootstrapSignTurnSlightRight", + "BootstrapSignYieldFill", + "BootstrapSignYield", + "BootstrapSignal", + "BootstrapSignpost2Fill", + "BootstrapSignpost2", + "BootstrapSignpostFill", + "BootstrapSignpostSplitFill", + "BootstrapSignpostSplit", + "BootstrapSignpost", + "BootstrapSimFill", + "BootstrapSim", + "BootstrapSinaWeibo", + "BootstrapSkipBackwardBtnFill", + "BootstrapSkipBackwardBtn", + "BootstrapSkipBackwardCircleFill", + "BootstrapSkipBackwardCircle", + "BootstrapSkipBackwardFill", + "BootstrapSkipBackward", + "BootstrapSkipEndBtnFill", + "BootstrapSkipEndBtn", + "BootstrapSkipEndCircleFill", + "BootstrapSkipEndCircle", + "BootstrapSkipEndFill", + "BootstrapSkipEnd", + "BootstrapSkipForwardBtnFill", + "BootstrapSkipForwardBtn", + "BootstrapSkipForwardCircleFill", + "BootstrapSkipForwardCircle", + "BootstrapSkipForwardFill", + "BootstrapSkipForward", + "BootstrapSkipStartBtnFill", + "BootstrapSkipStartBtn", + "BootstrapSkipStartCircleFill", + "BootstrapSkipStartCircle", + "BootstrapSkipStartFill", + "BootstrapSkipStart", + "BootstrapSkype", + "BootstrapSlack", + "BootstrapSlashCircleFill", + "BootstrapSlashCircle", + "BootstrapSlashLg", + "BootstrapSlashSquareFill", + "BootstrapSlashSquare", + "BootstrapSlash", + "BootstrapSliders", + "BootstrapSliders2Vertical", + "BootstrapSliders2", + "BootstrapSmartwatch", + "BootstrapSnapchat", + "BootstrapSnow", + "BootstrapSnow2", + "BootstrapSnow3", + "BootstrapSortAlphaDownAlt", + "BootstrapSortAlphaDown", + "BootstrapSortAlphaUpAlt", + "BootstrapSortAlphaUp", + "BootstrapSortDownAlt", + "BootstrapSortDown", + "BootstrapSortNumericDownAlt", + "BootstrapSortNumericDown", + "BootstrapSortNumericUpAlt", + "BootstrapSortNumericUp", + "BootstrapSortUpAlt", + "BootstrapSortUp", + "BootstrapSoundwave", + "BootstrapSpeakerFill", + "BootstrapSpeaker", + "BootstrapSpeedometer", + "BootstrapSpeedometer2", + "BootstrapSpellcheck", + "BootstrapSpotify", + "BootstrapSquareFill", + "BootstrapSquareHalf", + "BootstrapSquare", + "BootstrapStackOverflow", + "BootstrapStack", + "BootstrapStarFill", + "BootstrapStarHalf", + "BootstrapStar", + "BootstrapStars", + "BootstrapSteam", + "BootstrapStickiesFill", + "BootstrapStickies", + "BootstrapStickyFill", + "BootstrapSticky", + "BootstrapStopBtnFill", + "BootstrapStopBtn", + "BootstrapStopCircleFill", + "BootstrapStopCircle", + "BootstrapStopFill", + "BootstrapStop", + "BootstrapStoplightsFill", + "BootstrapStoplights", + "BootstrapStopwatchFill", + "BootstrapStopwatch", + "BootstrapStrava", + "BootstrapStripe", + "BootstrapSubscript", + "BootstrapSubtract", + "BootstrapSuitClubFill", + "BootstrapSuitClub", + "BootstrapSuitDiamondFill", + "BootstrapSuitDiamond", + "BootstrapSuitHeartFill", + "BootstrapSuitHeart", + "BootstrapSuitSpadeFill", + "BootstrapSuitSpade", + "BootstrapSunFill", + "BootstrapSun", + "BootstrapSunglasses", + "BootstrapSunriseFill", + "BootstrapSunrise", + "BootstrapSunsetFill", + "BootstrapSunset", + "BootstrapSuperscript", + "BootstrapSymmetryHorizontal", + "BootstrapSymmetryVertical", + "BootstrapTable", + "BootstrapTabletFill", + "BootstrapTabletLandscapeFill", + "BootstrapTabletLandscape", + "BootstrapTablet", + "BootstrapTagFill", + "BootstrapTag", + "BootstrapTagsFill", + "BootstrapTags", + "BootstrapTaxiFrontFill", + "BootstrapTaxiFront", + "BootstrapTelegram", + "BootstrapTelephoneFill", + "BootstrapTelephoneForwardFill", + "BootstrapTelephoneForward", + "BootstrapTelephoneInboundFill", + "BootstrapTelephoneInbound", + "BootstrapTelephoneMinusFill", + "BootstrapTelephoneMinus", + "BootstrapTelephoneOutboundFill", + "BootstrapTelephoneOutbound", + "BootstrapTelephonePlusFill", + "BootstrapTelephonePlus", + "BootstrapTelephoneXFill", + "BootstrapTelephoneX", + "BootstrapTelephone", + "BootstrapTencentQq", + "BootstrapTerminalDash", + "BootstrapTerminalFill", + "BootstrapTerminalPlus", + "BootstrapTerminalSplit", + "BootstrapTerminalX", + "BootstrapTerminal", + "BootstrapTextCenter", + "BootstrapTextIndentLeft", + "BootstrapTextIndentRight", + "BootstrapTextLeft", + "BootstrapTextParagraph", + "BootstrapTextRight", + "BootstrapTextWrap", + "BootstrapTextareaResize", + "BootstrapTextareaT", + "BootstrapTextarea", + "BootstrapThermometerHalf", + "BootstrapThermometerHigh", + "BootstrapThermometerLow", + "BootstrapThermometerSnow", + "BootstrapThermometerSun", + "BootstrapThermometer", + "BootstrapThreeDotsVertical", + "BootstrapThreeDots", + "BootstrapThunderboltFill", + "BootstrapThunderbolt", + "BootstrapTicketDetailedFill", + "BootstrapTicketDetailed", + "BootstrapTicketFill", + "BootstrapTicketPerforatedFill", + "BootstrapTicketPerforated", + "BootstrapTicket", + "BootstrapTiktok", + "BootstrapToggleOff", + "BootstrapToggleOn", + "BootstrapToggle2Off", + "BootstrapToggle2On", + "BootstrapToggles", + "BootstrapToggles2", + "BootstrapTools", + "BootstrapTornado", + "BootstrapTrainFreightFrontFill", + "BootstrapTrainFreightFront", + "BootstrapTrainFrontFill", + "BootstrapTrainFront", + "BootstrapTrainLightrailFrontFill", + "BootstrapTrainLightrailFront", + "BootstrapTranslate", + "BootstrapTrashFill", + "BootstrapTrash", + "BootstrapTrash2Fill", + "BootstrapTrash2", + "BootstrapTrash3Fill", + "BootstrapTrash3", + "BootstrapTreeFill", + "BootstrapTree", + "BootstrapTrello", + "BootstrapTriangleFill", + "BootstrapTriangleHalf", + "BootstrapTriangle", + "BootstrapTrophyFill", + "BootstrapTrophy", + "BootstrapTropicalStorm", + "BootstrapTruckFlatbed", + "BootstrapTruckFrontFill", + "BootstrapTruckFront", + "BootstrapTruck", + "BootstrapTsunami", + "BootstrapTvFill", + "BootstrapTv", + "BootstrapTwitch", + "BootstrapTwitter", + "BootstrapTypeBold", + "BootstrapTypeH1", + "BootstrapTypeH2", + "BootstrapTypeH3", + "BootstrapTypeItalic", + "BootstrapTypeStrikethrough", + "BootstrapTypeUnderline", + "BootstrapType", + "BootstrapUbuntu", + "BootstrapUiChecksGrid", + "BootstrapUiChecks", + "BootstrapUiRadiosGrid", + "BootstrapUiRadios", + "BootstrapUmbrellaFill", + "BootstrapUmbrella", + "BootstrapUnindent", + "BootstrapUnion", + "BootstrapUnity", + "BootstrapUniversalAccessCircle", + "BootstrapUniversalAccess", + "BootstrapUnlockFill", + "BootstrapUnlock", + "BootstrapUpcScan", + "BootstrapUpc", + "BootstrapUpload", + "BootstrapUsbCFill", + "BootstrapUsbC", + "BootstrapUsbDriveFill", + "BootstrapUsbDrive", + "BootstrapUsbFill", + "BootstrapUsbMicroFill", + "BootstrapUsbMicro", + "BootstrapUsbMiniFill", + "BootstrapUsbMini", + "BootstrapUsbPlugFill", + "BootstrapUsbPlug", + "BootstrapUsbSymbol", + "BootstrapUsb", + "BootstrapValentine", + "BootstrapValentine2", + "BootstrapVectorPen", + "BootstrapViewList", + "BootstrapViewStacked", + "BootstrapVimeo", + "BootstrapVinylFill", + "BootstrapVinyl", + "BootstrapVirus", + "BootstrapVirus2", + "BootstrapVoicemail", + "BootstrapVolumeDownFill", + "BootstrapVolumeDown", + "BootstrapVolumeMuteFill", + "BootstrapVolumeMute", + "BootstrapVolumeOffFill", + "BootstrapVolumeOff", + "BootstrapVolumeUpFill", + "BootstrapVolumeUp", + "BootstrapVr", + "BootstrapWalletFill", + "BootstrapWallet", + "BootstrapWallet2", + "BootstrapWatch", + "BootstrapWater", + "BootstrapWebcamFill", + "BootstrapWebcam", + "BootstrapWechat", + "BootstrapWhatsapp", + "BootstrapWifi1", + "BootstrapWifi2", + "BootstrapWifiOff", + "BootstrapWifi", + "BootstrapWikipedia", + "BootstrapWind", + "BootstrapWindowDash", + "BootstrapWindowDesktop", + "BootstrapWindowDock", + "BootstrapWindowFullscreen", + "BootstrapWindowPlus", + "BootstrapWindowSidebar", + "BootstrapWindowSplit", + "BootstrapWindowStack", + "BootstrapWindowX", + "BootstrapWindow", + "BootstrapWindows", + "BootstrapWordpress", + "BootstrapWrenchAdjustableCircleFill", + "BootstrapWrenchAdjustableCircle", + "BootstrapWrenchAdjustable", + "BootstrapWrench", + "BootstrapXCircleFill", + "BootstrapXCircle", + "BootstrapXDiamondFill", + "BootstrapXDiamond", + "BootstrapXLg", + "BootstrapXOctagonFill", + "BootstrapXOctagon", + "BootstrapXSquareFill", + "BootstrapXSquare", + "BootstrapX", + "BootstrapXbox", + "BootstrapYelp", + "BootstrapYinYang", + "BootstrapYoutube", + "BootstrapZoomIn", + "BootstrapZoomOut" + ], + "convert_case": [ + "dep:convert_case" + ], + "data_uri": [], + "default": [ + "data_uri" + ], + "enum-iterator": [ + "dep:enum-iterator" + ], + "extra": [ + "ExtraGooglePlay" + ], + "feather": [ + "FeatherActivity", + "FeatherAirplay", + "FeatherAlertCircle", + "FeatherAlertOctagon", + "FeatherAlertTriangle", + "FeatherAlignCenter", + "FeatherAlignJustify", + "FeatherAlignLeft", + "FeatherAlignRight", + "FeatherAnchor", + "FeatherAperture", + "FeatherArchive", + "FeatherArrowDownCircle", + "FeatherArrowDownLeft", + "FeatherArrowDownRight", + "FeatherArrowDown", + "FeatherArrowLeftCircle", + "FeatherArrowLeft", + "FeatherArrowRightCircle", + "FeatherArrowRight", + "FeatherArrowUpCircle", + "FeatherArrowUpLeft", + "FeatherArrowUpRight", + "FeatherArrowUp", + "FeatherAtSign", + "FeatherAward", + "FeatherBarChart2", + "FeatherBarChart", + "FeatherBatteryCharging", + "FeatherBattery", + "FeatherBellOff", + "FeatherBell", + "FeatherBluetooth", + "FeatherBold", + "FeatherBookOpen", + "FeatherBook", + "FeatherBookmark", + "FeatherBox", + "FeatherBriefcase", + "FeatherCalendar", + "FeatherCameraOff", + "FeatherCamera", + "FeatherCast", + "FeatherCheckCircle", + "FeatherCheckSquare", + "FeatherCheck", + "FeatherChevronDown", + "FeatherChevronLeft", + "FeatherChevronRight", + "FeatherChevronUp", + "FeatherChevronsDown", + "FeatherChevronsLeft", + "FeatherChevronsRight", + "FeatherChevronsUp", + "FeatherChrome", + "FeatherCircle", + "FeatherClipboard", + "FeatherClock", + "FeatherCloudDrizzle", + "FeatherCloudLightning", + "FeatherCloudOff", + "FeatherCloudRain", + "FeatherCloudSnow", + "FeatherCloud", + "FeatherCode", + "FeatherCodepen", + "FeatherCodesandbox", + "FeatherCoffee", + "FeatherColumns", + "FeatherCommand", + "FeatherCompass", + "FeatherCopy", + "FeatherCornerDownLeft", + "FeatherCornerDownRight", + "FeatherCornerLeftDown", + "FeatherCornerLeftUp", + "FeatherCornerRightDown", + "FeatherCornerRightUp", + "FeatherCornerUpLeft", + "FeatherCornerUpRight", + "FeatherCpu", + "FeatherCreditCard", + "FeatherCrop", + "FeatherCrosshair", + "FeatherDatabase", + "FeatherDelete", + "FeatherDisc", + "FeatherDivideCircle", + "FeatherDivideSquare", + "FeatherDivide", + "FeatherDollarSign", + "FeatherDownloadCloud", + "FeatherDownload", + "FeatherDribbble", + "FeatherDroplet", + "FeatherEdit2", + "FeatherEdit3", + "FeatherEdit", + "FeatherExternalLink", + "FeatherEyeOff", + "FeatherEye", + "FeatherFacebook", + "FeatherFastForward", + "FeatherFeather", + "FeatherFigma", + "FeatherFileMinus", + "FeatherFilePlus", + "FeatherFileText", + "FeatherFile", + "FeatherFilm", + "FeatherFilter", + "FeatherFlag", + "FeatherFolderMinus", + "FeatherFolderPlus", + "FeatherFolder", + "FeatherFramer", + "FeatherFrown", + "FeatherGift", + "FeatherGitBranch", + "FeatherGitCommit", + "FeatherGitMerge", + "FeatherGitPullRequest", + "FeatherGithub", + "FeatherGitlab", + "FeatherGlobe", + "FeatherGrid", + "FeatherHardDrive", + "FeatherHash", + "FeatherHeadphones", + "FeatherHeart", + "FeatherHelpCircle", + "FeatherHexagon", + "FeatherHome", + "FeatherImage", + "FeatherInbox", + "FeatherInfo", + "FeatherInstagram", + "FeatherItalic", + "FeatherKey", + "FeatherLayers", + "FeatherLayout", + "FeatherLifeBuoy", + "FeatherLink2", + "FeatherLink", + "FeatherLinkedin", + "FeatherList", + "FeatherLoader", + "FeatherLock", + "FeatherLogIn", + "FeatherLogOut", + "FeatherMail", + "FeatherMapPin", + "FeatherMap", + "FeatherMaximize2", + "FeatherMaximize", + "FeatherMeh", + "FeatherMenu", + "FeatherMessageCircle", + "FeatherMessageSquare", + "FeatherMicOff", + "FeatherMic", + "FeatherMinimize2", + "FeatherMinimize", + "FeatherMinusCircle", + "FeatherMinusSquare", + "FeatherMinus", + "FeatherMonitor", + "FeatherMoon", + "FeatherMoreHorizontal", + "FeatherMoreVertical", + "FeatherMousePointer", + "FeatherMove", + "FeatherMusic", + "FeatherNavigation2", + "FeatherNavigation", + "FeatherOctagon", + "FeatherPackage", + "FeatherPaperclip", + "FeatherPauseCircle", + "FeatherPause", + "FeatherPenTool", + "FeatherPercent", + "FeatherPhoneCall", + "FeatherPhoneForwarded", + "FeatherPhoneIncoming", + "FeatherPhoneMissed", + "FeatherPhoneOff", + "FeatherPhoneOutgoing", + "FeatherPhone", + "FeatherPieChart", + "FeatherPlayCircle", + "FeatherPlay", + "FeatherPlusCircle", + "FeatherPlusSquare", + "FeatherPlus", + "FeatherPocket", + "FeatherPower", + "FeatherPrinter", + "FeatherRadio", + "FeatherRefreshCcw", + "FeatherRefreshCw", + "FeatherRepeat", + "FeatherRewind", + "FeatherRotateCcw", + "FeatherRotateCw", + "FeatherRss", + "FeatherSave", + "FeatherScissors", + "FeatherSearch", + "FeatherSend", + "FeatherServer", + "FeatherSettings", + "FeatherShare2", + "FeatherShare", + "FeatherShieldOff", + "FeatherShield", + "FeatherShoppingBag", + "FeatherShoppingCart", + "FeatherShuffle", + "FeatherSidebar", + "FeatherSkipBack", + "FeatherSkipForward", + "FeatherSlack", + "FeatherSlash", + "FeatherSliders", + "FeatherSmartphone", + "FeatherSmile", + "FeatherSpeaker", + "FeatherSquare", + "FeatherStar", + "FeatherStopCircle", + "FeatherSun", + "FeatherSunrise", + "FeatherSunset", + "FeatherTable", + "FeatherTablet", + "FeatherTag", + "FeatherTarget", + "FeatherTerminal", + "FeatherThermometer", + "FeatherThumbsDown", + "FeatherThumbsUp", + "FeatherToggleLeft", + "FeatherToggleRight", + "FeatherTool", + "FeatherTrash2", + "FeatherTrash", + "FeatherTrello", + "FeatherTrendingDown", + "FeatherTrendingUp", + "FeatherTriangle", + "FeatherTruck", + "FeatherTv", + "FeatherTwitch", + "FeatherTwitter", + "FeatherType", + "FeatherUmbrella", + "FeatherUnderline", + "FeatherUnlock", + "FeatherUploadCloud", + "FeatherUpload", + "FeatherUserCheck", + "FeatherUserMinus", + "FeatherUserPlus", + "FeatherUserX", + "FeatherUser", + "FeatherUsers", + "FeatherVideoOff", + "FeatherVideo", + "FeatherVoicemail", + "FeatherVolume1", + "FeatherVolume2", + "FeatherVolumeX", + "FeatherVolume", + "FeatherWatch", + "FeatherWifiOff", + "FeatherWifi", + "FeatherWind", + "FeatherXCircle", + "FeatherXOctagon", + "FeatherXSquare", + "FeatherX", + "FeatherYoutube", + "FeatherZapOff", + "FeatherZap", + "FeatherZoomIn", + "FeatherZoomOut" + ], + "font_awesome_regular": [ + "FontAwesomeRegularAddressBook", + "FontAwesomeRegularAddressCard", + "FontAwesomeRegularBellSlash", + "FontAwesomeRegularBell", + "FontAwesomeRegularBookmark", + "FontAwesomeRegularBuilding", + "FontAwesomeRegularCalendarCheck", + "FontAwesomeRegularCalendarDays", + "FontAwesomeRegularCalendarMinus", + "FontAwesomeRegularCalendarPlus", + "FontAwesomeRegularCalendarXmark", + "FontAwesomeRegularCalendar", + "FontAwesomeRegularChartBar", + "FontAwesomeRegularChessBishop", + "FontAwesomeRegularChessKing", + "FontAwesomeRegularChessKnight", + "FontAwesomeRegularChessPawn", + "FontAwesomeRegularChessQueen", + "FontAwesomeRegularChessRook", + "FontAwesomeRegularCircleCheck", + "FontAwesomeRegularCircleDot", + "FontAwesomeRegularCircleDown", + "FontAwesomeRegularCircleLeft", + "FontAwesomeRegularCirclePause", + "FontAwesomeRegularCirclePlay", + "FontAwesomeRegularCircleQuestion", + "FontAwesomeRegularCircleRight", + "FontAwesomeRegularCircleStop", + "FontAwesomeRegularCircleUp", + "FontAwesomeRegularCircleUser", + "FontAwesomeRegularCircleXmark", + "FontAwesomeRegularCircle", + "FontAwesomeRegularClipboard", + "FontAwesomeRegularClock", + "FontAwesomeRegularClone", + "FontAwesomeRegularClosedCaptioning", + "FontAwesomeRegularCommentDots", + "FontAwesomeRegularComment", + "FontAwesomeRegularComments", + "FontAwesomeRegularCompass", + "FontAwesomeRegularCopy", + "FontAwesomeRegularCopyright", + "FontAwesomeRegularCreditCard", + "FontAwesomeRegularEnvelopeOpen", + "FontAwesomeRegularEnvelope", + "FontAwesomeRegularEyeSlash", + "FontAwesomeRegularEye", + "FontAwesomeRegularFaceAngry", + "FontAwesomeRegularFaceDizzy", + "FontAwesomeRegularFaceFlushed", + "FontAwesomeRegularFaceFrownOpen", + "FontAwesomeRegularFaceFrown", + "FontAwesomeRegularFaceGrimace", + "FontAwesomeRegularFaceGrinBeamSweat", + "FontAwesomeRegularFaceGrinBeam", + "FontAwesomeRegularFaceGrinHearts", + "FontAwesomeRegularFaceGrinSquintTears", + "FontAwesomeRegularFaceGrinSquint", + "FontAwesomeRegularFaceGrinStars", + "FontAwesomeRegularFaceGrinTears", + "FontAwesomeRegularFaceGrinTongueSquint", + "FontAwesomeRegularFaceGrinTongueWink", + "FontAwesomeRegularFaceGrinTongue", + "FontAwesomeRegularFaceGrinWide", + "FontAwesomeRegularFaceGrinWink", + "FontAwesomeRegularFaceGrin", + "FontAwesomeRegularFaceKissBeam", + "FontAwesomeRegularFaceKissWinkHeart", + "FontAwesomeRegularFaceKiss", + "FontAwesomeRegularFaceLaughBeam", + "FontAwesomeRegularFaceLaughSquint", + "FontAwesomeRegularFaceLaughWink", + "FontAwesomeRegularFaceLaugh", + "FontAwesomeRegularFaceMehBlank", + "FontAwesomeRegularFaceMeh", + "FontAwesomeRegularFaceRollingEyes", + "FontAwesomeRegularFaceSadCry", + "FontAwesomeRegularFaceSadTear", + "FontAwesomeRegularFaceSmileBeam", + "FontAwesomeRegularFaceSmileWink", + "FontAwesomeRegularFaceSmile", + "FontAwesomeRegularFaceSurprise", + "FontAwesomeRegularFaceTired", + "FontAwesomeRegularFileAudio", + "FontAwesomeRegularFileCode", + "FontAwesomeRegularFileExcel", + "FontAwesomeRegularFileImage", + "FontAwesomeRegularFileLines", + "FontAwesomeRegularFilePdf", + "FontAwesomeRegularFilePowerpoint", + "FontAwesomeRegularFileVideo", + "FontAwesomeRegularFileWord", + "FontAwesomeRegularFileZipper", + "FontAwesomeRegularFile", + "FontAwesomeRegularFlag", + "FontAwesomeRegularFloppyDisk", + "FontAwesomeRegularFolderClosed", + "FontAwesomeRegularFolderOpen", + "FontAwesomeRegularFolder", + "FontAwesomeRegularFontAwesome", + "FontAwesomeRegularFutbol", + "FontAwesomeRegularGem", + "FontAwesomeRegularHandBackFist", + "FontAwesomeRegularHandLizard", + "FontAwesomeRegularHandPeace", + "FontAwesomeRegularHandPointDown", + "FontAwesomeRegularHandPointLeft", + "FontAwesomeRegularHandPointRight", + "FontAwesomeRegularHandPointUp", + "FontAwesomeRegularHandPointer", + "FontAwesomeRegularHandScissors", + "FontAwesomeRegularHandSpock", + "FontAwesomeRegularHand", + "FontAwesomeRegularHandshake", + "FontAwesomeRegularHardDrive", + "FontAwesomeRegularHeart", + "FontAwesomeRegularHospital", + "FontAwesomeRegularHourglass", + "FontAwesomeRegularIdBadge", + "FontAwesomeRegularIdCard", + "FontAwesomeRegularImage", + "FontAwesomeRegularImages", + "FontAwesomeRegularKeyboard", + "FontAwesomeRegularLemon", + "FontAwesomeRegularLifeRing", + "FontAwesomeRegularLightbulb", + "FontAwesomeRegularMap", + "FontAwesomeRegularMessage", + "FontAwesomeRegularMoneyBill1", + "FontAwesomeRegularMoon", + "FontAwesomeRegularNewspaper", + "FontAwesomeRegularNoteSticky", + "FontAwesomeRegularObjectGroup", + "FontAwesomeRegularObjectUngroup", + "FontAwesomeRegularPaperPlane", + "FontAwesomeRegularPaste", + "FontAwesomeRegularPenToSquare", + "FontAwesomeRegularRectangleList", + "FontAwesomeRegularRectangleXmark", + "FontAwesomeRegularRegistered", + "FontAwesomeRegularShareFromSquare", + "FontAwesomeRegularSnowflake", + "FontAwesomeRegularSquareCaretDown", + "FontAwesomeRegularSquareCaretLeft", + "FontAwesomeRegularSquareCaretRight", + "FontAwesomeRegularSquareCaretUp", + "FontAwesomeRegularSquareCheck", + "FontAwesomeRegularSquareFull", + "FontAwesomeRegularSquareMinus", + "FontAwesomeRegularSquarePlus", + "FontAwesomeRegularSquare", + "FontAwesomeRegularStarHalfStroke", + "FontAwesomeRegularStarHalf", + "FontAwesomeRegularStar", + "FontAwesomeRegularSun", + "FontAwesomeRegularThumbsDown", + "FontAwesomeRegularThumbsUp", + "FontAwesomeRegularTrashCan", + "FontAwesomeRegularUser", + "FontAwesomeRegularWindowMaximize", + "FontAwesomeRegularWindowMinimize", + "FontAwesomeRegularWindowRestore" + ], + "font_awesome_solid": [ + "FontAwesomeSolid0", + "FontAwesomeSolid1", + "FontAwesomeSolid2", + "FontAwesomeSolid3", + "FontAwesomeSolid4", + "FontAwesomeSolid5", + "FontAwesomeSolid6", + "FontAwesomeSolid7", + "FontAwesomeSolid8", + "FontAwesomeSolid9", + "FontAwesomeSolidA", + "FontAwesomeSolidAddressBook", + "FontAwesomeSolidAddressCard", + "FontAwesomeSolidAlignCenter", + "FontAwesomeSolidAlignJustify", + "FontAwesomeSolidAlignLeft", + "FontAwesomeSolidAlignRight", + "FontAwesomeSolidAnchorCircleCheck", + "FontAwesomeSolidAnchorCircleExclamation", + "FontAwesomeSolidAnchorCircleXmark", + "FontAwesomeSolidAnchorLock", + "FontAwesomeSolidAnchor", + "FontAwesomeSolidAngleDown", + "FontAwesomeSolidAngleLeft", + "FontAwesomeSolidAngleRight", + "FontAwesomeSolidAngleUp", + "FontAwesomeSolidAnglesDown", + "FontAwesomeSolidAnglesLeft", + "FontAwesomeSolidAnglesRight", + "FontAwesomeSolidAnglesUp", + "FontAwesomeSolidAnkh", + "FontAwesomeSolidAppleWhole", + "FontAwesomeSolidArchway", + "FontAwesomeSolidArrowDown19", + "FontAwesomeSolidArrowDown91", + "FontAwesomeSolidArrowDownAZ", + "FontAwesomeSolidArrowDownLong", + "FontAwesomeSolidArrowDownShortWide", + "FontAwesomeSolidArrowDownUpAcrossLine", + "FontAwesomeSolidArrowDownUpLock", + "FontAwesomeSolidArrowDownWideShort", + "FontAwesomeSolidArrowDownZA", + "FontAwesomeSolidArrowDown", + "FontAwesomeSolidArrowLeftLong", + "FontAwesomeSolidArrowLeft", + "FontAwesomeSolidArrowPointer", + "FontAwesomeSolidArrowRightArrowLeft", + "FontAwesomeSolidArrowRightFromBracket", + "FontAwesomeSolidArrowRightLong", + "FontAwesomeSolidArrowRightToBracket", + "FontAwesomeSolidArrowRightToCity", + "FontAwesomeSolidArrowRight", + "FontAwesomeSolidArrowRotateLeft", + "FontAwesomeSolidArrowRotateRight", + "FontAwesomeSolidArrowTrendDown", + "FontAwesomeSolidArrowTrendUp", + "FontAwesomeSolidArrowTurnDown", + "FontAwesomeSolidArrowTurnUp", + "FontAwesomeSolidArrowUp19", + "FontAwesomeSolidArrowUp91", + "FontAwesomeSolidArrowUpAZ", + "FontAwesomeSolidArrowUpFromBracket", + "FontAwesomeSolidArrowUpFromGroundWater", + "FontAwesomeSolidArrowUpFromWaterPump", + "FontAwesomeSolidArrowUpLong", + "FontAwesomeSolidArrowUpRightDots", + "FontAwesomeSolidArrowUpRightFromSquare", + "FontAwesomeSolidArrowUpShortWide", + "FontAwesomeSolidArrowUpWideShort", + "FontAwesomeSolidArrowUpZA", + "FontAwesomeSolidArrowUp", + "FontAwesomeSolidArrowsDownToLine", + "FontAwesomeSolidArrowsDownToPeople", + "FontAwesomeSolidArrowsLeftRightToLine", + "FontAwesomeSolidArrowsLeftRight", + "FontAwesomeSolidArrowsRotate", + "FontAwesomeSolidArrowsSpin", + "FontAwesomeSolidArrowsSplitUpAndLeft", + "FontAwesomeSolidArrowsToCircle", + "FontAwesomeSolidArrowsToDot", + "FontAwesomeSolidArrowsToEye", + "FontAwesomeSolidArrowsTurnRight", + "FontAwesomeSolidArrowsTurnToDots", + "FontAwesomeSolidArrowsUpDownLeftRight", + "FontAwesomeSolidArrowsUpDown", + "FontAwesomeSolidArrowsUpToLine", + "FontAwesomeSolidAsterisk", + "FontAwesomeSolidAt", + "FontAwesomeSolidAtom", + "FontAwesomeSolidAudioDescription", + "FontAwesomeSolidAustralSign", + "FontAwesomeSolidAward", + "FontAwesomeSolidB", + "FontAwesomeSolidBabyCarriage", + "FontAwesomeSolidBaby", + "FontAwesomeSolidBackwardFast", + "FontAwesomeSolidBackwardStep", + "FontAwesomeSolidBackward", + "FontAwesomeSolidBacon", + "FontAwesomeSolidBacteria", + "FontAwesomeSolidBacterium", + "FontAwesomeSolidBagShopping", + "FontAwesomeSolidBahai", + "FontAwesomeSolidBahtSign", + "FontAwesomeSolidBanSmoking", + "FontAwesomeSolidBan", + "FontAwesomeSolidBandage", + "FontAwesomeSolidBarcode", + "FontAwesomeSolidBarsProgress", + "FontAwesomeSolidBarsStaggered", + "FontAwesomeSolidBars", + "FontAwesomeSolidBaseballBatBall", + "FontAwesomeSolidBaseball", + "FontAwesomeSolidBasketShopping", + "FontAwesomeSolidBasketball", + "FontAwesomeSolidBath", + "FontAwesomeSolidBatteryEmpty", + "FontAwesomeSolidBatteryFull", + "FontAwesomeSolidBatteryHalf", + "FontAwesomeSolidBatteryQuarter", + "FontAwesomeSolidBatteryThreeQuarters", + "FontAwesomeSolidBedPulse", + "FontAwesomeSolidBed", + "FontAwesomeSolidBeerMugEmpty", + "FontAwesomeSolidBellConcierge", + "FontAwesomeSolidBellSlash", + "FontAwesomeSolidBell", + "FontAwesomeSolidBezierCurve", + "FontAwesomeSolidBicycle", + "FontAwesomeSolidBinoculars", + "FontAwesomeSolidBiohazard", + "FontAwesomeSolidBitcoinSign", + "FontAwesomeSolidBlenderPhone", + "FontAwesomeSolidBlender", + "FontAwesomeSolidBlog", + "FontAwesomeSolidBold", + "FontAwesomeSolidBoltLightning", + "FontAwesomeSolidBolt", + "FontAwesomeSolidBomb", + "FontAwesomeSolidBone", + "FontAwesomeSolidBong", + "FontAwesomeSolidBookAtlas", + "FontAwesomeSolidBookBible", + "FontAwesomeSolidBookBookmark", + "FontAwesomeSolidBookJournalWhills", + "FontAwesomeSolidBookMedical", + "FontAwesomeSolidBookOpenReader", + "FontAwesomeSolidBookOpen", + "FontAwesomeSolidBookQuran", + "FontAwesomeSolidBookSkull", + "FontAwesomeSolidBook", + "FontAwesomeSolidBookmark", + "FontAwesomeSolidBorderAll", + "FontAwesomeSolidBorderNone", + "FontAwesomeSolidBorderTopLeft", + "FontAwesomeSolidBoreHole", + "FontAwesomeSolidBottleDroplet", + "FontAwesomeSolidBottleWater", + "FontAwesomeSolidBowlFood", + "FontAwesomeSolidBowlRice", + "FontAwesomeSolidBowlingBall", + "FontAwesomeSolidBoxArchive", + "FontAwesomeSolidBoxOpen", + "FontAwesomeSolidBoxTissue", + "FontAwesomeSolidBox", + "FontAwesomeSolidBoxesPacking", + "FontAwesomeSolidBoxesStacked", + "FontAwesomeSolidBraille", + "FontAwesomeSolidBrain", + "FontAwesomeSolidBrazilianRealSign", + "FontAwesomeSolidBreadSlice", + "FontAwesomeSolidBridgeCircleCheck", + "FontAwesomeSolidBridgeCircleExclamation", + "FontAwesomeSolidBridgeCircleXmark", + "FontAwesomeSolidBridgeLock", + "FontAwesomeSolidBridgeWater", + "FontAwesomeSolidBridge", + "FontAwesomeSolidBriefcaseMedical", + "FontAwesomeSolidBriefcase", + "FontAwesomeSolidBroomBall", + "FontAwesomeSolidBroom", + "FontAwesomeSolidBrush", + "FontAwesomeSolidBucket", + "FontAwesomeSolidBugSlash", + "FontAwesomeSolidBug", + "FontAwesomeSolidBugs", + "FontAwesomeSolidBuildingCircleArrowRight", + "FontAwesomeSolidBuildingCircleCheck", + "FontAwesomeSolidBuildingCircleExclamation", + "FontAwesomeSolidBuildingCircleXmark", + "FontAwesomeSolidBuildingColumns", + "FontAwesomeSolidBuildingFlag", + "FontAwesomeSolidBuildingLock", + "FontAwesomeSolidBuildingNgo", + "FontAwesomeSolidBuildingShield", + "FontAwesomeSolidBuildingUn", + "FontAwesomeSolidBuildingUser", + "FontAwesomeSolidBuildingWheat", + "FontAwesomeSolidBuilding", + "FontAwesomeSolidBullhorn", + "FontAwesomeSolidBullseye", + "FontAwesomeSolidBurger", + "FontAwesomeSolidBurst", + "FontAwesomeSolidBusSimple", + "FontAwesomeSolidBus", + "FontAwesomeSolidBusinessTime", + "FontAwesomeSolidC", + "FontAwesomeSolidCakeCandles", + "FontAwesomeSolidCalculator", + "FontAwesomeSolidCalendarCheck", + "FontAwesomeSolidCalendarDay", + "FontAwesomeSolidCalendarDays", + "FontAwesomeSolidCalendarMinus", + "FontAwesomeSolidCalendarPlus", + "FontAwesomeSolidCalendarWeek", + "FontAwesomeSolidCalendarXmark", + "FontAwesomeSolidCalendar", + "FontAwesomeSolidCameraRetro", + "FontAwesomeSolidCameraRotate", + "FontAwesomeSolidCamera", + "FontAwesomeSolidCampground", + "FontAwesomeSolidCandyCane", + "FontAwesomeSolidCannabis", + "FontAwesomeSolidCapsules", + "FontAwesomeSolidCarBattery", + "FontAwesomeSolidCarBurst", + "FontAwesomeSolidCarCrash", + "FontAwesomeSolidCarOn", + "FontAwesomeSolidCarRear", + "FontAwesomeSolidCarSide", + "FontAwesomeSolidCarTunnel", + "FontAwesomeSolidCar", + "FontAwesomeSolidCaravan", + "FontAwesomeSolidCaretDown", + "FontAwesomeSolidCaretLeft", + "FontAwesomeSolidCaretRight", + "FontAwesomeSolidCaretUp", + "FontAwesomeSolidCarrot", + "FontAwesomeSolidCartArrowDown", + "FontAwesomeSolidCartFlatbedSuitcase", + "FontAwesomeSolidCartFlatbed", + "FontAwesomeSolidCartPlus", + "FontAwesomeSolidCartShopping", + "FontAwesomeSolidCashRegister", + "FontAwesomeSolidCat", + "FontAwesomeSolidCediSign", + "FontAwesomeSolidCentSign", + "FontAwesomeSolidCertificate", + "FontAwesomeSolidChair", + "FontAwesomeSolidChalkboardUser", + "FontAwesomeSolidChalkboard", + "FontAwesomeSolidChampagneGlasses", + "FontAwesomeSolidChargingStation", + "FontAwesomeSolidChartArea", + "FontAwesomeSolidChartBar", + "FontAwesomeSolidChartColumn", + "FontAwesomeSolidChartGantt", + "FontAwesomeSolidChartLine", + "FontAwesomeSolidChartPie", + "FontAwesomeSolidChartSimple", + "FontAwesomeSolidCheckDouble", + "FontAwesomeSolidCheckToSlot", + "FontAwesomeSolidCheck", + "FontAwesomeSolidCheese", + "FontAwesomeSolidChessBishop", + "FontAwesomeSolidChessBoard", + "FontAwesomeSolidChessKing", + "FontAwesomeSolidChessKnight", + "FontAwesomeSolidChessPawn", + "FontAwesomeSolidChessQueen", + "FontAwesomeSolidChessRook", + "FontAwesomeSolidChess", + "FontAwesomeSolidChevronDown", + "FontAwesomeSolidChevronLeft", + "FontAwesomeSolidChevronRight", + "FontAwesomeSolidChevronUp", + "FontAwesomeSolidChildDress", + "FontAwesomeSolidChildReaching", + "FontAwesomeSolidChildRifle", + "FontAwesomeSolidChild", + "FontAwesomeSolidChildren", + "FontAwesomeSolidChurch", + "FontAwesomeSolidCircleArrowDown", + "FontAwesomeSolidCircleArrowLeft", + "FontAwesomeSolidCircleArrowRight", + "FontAwesomeSolidCircleArrowUp", + "FontAwesomeSolidCircleCheck", + "FontAwesomeSolidCircleChevronDown", + "FontAwesomeSolidCircleChevronLeft", + "FontAwesomeSolidCircleChevronRight", + "FontAwesomeSolidCircleChevronUp", + "FontAwesomeSolidCircleDollarToSlot", + "FontAwesomeSolidCircleDot", + "FontAwesomeSolidCircleDown", + "FontAwesomeSolidCircleExclamation", + "FontAwesomeSolidCircleH", + "FontAwesomeSolidCircleHalfStroke", + "FontAwesomeSolidCircleInfo", + "FontAwesomeSolidCircleLeft", + "FontAwesomeSolidCircleMinus", + "FontAwesomeSolidCircleNodes", + "FontAwesomeSolidCircleNotch", + "FontAwesomeSolidCirclePause", + "FontAwesomeSolidCirclePlay", + "FontAwesomeSolidCirclePlus", + "FontAwesomeSolidCircleQuestion", + "FontAwesomeSolidCircleRadiation", + "FontAwesomeSolidCircleRight", + "FontAwesomeSolidCircleStop", + "FontAwesomeSolidCircleUp", + "FontAwesomeSolidCircleUser", + "FontAwesomeSolidCircleXmark", + "FontAwesomeSolidCircle", + "FontAwesomeSolidCity", + "FontAwesomeSolidClapperboard", + "FontAwesomeSolidClipboardCheck", + "FontAwesomeSolidClipboardList", + "FontAwesomeSolidClipboardQuestion", + "FontAwesomeSolidClipboardUser", + "FontAwesomeSolidClipboard", + "FontAwesomeSolidClockRotateLeft", + "FontAwesomeSolidClock", + "FontAwesomeSolidClone", + "FontAwesomeSolidClosedCaptioning", + "FontAwesomeSolidCloudArrowDown", + "FontAwesomeSolidCloudArrowUp", + "FontAwesomeSolidCloudBolt", + "FontAwesomeSolidCloudMeatball", + "FontAwesomeSolidCloudMoonRain", + "FontAwesomeSolidCloudMoon", + "FontAwesomeSolidCloudRain", + "FontAwesomeSolidCloudShowersHeavy", + "FontAwesomeSolidCloudShowersWater", + "FontAwesomeSolidCloudSunRain", + "FontAwesomeSolidCloudSun", + "FontAwesomeSolidCloud", + "FontAwesomeSolidClover", + "FontAwesomeSolidCodeBranch", + "FontAwesomeSolidCodeCommit", + "FontAwesomeSolidCodeCompare", + "FontAwesomeSolidCodeFork", + "FontAwesomeSolidCodeMerge", + "FontAwesomeSolidCodePullRequest", + "FontAwesomeSolidCode", + "FontAwesomeSolidCoins", + "FontAwesomeSolidColonSign", + "FontAwesomeSolidCommentDollar", + "FontAwesomeSolidCommentDots", + "FontAwesomeSolidCommentMedical", + "FontAwesomeSolidCommentSlash", + "FontAwesomeSolidCommentSms", + "FontAwesomeSolidComment", + "FontAwesomeSolidCommentsDollar", + "FontAwesomeSolidComments", + "FontAwesomeSolidCompactDisc", + "FontAwesomeSolidCompassDrafting", + "FontAwesomeSolidCompass", + "FontAwesomeSolidCompress", + "FontAwesomeSolidComputerMouse", + "FontAwesomeSolidComputer", + "FontAwesomeSolidCookieBite", + "FontAwesomeSolidCookie", + "FontAwesomeSolidCopy", + "FontAwesomeSolidCopyright", + "FontAwesomeSolidCouch", + "FontAwesomeSolidCow", + "FontAwesomeSolidCreditCard", + "FontAwesomeSolidCropSimple", + "FontAwesomeSolidCrop", + "FontAwesomeSolidCross", + "FontAwesomeSolidCrosshairs", + "FontAwesomeSolidCrow", + "FontAwesomeSolidCrown", + "FontAwesomeSolidCrutch", + "FontAwesomeSolidCruzeiroSign", + "FontAwesomeSolidCube", + "FontAwesomeSolidCubesStacked", + "FontAwesomeSolidCubes", + "FontAwesomeSolidD", + "FontAwesomeSolidDatabase", + "FontAwesomeSolidDeleteLeft", + "FontAwesomeSolidDemocrat", + "FontAwesomeSolidDesktop", + "FontAwesomeSolidDharmachakra", + "FontAwesomeSolidDiagramNext", + "FontAwesomeSolidDiagramPredecessor", + "FontAwesomeSolidDiagramProject", + "FontAwesomeSolidDiagramSuccessor", + "FontAwesomeSolidDiamondTurnRight", + "FontAwesomeSolidDiamond", + "FontAwesomeSolidDiceD20", + "FontAwesomeSolidDiceD6", + "FontAwesomeSolidDiceFive", + "FontAwesomeSolidDiceFour", + "FontAwesomeSolidDiceOne", + "FontAwesomeSolidDiceSix", + "FontAwesomeSolidDiceThree", + "FontAwesomeSolidDiceTwo", + "FontAwesomeSolidDice", + "FontAwesomeSolidDisease", + "FontAwesomeSolidDisplay", + "FontAwesomeSolidDivide", + "FontAwesomeSolidDna", + "FontAwesomeSolidDog", + "FontAwesomeSolidDollarSign", + "FontAwesomeSolidDolly", + "FontAwesomeSolidDongSign", + "FontAwesomeSolidDoorClosed", + "FontAwesomeSolidDoorOpen", + "FontAwesomeSolidDove", + "FontAwesomeSolidDownLeftAndUpRightToCenter", + "FontAwesomeSolidDownLong", + "FontAwesomeSolidDownload", + "FontAwesomeSolidDragon", + "FontAwesomeSolidDrawPolygon", + "FontAwesomeSolidDropletSlash", + "FontAwesomeSolidDroplet", + "FontAwesomeSolidDrumSteelpan", + "FontAwesomeSolidDrum", + "FontAwesomeSolidDrumstickBite", + "FontAwesomeSolidDumbbell", + "FontAwesomeSolidDumpsterFire", + "FontAwesomeSolidDumpster", + "FontAwesomeSolidDungeon", + "FontAwesomeSolidE", + "FontAwesomeSolidEarDeaf", + "FontAwesomeSolidEarListen", + "FontAwesomeSolidEarthAfrica", + "FontAwesomeSolidEarthAmericas", + "FontAwesomeSolidEarthAsia", + "FontAwesomeSolidEarthEurope", + "FontAwesomeSolidEarthOceania", + "FontAwesomeSolidEgg", + "FontAwesomeSolidEject", + "FontAwesomeSolidElevator", + "FontAwesomeSolidEllipsisVertical", + "FontAwesomeSolidEllipsis", + "FontAwesomeSolidEnvelopeCircleCheck", + "FontAwesomeSolidEnvelopeOpenText", + "FontAwesomeSolidEnvelopeOpen", + "FontAwesomeSolidEnvelope", + "FontAwesomeSolidEnvelopesBulk", + "FontAwesomeSolidEquals", + "FontAwesomeSolidEraser", + "FontAwesomeSolidEthernet", + "FontAwesomeSolidEuroSign", + "FontAwesomeSolidExclamation", + "FontAwesomeSolidExpand", + "FontAwesomeSolidExplosion", + "FontAwesomeSolidEyeDropper", + "FontAwesomeSolidEyeLowVision", + "FontAwesomeSolidEyeSlash", + "FontAwesomeSolidEye", + "FontAwesomeSolidF", + "FontAwesomeSolidFaceAngry", + "FontAwesomeSolidFaceDizzy", + "FontAwesomeSolidFaceFlushed", + "FontAwesomeSolidFaceFrownOpen", + "FontAwesomeSolidFaceFrown", + "FontAwesomeSolidFaceGrimace", + "FontAwesomeSolidFaceGrinBeamSweat", + "FontAwesomeSolidFaceGrinBeam", + "FontAwesomeSolidFaceGrinHearts", + "FontAwesomeSolidFaceGrinSquintTears", + "FontAwesomeSolidFaceGrinSquint", + "FontAwesomeSolidFaceGrinStars", + "FontAwesomeSolidFaceGrinTears", + "FontAwesomeSolidFaceGrinTongueSquint", + "FontAwesomeSolidFaceGrinTongueWink", + "FontAwesomeSolidFaceGrinTongue", + "FontAwesomeSolidFaceGrinWide", + "FontAwesomeSolidFaceGrinWink", + "FontAwesomeSolidFaceGrin", + "FontAwesomeSolidFaceKissBeam", + "FontAwesomeSolidFaceKissWinkHeart", + "FontAwesomeSolidFaceKiss", + "FontAwesomeSolidFaceLaughBeam", + "FontAwesomeSolidFaceLaughSquint", + "FontAwesomeSolidFaceLaughWink", + "FontAwesomeSolidFaceLaugh", + "FontAwesomeSolidFaceMehBlank", + "FontAwesomeSolidFaceMeh", + "FontAwesomeSolidFaceRollingEyes", + "FontAwesomeSolidFaceSadCry", + "FontAwesomeSolidFaceSadTear", + "FontAwesomeSolidFaceSmileBeam", + "FontAwesomeSolidFaceSmileWink", + "FontAwesomeSolidFaceSmile", + "FontAwesomeSolidFaceSurprise", + "FontAwesomeSolidFaceTired", + "FontAwesomeSolidFan", + "FontAwesomeSolidFaucetDrip", + "FontAwesomeSolidFaucet", + "FontAwesomeSolidFax", + "FontAwesomeSolidFeatherPointed", + "FontAwesomeSolidFeather", + "FontAwesomeSolidFerry", + "FontAwesomeSolidFileArrowDown", + "FontAwesomeSolidFileArrowUp", + "FontAwesomeSolidFileAudio", + "FontAwesomeSolidFileCircleCheck", + "FontAwesomeSolidFileCircleExclamation", + "FontAwesomeSolidFileCircleMinus", + "FontAwesomeSolidFileCirclePlus", + "FontAwesomeSolidFileCircleQuestion", + "FontAwesomeSolidFileCircleXmark", + "FontAwesomeSolidFileCode", + "FontAwesomeSolidFileContract", + "FontAwesomeSolidFileCsv", + "FontAwesomeSolidFileExcel", + "FontAwesomeSolidFileExport", + "FontAwesomeSolidFileImage", + "FontAwesomeSolidFileImport", + "FontAwesomeSolidFileInvoiceDollar", + "FontAwesomeSolidFileInvoice", + "FontAwesomeSolidFileLines", + "FontAwesomeSolidFileMedical", + "FontAwesomeSolidFilePdf", + "FontAwesomeSolidFilePen", + "FontAwesomeSolidFilePowerpoint", + "FontAwesomeSolidFilePrescription", + "FontAwesomeSolidFileShield", + "FontAwesomeSolidFileSignature", + "FontAwesomeSolidFileVideo", + "FontAwesomeSolidFileWaveform", + "FontAwesomeSolidFileWord", + "FontAwesomeSolidFileZipper", + "FontAwesomeSolidFile", + "FontAwesomeSolidFillDrip", + "FontAwesomeSolidFill", + "FontAwesomeSolidFilm", + "FontAwesomeSolidFilterCircleDollar", + "FontAwesomeSolidFilterCircleXmark", + "FontAwesomeSolidFilter", + "FontAwesomeSolidFingerprint", + "FontAwesomeSolidFireBurner", + "FontAwesomeSolidFireExtinguisher", + "FontAwesomeSolidFireFlameCurved", + "FontAwesomeSolidFireFlameSimple", + "FontAwesomeSolidFire", + "FontAwesomeSolidFishFins", + "FontAwesomeSolidFish", + "FontAwesomeSolidFlagCheckered", + "FontAwesomeSolidFlagUsa", + "FontAwesomeSolidFlag", + "FontAwesomeSolidFlaskVial", + "FontAwesomeSolidFlask", + "FontAwesomeSolidFloppyDisk", + "FontAwesomeSolidFlorinSign", + "FontAwesomeSolidFolderClosed", + "FontAwesomeSolidFolderMinus", + "FontAwesomeSolidFolderOpen", + "FontAwesomeSolidFolderPlus", + "FontAwesomeSolidFolderTree", + "FontAwesomeSolidFolder", + "FontAwesomeSolidFontAwesome", + "FontAwesomeSolidFont", + "FontAwesomeSolidFootball", + "FontAwesomeSolidForwardFast", + "FontAwesomeSolidForwardStep", + "FontAwesomeSolidForward", + "FontAwesomeSolidFrancSign", + "FontAwesomeSolidFrog", + "FontAwesomeSolidFutbol", + "FontAwesomeSolidG", + "FontAwesomeSolidGamepad", + "FontAwesomeSolidGasPump", + "FontAwesomeSolidGaugeHigh", + "FontAwesomeSolidGaugeSimpleHigh", + "FontAwesomeSolidGaugeSimple", + "FontAwesomeSolidGauge", + "FontAwesomeSolidGavel", + "FontAwesomeSolidGear", + "FontAwesomeSolidGears", + "FontAwesomeSolidGem", + "FontAwesomeSolidGenderless", + "FontAwesomeSolidGhost", + "FontAwesomeSolidGift", + "FontAwesomeSolidGifts", + "FontAwesomeSolidGlassWaterDroplet", + "FontAwesomeSolidGlassWater", + "FontAwesomeSolidGlasses", + "FontAwesomeSolidGlobe", + "FontAwesomeSolidGolfBallTee", + "FontAwesomeSolidGopuram", + "FontAwesomeSolidGraduationCap", + "FontAwesomeSolidGreaterThanEqual", + "FontAwesomeSolidGreaterThan", + "FontAwesomeSolidGripLinesVertical", + "FontAwesomeSolidGripLines", + "FontAwesomeSolidGripVertical", + "FontAwesomeSolidGrip", + "FontAwesomeSolidGroupArrowsRotate", + "FontAwesomeSolidGuaraniSign", + "FontAwesomeSolidGuitar", + "FontAwesomeSolidGun", + "FontAwesomeSolidH", + "FontAwesomeSolidHammer", + "FontAwesomeSolidHamsa", + "FontAwesomeSolidHandBackFist", + "FontAwesomeSolidHandDots", + "FontAwesomeSolidHandFist", + "FontAwesomeSolidHandHoldingDollar", + "FontAwesomeSolidHandHoldingDroplet", + "FontAwesomeSolidHandHoldingHand", + "FontAwesomeSolidHandHoldingHeart", + "FontAwesomeSolidHandHoldingMedical", + "FontAwesomeSolidHandHolding", + "FontAwesomeSolidHandLizard", + "FontAwesomeSolidHandMiddleFinger", + "FontAwesomeSolidHandPeace", + "FontAwesomeSolidHandPointDown", + "FontAwesomeSolidHandPointLeft", + "FontAwesomeSolidHandPointRight", + "FontAwesomeSolidHandPointUp", + "FontAwesomeSolidHandPointer", + "FontAwesomeSolidHandScissors", + "FontAwesomeSolidHandSparkles", + "FontAwesomeSolidHandSpock", + "FontAwesomeSolidHand", + "FontAwesomeSolidHandcuffs", + "FontAwesomeSolidHandsAslInterpreting", + "FontAwesomeSolidHandsBound", + "FontAwesomeSolidHandsBubbles", + "FontAwesomeSolidHandsClapping", + "FontAwesomeSolidHandsHoldingChild", + "FontAwesomeSolidHandsHoldingCircle", + "FontAwesomeSolidHandsHolding", + "FontAwesomeSolidHandsPraying", + "FontAwesomeSolidHands", + "FontAwesomeSolidHandshakeAngle", + "FontAwesomeSolidHandshakeSimpleSlash", + "FontAwesomeSolidHandshakeSimple", + "FontAwesomeSolidHandshakeSlash", + "FontAwesomeSolidHandshake", + "FontAwesomeSolidHanukiah", + "FontAwesomeSolidHardDrive", + "FontAwesomeSolidHashtag", + "FontAwesomeSolidHatCowboySide", + "FontAwesomeSolidHatCowboy", + "FontAwesomeSolidHatWizard", + "FontAwesomeSolidHeadSideCoughSlash", + "FontAwesomeSolidHeadSideCough", + "FontAwesomeSolidHeadSideMask", + "FontAwesomeSolidHeadSideVirus", + "FontAwesomeSolidHeading", + "FontAwesomeSolidHeadphonesSimple", + "FontAwesomeSolidHeadphones", + "FontAwesomeSolidHeadset", + "FontAwesomeSolidHeartCircleBolt", + "FontAwesomeSolidHeartCircleCheck", + "FontAwesomeSolidHeartCircleExclamation", + "FontAwesomeSolidHeartCircleMinus", + "FontAwesomeSolidHeartCirclePlus", + "FontAwesomeSolidHeartCircleXmark", + "FontAwesomeSolidHeartCrack", + "FontAwesomeSolidHeartPulse", + "FontAwesomeSolidHeart", + "FontAwesomeSolidHelicopterSymbol", + "FontAwesomeSolidHelicopter", + "FontAwesomeSolidHelmetSafety", + "FontAwesomeSolidHelmetUn", + "FontAwesomeSolidHighlighter", + "FontAwesomeSolidHillAvalanche", + "FontAwesomeSolidHillRockslide", + "FontAwesomeSolidHippo", + "FontAwesomeSolidHockeyPuck", + "FontAwesomeSolidHollyBerry", + "FontAwesomeSolidHorseHead", + "FontAwesomeSolidHorse", + "FontAwesomeSolidHospitalUser", + "FontAwesomeSolidHospital", + "FontAwesomeSolidHotTubPerson", + "FontAwesomeSolidHotdog", + "FontAwesomeSolidHotel", + "FontAwesomeSolidHourglassEmpty", + "FontAwesomeSolidHourglassEnd", + "FontAwesomeSolidHourglassStart", + "FontAwesomeSolidHourglass", + "FontAwesomeSolidHouseChimneyCrack", + "FontAwesomeSolidHouseChimneyMedical", + "FontAwesomeSolidHouseChimneyUser", + "FontAwesomeSolidHouseChimneyWindow", + "FontAwesomeSolidHouseChimney", + "FontAwesomeSolidHouseCircleCheck", + "FontAwesomeSolidHouseCircleExclamation", + "FontAwesomeSolidHouseCircleXmark", + "FontAwesomeSolidHouseCrack", + "FontAwesomeSolidHouseFire", + "FontAwesomeSolidHouseFlag", + "FontAwesomeSolidHouseFloodWaterCircleArrowRight", + "FontAwesomeSolidHouseFloodWater", + "FontAwesomeSolidHouseLaptop", + "FontAwesomeSolidHouseLock", + "FontAwesomeSolidHouseMedicalCircleCheck", + "FontAwesomeSolidHouseMedicalCircleExclamation", + "FontAwesomeSolidHouseMedicalCircleXmark", + "FontAwesomeSolidHouseMedicalFlag", + "FontAwesomeSolidHouseMedical", + "FontAwesomeSolidHouseSignal", + "FontAwesomeSolidHouseTsunami", + "FontAwesomeSolidHouseUser", + "FontAwesomeSolidHouse", + "FontAwesomeSolidHryvniaSign", + "FontAwesomeSolidHurricane", + "FontAwesomeSolidICursor", + "FontAwesomeSolidI", + "FontAwesomeSolidIceCream", + "FontAwesomeSolidIcicles", + "FontAwesomeSolidIcons", + "FontAwesomeSolidIdBadge", + "FontAwesomeSolidIdCardClip", + "FontAwesomeSolidIdCard", + "FontAwesomeSolidIgloo", + "FontAwesomeSolidImagePortrait", + "FontAwesomeSolidImage", + "FontAwesomeSolidImages", + "FontAwesomeSolidInbox", + "FontAwesomeSolidIndent", + "FontAwesomeSolidIndianRupeeSign", + "FontAwesomeSolidIndustry", + "FontAwesomeSolidInfinity", + "FontAwesomeSolidInfo", + "FontAwesomeSolidItalic", + "FontAwesomeSolidJ", + "FontAwesomeSolidJarWheat", + "FontAwesomeSolidJar", + "FontAwesomeSolidJedi", + "FontAwesomeSolidJetFighterUp", + "FontAwesomeSolidJetFighter", + "FontAwesomeSolidJoint", + "FontAwesomeSolidJugDetergent", + "FontAwesomeSolidK", + "FontAwesomeSolidKaaba", + "FontAwesomeSolidKey", + "FontAwesomeSolidKeyboard", + "FontAwesomeSolidKhanda", + "FontAwesomeSolidKipSign", + "FontAwesomeSolidKitMedical", + "FontAwesomeSolidKitchenSet", + "FontAwesomeSolidKiwiBird", + "FontAwesomeSolidL", + "FontAwesomeSolidLandMineOn", + "FontAwesomeSolidLandmarkDome", + "FontAwesomeSolidLandmarkFlag", + "FontAwesomeSolidLandmark", + "FontAwesomeSolidLanguage", + "FontAwesomeSolidLaptopCode", + "FontAwesomeSolidLaptopFile", + "FontAwesomeSolidLaptopMedical", + "FontAwesomeSolidLaptop", + "FontAwesomeSolidLariSign", + "FontAwesomeSolidLayerGroup", + "FontAwesomeSolidLeaf", + "FontAwesomeSolidLeftLong", + "FontAwesomeSolidLeftRight", + "FontAwesomeSolidLemon", + "FontAwesomeSolidLessThanEqual", + "FontAwesomeSolidLessThan", + "FontAwesomeSolidLifeRing", + "FontAwesomeSolidLightbulb", + "FontAwesomeSolidLinesLeaning", + "FontAwesomeSolidLinkSlash", + "FontAwesomeSolidLink", + "FontAwesomeSolidLiraSign", + "FontAwesomeSolidListCheck", + "FontAwesomeSolidListOl", + "FontAwesomeSolidListUl", + "FontAwesomeSolidList", + "FontAwesomeSolidLitecoinSign", + "FontAwesomeSolidLocationArrow", + "FontAwesomeSolidLocationCrosshairs", + "FontAwesomeSolidLocationDot", + "FontAwesomeSolidLocationPinLock", + "FontAwesomeSolidLocationPin", + "FontAwesomeSolidLockOpen", + "FontAwesomeSolidLock", + "FontAwesomeSolidLocust", + "FontAwesomeSolidLungsVirus", + "FontAwesomeSolidLungs", + "FontAwesomeSolidM", + "FontAwesomeSolidMagnet", + "FontAwesomeSolidMagnifyingGlassArrowRight", + "FontAwesomeSolidMagnifyingGlassChart", + "FontAwesomeSolidMagnifyingGlassDollar", + "FontAwesomeSolidMagnifyingGlassLocation", + "FontAwesomeSolidMagnifyingGlassMinus", + "FontAwesomeSolidMagnifyingGlassPlus", + "FontAwesomeSolidMagnifyingGlass", + "FontAwesomeSolidManatSign", + "FontAwesomeSolidMapLocationDot", + "FontAwesomeSolidMapLocation", + "FontAwesomeSolidMapPin", + "FontAwesomeSolidMap", + "FontAwesomeSolidMarker", + "FontAwesomeSolidMarsAndVenusBurst", + "FontAwesomeSolidMarsAndVenus", + "FontAwesomeSolidMarsDouble", + "FontAwesomeSolidMarsStrokeRight", + "FontAwesomeSolidMarsStrokeUp", + "FontAwesomeSolidMarsStroke", + "FontAwesomeSolidMars", + "FontAwesomeSolidMartiniGlassCitrus", + "FontAwesomeSolidMartiniGlassEmpty", + "FontAwesomeSolidMartiniGlass", + "FontAwesomeSolidMaskFace", + "FontAwesomeSolidMaskVentilator", + "FontAwesomeSolidMask", + "FontAwesomeSolidMasksTheater", + "FontAwesomeSolidMattressPillow", + "FontAwesomeSolidMaximize", + "FontAwesomeSolidMedal", + "FontAwesomeSolidMemory", + "FontAwesomeSolidMenorah", + "FontAwesomeSolidMercury", + "FontAwesomeSolidMessage", + "FontAwesomeSolidMeteor", + "FontAwesomeSolidMicrochip", + "FontAwesomeSolidMicrophoneLinesSlash", + "FontAwesomeSolidMicrophoneLines", + "FontAwesomeSolidMicrophoneSlash", + "FontAwesomeSolidMicrophone", + "FontAwesomeSolidMicroscope", + "FontAwesomeSolidMillSign", + "FontAwesomeSolidMinimize", + "FontAwesomeSolidMinus", + "FontAwesomeSolidMitten", + "FontAwesomeSolidMobileButton", + "FontAwesomeSolidMobileRetro", + "FontAwesomeSolidMobileScreenButton", + "FontAwesomeSolidMobileScreen", + "FontAwesomeSolidMobile", + "FontAwesomeSolidMoneyBill1Wave", + "FontAwesomeSolidMoneyBill1", + "FontAwesomeSolidMoneyBillTransfer", + "FontAwesomeSolidMoneyBillTrendUp", + "FontAwesomeSolidMoneyBillWave", + "FontAwesomeSolidMoneyBillWheat", + "FontAwesomeSolidMoneyBill", + "FontAwesomeSolidMoneyBills", + "FontAwesomeSolidMoneyCheckDollar", + "FontAwesomeSolidMoneyCheck", + "FontAwesomeSolidMonument", + "FontAwesomeSolidMoon", + "FontAwesomeSolidMortarPestle", + "FontAwesomeSolidMosque", + "FontAwesomeSolidMosquitoNet", + "FontAwesomeSolidMosquito", + "FontAwesomeSolidMotorcycle", + "FontAwesomeSolidMound", + "FontAwesomeSolidMountainCity", + "FontAwesomeSolidMountainSun", + "FontAwesomeSolidMountain", + "FontAwesomeSolidMugHot", + "FontAwesomeSolidMugSaucer", + "FontAwesomeSolidMusic", + "FontAwesomeSolidN", + "FontAwesomeSolidNairaSign", + "FontAwesomeSolidNetworkWired", + "FontAwesomeSolidNeuter", + "FontAwesomeSolidNewspaper", + "FontAwesomeSolidNotEqual", + "FontAwesomeSolidNoteSticky", + "FontAwesomeSolidNotesMedical", + "FontAwesomeSolidO", + "FontAwesomeSolidObjectGroup", + "FontAwesomeSolidObjectUngroup", + "FontAwesomeSolidOilCan", + "FontAwesomeSolidOilWell", + "FontAwesomeSolidOm", + "FontAwesomeSolidOtter", + "FontAwesomeSolidOutdent", + "FontAwesomeSolidP", + "FontAwesomeSolidPager", + "FontAwesomeSolidPaintRoller", + "FontAwesomeSolidPaintbrush", + "FontAwesomeSolidPalette", + "FontAwesomeSolidPallet", + "FontAwesomeSolidPanorama", + "FontAwesomeSolidPaperPlane", + "FontAwesomeSolidPaperclip", + "FontAwesomeSolidParachuteBox", + "FontAwesomeSolidParagraph", + "FontAwesomeSolidPassport", + "FontAwesomeSolidPaste", + "FontAwesomeSolidPause", + "FontAwesomeSolidPaw", + "FontAwesomeSolidPeace", + "FontAwesomeSolidPenClip", + "FontAwesomeSolidPenFancy", + "FontAwesomeSolidPenNib", + "FontAwesomeSolidPenRuler", + "FontAwesomeSolidPenToSquare", + "FontAwesomeSolidPen", + "FontAwesomeSolidPencil", + "FontAwesomeSolidPeopleArrowsLeftRight", + "FontAwesomeSolidPeopleCarryBox", + "FontAwesomeSolidPeopleGroup", + "FontAwesomeSolidPeopleLine", + "FontAwesomeSolidPeoplePulling", + "FontAwesomeSolidPeopleRobbery", + "FontAwesomeSolidPeopleRoof", + "FontAwesomeSolidPepperHot", + "FontAwesomeSolidPercent", + "FontAwesomeSolidPersonArrowDownToLine", + "FontAwesomeSolidPersonArrowUpFromLine", + "FontAwesomeSolidPersonBiking", + "FontAwesomeSolidPersonBooth", + "FontAwesomeSolidPersonBreastfeeding", + "FontAwesomeSolidPersonBurst", + "FontAwesomeSolidPersonCane", + "FontAwesomeSolidPersonChalkboard", + "FontAwesomeSolidPersonCircleCheck", + "FontAwesomeSolidPersonCircleExclamation", + "FontAwesomeSolidPersonCircleMinus", + "FontAwesomeSolidPersonCirclePlus", + "FontAwesomeSolidPersonCircleQuestion", + "FontAwesomeSolidPersonCircleXmark", + "FontAwesomeSolidPersonDigging", + "FontAwesomeSolidPersonDotsFromLine", + "FontAwesomeSolidPersonDressBurst", + "FontAwesomeSolidPersonDress", + "FontAwesomeSolidPersonDrowning", + "FontAwesomeSolidPersonFallingBurst", + "FontAwesomeSolidPersonFalling", + "FontAwesomeSolidPersonHalfDress", + "FontAwesomeSolidPersonHarassing", + "FontAwesomeSolidPersonHiking", + "FontAwesomeSolidPersonMilitaryPointing", + "FontAwesomeSolidPersonMilitaryRifle", + "FontAwesomeSolidPersonMilitaryToPerson", + "FontAwesomeSolidPersonPraying", + "FontAwesomeSolidPersonPregnant", + "FontAwesomeSolidPersonRays", + "FontAwesomeSolidPersonRifle", + "FontAwesomeSolidPersonRunning", + "FontAwesomeSolidPersonShelter", + "FontAwesomeSolidPersonSkating", + "FontAwesomeSolidPersonSkiingNordic", + "FontAwesomeSolidPersonSkiing", + "FontAwesomeSolidPersonSnowboarding", + "FontAwesomeSolidPersonSwimming", + "FontAwesomeSolidPersonThroughWindow", + "FontAwesomeSolidPersonWalkingArrowLoopLeft", + "FontAwesomeSolidPersonWalkingArrowRight", + "FontAwesomeSolidPersonWalkingDashedLineArrowRight", + "FontAwesomeSolidPersonWalkingLuggage", + "FontAwesomeSolidPersonWalkingWithCane", + "FontAwesomeSolidPersonWalking", + "FontAwesomeSolidPerson", + "FontAwesomeSolidPesetaSign", + "FontAwesomeSolidPesoSign", + "FontAwesomeSolidPhoneFlip", + "FontAwesomeSolidPhoneSlash", + "FontAwesomeSolidPhoneVolume", + "FontAwesomeSolidPhone", + "FontAwesomeSolidPhotoFilm", + "FontAwesomeSolidPiggyBank", + "FontAwesomeSolidPills", + "FontAwesomeSolidPizzaSlice", + "FontAwesomeSolidPlaceOfWorship", + "FontAwesomeSolidPlaneArrival", + "FontAwesomeSolidPlaneCircleCheck", + "FontAwesomeSolidPlaneCircleExclamation", + "FontAwesomeSolidPlaneCircleXmark", + "FontAwesomeSolidPlaneDeparture", + "FontAwesomeSolidPlaneLock", + "FontAwesomeSolidPlaneSlash", + "FontAwesomeSolidPlaneUp", + "FontAwesomeSolidPlane", + "FontAwesomeSolidPlantWilt", + "FontAwesomeSolidPlateWheat", + "FontAwesomeSolidPlay", + "FontAwesomeSolidPlugCircleBolt", + "FontAwesomeSolidPlugCircleCheck", + "FontAwesomeSolidPlugCircleExclamation", + "FontAwesomeSolidPlugCircleMinus", + "FontAwesomeSolidPlugCirclePlus", + "FontAwesomeSolidPlugCircleXmark", + "FontAwesomeSolidPlug", + "FontAwesomeSolidPlusMinus", + "FontAwesomeSolidPlus", + "FontAwesomeSolidPodcast", + "FontAwesomeSolidPooStorm", + "FontAwesomeSolidPoo", + "FontAwesomeSolidPoop", + "FontAwesomeSolidPowerOff", + "FontAwesomeSolidPrescriptionBottleMedical", + "FontAwesomeSolidPrescriptionBottle", + "FontAwesomeSolidPrescription", + "FontAwesomeSolidPrint", + "FontAwesomeSolidPumpMedical", + "FontAwesomeSolidPumpSoap", + "FontAwesomeSolidPuzzlePiece", + "FontAwesomeSolidQ", + "FontAwesomeSolidQrcode", + "FontAwesomeSolidQuestion", + "FontAwesomeSolidQuoteLeft", + "FontAwesomeSolidQuoteRight", + "FontAwesomeSolidR", + "FontAwesomeSolidRadiation", + "FontAwesomeSolidRadio", + "FontAwesomeSolidRainbow", + "FontAwesomeSolidRankingStar", + "FontAwesomeSolidReceipt", + "FontAwesomeSolidRecordVinyl", + "FontAwesomeSolidRectangleAd", + "FontAwesomeSolidRectangleList", + "FontAwesomeSolidRectangleXmark", + "FontAwesomeSolidRecycle", + "FontAwesomeSolidRegistered", + "FontAwesomeSolidRepeat", + "FontAwesomeSolidReplyAll", + "FontAwesomeSolidReply", + "FontAwesomeSolidRepublican", + "FontAwesomeSolidRestroom", + "FontAwesomeSolidRetweet", + "FontAwesomeSolidRibbon", + "FontAwesomeSolidRightFromBracket", + "FontAwesomeSolidRightLeft", + "FontAwesomeSolidRightLong", + "FontAwesomeSolidRightToBracket", + "FontAwesomeSolidRing", + "FontAwesomeSolidRoadBarrier", + "FontAwesomeSolidRoadBridge", + "FontAwesomeSolidRoadCircleCheck", + "FontAwesomeSolidRoadCircleExclamation", + "FontAwesomeSolidRoadCircleXmark", + "FontAwesomeSolidRoadLock", + "FontAwesomeSolidRoadSpikes", + "FontAwesomeSolidRoad", + "FontAwesomeSolidRobot", + "FontAwesomeSolidRocket", + "FontAwesomeSolidRotateLeft", + "FontAwesomeSolidRotateRight", + "FontAwesomeSolidRotate", + "FontAwesomeSolidRoute", + "FontAwesomeSolidRss", + "FontAwesomeSolidRubleSign", + "FontAwesomeSolidRug", + "FontAwesomeSolidRulerCombined", + "FontAwesomeSolidRulerHorizontal", + "FontAwesomeSolidRulerVertical", + "FontAwesomeSolidRuler", + "FontAwesomeSolidRupeeSign", + "FontAwesomeSolidRupiahSign", + "FontAwesomeSolidS", + "FontAwesomeSolidSackDollar", + "FontAwesomeSolidSackXmark", + "FontAwesomeSolidSailboat", + "FontAwesomeSolidSatelliteDish", + "FontAwesomeSolidSatellite", + "FontAwesomeSolidScaleBalanced", + "FontAwesomeSolidScaleUnbalancedFlip", + "FontAwesomeSolidScaleUnbalanced", + "FontAwesomeSolidSchoolCircleCheck", + "FontAwesomeSolidSchoolCircleExclamation", + "FontAwesomeSolidSchoolCircleXmark", + "FontAwesomeSolidSchoolFlag", + "FontAwesomeSolidSchoolLock", + "FontAwesomeSolidSchool", + "FontAwesomeSolidScissors", + "FontAwesomeSolidScrewdriverWrench", + "FontAwesomeSolidScrewdriver", + "FontAwesomeSolidScrollTorah", + "FontAwesomeSolidScroll", + "FontAwesomeSolidSdCard", + "FontAwesomeSolidSection", + "FontAwesomeSolidSeedling", + "FontAwesomeSolidServer", + "FontAwesomeSolidShapes", + "FontAwesomeSolidShareFromSquare", + "FontAwesomeSolidShareNodes", + "FontAwesomeSolidShare", + "FontAwesomeSolidSheetPlastic", + "FontAwesomeSolidShekelSign", + "FontAwesomeSolidShieldBlank", + "FontAwesomeSolidShieldCat", + "FontAwesomeSolidShieldDog", + "FontAwesomeSolidShieldHalved", + "FontAwesomeSolidShieldHeart", + "FontAwesomeSolidShieldVirus", + "FontAwesomeSolidShield", + "FontAwesomeSolidShip", + "FontAwesomeSolidShirt", + "FontAwesomeSolidShoePrints", + "FontAwesomeSolidShopLock", + "FontAwesomeSolidShopSlash", + "FontAwesomeSolidShop", + "FontAwesomeSolidShower", + "FontAwesomeSolidShrimp", + "FontAwesomeSolidShuffle", + "FontAwesomeSolidShuttleSpace", + "FontAwesomeSolidSignHanging", + "FontAwesomeSolidSignal", + "FontAwesomeSolidSignature", + "FontAwesomeSolidSignsPost", + "FontAwesomeSolidSimCard", + "FontAwesomeSolidSink", + "FontAwesomeSolidSitemap", + "FontAwesomeSolidSkullCrossbones", + "FontAwesomeSolidSkull", + "FontAwesomeSolidSlash", + "FontAwesomeSolidSleigh", + "FontAwesomeSolidSliders", + "FontAwesomeSolidSmog", + "FontAwesomeSolidSmoking", + "FontAwesomeSolidSnowflake", + "FontAwesomeSolidSnowman", + "FontAwesomeSolidSnowplow", + "FontAwesomeSolidSoap", + "FontAwesomeSolidSocks", + "FontAwesomeSolidSolarPanel", + "FontAwesomeSolidSortDown", + "FontAwesomeSolidSortUp", + "FontAwesomeSolidSort", + "FontAwesomeSolidSpa", + "FontAwesomeSolidSpaghettiMonsterFlying", + "FontAwesomeSolidSpellCheck", + "FontAwesomeSolidSpider", + "FontAwesomeSolidSpinner", + "FontAwesomeSolidSplotch", + "FontAwesomeSolidSpoon", + "FontAwesomeSolidSprayCanSparkles", + "FontAwesomeSolidSprayCan", + "FontAwesomeSolidSquareArrowUpRight", + "FontAwesomeSolidSquareCaretDown", + "FontAwesomeSolidSquareCaretLeft", + "FontAwesomeSolidSquareCaretRight", + "FontAwesomeSolidSquareCaretUp", + "FontAwesomeSolidSquareCheck", + "FontAwesomeSolidSquareEnvelope", + "FontAwesomeSolidSquareFull", + "FontAwesomeSolidSquareH", + "FontAwesomeSolidSquareMinus", + "FontAwesomeSolidSquareNfi", + "FontAwesomeSolidSquareParking", + "FontAwesomeSolidSquarePen", + "FontAwesomeSolidSquarePersonConfined", + "FontAwesomeSolidSquarePhoneFlip", + "FontAwesomeSolidSquarePhone", + "FontAwesomeSolidSquarePlus", + "FontAwesomeSolidSquarePollHorizontal", + "FontAwesomeSolidSquarePollVertical", + "FontAwesomeSolidSquareRootVariable", + "FontAwesomeSolidSquareRss", + "FontAwesomeSolidSquareShareNodes", + "FontAwesomeSolidSquareUpRight", + "FontAwesomeSolidSquareVirus", + "FontAwesomeSolidSquareXmark", + "FontAwesomeSolidSquare", + "FontAwesomeSolidStaffAesculapius", + "FontAwesomeSolidStairs", + "FontAwesomeSolidStamp", + "FontAwesomeSolidStarAndCrescent", + "FontAwesomeSolidStarHalfStroke", + "FontAwesomeSolidStarHalf", + "FontAwesomeSolidStarOfDavid", + "FontAwesomeSolidStarOfLife", + "FontAwesomeSolidStar", + "FontAwesomeSolidSterlingSign", + "FontAwesomeSolidStethoscope", + "FontAwesomeSolidStop", + "FontAwesomeSolidStopwatch20", + "FontAwesomeSolidStopwatch", + "FontAwesomeSolidStoreSlash", + "FontAwesomeSolidStore", + "FontAwesomeSolidStreetView", + "FontAwesomeSolidStrikethrough", + "FontAwesomeSolidStroopwafel", + "FontAwesomeSolidSubscript", + "FontAwesomeSolidSuitcaseMedical", + "FontAwesomeSolidSuitcaseRolling", + "FontAwesomeSolidSuitcase", + "FontAwesomeSolidSunPlantWilt", + "FontAwesomeSolidSun", + "FontAwesomeSolidSuperscript", + "FontAwesomeSolidSwatchbook", + "FontAwesomeSolidSynagogue", + "FontAwesomeSolidSyringe", + "FontAwesomeSolidT", + "FontAwesomeSolidTableCellsLarge", + "FontAwesomeSolidTableCells", + "FontAwesomeSolidTableColumns", + "FontAwesomeSolidTableList", + "FontAwesomeSolidTableTennisPaddleBall", + "FontAwesomeSolidTable", + "FontAwesomeSolidTabletButton", + "FontAwesomeSolidTabletScreenButton", + "FontAwesomeSolidTablet", + "FontAwesomeSolidTablets", + "FontAwesomeSolidTachographDigital", + "FontAwesomeSolidTag", + "FontAwesomeSolidTags", + "FontAwesomeSolidTape", + "FontAwesomeSolidTarpDroplet", + "FontAwesomeSolidTarp", + "FontAwesomeSolidTaxi", + "FontAwesomeSolidTeethOpen", + "FontAwesomeSolidTeeth", + "FontAwesomeSolidTemperatureArrowDown", + "FontAwesomeSolidTemperatureArrowUp", + "FontAwesomeSolidTemperatureEmpty", + "FontAwesomeSolidTemperatureFull", + "FontAwesomeSolidTemperatureHalf", + "FontAwesomeSolidTemperatureHigh", + "FontAwesomeSolidTemperatureLow", + "FontAwesomeSolidTemperatureQuarter", + "FontAwesomeSolidTemperatureThreeQuarters", + "FontAwesomeSolidTengeSign", + "FontAwesomeSolidTentArrowDownToLine", + "FontAwesomeSolidTentArrowLeftRight", + "FontAwesomeSolidTentArrowTurnLeft", + "FontAwesomeSolidTentArrowsDown", + "FontAwesomeSolidTent", + "FontAwesomeSolidTents", + "FontAwesomeSolidTerminal", + "FontAwesomeSolidTextHeight", + "FontAwesomeSolidTextSlash", + "FontAwesomeSolidTextWidth", + "FontAwesomeSolidThermometer", + "FontAwesomeSolidThumbsDown", + "FontAwesomeSolidThumbsUp", + "FontAwesomeSolidThumbtack", + "FontAwesomeSolidTicketSimple", + "FontAwesomeSolidTicket", + "FontAwesomeSolidTimeline", + "FontAwesomeSolidToggleOff", + "FontAwesomeSolidToggleOn", + "FontAwesomeSolidToiletPaperSlash", + "FontAwesomeSolidToiletPaper", + "FontAwesomeSolidToiletPortable", + "FontAwesomeSolidToilet", + "FontAwesomeSolidToiletsPortable", + "FontAwesomeSolidToolbox", + "FontAwesomeSolidTooth", + "FontAwesomeSolidToriiGate", + "FontAwesomeSolidTornado", + "FontAwesomeSolidTowerBroadcast", + "FontAwesomeSolidTowerCell", + "FontAwesomeSolidTowerObservation", + "FontAwesomeSolidTractor", + "FontAwesomeSolidTrademark", + "FontAwesomeSolidTrafficLight", + "FontAwesomeSolidTrailer", + "FontAwesomeSolidTrainSubway", + "FontAwesomeSolidTrainTram", + "FontAwesomeSolidTrain", + "FontAwesomeSolidTransgender", + "FontAwesomeSolidTrashArrowUp", + "FontAwesomeSolidTrashCanArrowUp", + "FontAwesomeSolidTrashCan", + "FontAwesomeSolidTrash", + "FontAwesomeSolidTreeCity", + "FontAwesomeSolidTree", + "FontAwesomeSolidTriangleExclamation", + "FontAwesomeSolidTrophy", + "FontAwesomeSolidTrowelBricks", + "FontAwesomeSolidTrowel", + "FontAwesomeSolidTruckArrowRight", + "FontAwesomeSolidTruckDroplet", + "FontAwesomeSolidTruckFast", + "FontAwesomeSolidTruckFieldUn", + "FontAwesomeSolidTruckField", + "FontAwesomeSolidTruckFront", + "FontAwesomeSolidTruckMedical", + "FontAwesomeSolidTruckMonster", + "FontAwesomeSolidTruckMoving", + "FontAwesomeSolidTruckPickup", + "FontAwesomeSolidTruckPlane", + "FontAwesomeSolidTruckRampBox", + "FontAwesomeSolidTruck", + "FontAwesomeSolidTty", + "FontAwesomeSolidTurkishLiraSign", + "FontAwesomeSolidTurnDown", + "FontAwesomeSolidTurnUp", + "FontAwesomeSolidTv", + "FontAwesomeSolidU", + "FontAwesomeSolidUmbrellaBeach", + "FontAwesomeSolidUmbrella", + "FontAwesomeSolidUnderline", + "FontAwesomeSolidUniversalAccess", + "FontAwesomeSolidUnlockKeyhole", + "FontAwesomeSolidUnlock", + "FontAwesomeSolidUpDownLeftRight", + "FontAwesomeSolidUpDown", + "FontAwesomeSolidUpLong", + "FontAwesomeSolidUpRightAndDownLeftFromCenter", + "FontAwesomeSolidUpRightFromSquare", + "FontAwesomeSolidUpload", + "FontAwesomeSolidUserAstronaut", + "FontAwesomeSolidUserCheck", + "FontAwesomeSolidUserClock", + "FontAwesomeSolidUserDoctor", + "FontAwesomeSolidUserGear", + "FontAwesomeSolidUserGraduate", + "FontAwesomeSolidUserGroup", + "FontAwesomeSolidUserInjured", + "FontAwesomeSolidUserLargeSlash", + "FontAwesomeSolidUserLarge", + "FontAwesomeSolidUserLock", + "FontAwesomeSolidUserMinus", + "FontAwesomeSolidUserNinja", + "FontAwesomeSolidUserNurse", + "FontAwesomeSolidUserPen", + "FontAwesomeSolidUserPlus", + "FontAwesomeSolidUserSecret", + "FontAwesomeSolidUserShield", + "FontAwesomeSolidUserSlash", + "FontAwesomeSolidUserTag", + "FontAwesomeSolidUserTie", + "FontAwesomeSolidUserXmark", + "FontAwesomeSolidUser", + "FontAwesomeSolidUsersBetweenLines", + "FontAwesomeSolidUsersGear", + "FontAwesomeSolidUsersLine", + "FontAwesomeSolidUsersRays", + "FontAwesomeSolidUsersRectangle", + "FontAwesomeSolidUsersSlash", + "FontAwesomeSolidUsersViewfinder", + "FontAwesomeSolidUsers", + "FontAwesomeSolidUtensils", + "FontAwesomeSolidV", + "FontAwesomeSolidVanShuttle", + "FontAwesomeSolidVault", + "FontAwesomeSolidVectorSquare", + "FontAwesomeSolidVenusDouble", + "FontAwesomeSolidVenusMars", + "FontAwesomeSolidVenus", + "FontAwesomeSolidVestPatches", + "FontAwesomeSolidVest", + "FontAwesomeSolidVialCircleCheck", + "FontAwesomeSolidVialVirus", + "FontAwesomeSolidVial", + "FontAwesomeSolidVials", + "FontAwesomeSolidVideoSlash", + "FontAwesomeSolidVideo", + "FontAwesomeSolidVihara", + "FontAwesomeSolidVirusCovidSlash", + "FontAwesomeSolidVirusCovid", + "FontAwesomeSolidVirusSlash", + "FontAwesomeSolidVirus", + "FontAwesomeSolidViruses", + "FontAwesomeSolidVoicemail", + "FontAwesomeSolidVolcano", + "FontAwesomeSolidVolleyball", + "FontAwesomeSolidVolumeHigh", + "FontAwesomeSolidVolumeLow", + "FontAwesomeSolidVolumeOff", + "FontAwesomeSolidVolumeXmark", + "FontAwesomeSolidVrCardboard", + "FontAwesomeSolidW", + "FontAwesomeSolidWalkieTalkie", + "FontAwesomeSolidWallet", + "FontAwesomeSolidWandMagicSparkles", + "FontAwesomeSolidWandMagic", + "FontAwesomeSolidWandSparkles", + "FontAwesomeSolidWarehouse", + "FontAwesomeSolidWaterLadder", + "FontAwesomeSolidWater", + "FontAwesomeSolidWaveSquare", + "FontAwesomeSolidWeightHanging", + "FontAwesomeSolidWeightScale", + "FontAwesomeSolidWheatAwnCircleExclamation", + "FontAwesomeSolidWheatAwn", + "FontAwesomeSolidWheelchairMove", + "FontAwesomeSolidWheelchair", + "FontAwesomeSolidWhiskeyGlass", + "FontAwesomeSolidWifi", + "FontAwesomeSolidWind", + "FontAwesomeSolidWindowMaximize", + "FontAwesomeSolidWindowMinimize", + "FontAwesomeSolidWindowRestore", + "FontAwesomeSolidWineBottle", + "FontAwesomeSolidWineGlassEmpty", + "FontAwesomeSolidWineGlass", + "FontAwesomeSolidWonSign", + "FontAwesomeSolidWorm", + "FontAwesomeSolidWrench", + "FontAwesomeSolidXRay", + "FontAwesomeSolidX", + "FontAwesomeSolidXmark", + "FontAwesomeSolidXmarksLines", + "FontAwesomeSolidY", + "FontAwesomeSolidYenSign", + "FontAwesomeSolidYinYang", + "FontAwesomeSolidZ" + ], + "generator": [ + "quote", + "convert_case", + "proc-macro2", + "regex", + "base64" + ], + "heroicons_mini_solid": [ + "HeroiconsMiniSolidAcademicCap", + "HeroiconsMiniSolidAdjustmentsHorizontal", + "HeroiconsMiniSolidAdjustmentsVertical", + "HeroiconsMiniSolidArchiveBoxArrowDown", + "HeroiconsMiniSolidArchiveBoxXMark", + "HeroiconsMiniSolidArchiveBox", + "HeroiconsMiniSolidArrowDownCircle", + "HeroiconsMiniSolidArrowDownLeft", + "HeroiconsMiniSolidArrowDownOnSquareStack", + "HeroiconsMiniSolidArrowDownOnSquare", + "HeroiconsMiniSolidArrowDownRight", + "HeroiconsMiniSolidArrowDownTray", + "HeroiconsMiniSolidArrowDown", + "HeroiconsMiniSolidArrowLeftCircle", + "HeroiconsMiniSolidArrowLeftOnRectangle", + "HeroiconsMiniSolidArrowLeft", + "HeroiconsMiniSolidArrowLongDown", + "HeroiconsMiniSolidArrowLongLeft", + "HeroiconsMiniSolidArrowLongRight", + "HeroiconsMiniSolidArrowLongUp", + "HeroiconsMiniSolidArrowPathRoundedSquare", + "HeroiconsMiniSolidArrowPath", + "HeroiconsMiniSolidArrowRightCircle", + "HeroiconsMiniSolidArrowRightOnRectangle", + "HeroiconsMiniSolidArrowRight", + "HeroiconsMiniSolidArrowSmallDown", + "HeroiconsMiniSolidArrowSmallLeft", + "HeroiconsMiniSolidArrowSmallRight", + "HeroiconsMiniSolidArrowSmallUp", + "HeroiconsMiniSolidArrowTopRightOnSquare", + "HeroiconsMiniSolidArrowTrendingDown", + "HeroiconsMiniSolidArrowTrendingUp", + "HeroiconsMiniSolidArrowUpCircle", + "HeroiconsMiniSolidArrowUpLeft", + "HeroiconsMiniSolidArrowUpOnSquareStack", + "HeroiconsMiniSolidArrowUpOnSquare", + "HeroiconsMiniSolidArrowUpRight", + "HeroiconsMiniSolidArrowUpTray", + "HeroiconsMiniSolidArrowUp", + "HeroiconsMiniSolidArrowUturnDown", + "HeroiconsMiniSolidArrowUturnLeft", + "HeroiconsMiniSolidArrowUturnRight", + "HeroiconsMiniSolidArrowUturnUp", + "HeroiconsMiniSolidArrowsPointingIn", + "HeroiconsMiniSolidArrowsPointingOut", + "HeroiconsMiniSolidArrowsRightLeft", + "HeroiconsMiniSolidArrowsUpDown", + "HeroiconsMiniSolidAtSymbol", + "HeroiconsMiniSolidBackspace", + "HeroiconsMiniSolidBackward", + "HeroiconsMiniSolidBanknotes", + "HeroiconsMiniSolidBars2", + "HeroiconsMiniSolidBars3BottomLeft", + "HeroiconsMiniSolidBars3BottomRight", + "HeroiconsMiniSolidBars3CenterLeft", + "HeroiconsMiniSolidBars3", + "HeroiconsMiniSolidBars4", + "HeroiconsMiniSolidBarsArrowDown", + "HeroiconsMiniSolidBarsArrowUp", + "HeroiconsMiniSolidBattery0", + "HeroiconsMiniSolidBattery100", + "HeroiconsMiniSolidBattery50", + "HeroiconsMiniSolidBeaker", + "HeroiconsMiniSolidBellAlert", + "HeroiconsMiniSolidBellSlash", + "HeroiconsMiniSolidBellSnooze", + "HeroiconsMiniSolidBell", + "HeroiconsMiniSolidBoltSlash", + "HeroiconsMiniSolidBolt", + "HeroiconsMiniSolidBookOpen", + "HeroiconsMiniSolidBookmarkSlash", + "HeroiconsMiniSolidBookmarkSquare", + "HeroiconsMiniSolidBookmark", + "HeroiconsMiniSolidBriefcase", + "HeroiconsMiniSolidBugAnt", + "HeroiconsMiniSolidBuildingLibrary", + "HeroiconsMiniSolidBuildingOffice2", + "HeroiconsMiniSolidBuildingOffice", + "HeroiconsMiniSolidBuildingStorefront", + "HeroiconsMiniSolidCake", + "HeroiconsMiniSolidCalculator", + "HeroiconsMiniSolidCalendarDays", + "HeroiconsMiniSolidCalendar", + "HeroiconsMiniSolidCamera", + "HeroiconsMiniSolidChartBarSquare", + "HeroiconsMiniSolidChartBar", + "HeroiconsMiniSolidChartPie", + "HeroiconsMiniSolidChatBubbleBottomCenterText", + "HeroiconsMiniSolidChatBubbleBottomCenter", + "HeroiconsMiniSolidChatBubbleLeftEllipsis", + "HeroiconsMiniSolidChatBubbleLeftRight", + "HeroiconsMiniSolidChatBubbleLeft", + "HeroiconsMiniSolidChatBubbleOvalLeftEllipsis", + "HeroiconsMiniSolidChatBubbleOvalLeft", + "HeroiconsMiniSolidCheckBadge", + "HeroiconsMiniSolidCheckCircle", + "HeroiconsMiniSolidCheck", + "HeroiconsMiniSolidChevronDoubleDown", + "HeroiconsMiniSolidChevronDoubleLeft", + "HeroiconsMiniSolidChevronDoubleRight", + "HeroiconsMiniSolidChevronDoubleUp", + "HeroiconsMiniSolidChevronDown", + "HeroiconsMiniSolidChevronLeft", + "HeroiconsMiniSolidChevronRight", + "HeroiconsMiniSolidChevronUpDown", + "HeroiconsMiniSolidChevronUp", + "HeroiconsMiniSolidCircleStack", + "HeroiconsMiniSolidClipboardDocumentCheck", + "HeroiconsMiniSolidClipboardDocumentList", + "HeroiconsMiniSolidClipboardDocument", + "HeroiconsMiniSolidClipboard", + "HeroiconsMiniSolidClock", + "HeroiconsMiniSolidCloudArrowDown", + "HeroiconsMiniSolidCloudArrowUp", + "HeroiconsMiniSolidCloud", + "HeroiconsMiniSolidCodeBracketSquare", + "HeroiconsMiniSolidCodeBracket", + "HeroiconsMiniSolidCog6Tooth", + "HeroiconsMiniSolidCog8Tooth", + "HeroiconsMiniSolidCog", + "HeroiconsMiniSolidCommandLine", + "HeroiconsMiniSolidComputerDesktop", + "HeroiconsMiniSolidCpuChip", + "HeroiconsMiniSolidCreditCard", + "HeroiconsMiniSolidCubeTransparent", + "HeroiconsMiniSolidCube", + "HeroiconsMiniSolidCurrencyBangladeshi", + "HeroiconsMiniSolidCurrencyDollar", + "HeroiconsMiniSolidCurrencyEuro", + "HeroiconsMiniSolidCurrencyPound", + "HeroiconsMiniSolidCurrencyRupee", + "HeroiconsMiniSolidCurrencyYen", + "HeroiconsMiniSolidCursorArrowRays", + "HeroiconsMiniSolidCursorArrowRipple", + "HeroiconsMiniSolidDevicePhoneMobile", + "HeroiconsMiniSolidDeviceTablet", + "HeroiconsMiniSolidDocumentArrowDown", + "HeroiconsMiniSolidDocumentArrowUp", + "HeroiconsMiniSolidDocumentChartBar", + "HeroiconsMiniSolidDocumentCheck", + "HeroiconsMiniSolidDocumentDuplicate", + "HeroiconsMiniSolidDocumentMagnifyingGlass", + "HeroiconsMiniSolidDocumentMinus", + "HeroiconsMiniSolidDocumentPlus", + "HeroiconsMiniSolidDocumentText", + "HeroiconsMiniSolidDocument", + "HeroiconsMiniSolidEllipsisHorizontalCircle", + "HeroiconsMiniSolidEllipsisHorizontal", + "HeroiconsMiniSolidEllipsisVertical", + "HeroiconsMiniSolidEnvelopeOpen", + "HeroiconsMiniSolidEnvelope", + "HeroiconsMiniSolidExclamationCircle", + "HeroiconsMiniSolidExclamationTriangle", + "HeroiconsMiniSolidEyeDropper", + "HeroiconsMiniSolidEyeSlash", + "HeroiconsMiniSolidEye", + "HeroiconsMiniSolidFaceFrown", + "HeroiconsMiniSolidFaceSmile", + "HeroiconsMiniSolidFilm", + "HeroiconsMiniSolidFingerPrint", + "HeroiconsMiniSolidFire", + "HeroiconsMiniSolidFlag", + "HeroiconsMiniSolidFolderArrowDown", + "HeroiconsMiniSolidFolderMinus", + "HeroiconsMiniSolidFolderOpen", + "HeroiconsMiniSolidFolderPlus", + "HeroiconsMiniSolidFolder", + "HeroiconsMiniSolidForward", + "HeroiconsMiniSolidFunnel", + "HeroiconsMiniSolidGif", + "HeroiconsMiniSolidGiftTop", + "HeroiconsMiniSolidGift", + "HeroiconsMiniSolidGlobeAlt", + "HeroiconsMiniSolidGlobeAmericas", + "HeroiconsMiniSolidGlobeAsiaAustralia", + "HeroiconsMiniSolidGlobeEuropeAfrica", + "HeroiconsMiniSolidHandRaised", + "HeroiconsMiniSolidHandThumbDown", + "HeroiconsMiniSolidHandThumbUp", + "HeroiconsMiniSolidHashtag", + "HeroiconsMiniSolidHeart", + "HeroiconsMiniSolidHomeModern", + "HeroiconsMiniSolidHome", + "HeroiconsMiniSolidIdentification", + "HeroiconsMiniSolidInboxArrowDown", + "HeroiconsMiniSolidInboxStack", + "HeroiconsMiniSolidInbox", + "HeroiconsMiniSolidInformationCircle", + "HeroiconsMiniSolidKey", + "HeroiconsMiniSolidLanguage", + "HeroiconsMiniSolidLifebuoy", + "HeroiconsMiniSolidLightBulb", + "HeroiconsMiniSolidLink", + "HeroiconsMiniSolidListBullet", + "HeroiconsMiniSolidLockClosed", + "HeroiconsMiniSolidLockOpen", + "HeroiconsMiniSolidMagnifyingGlassCircle", + "HeroiconsMiniSolidMagnifyingGlassMinus", + "HeroiconsMiniSolidMagnifyingGlassPlus", + "HeroiconsMiniSolidMagnifyingGlass", + "HeroiconsMiniSolidMapPin", + "HeroiconsMiniSolidMap", + "HeroiconsMiniSolidMegaphone", + "HeroiconsMiniSolidMicrophone", + "HeroiconsMiniSolidMinusCircle", + "HeroiconsMiniSolidMinusSmall", + "HeroiconsMiniSolidMinus", + "HeroiconsMiniSolidMoon", + "HeroiconsMiniSolidMusicalNote", + "HeroiconsMiniSolidNewspaper", + "HeroiconsMiniSolidNoSymbol", + "HeroiconsMiniSolidPaintBrush", + "HeroiconsMiniSolidPaperAirplane", + "HeroiconsMiniSolidPaperClip", + "HeroiconsMiniSolidPauseCircle", + "HeroiconsMiniSolidPause", + "HeroiconsMiniSolidPencilSquare", + "HeroiconsMiniSolidPencil", + "HeroiconsMiniSolidPhoneArrowDownLeft", + "HeroiconsMiniSolidPhoneArrowUpRight", + "HeroiconsMiniSolidPhoneXMark", + "HeroiconsMiniSolidPhone", + "HeroiconsMiniSolidPhoto", + "HeroiconsMiniSolidPlayCircle", + "HeroiconsMiniSolidPlayPause", + "HeroiconsMiniSolidPlay", + "HeroiconsMiniSolidPlusCircle", + "HeroiconsMiniSolidPlusSmall", + "HeroiconsMiniSolidPlus", + "HeroiconsMiniSolidPower", + "HeroiconsMiniSolidPresentationChartBar", + "HeroiconsMiniSolidPresentationChartLine", + "HeroiconsMiniSolidPrinter", + "HeroiconsMiniSolidPuzzlePiece", + "HeroiconsMiniSolidQrCode", + "HeroiconsMiniSolidQuestionMarkCircle", + "HeroiconsMiniSolidQueueList", + "HeroiconsMiniSolidRadio", + "HeroiconsMiniSolidReceiptPercent", + "HeroiconsMiniSolidReceiptRefund", + "HeroiconsMiniSolidRectangleGroup", + "HeroiconsMiniSolidRectangleStack", + "HeroiconsMiniSolidRocketLaunch", + "HeroiconsMiniSolidRss", + "HeroiconsMiniSolidScale", + "HeroiconsMiniSolidScissors", + "HeroiconsMiniSolidServerStack", + "HeroiconsMiniSolidServer", + "HeroiconsMiniSolidShare", + "HeroiconsMiniSolidShieldCheck", + "HeroiconsMiniSolidShieldExclamation", + "HeroiconsMiniSolidShoppingBag", + "HeroiconsMiniSolidShoppingCart", + "HeroiconsMiniSolidSignalSlash", + "HeroiconsMiniSolidSignal", + "HeroiconsMiniSolidSparkles", + "HeroiconsMiniSolidSpeakerWave", + "HeroiconsMiniSolidSpeakerXMark", + "HeroiconsMiniSolidSquare2Stack", + "HeroiconsMiniSolidSquare3Stack3D", + "HeroiconsMiniSolidSquares2X2", + "HeroiconsMiniSolidSquaresPlus", + "HeroiconsMiniSolidStar", + "HeroiconsMiniSolidStopCircle", + "HeroiconsMiniSolidStop", + "HeroiconsMiniSolidSun", + "HeroiconsMiniSolidSwatch", + "HeroiconsMiniSolidTableCells", + "HeroiconsMiniSolidTag", + "HeroiconsMiniSolidTicket", + "HeroiconsMiniSolidTrash", + "HeroiconsMiniSolidTrophy", + "HeroiconsMiniSolidTruck", + "HeroiconsMiniSolidTv", + "HeroiconsMiniSolidUserCircle", + "HeroiconsMiniSolidUserGroup", + "HeroiconsMiniSolidUserMinus", + "HeroiconsMiniSolidUserPlus", + "HeroiconsMiniSolidUser", + "HeroiconsMiniSolidUsers", + "HeroiconsMiniSolidVariable", + "HeroiconsMiniSolidVideoCameraSlash", + "HeroiconsMiniSolidVideoCamera", + "HeroiconsMiniSolidViewColumns", + "HeroiconsMiniSolidViewfinderCircle", + "HeroiconsMiniSolidWallet", + "HeroiconsMiniSolidWifi", + "HeroiconsMiniSolidWindow", + "HeroiconsMiniSolidWrenchScrewdriver", + "HeroiconsMiniSolidWrench", + "HeroiconsMiniSolidXCircle", + "HeroiconsMiniSolidXMark" + ], + "heroicons_outline": [ + "HeroiconsOutlineAcademicCap", + "HeroiconsOutlineAdjustmentsHorizontal", + "HeroiconsOutlineAdjustmentsVertical", + "HeroiconsOutlineArchiveBoxArrowDown", + "HeroiconsOutlineArchiveBoxXMark", + "HeroiconsOutlineArchiveBox", + "HeroiconsOutlineArrowDownCircle", + "HeroiconsOutlineArrowDownLeft", + "HeroiconsOutlineArrowDownOnSquareStack", + "HeroiconsOutlineArrowDownOnSquare", + "HeroiconsOutlineArrowDownRight", + "HeroiconsOutlineArrowDownTray", + "HeroiconsOutlineArrowDown", + "HeroiconsOutlineArrowLeftCircle", + "HeroiconsOutlineArrowLeftOnRectangle", + "HeroiconsOutlineArrowLeft", + "HeroiconsOutlineArrowLongDown", + "HeroiconsOutlineArrowLongLeft", + "HeroiconsOutlineArrowLongRight", + "HeroiconsOutlineArrowLongUp", + "HeroiconsOutlineArrowPathRoundedSquare", + "HeroiconsOutlineArrowPath", + "HeroiconsOutlineArrowRightCircle", + "HeroiconsOutlineArrowRightOnRectangle", + "HeroiconsOutlineArrowRight", + "HeroiconsOutlineArrowSmallDown", + "HeroiconsOutlineArrowSmallLeft", + "HeroiconsOutlineArrowSmallRight", + "HeroiconsOutlineArrowSmallUp", + "HeroiconsOutlineArrowTopRightOnSquare", + "HeroiconsOutlineArrowTrendingDown", + "HeroiconsOutlineArrowTrendingUp", + "HeroiconsOutlineArrowUpCircle", + "HeroiconsOutlineArrowUpLeft", + "HeroiconsOutlineArrowUpOnSquareStack", + "HeroiconsOutlineArrowUpOnSquare", + "HeroiconsOutlineArrowUpRight", + "HeroiconsOutlineArrowUpTray", + "HeroiconsOutlineArrowUp", + "HeroiconsOutlineArrowUturnDown", + "HeroiconsOutlineArrowUturnLeft", + "HeroiconsOutlineArrowUturnRight", + "HeroiconsOutlineArrowUturnUp", + "HeroiconsOutlineArrowsPointingIn", + "HeroiconsOutlineArrowsPointingOut", + "HeroiconsOutlineArrowsRightLeft", + "HeroiconsOutlineArrowsUpDown", + "HeroiconsOutlineAtSymbol", + "HeroiconsOutlineBackspace", + "HeroiconsOutlineBackward", + "HeroiconsOutlineBanknotes", + "HeroiconsOutlineBars2", + "HeroiconsOutlineBars3BottomLeft", + "HeroiconsOutlineBars3BottomRight", + "HeroiconsOutlineBars3CenterLeft", + "HeroiconsOutlineBars3", + "HeroiconsOutlineBars4", + "HeroiconsOutlineBarsArrowDown", + "HeroiconsOutlineBarsArrowUp", + "HeroiconsOutlineBattery0", + "HeroiconsOutlineBattery100", + "HeroiconsOutlineBattery50", + "HeroiconsOutlineBeaker", + "HeroiconsOutlineBellAlert", + "HeroiconsOutlineBellSlash", + "HeroiconsOutlineBellSnooze", + "HeroiconsOutlineBell", + "HeroiconsOutlineBoltSlash", + "HeroiconsOutlineBolt", + "HeroiconsOutlineBookOpen", + "HeroiconsOutlineBookmarkSlash", + "HeroiconsOutlineBookmarkSquare", + "HeroiconsOutlineBookmark", + "HeroiconsOutlineBriefcase", + "HeroiconsOutlineBugAnt", + "HeroiconsOutlineBuildingLibrary", + "HeroiconsOutlineBuildingOffice2", + "HeroiconsOutlineBuildingOffice", + "HeroiconsOutlineBuildingStorefront", + "HeroiconsOutlineCake", + "HeroiconsOutlineCalculator", + "HeroiconsOutlineCalendarDays", + "HeroiconsOutlineCalendar", + "HeroiconsOutlineCamera", + "HeroiconsOutlineChartBarSquare", + "HeroiconsOutlineChartBar", + "HeroiconsOutlineChartPie", + "HeroiconsOutlineChatBubbleBottomCenterText", + "HeroiconsOutlineChatBubbleBottomCenter", + "HeroiconsOutlineChatBubbleLeftEllipsis", + "HeroiconsOutlineChatBubbleLeftRight", + "HeroiconsOutlineChatBubbleLeft", + "HeroiconsOutlineChatBubbleOvalLeftEllipsis", + "HeroiconsOutlineChatBubbleOvalLeft", + "HeroiconsOutlineCheckBadge", + "HeroiconsOutlineCheckCircle", + "HeroiconsOutlineCheck", + "HeroiconsOutlineChevronDoubleDown", + "HeroiconsOutlineChevronDoubleLeft", + "HeroiconsOutlineChevronDoubleRight", + "HeroiconsOutlineChevronDoubleUp", + "HeroiconsOutlineChevronDown", + "HeroiconsOutlineChevronLeft", + "HeroiconsOutlineChevronRight", + "HeroiconsOutlineChevronUpDown", + "HeroiconsOutlineChevronUp", + "HeroiconsOutlineCircleStack", + "HeroiconsOutlineClipboardDocumentCheck", + "HeroiconsOutlineClipboardDocumentList", + "HeroiconsOutlineClipboardDocument", + "HeroiconsOutlineClipboard", + "HeroiconsOutlineClock", + "HeroiconsOutlineCloudArrowDown", + "HeroiconsOutlineCloudArrowUp", + "HeroiconsOutlineCloud", + "HeroiconsOutlineCodeBracketSquare", + "HeroiconsOutlineCodeBracket", + "HeroiconsOutlineCog6Tooth", + "HeroiconsOutlineCog8Tooth", + "HeroiconsOutlineCog", + "HeroiconsOutlineCommandLine", + "HeroiconsOutlineComputerDesktop", + "HeroiconsOutlineCpuChip", + "HeroiconsOutlineCreditCard", + "HeroiconsOutlineCubeTransparent", + "HeroiconsOutlineCube", + "HeroiconsOutlineCurrencyBangladeshi", + "HeroiconsOutlineCurrencyDollar", + "HeroiconsOutlineCurrencyEuro", + "HeroiconsOutlineCurrencyPound", + "HeroiconsOutlineCurrencyRupee", + "HeroiconsOutlineCurrencyYen", + "HeroiconsOutlineCursorArrowRays", + "HeroiconsOutlineCursorArrowRipple", + "HeroiconsOutlineDevicePhoneMobile", + "HeroiconsOutlineDeviceTablet", + "HeroiconsOutlineDocumentArrowDown", + "HeroiconsOutlineDocumentArrowUp", + "HeroiconsOutlineDocumentChartBar", + "HeroiconsOutlineDocumentCheck", + "HeroiconsOutlineDocumentDuplicate", + "HeroiconsOutlineDocumentMagnifyingGlass", + "HeroiconsOutlineDocumentMinus", + "HeroiconsOutlineDocumentPlus", + "HeroiconsOutlineDocumentText", + "HeroiconsOutlineDocument", + "HeroiconsOutlineEllipsisHorizontalCircle", + "HeroiconsOutlineEllipsisHorizontal", + "HeroiconsOutlineEllipsisVertical", + "HeroiconsOutlineEnvelopeOpen", + "HeroiconsOutlineEnvelope", + "HeroiconsOutlineExclamationCircle", + "HeroiconsOutlineExclamationTriangle", + "HeroiconsOutlineEyeDropper", + "HeroiconsOutlineEyeSlash", + "HeroiconsOutlineEye", + "HeroiconsOutlineFaceFrown", + "HeroiconsOutlineFaceSmile", + "HeroiconsOutlineFilm", + "HeroiconsOutlineFingerPrint", + "HeroiconsOutlineFire", + "HeroiconsOutlineFlag", + "HeroiconsOutlineFolderArrowDown", + "HeroiconsOutlineFolderMinus", + "HeroiconsOutlineFolderOpen", + "HeroiconsOutlineFolderPlus", + "HeroiconsOutlineFolder", + "HeroiconsOutlineForward", + "HeroiconsOutlineFunnel", + "HeroiconsOutlineGif", + "HeroiconsOutlineGiftTop", + "HeroiconsOutlineGift", + "HeroiconsOutlineGlobeAlt", + "HeroiconsOutlineGlobeAmericas", + "HeroiconsOutlineGlobeAsiaAustralia", + "HeroiconsOutlineGlobeEuropeAfrica", + "HeroiconsOutlineHandRaised", + "HeroiconsOutlineHandThumbDown", + "HeroiconsOutlineHandThumbUp", + "HeroiconsOutlineHashtag", + "HeroiconsOutlineHeart", + "HeroiconsOutlineHomeModern", + "HeroiconsOutlineHome", + "HeroiconsOutlineIdentification", + "HeroiconsOutlineInboxArrowDown", + "HeroiconsOutlineInboxStack", + "HeroiconsOutlineInbox", + "HeroiconsOutlineInformationCircle", + "HeroiconsOutlineKey", + "HeroiconsOutlineLanguage", + "HeroiconsOutlineLifebuoy", + "HeroiconsOutlineLightBulb", + "HeroiconsOutlineLink", + "HeroiconsOutlineListBullet", + "HeroiconsOutlineLockClosed", + "HeroiconsOutlineLockOpen", + "HeroiconsOutlineMagnifyingGlassCircle", + "HeroiconsOutlineMagnifyingGlassMinus", + "HeroiconsOutlineMagnifyingGlassPlus", + "HeroiconsOutlineMagnifyingGlass", + "HeroiconsOutlineMapPin", + "HeroiconsOutlineMap", + "HeroiconsOutlineMegaphone", + "HeroiconsOutlineMicrophone", + "HeroiconsOutlineMinusCircle", + "HeroiconsOutlineMinusSmall", + "HeroiconsOutlineMinus", + "HeroiconsOutlineMoon", + "HeroiconsOutlineMusicalNote", + "HeroiconsOutlineNewspaper", + "HeroiconsOutlineNoSymbol", + "HeroiconsOutlinePaintBrush", + "HeroiconsOutlinePaperAirplane", + "HeroiconsOutlinePaperClip", + "HeroiconsOutlinePauseCircle", + "HeroiconsOutlinePause", + "HeroiconsOutlinePencilSquare", + "HeroiconsOutlinePencil", + "HeroiconsOutlinePhoneArrowDownLeft", + "HeroiconsOutlinePhoneArrowUpRight", + "HeroiconsOutlinePhoneXMark", + "HeroiconsOutlinePhone", + "HeroiconsOutlinePhoto", + "HeroiconsOutlinePlayCircle", + "HeroiconsOutlinePlayPause", + "HeroiconsOutlinePlay", + "HeroiconsOutlinePlusCircle", + "HeroiconsOutlinePlusSmall", + "HeroiconsOutlinePlus", + "HeroiconsOutlinePower", + "HeroiconsOutlinePresentationChartBar", + "HeroiconsOutlinePresentationChartLine", + "HeroiconsOutlinePrinter", + "HeroiconsOutlinePuzzlePiece", + "HeroiconsOutlineQrCode", + "HeroiconsOutlineQuestionMarkCircle", + "HeroiconsOutlineQueueList", + "HeroiconsOutlineRadio", + "HeroiconsOutlineReceiptPercent", + "HeroiconsOutlineReceiptRefund", + "HeroiconsOutlineRectangleGroup", + "HeroiconsOutlineRectangleStack", + "HeroiconsOutlineRocketLaunch", + "HeroiconsOutlineRss", + "HeroiconsOutlineScale", + "HeroiconsOutlineScissors", + "HeroiconsOutlineServerStack", + "HeroiconsOutlineServer", + "HeroiconsOutlineShare", + "HeroiconsOutlineShieldCheck", + "HeroiconsOutlineShieldExclamation", + "HeroiconsOutlineShoppingBag", + "HeroiconsOutlineShoppingCart", + "HeroiconsOutlineSignalSlash", + "HeroiconsOutlineSignal", + "HeroiconsOutlineSparkles", + "HeroiconsOutlineSpeakerWave", + "HeroiconsOutlineSpeakerXMark", + "HeroiconsOutlineSquare2Stack", + "HeroiconsOutlineSquare3Stack3D", + "HeroiconsOutlineSquares2X2", + "HeroiconsOutlineSquaresPlus", + "HeroiconsOutlineStar", + "HeroiconsOutlineStopCircle", + "HeroiconsOutlineStop", + "HeroiconsOutlineSun", + "HeroiconsOutlineSwatch", + "HeroiconsOutlineTableCells", + "HeroiconsOutlineTag", + "HeroiconsOutlineTicket", + "HeroiconsOutlineTrash", + "HeroiconsOutlineTrophy", + "HeroiconsOutlineTruck", + "HeroiconsOutlineTv", + "HeroiconsOutlineUserCircle", + "HeroiconsOutlineUserGroup", + "HeroiconsOutlineUserMinus", + "HeroiconsOutlineUserPlus", + "HeroiconsOutlineUser", + "HeroiconsOutlineUsers", + "HeroiconsOutlineVariable", + "HeroiconsOutlineVideoCameraSlash", + "HeroiconsOutlineVideoCamera", + "HeroiconsOutlineViewColumns", + "HeroiconsOutlineViewfinderCircle", + "HeroiconsOutlineWallet", + "HeroiconsOutlineWifi", + "HeroiconsOutlineWindow", + "HeroiconsOutlineWrenchScrewdriver", + "HeroiconsOutlineWrench", + "HeroiconsOutlineXCircle", + "HeroiconsOutlineXMark" + ], + "heroicons_solid": [ + "HeroiconsSolidAcademicCap", + "HeroiconsSolidAdjustmentsHorizontal", + "HeroiconsSolidAdjustmentsVertical", + "HeroiconsSolidArchiveBoxArrowDown", + "HeroiconsSolidArchiveBoxXMark", + "HeroiconsSolidArchiveBox", + "HeroiconsSolidArrowDownCircle", + "HeroiconsSolidArrowDownLeft", + "HeroiconsSolidArrowDownOnSquareStack", + "HeroiconsSolidArrowDownOnSquare", + "HeroiconsSolidArrowDownRight", + "HeroiconsSolidArrowDownTray", + "HeroiconsSolidArrowDown", + "HeroiconsSolidArrowLeftCircle", + "HeroiconsSolidArrowLeftOnRectangle", + "HeroiconsSolidArrowLeft", + "HeroiconsSolidArrowLongDown", + "HeroiconsSolidArrowLongLeft", + "HeroiconsSolidArrowLongRight", + "HeroiconsSolidArrowLongUp", + "HeroiconsSolidArrowPathRoundedSquare", + "HeroiconsSolidArrowPath", + "HeroiconsSolidArrowRightCircle", + "HeroiconsSolidArrowRightOnRectangle", + "HeroiconsSolidArrowRight", + "HeroiconsSolidArrowSmallDown", + "HeroiconsSolidArrowSmallLeft", + "HeroiconsSolidArrowSmallRight", + "HeroiconsSolidArrowSmallUp", + "HeroiconsSolidArrowTopRightOnSquare", + "HeroiconsSolidArrowTrendingDown", + "HeroiconsSolidArrowTrendingUp", + "HeroiconsSolidArrowUpCircle", + "HeroiconsSolidArrowUpLeft", + "HeroiconsSolidArrowUpOnSquareStack", + "HeroiconsSolidArrowUpOnSquare", + "HeroiconsSolidArrowUpRight", + "HeroiconsSolidArrowUpTray", + "HeroiconsSolidArrowUp", + "HeroiconsSolidArrowUturnDown", + "HeroiconsSolidArrowUturnLeft", + "HeroiconsSolidArrowUturnRight", + "HeroiconsSolidArrowUturnUp", + "HeroiconsSolidArrowsPointingIn", + "HeroiconsSolidArrowsPointingOut", + "HeroiconsSolidArrowsRightLeft", + "HeroiconsSolidArrowsUpDown", + "HeroiconsSolidAtSymbol", + "HeroiconsSolidBackspace", + "HeroiconsSolidBackward", + "HeroiconsSolidBanknotes", + "HeroiconsSolidBars2", + "HeroiconsSolidBars3BottomLeft", + "HeroiconsSolidBars3BottomRight", + "HeroiconsSolidBars3CenterLeft", + "HeroiconsSolidBars3", + "HeroiconsSolidBars4", + "HeroiconsSolidBarsArrowDown", + "HeroiconsSolidBarsArrowUp", + "HeroiconsSolidBattery0", + "HeroiconsSolidBattery100", + "HeroiconsSolidBattery50", + "HeroiconsSolidBeaker", + "HeroiconsSolidBellAlert", + "HeroiconsSolidBellSlash", + "HeroiconsSolidBellSnooze", + "HeroiconsSolidBell", + "HeroiconsSolidBoltSlash", + "HeroiconsSolidBolt", + "HeroiconsSolidBookOpen", + "HeroiconsSolidBookmarkSlash", + "HeroiconsSolidBookmarkSquare", + "HeroiconsSolidBookmark", + "HeroiconsSolidBriefcase", + "HeroiconsSolidBugAnt", + "HeroiconsSolidBuildingLibrary", + "HeroiconsSolidBuildingOffice2", + "HeroiconsSolidBuildingOffice", + "HeroiconsSolidBuildingStorefront", + "HeroiconsSolidCake", + "HeroiconsSolidCalculator", + "HeroiconsSolidCalendarDays", + "HeroiconsSolidCalendar", + "HeroiconsSolidCamera", + "HeroiconsSolidChartBarSquare", + "HeroiconsSolidChartBar", + "HeroiconsSolidChartPie", + "HeroiconsSolidChatBubbleBottomCenterText", + "HeroiconsSolidChatBubbleBottomCenter", + "HeroiconsSolidChatBubbleLeftEllipsis", + "HeroiconsSolidChatBubbleLeftRight", + "HeroiconsSolidChatBubbleLeft", + "HeroiconsSolidChatBubbleOvalLeftEllipsis", + "HeroiconsSolidChatBubbleOvalLeft", + "HeroiconsSolidCheckBadge", + "HeroiconsSolidCheckCircle", + "HeroiconsSolidCheck", + "HeroiconsSolidChevronDoubleDown", + "HeroiconsSolidChevronDoubleLeft", + "HeroiconsSolidChevronDoubleRight", + "HeroiconsSolidChevronDoubleUp", + "HeroiconsSolidChevronDown", + "HeroiconsSolidChevronLeft", + "HeroiconsSolidChevronRight", + "HeroiconsSolidChevronUpDown", + "HeroiconsSolidChevronUp", + "HeroiconsSolidCircleStack", + "HeroiconsSolidClipboardDocumentCheck", + "HeroiconsSolidClipboardDocumentList", + "HeroiconsSolidClipboardDocument", + "HeroiconsSolidClipboard", + "HeroiconsSolidClock", + "HeroiconsSolidCloudArrowDown", + "HeroiconsSolidCloudArrowUp", + "HeroiconsSolidCloud", + "HeroiconsSolidCodeBracketSquare", + "HeroiconsSolidCodeBracket", + "HeroiconsSolidCog6Tooth", + "HeroiconsSolidCog8Tooth", + "HeroiconsSolidCog", + "HeroiconsSolidCommandLine", + "HeroiconsSolidComputerDesktop", + "HeroiconsSolidCpuChip", + "HeroiconsSolidCreditCard", + "HeroiconsSolidCubeTransparent", + "HeroiconsSolidCube", + "HeroiconsSolidCurrencyBangladeshi", + "HeroiconsSolidCurrencyDollar", + "HeroiconsSolidCurrencyEuro", + "HeroiconsSolidCurrencyPound", + "HeroiconsSolidCurrencyRupee", + "HeroiconsSolidCurrencyYen", + "HeroiconsSolidCursorArrowRays", + "HeroiconsSolidCursorArrowRipple", + "HeroiconsSolidDevicePhoneMobile", + "HeroiconsSolidDeviceTablet", + "HeroiconsSolidDocumentArrowDown", + "HeroiconsSolidDocumentArrowUp", + "HeroiconsSolidDocumentChartBar", + "HeroiconsSolidDocumentCheck", + "HeroiconsSolidDocumentDuplicate", + "HeroiconsSolidDocumentMagnifyingGlass", + "HeroiconsSolidDocumentMinus", + "HeroiconsSolidDocumentPlus", + "HeroiconsSolidDocumentText", + "HeroiconsSolidDocument", + "HeroiconsSolidEllipsisHorizontalCircle", + "HeroiconsSolidEllipsisHorizontal", + "HeroiconsSolidEllipsisVertical", + "HeroiconsSolidEnvelopeOpen", + "HeroiconsSolidEnvelope", + "HeroiconsSolidExclamationCircle", + "HeroiconsSolidExclamationTriangle", + "HeroiconsSolidEyeDropper", + "HeroiconsSolidEyeSlash", + "HeroiconsSolidEye", + "HeroiconsSolidFaceFrown", + "HeroiconsSolidFaceSmile", + "HeroiconsSolidFilm", + "HeroiconsSolidFingerPrint", + "HeroiconsSolidFire", + "HeroiconsSolidFlag", + "HeroiconsSolidFolderArrowDown", + "HeroiconsSolidFolderMinus", + "HeroiconsSolidFolderOpen", + "HeroiconsSolidFolderPlus", + "HeroiconsSolidFolder", + "HeroiconsSolidForward", + "HeroiconsSolidFunnel", + "HeroiconsSolidGif", + "HeroiconsSolidGiftTop", + "HeroiconsSolidGift", + "HeroiconsSolidGlobeAlt", + "HeroiconsSolidGlobeAmericas", + "HeroiconsSolidGlobeAsiaAustralia", + "HeroiconsSolidGlobeEuropeAfrica", + "HeroiconsSolidHandRaised", + "HeroiconsSolidHandThumbDown", + "HeroiconsSolidHandThumbUp", + "HeroiconsSolidHashtag", + "HeroiconsSolidHeart", + "HeroiconsSolidHomeModern", + "HeroiconsSolidHome", + "HeroiconsSolidIdentification", + "HeroiconsSolidInboxArrowDown", + "HeroiconsSolidInboxStack", + "HeroiconsSolidInbox", + "HeroiconsSolidInformationCircle", + "HeroiconsSolidKey", + "HeroiconsSolidLanguage", + "HeroiconsSolidLifebuoy", + "HeroiconsSolidLightBulb", + "HeroiconsSolidLink", + "HeroiconsSolidListBullet", + "HeroiconsSolidLockClosed", + "HeroiconsSolidLockOpen", + "HeroiconsSolidMagnifyingGlassCircle", + "HeroiconsSolidMagnifyingGlassMinus", + "HeroiconsSolidMagnifyingGlassPlus", + "HeroiconsSolidMagnifyingGlass", + "HeroiconsSolidMapPin", + "HeroiconsSolidMap", + "HeroiconsSolidMegaphone", + "HeroiconsSolidMicrophone", + "HeroiconsSolidMinusCircle", + "HeroiconsSolidMinusSmall", + "HeroiconsSolidMinus", + "HeroiconsSolidMoon", + "HeroiconsSolidMusicalNote", + "HeroiconsSolidNewspaper", + "HeroiconsSolidNoSymbol", + "HeroiconsSolidPaintBrush", + "HeroiconsSolidPaperAirplane", + "HeroiconsSolidPaperClip", + "HeroiconsSolidPauseCircle", + "HeroiconsSolidPause", + "HeroiconsSolidPencilSquare", + "HeroiconsSolidPencil", + "HeroiconsSolidPhoneArrowDownLeft", + "HeroiconsSolidPhoneArrowUpRight", + "HeroiconsSolidPhoneXMark", + "HeroiconsSolidPhone", + "HeroiconsSolidPhoto", + "HeroiconsSolidPlayCircle", + "HeroiconsSolidPlayPause", + "HeroiconsSolidPlay", + "HeroiconsSolidPlusCircle", + "HeroiconsSolidPlusSmall", + "HeroiconsSolidPlus", + "HeroiconsSolidPower", + "HeroiconsSolidPresentationChartBar", + "HeroiconsSolidPresentationChartLine", + "HeroiconsSolidPrinter", + "HeroiconsSolidPuzzlePiece", + "HeroiconsSolidQrCode", + "HeroiconsSolidQuestionMarkCircle", + "HeroiconsSolidQueueList", + "HeroiconsSolidRadio", + "HeroiconsSolidReceiptPercent", + "HeroiconsSolidReceiptRefund", + "HeroiconsSolidRectangleGroup", + "HeroiconsSolidRectangleStack", + "HeroiconsSolidRocketLaunch", + "HeroiconsSolidRss", + "HeroiconsSolidScale", + "HeroiconsSolidScissors", + "HeroiconsSolidServerStack", + "HeroiconsSolidServer", + "HeroiconsSolidShare", + "HeroiconsSolidShieldCheck", + "HeroiconsSolidShieldExclamation", + "HeroiconsSolidShoppingBag", + "HeroiconsSolidShoppingCart", + "HeroiconsSolidSignalSlash", + "HeroiconsSolidSignal", + "HeroiconsSolidSparkles", + "HeroiconsSolidSpeakerWave", + "HeroiconsSolidSpeakerXMark", + "HeroiconsSolidSquare2Stack", + "HeroiconsSolidSquare3Stack3D", + "HeroiconsSolidSquares2X2", + "HeroiconsSolidSquaresPlus", + "HeroiconsSolidStar", + "HeroiconsSolidStopCircle", + "HeroiconsSolidStop", + "HeroiconsSolidSun", + "HeroiconsSolidSwatch", + "HeroiconsSolidTableCells", + "HeroiconsSolidTag", + "HeroiconsSolidTicket", + "HeroiconsSolidTrash", + "HeroiconsSolidTrophy", + "HeroiconsSolidTruck", + "HeroiconsSolidTv", + "HeroiconsSolidUserCircle", + "HeroiconsSolidUserGroup", + "HeroiconsSolidUserMinus", + "HeroiconsSolidUserPlus", + "HeroiconsSolidUser", + "HeroiconsSolidUsers", + "HeroiconsSolidVariable", + "HeroiconsSolidVideoCameraSlash", + "HeroiconsSolidVideoCamera", + "HeroiconsSolidViewColumns", + "HeroiconsSolidViewfinderCircle", + "HeroiconsSolidWallet", + "HeroiconsSolidWifi", + "HeroiconsSolidWindow", + "HeroiconsSolidWrenchScrewdriver", + "HeroiconsSolidWrench", + "HeroiconsSolidXCircle", + "HeroiconsSolidXMark" + ], + "iterate_icon_id": [ + "enum-iterator" + ], + "lipis_flag_icons_1_x_1": [ + "LipisFlagIcons1X1Ac", + "LipisFlagIcons1X1Ad", + "LipisFlagIcons1X1Ae", + "LipisFlagIcons1X1Af", + "LipisFlagIcons1X1Ag", + "LipisFlagIcons1X1Ai", + "LipisFlagIcons1X1Al", + "LipisFlagIcons1X1Am", + "LipisFlagIcons1X1Ao", + "LipisFlagIcons1X1Aq", + "LipisFlagIcons1X1Ar", + "LipisFlagIcons1X1As", + "LipisFlagIcons1X1At", + "LipisFlagIcons1X1Au", + "LipisFlagIcons1X1Aw", + "LipisFlagIcons1X1Ax", + "LipisFlagIcons1X1Az", + "LipisFlagIcons1X1Ba", + "LipisFlagIcons1X1Bb", + "LipisFlagIcons1X1Bd", + "LipisFlagIcons1X1Be", + "LipisFlagIcons1X1Bf", + "LipisFlagIcons1X1Bg", + "LipisFlagIcons1X1Bh", + "LipisFlagIcons1X1Bi", + "LipisFlagIcons1X1Bj", + "LipisFlagIcons1X1Bl", + "LipisFlagIcons1X1Bm", + "LipisFlagIcons1X1Bn", + "LipisFlagIcons1X1Bo", + "LipisFlagIcons1X1Bq", + "LipisFlagIcons1X1Br", + "LipisFlagIcons1X1Bs", + "LipisFlagIcons1X1Bt", + "LipisFlagIcons1X1Bv", + "LipisFlagIcons1X1Bw", + "LipisFlagIcons1X1By", + "LipisFlagIcons1X1Bz", + "LipisFlagIcons1X1Ca", + "LipisFlagIcons1X1Cc", + "LipisFlagIcons1X1Cd", + "LipisFlagIcons1X1Cefta", + "LipisFlagIcons1X1Cf", + "LipisFlagIcons1X1Cg", + "LipisFlagIcons1X1Ch", + "LipisFlagIcons1X1Ci", + "LipisFlagIcons1X1Ck", + "LipisFlagIcons1X1Cl", + "LipisFlagIcons1X1Cm", + "LipisFlagIcons1X1Cn", + "LipisFlagIcons1X1Co", + "LipisFlagIcons1X1Cp", + "LipisFlagIcons1X1Cr", + "LipisFlagIcons1X1Cu", + "LipisFlagIcons1X1Cv", + "LipisFlagIcons1X1Cw", + "LipisFlagIcons1X1Cx", + "LipisFlagIcons1X1Cy", + "LipisFlagIcons1X1Cz", + "LipisFlagIcons1X1De", + "LipisFlagIcons1X1Dg", + "LipisFlagIcons1X1Dj", + "LipisFlagIcons1X1Dk", + "LipisFlagIcons1X1Dm", + "LipisFlagIcons1X1Do", + "LipisFlagIcons1X1Dz", + "LipisFlagIcons1X1Ea", + "LipisFlagIcons1X1Ec", + "LipisFlagIcons1X1Ee", + "LipisFlagIcons1X1Eg", + "LipisFlagIcons1X1Eh", + "LipisFlagIcons1X1Er", + "LipisFlagIcons1X1EsCt", + "LipisFlagIcons1X1EsGa", + "LipisFlagIcons1X1Es", + "LipisFlagIcons1X1Et", + "LipisFlagIcons1X1Eu", + "LipisFlagIcons1X1Fi", + "LipisFlagIcons1X1Fj", + "LipisFlagIcons1X1Fk", + "LipisFlagIcons1X1Fm", + "LipisFlagIcons1X1Fo", + "LipisFlagIcons1X1Fr", + "LipisFlagIcons1X1Ga", + "LipisFlagIcons1X1GbEng", + "LipisFlagIcons1X1GbNir", + "LipisFlagIcons1X1GbSct", + "LipisFlagIcons1X1GbWls", + "LipisFlagIcons1X1Gb", + "LipisFlagIcons1X1Gd", + "LipisFlagIcons1X1Ge", + "LipisFlagIcons1X1Gf", + "LipisFlagIcons1X1Gg", + "LipisFlagIcons1X1Gh", + "LipisFlagIcons1X1Gi", + "LipisFlagIcons1X1Gl", + "LipisFlagIcons1X1Gm", + "LipisFlagIcons1X1Gn", + "LipisFlagIcons1X1Gp", + "LipisFlagIcons1X1Gq", + "LipisFlagIcons1X1Gr", + "LipisFlagIcons1X1Gs", + "LipisFlagIcons1X1Gt", + "LipisFlagIcons1X1Gu", + "LipisFlagIcons1X1Gw", + "LipisFlagIcons1X1Gy", + "LipisFlagIcons1X1Hk", + "LipisFlagIcons1X1Hm", + "LipisFlagIcons1X1Hn", + "LipisFlagIcons1X1Hr", + "LipisFlagIcons1X1Ht", + "LipisFlagIcons1X1Hu", + "LipisFlagIcons1X1Ic", + "LipisFlagIcons1X1Id", + "LipisFlagIcons1X1Ie", + "LipisFlagIcons1X1Il", + "LipisFlagIcons1X1Im", + "LipisFlagIcons1X1In", + "LipisFlagIcons1X1Io", + "LipisFlagIcons1X1Iq", + "LipisFlagIcons1X1Ir", + "LipisFlagIcons1X1Is", + "LipisFlagIcons1X1It", + "LipisFlagIcons1X1Je", + "LipisFlagIcons1X1Jm", + "LipisFlagIcons1X1Jo", + "LipisFlagIcons1X1Jp", + "LipisFlagIcons1X1Ke", + "LipisFlagIcons1X1Kg", + "LipisFlagIcons1X1Kh", + "LipisFlagIcons1X1Ki", + "LipisFlagIcons1X1Km", + "LipisFlagIcons1X1Kn", + "LipisFlagIcons1X1Kp", + "LipisFlagIcons1X1Kr", + "LipisFlagIcons1X1Kw", + "LipisFlagIcons1X1Ky", + "LipisFlagIcons1X1Kz", + "LipisFlagIcons1X1La", + "LipisFlagIcons1X1Lb", + "LipisFlagIcons1X1Lc", + "LipisFlagIcons1X1Li", + "LipisFlagIcons1X1Lk", + "LipisFlagIcons1X1Lr", + "LipisFlagIcons1X1Ls", + "LipisFlagIcons1X1Lt", + "LipisFlagIcons1X1Lu", + "LipisFlagIcons1X1Lv", + "LipisFlagIcons1X1Ly", + "LipisFlagIcons1X1Ma", + "LipisFlagIcons1X1Mc", + "LipisFlagIcons1X1Md", + "LipisFlagIcons1X1Me", + "LipisFlagIcons1X1Mf", + "LipisFlagIcons1X1Mg", + "LipisFlagIcons1X1Mh", + "LipisFlagIcons1X1Mk", + "LipisFlagIcons1X1Ml", + "LipisFlagIcons1X1Mm", + "LipisFlagIcons1X1Mn", + "LipisFlagIcons1X1Mo", + "LipisFlagIcons1X1Mp", + "LipisFlagIcons1X1Mq", + "LipisFlagIcons1X1Mr", + "LipisFlagIcons1X1Ms", + "LipisFlagIcons1X1Mt", + "LipisFlagIcons1X1Mu", + "LipisFlagIcons1X1Mv", + "LipisFlagIcons1X1Mw", + "LipisFlagIcons1X1Mx", + "LipisFlagIcons1X1My", + "LipisFlagIcons1X1Mz", + "LipisFlagIcons1X1Na", + "LipisFlagIcons1X1Nc", + "LipisFlagIcons1X1Ne", + "LipisFlagIcons1X1Nf", + "LipisFlagIcons1X1Ng", + "LipisFlagIcons1X1Ni", + "LipisFlagIcons1X1Nl", + "LipisFlagIcons1X1No", + "LipisFlagIcons1X1Np", + "LipisFlagIcons1X1Nr", + "LipisFlagIcons1X1Nu", + "LipisFlagIcons1X1Nz", + "LipisFlagIcons1X1Om", + "LipisFlagIcons1X1Pa", + "LipisFlagIcons1X1Pe", + "LipisFlagIcons1X1Pf", + "LipisFlagIcons1X1Pg", + "LipisFlagIcons1X1Ph", + "LipisFlagIcons1X1Pk", + "LipisFlagIcons1X1Pl", + "LipisFlagIcons1X1Pm", + "LipisFlagIcons1X1Pn", + "LipisFlagIcons1X1Pr", + "LipisFlagIcons1X1Ps", + "LipisFlagIcons1X1Pt", + "LipisFlagIcons1X1Pw", + "LipisFlagIcons1X1Py", + "LipisFlagIcons1X1Qa", + "LipisFlagIcons1X1Re", + "LipisFlagIcons1X1Ro", + "LipisFlagIcons1X1Rs", + "LipisFlagIcons1X1Ru", + "LipisFlagIcons1X1Rw", + "LipisFlagIcons1X1Sa", + "LipisFlagIcons1X1Sb", + "LipisFlagIcons1X1Sc", + "LipisFlagIcons1X1Sd", + "LipisFlagIcons1X1Se", + "LipisFlagIcons1X1Sg", + "LipisFlagIcons1X1Sh", + "LipisFlagIcons1X1Si", + "LipisFlagIcons1X1Sj", + "LipisFlagIcons1X1Sk", + "LipisFlagIcons1X1Sl", + "LipisFlagIcons1X1Sm", + "LipisFlagIcons1X1Sn", + "LipisFlagIcons1X1So", + "LipisFlagIcons1X1Sr", + "LipisFlagIcons1X1Ss", + "LipisFlagIcons1X1St", + "LipisFlagIcons1X1Sv", + "LipisFlagIcons1X1Sx", + "LipisFlagIcons1X1Sy", + "LipisFlagIcons1X1Sz", + "LipisFlagIcons1X1Ta", + "LipisFlagIcons1X1Tc", + "LipisFlagIcons1X1Td", + "LipisFlagIcons1X1Tf", + "LipisFlagIcons1X1Tg", + "LipisFlagIcons1X1Th", + "LipisFlagIcons1X1Tj", + "LipisFlagIcons1X1Tk", + "LipisFlagIcons1X1Tl", + "LipisFlagIcons1X1Tm", + "LipisFlagIcons1X1Tn", + "LipisFlagIcons1X1To", + "LipisFlagIcons1X1Tr", + "LipisFlagIcons1X1Tt", + "LipisFlagIcons1X1Tv", + "LipisFlagIcons1X1Tw", + "LipisFlagIcons1X1Tz", + "LipisFlagIcons1X1Ua", + "LipisFlagIcons1X1Ug", + "LipisFlagIcons1X1Um", + "LipisFlagIcons1X1Un", + "LipisFlagIcons1X1Us", + "LipisFlagIcons1X1Uy", + "LipisFlagIcons1X1Uz", + "LipisFlagIcons1X1Va", + "LipisFlagIcons1X1Vc", + "LipisFlagIcons1X1Ve", + "LipisFlagIcons1X1Vg", + "LipisFlagIcons1X1Vi", + "LipisFlagIcons1X1Vn", + "LipisFlagIcons1X1Vu", + "LipisFlagIcons1X1Wf", + "LipisFlagIcons1X1Ws", + "LipisFlagIcons1X1Xk", + "LipisFlagIcons1X1Xx", + "LipisFlagIcons1X1Ye", + "LipisFlagIcons1X1Yt", + "LipisFlagIcons1X1Za", + "LipisFlagIcons1X1Zm", + "LipisFlagIcons1X1Zw" + ], + "lipis_flag_icons_4_x_3": [ + "LipisFlagIcons4X3Ac", + "LipisFlagIcons4X3Ad", + "LipisFlagIcons4X3Ae", + "LipisFlagIcons4X3Af", + "LipisFlagIcons4X3Ag", + "LipisFlagIcons4X3Ai", + "LipisFlagIcons4X3Al", + "LipisFlagIcons4X3Am", + "LipisFlagIcons4X3Ao", + "LipisFlagIcons4X3Aq", + "LipisFlagIcons4X3Ar", + "LipisFlagIcons4X3As", + "LipisFlagIcons4X3At", + "LipisFlagIcons4X3Au", + "LipisFlagIcons4X3Aw", + "LipisFlagIcons4X3Ax", + "LipisFlagIcons4X3Az", + "LipisFlagIcons4X3Ba", + "LipisFlagIcons4X3Bb", + "LipisFlagIcons4X3Bd", + "LipisFlagIcons4X3Be", + "LipisFlagIcons4X3Bf", + "LipisFlagIcons4X3Bg", + "LipisFlagIcons4X3Bh", + "LipisFlagIcons4X3Bi", + "LipisFlagIcons4X3Bj", + "LipisFlagIcons4X3Bl", + "LipisFlagIcons4X3Bm", + "LipisFlagIcons4X3Bn", + "LipisFlagIcons4X3Bo", + "LipisFlagIcons4X3Bq", + "LipisFlagIcons4X3Br", + "LipisFlagIcons4X3Bs", + "LipisFlagIcons4X3Bt", + "LipisFlagIcons4X3Bv", + "LipisFlagIcons4X3Bw", + "LipisFlagIcons4X3By", + "LipisFlagIcons4X3Bz", + "LipisFlagIcons4X3Ca", + "LipisFlagIcons4X3Cc", + "LipisFlagIcons4X3Cd", + "LipisFlagIcons4X3Cefta", + "LipisFlagIcons4X3Cf", + "LipisFlagIcons4X3Cg", + "LipisFlagIcons4X3Ch", + "LipisFlagIcons4X3Ci", + "LipisFlagIcons4X3Ck", + "LipisFlagIcons4X3Cl", + "LipisFlagIcons4X3Cm", + "LipisFlagIcons4X3Cn", + "LipisFlagIcons4X3Co", + "LipisFlagIcons4X3Cp", + "LipisFlagIcons4X3Cr", + "LipisFlagIcons4X3Cu", + "LipisFlagIcons4X3Cv", + "LipisFlagIcons4X3Cw", + "LipisFlagIcons4X3Cx", + "LipisFlagIcons4X3Cy", + "LipisFlagIcons4X3Cz", + "LipisFlagIcons4X3De", + "LipisFlagIcons4X3Dg", + "LipisFlagIcons4X3Dj", + "LipisFlagIcons4X3Dk", + "LipisFlagIcons4X3Dm", + "LipisFlagIcons4X3Do", + "LipisFlagIcons4X3Dz", + "LipisFlagIcons4X3Ea", + "LipisFlagIcons4X3Ec", + "LipisFlagIcons4X3Ee", + "LipisFlagIcons4X3Eg", + "LipisFlagIcons4X3Eh", + "LipisFlagIcons4X3Er", + "LipisFlagIcons4X3EsCt", + "LipisFlagIcons4X3EsGa", + "LipisFlagIcons4X3Es", + "LipisFlagIcons4X3Et", + "LipisFlagIcons4X3Eu", + "LipisFlagIcons4X3Fi", + "LipisFlagIcons4X3Fj", + "LipisFlagIcons4X3Fk", + "LipisFlagIcons4X3Fm", + "LipisFlagIcons4X3Fo", + "LipisFlagIcons4X3Fr", + "LipisFlagIcons4X3Ga", + "LipisFlagIcons4X3GbEng", + "LipisFlagIcons4X3GbNir", + "LipisFlagIcons4X3GbSct", + "LipisFlagIcons4X3GbWls", + "LipisFlagIcons4X3Gb", + "LipisFlagIcons4X3Gd", + "LipisFlagIcons4X3Ge", + "LipisFlagIcons4X3Gf", + "LipisFlagIcons4X3Gg", + "LipisFlagIcons4X3Gh", + "LipisFlagIcons4X3Gi", + "LipisFlagIcons4X3Gl", + "LipisFlagIcons4X3Gm", + "LipisFlagIcons4X3Gn", + "LipisFlagIcons4X3Gp", + "LipisFlagIcons4X3Gq", + "LipisFlagIcons4X3Gr", + "LipisFlagIcons4X3Gs", + "LipisFlagIcons4X3Gt", + "LipisFlagIcons4X3Gu", + "LipisFlagIcons4X3Gw", + "LipisFlagIcons4X3Gy", + "LipisFlagIcons4X3Hk", + "LipisFlagIcons4X3Hm", + "LipisFlagIcons4X3Hn", + "LipisFlagIcons4X3Hr", + "LipisFlagIcons4X3Ht", + "LipisFlagIcons4X3Hu", + "LipisFlagIcons4X3Ic", + "LipisFlagIcons4X3Id", + "LipisFlagIcons4X3Ie", + "LipisFlagIcons4X3Il", + "LipisFlagIcons4X3Im", + "LipisFlagIcons4X3In", + "LipisFlagIcons4X3Io", + "LipisFlagIcons4X3Iq", + "LipisFlagIcons4X3Ir", + "LipisFlagIcons4X3Is", + "LipisFlagIcons4X3It", + "LipisFlagIcons4X3Je", + "LipisFlagIcons4X3Jm", + "LipisFlagIcons4X3Jo", + "LipisFlagIcons4X3Jp", + "LipisFlagIcons4X3Ke", + "LipisFlagIcons4X3Kg", + "LipisFlagIcons4X3Kh", + "LipisFlagIcons4X3Ki", + "LipisFlagIcons4X3Km", + "LipisFlagIcons4X3Kn", + "LipisFlagIcons4X3Kp", + "LipisFlagIcons4X3Kr", + "LipisFlagIcons4X3Kw", + "LipisFlagIcons4X3Ky", + "LipisFlagIcons4X3Kz", + "LipisFlagIcons4X3La", + "LipisFlagIcons4X3Lb", + "LipisFlagIcons4X3Lc", + "LipisFlagIcons4X3Li", + "LipisFlagIcons4X3Lk", + "LipisFlagIcons4X3Lr", + "LipisFlagIcons4X3Ls", + "LipisFlagIcons4X3Lt", + "LipisFlagIcons4X3Lu", + "LipisFlagIcons4X3Lv", + "LipisFlagIcons4X3Ly", + "LipisFlagIcons4X3Ma", + "LipisFlagIcons4X3Mc", + "LipisFlagIcons4X3Md", + "LipisFlagIcons4X3Me", + "LipisFlagIcons4X3Mf", + "LipisFlagIcons4X3Mg", + "LipisFlagIcons4X3Mh", + "LipisFlagIcons4X3Mk", + "LipisFlagIcons4X3Ml", + "LipisFlagIcons4X3Mm", + "LipisFlagIcons4X3Mn", + "LipisFlagIcons4X3Mo", + "LipisFlagIcons4X3Mp", + "LipisFlagIcons4X3Mq", + "LipisFlagIcons4X3Mr", + "LipisFlagIcons4X3Ms", + "LipisFlagIcons4X3Mt", + "LipisFlagIcons4X3Mu", + "LipisFlagIcons4X3Mv", + "LipisFlagIcons4X3Mw", + "LipisFlagIcons4X3Mx", + "LipisFlagIcons4X3My", + "LipisFlagIcons4X3Mz", + "LipisFlagIcons4X3Na", + "LipisFlagIcons4X3Nc", + "LipisFlagIcons4X3Ne", + "LipisFlagIcons4X3Nf", + "LipisFlagIcons4X3Ng", + "LipisFlagIcons4X3Ni", + "LipisFlagIcons4X3Nl", + "LipisFlagIcons4X3No", + "LipisFlagIcons4X3Np", + "LipisFlagIcons4X3Nr", + "LipisFlagIcons4X3Nu", + "LipisFlagIcons4X3Nz", + "LipisFlagIcons4X3Om", + "LipisFlagIcons4X3Pa", + "LipisFlagIcons4X3Pe", + "LipisFlagIcons4X3Pf", + "LipisFlagIcons4X3Pg", + "LipisFlagIcons4X3Ph", + "LipisFlagIcons4X3Pk", + "LipisFlagIcons4X3Pl", + "LipisFlagIcons4X3Pm", + "LipisFlagIcons4X3Pn", + "LipisFlagIcons4X3Pr", + "LipisFlagIcons4X3Ps", + "LipisFlagIcons4X3Pt", + "LipisFlagIcons4X3Pw", + "LipisFlagIcons4X3Py", + "LipisFlagIcons4X3Qa", + "LipisFlagIcons4X3Re", + "LipisFlagIcons4X3Ro", + "LipisFlagIcons4X3Rs", + "LipisFlagIcons4X3Ru", + "LipisFlagIcons4X3Rw", + "LipisFlagIcons4X3Sa", + "LipisFlagIcons4X3Sb", + "LipisFlagIcons4X3Sc", + "LipisFlagIcons4X3Sd", + "LipisFlagIcons4X3Se", + "LipisFlagIcons4X3Sg", + "LipisFlagIcons4X3Sh", + "LipisFlagIcons4X3Si", + "LipisFlagIcons4X3Sj", + "LipisFlagIcons4X3Sk", + "LipisFlagIcons4X3Sl", + "LipisFlagIcons4X3Sm", + "LipisFlagIcons4X3Sn", + "LipisFlagIcons4X3So", + "LipisFlagIcons4X3Sr", + "LipisFlagIcons4X3Ss", + "LipisFlagIcons4X3St", + "LipisFlagIcons4X3Sv", + "LipisFlagIcons4X3Sx", + "LipisFlagIcons4X3Sy", + "LipisFlagIcons4X3Sz", + "LipisFlagIcons4X3Ta", + "LipisFlagIcons4X3Tc", + "LipisFlagIcons4X3Td", + "LipisFlagIcons4X3Tf", + "LipisFlagIcons4X3Tg", + "LipisFlagIcons4X3Th", + "LipisFlagIcons4X3Tj", + "LipisFlagIcons4X3Tk", + "LipisFlagIcons4X3Tl", + "LipisFlagIcons4X3Tm", + "LipisFlagIcons4X3Tn", + "LipisFlagIcons4X3To", + "LipisFlagIcons4X3Tr", + "LipisFlagIcons4X3Tt", + "LipisFlagIcons4X3Tv", + "LipisFlagIcons4X3Tw", + "LipisFlagIcons4X3Tz", + "LipisFlagIcons4X3Ua", + "LipisFlagIcons4X3Ug", + "LipisFlagIcons4X3Um", + "LipisFlagIcons4X3Un", + "LipisFlagIcons4X3Us", + "LipisFlagIcons4X3Uy", + "LipisFlagIcons4X3Uz", + "LipisFlagIcons4X3Va", + "LipisFlagIcons4X3Vc", + "LipisFlagIcons4X3Ve", + "LipisFlagIcons4X3Vg", + "LipisFlagIcons4X3Vi", + "LipisFlagIcons4X3Vn", + "LipisFlagIcons4X3Vu", + "LipisFlagIcons4X3Wf", + "LipisFlagIcons4X3Ws", + "LipisFlagIcons4X3Xk", + "LipisFlagIcons4X3Xx", + "LipisFlagIcons4X3Ye", + "LipisFlagIcons4X3Yt", + "LipisFlagIcons4X3Za", + "LipisFlagIcons4X3Zm", + "LipisFlagIcons4X3Zw" + ], + "lucide": [ + "LucideAccessibility", + "LucideActivity", + "LucideAirVent", + "LucideAirplay", + "LucideAlarmCheck", + "LucideAlarmClockOff", + "LucideAlarmClock", + "LucideAlarmMinus", + "LucideAlarmPlus", + "LucideAlbum", + "LucideAlertCircle", + "LucideAlertOctagon", + "LucideAlertTriangle", + "LucideAlignCenterHorizontal", + "LucideAlignCenterVertical", + "LucideAlignCenter", + "LucideAlignEndHorizontal", + "LucideAlignEndVertical", + "LucideAlignHorizontalDistributeCenter", + "LucideAlignHorizontalDistributeEnd", + "LucideAlignHorizontalDistributeStart", + "LucideAlignHorizontalJustifyCenter", + "LucideAlignHorizontalJustifyEnd", + "LucideAlignHorizontalJustifyStart", + "LucideAlignHorizontalSpaceAround", + "LucideAlignHorizontalSpaceBetween", + "LucideAlignJustify", + "LucideAlignLeft", + "LucideAlignRight", + "LucideAlignStartHorizontal", + "LucideAlignStartVertical", + "LucideAlignVerticalDistributeCenter", + "LucideAlignVerticalDistributeEnd", + "LucideAlignVerticalDistributeStart", + "LucideAlignVerticalJustifyCenter", + "LucideAlignVerticalJustifyEnd", + "LucideAlignVerticalJustifyStart", + "LucideAlignVerticalSpaceAround", + "LucideAlignVerticalSpaceBetween", + "LucideAnchor", + "LucideAngry", + "LucideAnnoyed", + "LucideAperture", + "LucideApple", + "LucideArchiveRestore", + "LucideArchive", + "LucideArmchair", + "LucideArrowBigDown", + "LucideArrowBigLeft", + "LucideArrowBigRight", + "LucideArrowBigUp", + "LucideArrowDownCircle", + "LucideArrowDownLeft", + "LucideArrowDownRight", + "LucideArrowDown", + "LucideArrowLeftCircle", + "LucideArrowLeftRight", + "LucideArrowLeft", + "LucideArrowRightCircle", + "LucideArrowRight", + "LucideArrowUpCircle", + "LucideArrowUpDown", + "LucideArrowUpLeft", + "LucideArrowUpRight", + "LucideArrowUp", + "LucideAsterisk", + "LucideAtSign", + "LucideAward", + "LucideAxe", + "LucideAxis3D", + "LucideBaby", + "LucideBackpack", + "LucideBaggageClaim", + "LucideBanana", + "LucideBanknote", + "LucideBarChart2", + "LucideBarChart3", + "LucideBarChart4", + "LucideBarChartHorizontal", + "LucideBarChart", + "LucideBaseline", + "LucideBath", + "LucideBatteryCharging", + "LucideBatteryFull", + "LucideBatteryLow", + "LucideBatteryMedium", + "LucideBattery", + "LucideBeaker", + "LucideBedDouble", + "LucideBedSingle", + "LucideBed", + "LucideBeer", + "LucideBellMinus", + "LucideBellOff", + "LucideBellPlus", + "LucideBellRing", + "LucideBell", + "LucideBike", + "LucideBinary", + "LucideBitcoin", + "LucideBluetoothConnected", + "LucideBluetoothOff", + "LucideBluetoothSearching", + "LucideBluetooth", + "LucideBold", + "LucideBomb", + "LucideBone", + "LucideBookOpenCheck", + "LucideBookOpen", + "LucideBook", + "LucideBookmarkMinus", + "LucideBookmarkPlus", + "LucideBookmark", + "LucideBot", + "LucideBoxSelect", + "LucideBox", + "LucideBoxes", + "LucideBriefcase", + "LucideBrush", + "LucideBug", + "LucideBuilding2", + "LucideBuilding", + "LucideBus", + "LucideCake", + "LucideCalculator", + "LucideCalendarCheck2", + "LucideCalendarCheck", + "LucideCalendarClock", + "LucideCalendarDays", + "LucideCalendarHeart", + "LucideCalendarMinus", + "LucideCalendarOff", + "LucideCalendarPlus", + "LucideCalendarRange", + "LucideCalendarSearch", + "LucideCalendarX2", + "LucideCalendarX", + "LucideCalendar", + "LucideCameraOff", + "LucideCamera", + "LucideCar", + "LucideCarrot", + "LucideCast", + "LucideCheckCircle2", + "LucideCheckCircle", + "LucideCheckSquare", + "LucideCheck", + "LucideChefHat", + "LucideCherry", + "LucideChevronDown", + "LucideChevronFirst", + "LucideChevronLast", + "LucideChevronLeft", + "LucideChevronRight", + "LucideChevronUp", + "LucideChevronsDownUp", + "LucideChevronsDown", + "LucideChevronsLeftRight", + "LucideChevronsLeft", + "LucideChevronsRightLeft", + "LucideChevronsRight", + "LucideChevronsUpDown", + "LucideChevronsUp", + "LucideChrome", + "LucideCigaretteOff", + "LucideCigarette", + "LucideCircleDot", + "LucideCircleEllipsis", + "LucideCircleSlashed", + "LucideCircle", + "LucideCitrus", + "LucideClapperboard", + "LucideClipboardCheck", + "LucideClipboardCopy", + "LucideClipboardEdit", + "LucideClipboardList", + "LucideClipboardSignature", + "LucideClipboardType", + "LucideClipboardX", + "LucideClipboard", + "LucideClock1", + "LucideClock10", + "LucideClock11", + "LucideClock12", + "LucideClock2", + "LucideClock3", + "LucideClock4", + "LucideClock5", + "LucideClock6", + "LucideClock7", + "LucideClock8", + "LucideClock9", + "LucideClock", + "LucideCloudCog", + "LucideCloudDrizzle", + "LucideCloudFog", + "LucideCloudHail", + "LucideCloudLightning", + "LucideCloudMoonRain", + "LucideCloudMoon", + "LucideCloudOff", + "LucideCloudRainWind", + "LucideCloudRain", + "LucideCloudSnow", + "LucideCloudSunRain", + "LucideCloudSun", + "LucideCloud", + "LucideCloudy", + "LucideClover", + "LucideCode2", + "LucideCode", + "LucideCodepen", + "LucideCodesandbox", + "LucideCoffee", + "LucideCog", + "LucideCoins", + "LucideColumns", + "LucideCommand", + "LucideCompass", + "LucideComponent", + "LucideConciergeBell", + "LucideContact", + "LucideContrast", + "LucideCookie", + "LucideCopy", + "LucideCopyleft", + "LucideCopyright", + "LucideCornerDownLeft", + "LucideCornerDownRight", + "LucideCornerLeftDown", + "LucideCornerLeftUp", + "LucideCornerRightDown", + "LucideCornerRightUp", + "LucideCornerUpLeft", + "LucideCornerUpRight", + "LucideCpu", + "LucideCreditCard", + "LucideCroissant", + "LucideCrop", + "LucideCross", + "LucideCrosshair", + "LucideCrown", + "LucideCupSoda", + "LucideCurlyBraces", + "LucideCurrency", + "LucideDatabase", + "LucideDelete", + "LucideDiamond", + "LucideDice1", + "LucideDice2", + "LucideDice3", + "LucideDice4", + "LucideDice5", + "LucideDice6", + "LucideDices", + "LucideDiff", + "LucideDisc", + "LucideDivideCircle", + "LucideDivideSquare", + "LucideDivide", + "LucideDollarSign", + "LucideDownloadCloud", + "LucideDownload", + "LucideDribbble", + "LucideDroplet", + "LucideDroplets", + "LucideDrumstick", + "LucideEarOff", + "LucideEar", + "LucideEdit2", + "LucideEdit3", + "LucideEdit", + "LucideEggFried", + "LucideEgg", + "LucideEqualNot", + "LucideEqual", + "LucideEraser", + "LucideEuro", + "LucideExpand", + "LucideExternalLink", + "LucideEyeOff", + "LucideEye", + "LucideFacebook", + "LucideFactory", + "LucideFan", + "LucideFastForward", + "LucideFeather", + "LucideFigma", + "LucideFileArchive", + "LucideFileAudio2", + "LucideFileAudio", + "LucideFileAxis3D", + "LucideFileBadge2", + "LucideFileBadge", + "LucideFileBarChart2", + "LucideFileBarChart", + "LucideFileBox", + "LucideFileCheck2", + "LucideFileCheck", + "LucideFileClock", + "LucideFileCode", + "LucideFileCog2", + "LucideFileCog", + "LucideFileDiff", + "LucideFileDigit", + "LucideFileDown", + "LucideFileEdit", + "LucideFileHeart", + "LucideFileImage", + "LucideFileInput", + "LucideFileJson2", + "LucideFileJson", + "LucideFileKey2", + "LucideFileKey", + "LucideFileLineChart", + "LucideFileLock2", + "LucideFileLock", + "LucideFileMinus2", + "LucideFileMinus", + "LucideFileOutput", + "LucideFilePieChart", + "LucideFilePlus2", + "LucideFilePlus", + "LucideFileQuestion", + "LucideFileScan", + "LucideFileSearch2", + "LucideFileSearch", + "LucideFileSignature", + "LucideFileSpreadsheet", + "LucideFileSymlink", + "LucideFileTerminal", + "LucideFileText", + "LucideFileType2", + "LucideFileType", + "LucideFileUp", + "LucideFileVideo2", + "LucideFileVideo", + "LucideFileVolume2", + "LucideFileVolume", + "LucideFileWarning", + "LucideFileX2", + "LucideFileX", + "LucideFile", + "LucideFiles", + "LucideFilm", + "LucideFilter", + "LucideFingerprint", + "LucideFlagOff", + "LucideFlagTriangleLeft", + "LucideFlagTriangleRight", + "LucideFlag", + "LucideFlame", + "LucideFlashlightOff", + "LucideFlashlight", + "LucideFlaskConical", + "LucideFlaskRound", + "LucideFlipHorizontal2", + "LucideFlipHorizontal", + "LucideFlipVertical2", + "LucideFlipVertical", + "LucideFlower2", + "LucideFlower", + "LucideFocus", + "LucideFolderArchive", + "LucideFolderCheck", + "LucideFolderClock", + "LucideFolderClosed", + "LucideFolderCog2", + "LucideFolderCog", + "LucideFolderDown", + "LucideFolderEdit", + "LucideFolderHeart", + "LucideFolderInput", + "LucideFolderKey", + "LucideFolderLock", + "LucideFolderMinus", + "LucideFolderOpen", + "LucideFolderOutput", + "LucideFolderPlus", + "LucideFolderSearch2", + "LucideFolderSearch", + "LucideFolderSymlink", + "LucideFolderTree", + "LucideFolderUp", + "LucideFolderX", + "LucideFolder", + "LucideFolders", + "LucideFormInput", + "LucideForward", + "LucideFrame", + "LucideFramer", + "LucideFrown", + "LucideFuel", + "LucideFunctionSquare", + "LucideGamepad2", + "LucideGamepad", + "LucideGauge", + "LucideGavel", + "LucideGem", + "LucideGhost", + "LucideGift", + "LucideGitBranchPlus", + "LucideGitBranch", + "LucideGitCommit", + "LucideGitCompare", + "LucideGitFork", + "LucideGitMerge", + "LucideGitPullRequestClosed", + "LucideGitPullRequestDraft", + "LucideGitPullRequest", + "LucideGithub", + "LucideGitlab", + "LucideGlassWater", + "LucideGlasses", + "LucideGlobe2", + "LucideGlobe", + "LucideGrab", + "LucideGraduationCap", + "LucideGrape", + "LucideGrid", + "LucideGripHorizontal", + "LucideGripVertical", + "LucideHammer", + "LucideHandMetal", + "LucideHand", + "LucideHardDrive", + "LucideHardHat", + "LucideHash", + "LucideHaze", + "LucideHeadphones", + "LucideHeartCrack", + "LucideHeartHandshake", + "LucideHeartOff", + "LucideHeartPulse", + "LucideHeart", + "LucideHelpCircle", + "LucideHexagon", + "LucideHighlighter", + "LucideHistory", + "LucideHome", + "LucideHourglass", + "LucideIceCream", + "LucideImageMinus", + "LucideImageOff", + "LucideImagePlus", + "LucideImage", + "LucideImport", + "LucideInbox", + "LucideIndent", + "LucideIndianRupee", + "LucideInfinity", + "LucideInfo", + "LucideInspect", + "LucideInstagram", + "LucideItalic", + "LucideJapaneseYen", + "LucideJoystick", + "LucideKey", + "LucideKeyboard", + "LucideLampCeiling", + "LucideLampDesk", + "LucideLampFloor", + "LucideLampWallDown", + "LucideLampWallUp", + "LucideLamp", + "LucideLandmark", + "LucideLanguages", + "LucideLaptop2", + "LucideLaptop", + "LucideLassoSelect", + "LucideLasso", + "LucideLaugh", + "LucideLayers", + "LucideLayoutDashboard", + "LucideLayoutGrid", + "LucideLayoutList", + "LucideLayoutTemplate", + "LucideLayout", + "LucideLeaf", + "LucideLibrary", + "LucideLifeBuoy", + "LucideLightbulbOff", + "LucideLightbulb", + "LucideLineChart", + "LucideLink2Off", + "LucideLink2", + "LucideLink", + "LucideLinkedin", + "LucideListChecks", + "LucideListEnd", + "LucideListMinus", + "LucideListMusic", + "LucideListOrdered", + "LucideListPlus", + "LucideListStart", + "LucideListVideo", + "LucideListX", + "LucideList", + "LucideLoader2", + "LucideLoader", + "LucideLocateFixed", + "LucideLocateOff", + "LucideLocate", + "LucideLock", + "LucideLogIn", + "LucideLogOut", + "LucideLuggage", + "LucideMagnet", + "LucideMailCheck", + "LucideMailMinus", + "LucideMailOpen", + "LucideMailPlus", + "LucideMailQuestion", + "LucideMailSearch", + "LucideMailWarning", + "LucideMailX", + "LucideMail", + "LucideMails", + "LucideMapPinOff", + "LucideMapPin", + "LucideMap", + "LucideMartini", + "LucideMaximize2", + "LucideMaximize", + "LucideMedal", + "LucideMegaphoneOff", + "LucideMegaphone", + "LucideMeh", + "LucideMenu", + "LucideMessageCircle", + "LucideMessageSquare", + "LucideMic2", + "LucideMicOff", + "LucideMic", + "LucideMicroscope", + "LucideMicrowave", + "LucideMilestone", + "LucideMinimize2", + "LucideMinimize", + "LucideMinusCircle", + "LucideMinusSquare", + "LucideMinus", + "LucideMonitorOff", + "LucideMonitorSpeaker", + "LucideMonitor", + "LucideMoon", + "LucideMoreHorizontal", + "LucideMoreVertical", + "LucideMountainSnow", + "LucideMountain", + "LucideMousePointer2", + "LucideMousePointerClick", + "LucideMousePointer", + "LucideMouse", + "LucideMove3D", + "LucideMoveDiagonal2", + "LucideMoveDiagonal", + "LucideMoveHorizontal", + "LucideMoveVertical", + "LucideMove", + "LucideMusic2", + "LucideMusic3", + "LucideMusic4", + "LucideMusic", + "LucideNavigation2Off", + "LucideNavigation2", + "LucideNavigationOff", + "LucideNavigation", + "LucideNetwork", + "LucideNewspaper", + "LucideOctagon", + "LucideOption", + "LucideOutdent", + "LucidePackage2", + "LucidePackageCheck", + "LucidePackageMinus", + "LucidePackageOpen", + "LucidePackagePlus", + "LucidePackageSearch", + "LucidePackageX", + "LucidePackage", + "LucidePaintBucket", + "LucidePaintbrush2", + "LucidePaintbrush", + "LucidePalette", + "LucidePalmtree", + "LucidePaperclip", + "LucidePartyPopper", + "LucidePauseCircle", + "LucidePauseOctagon", + "LucidePause", + "LucidePenTool", + "LucidePencil", + "LucidePercent", + "LucidePersonStanding", + "LucidePhoneCall", + "LucidePhoneForwarded", + "LucidePhoneIncoming", + "LucidePhoneMissed", + "LucidePhoneOff", + "LucidePhoneOutgoing", + "LucidePhone", + "LucidePieChart", + "LucidePiggyBank", + "LucidePinOff", + "LucidePin", + "LucidePipette", + "LucidePizza", + "LucidePlane", + "LucidePlayCircle", + "LucidePlay", + "LucidePlug2", + "LucidePlugZap", + "LucidePlug", + "LucidePlusCircle", + "LucidePlusSquare", + "LucidePlus", + "LucidePocket", + "LucidePodcast", + "LucidePointer", + "LucidePoundSterling", + "LucidePowerOff", + "LucidePower", + "LucidePrinter", + "LucidePuzzle", + "LucideQrCode", + "LucideQuote", + "LucideRadioReceiver", + "LucideRadio", + "LucideRectangleHorizontal", + "LucideRectangleVertical", + "LucideRecycle", + "LucideRedo2", + "LucideRedo", + "LucideRefreshCcw", + "LucideRefreshCw", + "LucideRefrigerator", + "LucideRegex", + "LucideRepeat1", + "LucideRepeat", + "LucideReplyAll", + "LucideReply", + "LucideRewind", + "LucideRocket", + "LucideRockingChair", + "LucideRotate3D", + "LucideRotateCcw", + "LucideRotateCw", + "LucideRss", + "LucideRuler", + "LucideRussianRuble", + "LucideSailboat", + "LucideSave", + "LucideScale3D", + "LucideScale", + "LucideScaling", + "LucideScanFace", + "LucideScanLine", + "LucideScan", + "LucideScissors", + "LucideScreenShareOff", + "LucideScreenShare", + "LucideScroll", + "LucideSearch", + "LucideSend", + "LucideSeparatorHorizontal", + "LucideSeparatorVertical", + "LucideServerCog", + "LucideServerCrash", + "LucideServerOff", + "LucideServer", + "LucideSettings2", + "LucideSettings", + "LucideShare2", + "LucideShare", + "LucideSheet", + "LucideShieldAlert", + "LucideShieldCheck", + "LucideShieldClose", + "LucideShieldOff", + "LucideShield", + "LucideShirt", + "LucideShoppingBag", + "LucideShoppingCart", + "LucideShovel", + "LucideShowerHead", + "LucideShrink", + "LucideShrub", + "LucideShuffle", + "LucideSidebarClose", + "LucideSidebarOpen", + "LucideSidebar", + "LucideSigma", + "LucideSignalHigh", + "LucideSignalLow", + "LucideSignalMedium", + "LucideSignalZero", + "LucideSignal", + "LucideSiren", + "LucideSkipBack", + "LucideSkipForward", + "LucideSkull", + "LucideSlack", + "LucideSlash", + "LucideSlice", + "LucideSlidersHorizontal", + "LucideSliders", + "LucideSmartphoneCharging", + "LucideSmartphone", + "LucideSmilePlus", + "LucideSmile", + "LucideSnowflake", + "LucideSofa", + "LucideSortAsc", + "LucideSortDesc", + "LucideSpeaker", + "LucideSprout", + "LucideSquare", + "LucideStarHalf", + "LucideStarOff", + "LucideStar", + "LucideStethoscope", + "LucideSticker", + "LucideStickyNote", + "LucideStopCircle", + "LucideStretchHorizontal", + "LucideStretchVertical", + "LucideStrikethrough", + "LucideSubscript", + "LucideSunDim", + "LucideSunMedium", + "LucideSunMoon", + "LucideSunSnow", + "LucideSun", + "LucideSunrise", + "LucideSunset", + "LucideSuperscript", + "LucideSwissFranc", + "LucideSwitchCamera", + "LucideSword", + "LucideSwords", + "LucideSyringe", + "LucideTable2", + "LucideTable", + "LucideTablet", + "LucideTag", + "LucideTags", + "LucideTarget", + "LucideTent", + "LucideTerminalSquare", + "LucideTerminal", + "LucideTextCursorInput", + "LucideTextCursor", + "LucideThermometerSnowflake", + "LucideThermometerSun", + "LucideThermometer", + "LucideThumbsDown", + "LucideThumbsUp", + "LucideTicket", + "LucideTimerOff", + "LucideTimerReset", + "LucideTimer", + "LucideToggleLeft", + "LucideToggleRight", + "LucideTornado", + "LucideToyBrick", + "LucideTrain", + "LucideTrash2", + "LucideTrash", + "LucideTreeDeciduous", + "LucideTreePine", + "LucideTrees", + "LucideTrello", + "LucideTrendingDown", + "LucideTrendingUp", + "LucideTriangle", + "LucideTrophy", + "LucideTruck", + "LucideTv2", + "LucideTv", + "LucideTwitch", + "LucideTwitter", + "LucideType", + "LucideUmbrella", + "LucideUnderline", + "LucideUndo2", + "LucideUndo", + "LucideUnlink2", + "LucideUnlink", + "LucideUnlock", + "LucideUploadCloud", + "LucideUpload", + "LucideUsb", + "LucideUserCheck", + "LucideUserCog", + "LucideUserMinus", + "LucideUserPlus", + "LucideUserX", + "LucideUser", + "LucideUsers", + "LucideUtensilsCrossed", + "LucideUtensils", + "LucideVenetianMask", + "LucideVerified", + "LucideVibrateOff", + "LucideVibrate", + "LucideVideoOff", + "LucideVideo", + "LucideView", + "LucideVoicemail", + "LucideVolume1", + "LucideVolume2", + "LucideVolumeX", + "LucideVolume", + "LucideWallet", + "LucideWand2", + "LucideWand", + "LucideWatch", + "LucideWaves", + "LucideWebcam", + "LucideWebhook", + "LucideWifiOff", + "LucideWifi", + "LucideWind", + "LucideWine", + "LucideWrapText", + "LucideWrench", + "LucideXCircle", + "LucideXOctagon", + "LucideXSquare", + "LucideX", + "LucideYoutube", + "LucideZapOff", + "LucideZap", + "LucideZoomIn", + "LucideZoomOut" + ], + "octicons": [ + "OcticonsAccessibility16", + "OcticonsAlert16", + "OcticonsAlert24", + "OcticonsAlertFill12", + "OcticonsApps16", + "OcticonsArchive16", + "OcticonsArchive24", + "OcticonsArrowBoth16", + "OcticonsArrowBoth24", + "OcticonsArrowDown16", + "OcticonsArrowDown24", + "OcticonsArrowDownLeft24", + "OcticonsArrowDownRight24", + "OcticonsArrowLeft16", + "OcticonsArrowLeft24", + "OcticonsArrowRight16", + "OcticonsArrowRight24", + "OcticonsArrowSwitch16", + "OcticonsArrowSwitch24", + "OcticonsArrowUp16", + "OcticonsArrowUp24", + "OcticonsArrowUpLeft24", + "OcticonsArrowUpRight24", + "OcticonsBeaker16", + "OcticonsBeaker24", + "OcticonsBell16", + "OcticonsBell24", + "OcticonsBellFill16", + "OcticonsBellFill24", + "OcticonsBellSlash16", + "OcticonsBellSlash24", + "OcticonsBlocked16", + "OcticonsBlocked24", + "OcticonsBold16", + "OcticonsBold24", + "OcticonsBook16", + "OcticonsBook24", + "OcticonsBookmark16", + "OcticonsBookmark24", + "OcticonsBookmarkFill24", + "OcticonsBookmarkSlash16", + "OcticonsBookmarkSlash24", + "OcticonsBookmarkSlashFill24", + "OcticonsBriefcase16", + "OcticonsBriefcase24", + "OcticonsBroadcast16", + "OcticonsBroadcast24", + "OcticonsBrowser16", + "OcticonsBrowser24", + "OcticonsBug16", + "OcticonsBug24", + "OcticonsCalendar16", + "OcticonsCalendar24", + "OcticonsCheck16", + "OcticonsCheck24", + "OcticonsCheckCircle16", + "OcticonsCheckCircle24", + "OcticonsCheckCircleFill12", + "OcticonsCheckCircleFill16", + "OcticonsCheckCircleFill24", + "OcticonsChecklist16", + "OcticonsChecklist24", + "OcticonsChevronDown16", + "OcticonsChevronDown24", + "OcticonsChevronLeft16", + "OcticonsChevronLeft24", + "OcticonsChevronRight16", + "OcticonsChevronRight24", + "OcticonsChevronUp16", + "OcticonsChevronUp24", + "OcticonsCircle16", + "OcticonsCircle24", + "OcticonsCircleSlash16", + "OcticonsCircleSlash24", + "OcticonsClock16", + "OcticonsClock24", + "OcticonsCloud16", + "OcticonsCloud24", + "OcticonsCloudOffline16", + "OcticonsCloudOffline24", + "OcticonsCode16", + "OcticonsCode24", + "OcticonsCodeOfConduct16", + "OcticonsCodeOfConduct24", + "OcticonsCodeReview16", + "OcticonsCodeReview24", + "OcticonsCodeSquare16", + "OcticonsCodeSquare24", + "OcticonsCodescan16", + "OcticonsCodescan24", + "OcticonsCodescanCheckmark16", + "OcticonsCodescanCheckmark24", + "OcticonsCodespaces16", + "OcticonsCodespaces24", + "OcticonsColumns16", + "OcticonsColumns24", + "OcticonsComment16", + "OcticonsComment24", + "OcticonsCommentDiscussion16", + "OcticonsCommentDiscussion24", + "OcticonsCommit24", + "OcticonsContainer16", + "OcticonsContainer24", + "OcticonsCopy16", + "OcticonsCopy24", + "OcticonsCpu16", + "OcticonsCpu24", + "OcticonsCreditCard16", + "OcticonsCreditCard24", + "OcticonsCrossReference16", + "OcticonsCrossReference24", + "OcticonsDash16", + "OcticonsDash24", + "OcticonsDatabase16", + "OcticonsDatabase24", + "OcticonsDependabot16", + "OcticonsDependabot24", + "OcticonsDesktopDownload16", + "OcticonsDesktopDownload24", + "OcticonsDeviceCamera16", + "OcticonsDeviceCameraVideo16", + "OcticonsDeviceCameraVideo24", + "OcticonsDeviceDesktop16", + "OcticonsDeviceDesktop24", + "OcticonsDeviceMobile16", + "OcticonsDeviceMobile24", + "OcticonsDiamond16", + "OcticonsDiamond24", + "OcticonsDiff16", + "OcticonsDiff24", + "OcticonsDiffAdded16", + "OcticonsDiffIgnored16", + "OcticonsDiffModified16", + "OcticonsDiffRemoved16", + "OcticonsDiffRenamed16", + "OcticonsDot16", + "OcticonsDot24", + "OcticonsDotFill16", + "OcticonsDotFill24", + "OcticonsDownload16", + "OcticonsDownload24", + "OcticonsDuplicate16", + "OcticonsDuplicate24", + "OcticonsEllipsis16", + "OcticonsEye16", + "OcticonsEye24", + "OcticonsEyeClosed16", + "OcticonsEyeClosed24", + "OcticonsFeedDiscussion16", + "OcticonsFeedForked16", + "OcticonsFeedHeart16", + "OcticonsFeedMerged16", + "OcticonsFeedPerson16", + "OcticonsFeedRepo16", + "OcticonsFeedRocket16", + "OcticonsFeedStar16", + "OcticonsFeedTag16", + "OcticonsFeedTrophy16", + "OcticonsFile16", + "OcticonsFile24", + "OcticonsFileBadge16", + "OcticonsFileBinary16", + "OcticonsFileBinary24", + "OcticonsFileCode16", + "OcticonsFileCode24", + "OcticonsFileDiff16", + "OcticonsFileDiff24", + "OcticonsFileDirectory16", + "OcticonsFileDirectory24", + "OcticonsFileDirectoryFill16", + "OcticonsFileDirectoryFill24", + "OcticonsFileDirectoryOpenFill16", + "OcticonsFileMedia24", + "OcticonsFileSubmodule16", + "OcticonsFileSubmodule24", + "OcticonsFileSymlinkFile16", + "OcticonsFileSymlinkFile24", + "OcticonsFileZip16", + "OcticonsFileZip24", + "OcticonsFilter16", + "OcticonsFilter24", + "OcticonsFlame16", + "OcticonsFlame24", + "OcticonsFold16", + "OcticonsFold24", + "OcticonsFoldDown16", + "OcticonsFoldDown24", + "OcticonsFoldUp16", + "OcticonsFoldUp24", + "OcticonsGear16", + "OcticonsGear24", + "OcticonsGift16", + "OcticonsGift24", + "OcticonsGitBranch16", + "OcticonsGitBranch24", + "OcticonsGitCommit16", + "OcticonsGitCommit24", + "OcticonsGitCompare16", + "OcticonsGitCompare24", + "OcticonsGitMerge16", + "OcticonsGitMerge24", + "OcticonsGitPullRequest16", + "OcticonsGitPullRequest24", + "OcticonsGitPullRequestClosed16", + "OcticonsGitPullRequestClosed24", + "OcticonsGitPullRequestDraft16", + "OcticonsGitPullRequestDraft24", + "OcticonsGlobe16", + "OcticonsGlobe24", + "OcticonsGrabber16", + "OcticonsGrabber24", + "OcticonsGraph16", + "OcticonsGraph24", + "OcticonsHash16", + "OcticonsHash24", + "OcticonsHeading16", + "OcticonsHeading24", + "OcticonsHeart16", + "OcticonsHeart24", + "OcticonsHeartFill16", + "OcticonsHeartFill24", + "OcticonsHistory16", + "OcticonsHistory24", + "OcticonsHome16", + "OcticonsHome24", + "OcticonsHomeFill24", + "OcticonsHorizontalRule16", + "OcticonsHorizontalRule24", + "OcticonsHourglass16", + "OcticonsHourglass24", + "OcticonsHubot16", + "OcticonsHubot24", + "OcticonsIdBadge16", + "OcticonsImage16", + "OcticonsImage24", + "OcticonsInbox16", + "OcticonsInbox24", + "OcticonsInfinity16", + "OcticonsInfinity24", + "OcticonsInfo16", + "OcticonsInfo24", + "OcticonsIssueClosed16", + "OcticonsIssueClosed24", + "OcticonsIssueDraft16", + "OcticonsIssueDraft24", + "OcticonsIssueOpened16", + "OcticonsIssueOpened24", + "OcticonsIssueReopened16", + "OcticonsIssueReopened24", + "OcticonsItalic16", + "OcticonsItalic24", + "OcticonsIterations16", + "OcticonsIterations24", + "OcticonsKebabHorizontal16", + "OcticonsKebabHorizontal24", + "OcticonsKey16", + "OcticonsKey24", + "OcticonsKeyAsterisk16", + "OcticonsLaw16", + "OcticonsLaw24", + "OcticonsLightBulb16", + "OcticonsLightBulb24", + "OcticonsLink16", + "OcticonsLink24", + "OcticonsLinkExternal16", + "OcticonsLinkExternal24", + "OcticonsListOrdered16", + "OcticonsListOrdered24", + "OcticonsListUnordered16", + "OcticonsListUnordered24", + "OcticonsLocation16", + "OcticonsLocation24", + "OcticonsLock16", + "OcticonsLock24", + "OcticonsLog16", + "OcticonsLogoGist16", + "OcticonsLogoGithub16", + "OcticonsMail16", + "OcticonsMail24", + "OcticonsMarkGithub16", + "OcticonsMarkdown16", + "OcticonsMegaphone16", + "OcticonsMegaphone24", + "OcticonsMention16", + "OcticonsMention24", + "OcticonsMeter16", + "OcticonsMilestone16", + "OcticonsMilestone24", + "OcticonsMirror16", + "OcticonsMirror24", + "OcticonsMoon16", + "OcticonsMoon24", + "OcticonsMortarBoard16", + "OcticonsMortarBoard24", + "OcticonsMultiSelect16", + "OcticonsMultiSelect24", + "OcticonsMute16", + "OcticonsMute24", + "OcticonsNoEntry16", + "OcticonsNoEntry24", + "OcticonsNoEntryFill12", + "OcticonsNorthStar16", + "OcticonsNorthStar24", + "OcticonsNote16", + "OcticonsNote24", + "OcticonsNumber16", + "OcticonsNumber24", + "OcticonsOrganization16", + "OcticonsOrganization24", + "OcticonsPackage16", + "OcticonsPackage24", + "OcticonsPackageDependencies16", + "OcticonsPackageDependencies24", + "OcticonsPackageDependents16", + "OcticonsPackageDependents24", + "OcticonsPaintbrush16", + "OcticonsPaperAirplane16", + "OcticonsPaperAirplane24", + "OcticonsPaste16", + "OcticonsPaste24", + "OcticonsPencil16", + "OcticonsPencil24", + "OcticonsPeople16", + "OcticonsPeople24", + "OcticonsPerson16", + "OcticonsPerson24", + "OcticonsPersonAdd16", + "OcticonsPersonAdd24", + "OcticonsPersonFill16", + "OcticonsPersonFill24", + "OcticonsPin16", + "OcticonsPin24", + "OcticonsPlay16", + "OcticonsPlay24", + "OcticonsPlug16", + "OcticonsPlug24", + "OcticonsPlus16", + "OcticonsPlus24", + "OcticonsPlusCircle16", + "OcticonsPlusCircle24", + "OcticonsProject16", + "OcticonsProject24", + "OcticonsPulse16", + "OcticonsPulse24", + "OcticonsQuestion16", + "OcticonsQuestion24", + "OcticonsQuote16", + "OcticonsQuote24", + "OcticonsReply16", + "OcticonsReply24", + "OcticonsRepo16", + "OcticonsRepo24", + "OcticonsRepoClone16", + "OcticonsRepoDeleted16", + "OcticonsRepoForked16", + "OcticonsRepoForked24", + "OcticonsRepoLocked16", + "OcticonsRepoPull16", + "OcticonsRepoPush16", + "OcticonsRepoPush24", + "OcticonsRepoTemplate16", + "OcticonsRepoTemplate24", + "OcticonsReport16", + "OcticonsReport24", + "OcticonsRocket16", + "OcticonsRocket24", + "OcticonsRows16", + "OcticonsRows24", + "OcticonsRss16", + "OcticonsRss24", + "OcticonsRuby16", + "OcticonsRuby24", + "OcticonsScreenFull16", + "OcticonsScreenFull24", + "OcticonsScreenNormal16", + "OcticonsScreenNormal24", + "OcticonsSearch16", + "OcticonsSearch24", + "OcticonsServer16", + "OcticonsServer24", + "OcticonsShare16", + "OcticonsShare24", + "OcticonsShareAndroid16", + "OcticonsShareAndroid24", + "OcticonsShield16", + "OcticonsShield24", + "OcticonsShieldCheck16", + "OcticonsShieldCheck24", + "OcticonsShieldLock16", + "OcticonsShieldLock24", + "OcticonsShieldX16", + "OcticonsShieldX24", + "OcticonsSidebarCollapse16", + "OcticonsSidebarCollapse24", + "OcticonsSidebarExpand16", + "OcticonsSidebarExpand24", + "OcticonsSignIn16", + "OcticonsSignIn24", + "OcticonsSignOut16", + "OcticonsSignOut24", + "OcticonsSingleSelect16", + "OcticonsSingleSelect24", + "OcticonsSkip16", + "OcticonsSkip24", + "OcticonsSmiley16", + "OcticonsSmiley24", + "OcticonsSortAsc16", + "OcticonsSortAsc24", + "OcticonsSortDesc16", + "OcticonsSortDesc24", + "OcticonsSquare16", + "OcticonsSquare24", + "OcticonsSquareFill16", + "OcticonsSquareFill24", + "OcticonsSquirrel16", + "OcticonsSquirrel24", + "OcticonsStack16", + "OcticonsStack24", + "OcticonsStar16", + "OcticonsStar24", + "OcticonsStarFill16", + "OcticonsStarFill24", + "OcticonsStop16", + "OcticonsStop24", + "OcticonsStopwatch16", + "OcticonsStopwatch24", + "OcticonsStrikethrough16", + "OcticonsStrikethrough24", + "OcticonsSun16", + "OcticonsSun24", + "OcticonsSync16", + "OcticonsSync24", + "OcticonsTab24", + "OcticonsTabExternal16", + "OcticonsTable16", + "OcticonsTable24", + "OcticonsTag16", + "OcticonsTag24", + "OcticonsTasklist16", + "OcticonsTasklist24", + "OcticonsTelescope16", + "OcticonsTelescope24", + "OcticonsTelescopeFill16", + "OcticonsTelescopeFill24", + "OcticonsTerminal16", + "OcticonsTerminal24", + "OcticonsThreeBars16", + "OcticonsThumbsdown16", + "OcticonsThumbsdown24", + "OcticonsThumbsup16", + "OcticonsThumbsup24", + "OcticonsTools16", + "OcticonsTools24", + "OcticonsTrash16", + "OcticonsTrash24", + "OcticonsTriangleDown16", + "OcticonsTriangleDown24", + "OcticonsTriangleLeft16", + "OcticonsTriangleLeft24", + "OcticonsTriangleRight16", + "OcticonsTriangleRight24", + "OcticonsTriangleUp16", + "OcticonsTriangleUp24", + "OcticonsTrophy16", + "OcticonsTrophy24", + "OcticonsTypography16", + "OcticonsTypography24", + "OcticonsUnfold16", + "OcticonsUnfold24", + "OcticonsUnlock16", + "OcticonsUnlock24", + "OcticonsUnmute16", + "OcticonsUnmute24", + "OcticonsUnverified16", + "OcticonsUnverified24", + "OcticonsUpload16", + "OcticonsUpload24", + "OcticonsVerified16", + "OcticonsVerified24", + "OcticonsVersions16", + "OcticonsVersions24", + "OcticonsVideo16", + "OcticonsVideo24", + "OcticonsWebhook16", + "OcticonsWorkflow16", + "OcticonsWorkflow24", + "OcticonsX16", + "OcticonsX24", + "OcticonsXCircle16", + "OcticonsXCircle24", + "OcticonsXCircleFill12", + "OcticonsXCircleFill16", + "OcticonsXCircleFill24", + "OcticonsZap16", + "OcticonsZap24" + ], + "proc-macro2": [ + "dep:proc-macro2" + ], + "quote": [ + "dep:quote" + ], + "regex": [ + "dep:regex" + ], + "simple_icons": [ + "SimpleIcons1001Tracklists", + "SimpleIcons1Password", + "SimpleIcons3M", + "SimpleIcons42", + "SimpleIcons4Chan", + "SimpleIcons4D", + "SimpleIcons500Px", + "SimpleIconsAbbott", + "SimpleIconsAbbrobotstudio", + "SimpleIconsAbbvie", + "SimpleIconsAbletonlive", + "SimpleIconsAboutdotme", + "SimpleIconsAbstract", + "SimpleIconsAcademia", + "SimpleIconsAccenture", + "SimpleIconsAcclaim", + "SimpleIconsAccusoft", + "SimpleIconsAcer", + "SimpleIconsAcm", + "SimpleIconsActigraph", + "SimpleIconsActivision", + "SimpleIconsAdafruit", + "SimpleIconsAdblock", + "SimpleIconsAdblockplus", + "SimpleIconsAddthis", + "SimpleIconsAdguard", + "SimpleIconsAdidas", + "SimpleIconsAdminer", + "SimpleIconsAdobe", + "SimpleIconsAdobeacrobatreader", + "SimpleIconsAdobeaftereffects", + "SimpleIconsAdobeaudition", + "SimpleIconsAdobecreativecloud", + "SimpleIconsAdobedreamweaver", + "SimpleIconsAdobefonts", + "SimpleIconsAdobeillustrator", + "SimpleIconsAdobeindesign", + "SimpleIconsAdobelightroom", + "SimpleIconsAdobelightroomclassic", + "SimpleIconsAdobephotoshop", + "SimpleIconsAdobepremierepro", + "SimpleIconsAdobexd", + "SimpleIconsAdonisjs", + "SimpleIconsAdp", + "SimpleIconsAdyen", + "SimpleIconsAerlingus", + "SimpleIconsAeroflot", + "SimpleIconsAeromexico", + "SimpleIconsAerospike", + "SimpleIconsAew", + "SimpleIconsAffinity", + "SimpleIconsAffinitydesigner", + "SimpleIconsAffinityphoto", + "SimpleIconsAffinitypublisher", + "SimpleIconsAframe", + "SimpleIconsAgora", + "SimpleIconsAib", + "SimpleIconsAidungeon", + "SimpleIconsAiohttp", + "SimpleIconsAiqfome", + "SimpleIconsAirasia", + "SimpleIconsAirbnb", + "SimpleIconsAirbus", + "SimpleIconsAirbyte", + "SimpleIconsAircall", + "SimpleIconsAircanada", + "SimpleIconsAirchina", + "SimpleIconsAirfrance", + "SimpleIconsAirplayaudio", + "SimpleIconsAirplayvideo", + "SimpleIconsAirtable", + "SimpleIconsAjv", + "SimpleIconsAkamai", + "SimpleIconsAlacritty", + "SimpleIconsAlbertheijn", + "SimpleIconsAlchemy", + "SimpleIconsAldinord", + "SimpleIconsAldisud", + "SimpleIconsAlfaromeo", + "SimpleIconsAlfred", + "SimpleIconsAlgolia", + "SimpleIconsAlgorand", + "SimpleIconsAlibabacloud", + "SimpleIconsAlibabadotcom", + "SimpleIconsAliexpress", + "SimpleIconsAlipay", + "SimpleIconsAlitalia", + "SimpleIconsAllegro", + "SimpleIconsAlliedmodders", + "SimpleIconsAllocine", + "SimpleIconsAlltrails", + "SimpleIconsAlpinedotjs", + "SimpleIconsAlpinelinux", + "SimpleIconsAltiumdesigner", + "SimpleIconsAlwaysdata", + "SimpleIconsAmazon", + "SimpleIconsAmazonalexa", + "SimpleIconsAmazonapigateway", + "SimpleIconsAmazonaws", + "SimpleIconsAmazoncloudwatch", + "SimpleIconsAmazondynamodb", + "SimpleIconsAmazonec2", + "SimpleIconsAmazonecs", + "SimpleIconsAmazoneks", + "SimpleIconsAmazonfiretv", + "SimpleIconsAmazongames", + "SimpleIconsAmazonlumberyard", + "SimpleIconsAmazonpay", + "SimpleIconsAmazonprime", + "SimpleIconsAmazonrds", + "SimpleIconsAmazons3", + "SimpleIconsAmazonsqs", + "SimpleIconsAmd", + "SimpleIconsAmericanairlines", + "SimpleIconsAmericanexpress", + "SimpleIconsAmg", + "SimpleIconsAmp", + "SimpleIconsAmul", + "SimpleIconsAna", + "SimpleIconsAnaconda", + "SimpleIconsAnalogue", + "SimpleIconsAnchor", + "SimpleIconsAndela", + "SimpleIconsAndroid", + "SimpleIconsAndroidauto", + "SimpleIconsAndroidstudio", + "SimpleIconsAngellist", + "SimpleIconsAngular", + "SimpleIconsAngularjs", + "SimpleIconsAngularuniversal", + "SimpleIconsAnilist", + "SimpleIconsAnsible", + "SimpleIconsAnswer", + "SimpleIconsAnsys", + "SimpleIconsAnta", + "SimpleIconsAntdesign", + "SimpleIconsAntena3", + "SimpleIconsAnydesk", + "SimpleIconsAol", + "SimpleIconsApache", + "SimpleIconsApacheairflow", + "SimpleIconsApacheant", + "SimpleIconsApachecassandra", + "SimpleIconsApachecloudstack", + "SimpleIconsApachecordova", + "SimpleIconsApachecouchdb", + "SimpleIconsApachedruid", + "SimpleIconsApacheecharts", + "SimpleIconsApacheflink", + "SimpleIconsApachegroovy", + "SimpleIconsApachehadoop", + "SimpleIconsApachehive", + "SimpleIconsApachejmeter", + "SimpleIconsApachekafka", + "SimpleIconsApachekylin", + "SimpleIconsApachemaven", + "SimpleIconsApachenetbeanside", + "SimpleIconsApacheopenoffice", + "SimpleIconsApachepulsar", + "SimpleIconsApacherocketmq", + "SimpleIconsApachesolr", + "SimpleIconsApachespark", + "SimpleIconsApachetomcat", + "SimpleIconsAparat", + "SimpleIconsApollographql", + "SimpleIconsApostrophe", + "SimpleIconsAppian", + "SimpleIconsApple", + "SimpleIconsApplearcade", + "SimpleIconsApplemusic", + "SimpleIconsApplenews", + "SimpleIconsApplepay", + "SimpleIconsApplepodcasts", + "SimpleIconsAppletv", + "SimpleIconsAppsignal", + "SimpleIconsAppstore", + "SimpleIconsAppveyor", + "SimpleIconsAppwrite", + "SimpleIconsAqua", + "SimpleIconsAral", + "SimpleIconsArangodb", + "SimpleIconsArchicad", + "SimpleIconsArchiveofourown", + "SimpleIconsArchlinux", + "SimpleIconsArdour", + "SimpleIconsArduino", + "SimpleIconsArgo", + "SimpleIconsArgos", + "SimpleIconsArkecosystem", + "SimpleIconsArlo", + "SimpleIconsArm", + "SimpleIconsArtifacthub", + "SimpleIconsArtixlinux", + "SimpleIconsArtstation", + "SimpleIconsArxiv", + "SimpleIconsAsana", + "SimpleIconsAsciidoctor", + "SimpleIconsAsciinema", + "SimpleIconsAsda", + "SimpleIconsAseprite", + "SimpleIconsAskfm", + "SimpleIconsAskubuntu", + "SimpleIconsAssemblyscript", + "SimpleIconsAstonmartin", + "SimpleIconsAstro", + "SimpleIconsAsus", + "SimpleIconsAtandt", + "SimpleIconsAtari", + "SimpleIconsAtlassian", + "SimpleIconsAtom", + "SimpleIconsAuchan", + "SimpleIconsAudacity", + "SimpleIconsAudi", + "SimpleIconsAudible", + "SimpleIconsAudioboom", + "SimpleIconsAudiomack", + "SimpleIconsAudiotechnica", + "SimpleIconsAurelia", + "SimpleIconsAuth0", + "SimpleIconsAuthy", + "SimpleIconsAutodesk", + "SimpleIconsAutohotkey", + "SimpleIconsAutomattic", + "SimpleIconsAutoprefixer", + "SimpleIconsAvajs", + "SimpleIconsAvast", + "SimpleIconsAwesomelists", + "SimpleIconsAwesomewm", + "SimpleIconsAwsamplify", + "SimpleIconsAwsfargate", + "SimpleIconsAwslambda", + "SimpleIconsAxios", + "SimpleIconsAzureartifacts", + "SimpleIconsAzuredataexplorer", + "SimpleIconsAzuredevops", + "SimpleIconsAzurefunctions", + "SimpleIconsAzurepipelines", + "SimpleIconsBabel", + "SimpleIconsBackblaze", + "SimpleIconsBackbonedotjs", + "SimpleIconsBackendless", + "SimpleIconsBackstage", + "SimpleIconsBadgr", + "SimpleIconsBadoo", + "SimpleIconsBaidu", + "SimpleIconsBamboo", + "SimpleIconsBandcamp", + "SimpleIconsBandlab", + "SimpleIconsBandrautomation", + "SimpleIconsBandsintown", + "SimpleIconsBankofamerica", + "SimpleIconsBarclays", + "SimpleIconsBaremetrics", + "SimpleIconsBasecamp", + "SimpleIconsBastyon", + "SimpleIconsBata", + "SimpleIconsBathasu", + "SimpleIconsBattledotnet", + "SimpleIconsBbc", + "SimpleIconsBbciplayer", + "SimpleIconsBeatport", + "SimpleIconsBeats", + "SimpleIconsBeatsbydre", + "SimpleIconsBehance", + "SimpleIconsBeijingsubway", + "SimpleIconsBem", + "SimpleIconsBentley", + "SimpleIconsBetfair", + "SimpleIconsBigbasket", + "SimpleIconsBigbluebutton", + "SimpleIconsBigcartel", + "SimpleIconsBigcommerce", + "SimpleIconsBilibili", + "SimpleIconsBillboard", + "SimpleIconsBim", + "SimpleIconsBinance", + "SimpleIconsBiolink", + "SimpleIconsBit", + "SimpleIconsBitbucket", + "SimpleIconsBitcoin", + "SimpleIconsBitcoincash", + "SimpleIconsBitcoinsv", + "SimpleIconsBitdefender", + "SimpleIconsBitly", + "SimpleIconsBitrise", + "SimpleIconsBitwarden", + "SimpleIconsBitwig", + "SimpleIconsBlackberry", + "SimpleIconsBlazemeter", + "SimpleIconsBlazor", + "SimpleIconsBlender", + "SimpleIconsBlockchaindotcom", + "SimpleIconsBlogger", + "SimpleIconsBloglovin", + "SimpleIconsBlueprint", + "SimpleIconsBluetooth", + "SimpleIconsBmcsoftware", + "SimpleIconsBmw", + "SimpleIconsBoardgamegeek", + "SimpleIconsBoehringeringelheim", + "SimpleIconsBoeing", + "SimpleIconsBookalope", + "SimpleIconsBookbub", + "SimpleIconsBookmeter", + "SimpleIconsBookmyshow", + "SimpleIconsBookstack", + "SimpleIconsBoost", + "SimpleIconsBoots", + "SimpleIconsBootstrap", + "SimpleIconsBorgbackup", + "SimpleIconsBosch", + "SimpleIconsBose", + "SimpleIconsBoulanger", + "SimpleIconsBower", + "SimpleIconsBox", + "SimpleIconsBoxysvg", + "SimpleIconsBrandfolder", + "SimpleIconsBrave", + "SimpleIconsBreaker", + "SimpleIconsBritishairways", + "SimpleIconsBroadcom", + "SimpleIconsBt", + "SimpleIconsBuddy", + "SimpleIconsBudibase", + "SimpleIconsBuefy", + "SimpleIconsBuffer", + "SimpleIconsBugatti", + "SimpleIconsBugcrowd", + "SimpleIconsBugsnag", + "SimpleIconsBuildkite", + "SimpleIconsBukalapak", + "SimpleIconsBulma", + "SimpleIconsBun", + "SimpleIconsBunq", + "SimpleIconsBurgerking", + "SimpleIconsBurton", + "SimpleIconsBuymeacoffee", + "SimpleIconsBuzzfeed", + "SimpleIconsBvg", + "SimpleIconsByjus", + "SimpleIconsByte", + "SimpleIconsBytedance", + "SimpleIconsC", + "SimpleIconsCachet", + "SimpleIconsCafepress", + "SimpleIconsCaffeine", + "SimpleIconsCairographics", + "SimpleIconsCairometro", + "SimpleIconsCakephp", + "SimpleIconsCampaignmonitor", + "SimpleIconsCanonical", + "SimpleIconsCanva", + "SimpleIconsCapacitor", + "SimpleIconsCarrefour", + "SimpleIconsCarthrottle", + "SimpleIconsCarto", + "SimpleIconsCashapp", + "SimpleIconsCastbox", + "SimpleIconsCastorama", + "SimpleIconsCastro", + "SimpleIconsCaterpillar", + "SimpleIconsCbs", + "SimpleIconsCdprojekt", + "SimpleIconsCelery", + "SimpleIconsCentos", + "SimpleIconsCeph", + "SimpleIconsCesium", + "SimpleIconsChai", + "SimpleIconsChainguard", + "SimpleIconsChainlink", + "SimpleIconsChakraui", + "SimpleIconsChartdotjs", + "SimpleIconsChartmogul", + "SimpleIconsChase", + "SimpleIconsChatbot", + "SimpleIconsCheckio", + "SimpleIconsCheckmarx", + "SimpleIconsChef", + "SimpleIconsChemex", + "SimpleIconsChevrolet", + "SimpleIconsChinaeasternairlines", + "SimpleIconsChinasouthernairlines", + "SimpleIconsChocolatey", + "SimpleIconsChromecast", + "SimpleIconsChrysler", + "SimpleIconsChupachups", + "SimpleIconsCilium", + "SimpleIconsCinema4D", + "SimpleIconsCircle", + "SimpleIconsCircleci", + "SimpleIconsCirrusci", + "SimpleIconsCisco", + "SimpleIconsCitrix", + "SimpleIconsCitroen", + "SimpleIconsCivicrm", + "SimpleIconsCivo", + "SimpleIconsCkeditor4", + "SimpleIconsClaris", + "SimpleIconsClickhouse", + "SimpleIconsClickup", + "SimpleIconsClion", + "SimpleIconsCliqz", + "SimpleIconsClockify", + "SimpleIconsClojure", + "SimpleIconsCloud66", + "SimpleIconsCloudbees", + "SimpleIconsCloudcannon", + "SimpleIconsCloudera", + "SimpleIconsCloudflare", + "SimpleIconsCloudflarepages", + "SimpleIconsCloudfoundry", + "SimpleIconsCloudsmith", + "SimpleIconsCloudways", + "SimpleIconsClubhouse", + "SimpleIconsClyp", + "SimpleIconsCmake", + "SimpleIconsCncf", + "SimpleIconsCnn", + "SimpleIconsCockpit", + "SimpleIconsCockroachlabs", + "SimpleIconsCocoapods", + "SimpleIconsCocos", + "SimpleIconsCoda", + "SimpleIconsCodacy", + "SimpleIconsCodeberg", + "SimpleIconsCodecademy", + "SimpleIconsCodeceptjs", + "SimpleIconsCodechef", + "SimpleIconsCodeclimate", + "SimpleIconsCodecov", + "SimpleIconsCodefactor", + "SimpleIconsCodeforces", + "SimpleIconsCodeigniter", + "SimpleIconsCodemagic", + "SimpleIconsCodemirror", + "SimpleIconsCodenewbie", + "SimpleIconsCodepen", + "SimpleIconsCodeproject", + "SimpleIconsCodereview", + "SimpleIconsCodersrank", + "SimpleIconsCoderwall", + "SimpleIconsCodesandbox", + "SimpleIconsCodeship", + "SimpleIconsCodewars", + "SimpleIconsCodingame", + "SimpleIconsCodingninjas", + "SimpleIconsCodio", + "SimpleIconsCoffeescript", + "SimpleIconsCognizant", + "SimpleIconsCoil", + "SimpleIconsCoinbase", + "SimpleIconsCoinmarketcap", + "SimpleIconsCommerzbank", + "SimpleIconsCommitlint", + "SimpleIconsCommodore", + "SimpleIconsCommonworkflowlanguage", + "SimpleIconsComposer", + "SimpleIconsComsol", + "SimpleIconsConan", + "SimpleIconsConcourse", + "SimpleIconsCondaforge", + "SimpleIconsConekta", + "SimpleIconsConfluence", + "SimpleIconsConstruct3", + "SimpleIconsConsul", + "SimpleIconsContactlesspayment", + "SimpleIconsContainerd", + "SimpleIconsContentful", + "SimpleIconsConventionalcommits", + "SimpleIconsConvertio", + "SimpleIconsCookiecutter", + "SimpleIconsCoop", + "SimpleIconsCora", + "SimpleIconsCoronaengine", + "SimpleIconsCoronarenderer", + "SimpleIconsCorsair", + "SimpleIconsCouchbase", + "SimpleIconsCounterstrike", + "SimpleIconsCountingworkspro", + "SimpleIconsCoursera", + "SimpleIconsCoveralls", + "SimpleIconsCpanel", + "SimpleIconsCplusplus", + "SimpleIconsCraftcms", + "SimpleIconsCratedb", + "SimpleIconsCrayon", + "SimpleIconsCreatereactapp", + "SimpleIconsCreativecommons", + "SimpleIconsCreativetechnology", + "SimpleIconsCredly", + "SimpleIconsCrehana", + "SimpleIconsCriticalrole", + "SimpleIconsCrowdin", + "SimpleIconsCrowdsource", + "SimpleIconsCrunchbase", + "SimpleIconsCrunchyroll", + "SimpleIconsCryengine", + "SimpleIconsCrystal", + "SimpleIconsCsharp", + "SimpleIconsCss3", + "SimpleIconsCssmodules", + "SimpleIconsCsswizardry", + "SimpleIconsCts", + "SimpleIconsCucumber", + "SimpleIconsCultura", + "SimpleIconsCurl", + "SimpleIconsCurseforge", + "SimpleIconsCycling74", + "SimpleIconsCypress", + "SimpleIconsCytoscapedotjs", + "SimpleIconsD", + "SimpleIconsD3Dotjs", + "SimpleIconsDacia", + "SimpleIconsDaf", + "SimpleIconsDailymotion", + "SimpleIconsDaimler", + "SimpleIconsDaisyui", + "SimpleIconsDapr", + "SimpleIconsDarkreader", + "SimpleIconsDart", + "SimpleIconsDarty", + "SimpleIconsDaserste", + "SimpleIconsDash", + "SimpleIconsDashlane", + "SimpleIconsDask", + "SimpleIconsDassaultsystemes", + "SimpleIconsDatabricks", + "SimpleIconsDatacamp", + "SimpleIconsDatadog", + "SimpleIconsDatadotai", + "SimpleIconsDatagrip", + "SimpleIconsDataiku", + "SimpleIconsDatastax", + "SimpleIconsDataverse", + "SimpleIconsDatocms", + "SimpleIconsDatto", + "SimpleIconsDazn", + "SimpleIconsDblp", + "SimpleIconsDbt", + "SimpleIconsDcentertainment", + "SimpleIconsDebian", + "SimpleIconsDedge", + "SimpleIconsDeepin", + "SimpleIconsDeepnote", + "SimpleIconsDeezer", + "SimpleIconsDelicious", + "SimpleIconsDeliveroo", + "SimpleIconsDell", + "SimpleIconsDelonghi", + "SimpleIconsDelphi", + "SimpleIconsDelta", + "SimpleIconsDeno", + "SimpleIconsDependabot", + "SimpleIconsDerspiegel", + "SimpleIconsDesignernews", + "SimpleIconsDeutschebahn", + "SimpleIconsDeutschebank", + "SimpleIconsDevdotto", + "SimpleIconsDevexpress", + "SimpleIconsDeviantart", + "SimpleIconsDevpost", + "SimpleIconsDevrant", + "SimpleIconsDgraph", + "SimpleIconsDhl", + "SimpleIconsDiagramsdotnet", + "SimpleIconsDialogflow", + "SimpleIconsDiaspora", + "SimpleIconsDigg", + "SimpleIconsDigikeyelectronics", + "SimpleIconsDigitalocean", + "SimpleIconsDior", + "SimpleIconsDirectus", + "SimpleIconsDiscogs", + "SimpleIconsDiscord", + "SimpleIconsDiscourse", + "SimpleIconsDiscover", + "SimpleIconsDisqus", + "SimpleIconsDisroot", + "SimpleIconsDjango", + "SimpleIconsDlib", + "SimpleIconsDlna", + "SimpleIconsDm", + "SimpleIconsDocker", + "SimpleIconsDocsdotrs", + "SimpleIconsDocusign", + "SimpleIconsDogecoin", + "SimpleIconsDolby", + "SimpleIconsDoordash", + "SimpleIconsDotenv", + "SimpleIconsDotnet", + "SimpleIconsDouban", + "SimpleIconsDoubanread", + "SimpleIconsDovecot", + "SimpleIconsDpd", + "SimpleIconsDragonframe", + "SimpleIconsDraugiemdotlv", + "SimpleIconsDribbble", + "SimpleIconsDrone", + "SimpleIconsDrooble", + "SimpleIconsDropbox", + "SimpleIconsDrupal", + "SimpleIconsDsautomobiles", + "SimpleIconsDtube", + "SimpleIconsDucati", + "SimpleIconsDuckdb", + "SimpleIconsDuckduckgo", + "SimpleIconsDungeonsanddragons", + "SimpleIconsDunked", + "SimpleIconsDuolingo", + "SimpleIconsDvc", + "SimpleIconsDwavesystems", + "SimpleIconsDwm", + "SimpleIconsDynamics365", + "SimpleIconsDynatrace", + "SimpleIconsE", + "SimpleIconsE3", + "SimpleIconsEa", + "SimpleIconsEagle", + "SimpleIconsEasyjet", + "SimpleIconsEbay", + "SimpleIconsEclipseche", + "SimpleIconsEclipseide", + "SimpleIconsEclipsejetty", + "SimpleIconsEclipsemosquitto", + "SimpleIconsEclipsevertdotx", + "SimpleIconsEdeka", + "SimpleIconsEditorconfig", + "SimpleIconsEdotleclerc", + "SimpleIconsEdx", + "SimpleIconsEgghead", + "SimpleIconsEgnyte", + "SimpleIconsEightsleep", + "SimpleIconsElastic", + "SimpleIconsElasticcloud", + "SimpleIconsElasticsearch", + "SimpleIconsElasticstack", + "SimpleIconsElectron", + "SimpleIconsElectronbuilder", + "SimpleIconsElectronfiddle", + "SimpleIconsElement", + "SimpleIconsElementary", + "SimpleIconsElementor", + "SimpleIconsEleventy", + "SimpleIconsElgato", + "SimpleIconsElixir", + "SimpleIconsEljueves", + "SimpleIconsEllo", + "SimpleIconsElm", + "SimpleIconsElsevier", + "SimpleIconsEmbarcadero", + "SimpleIconsEmberdotjs", + "SimpleIconsEmby", + "SimpleIconsEmirates", + "SimpleIconsEmlakjet", + "SimpleIconsEmpirekred", + "SimpleIconsEngadget", + "SimpleIconsEnpass", + "SimpleIconsEnterprisedb", + "SimpleIconsEnvato", + "SimpleIconsEnvoyproxy", + "SimpleIconsEpel", + "SimpleIconsEpicgames", + "SimpleIconsEpson", + "SimpleIconsEquinixmetal", + "SimpleIconsErlang", + "SimpleIconsEsbuild", + "SimpleIconsEsea", + "SimpleIconsEslgaming", + "SimpleIconsEslint", + "SimpleIconsEsphome", + "SimpleIconsEspressif", + "SimpleIconsEtcd", + "SimpleIconsEthereum", + "SimpleIconsEthiopianairlines", + "SimpleIconsEtihadairways", + "SimpleIconsEtsy", + "SimpleIconsEventbrite", + "SimpleIconsEventstore", + "SimpleIconsEvernote", + "SimpleIconsExercism", + "SimpleIconsExordo", + "SimpleIconsExoscale", + "SimpleIconsExpensify", + "SimpleIconsExpertsexchange", + "SimpleIconsExpo", + "SimpleIconsExpress", + "SimpleIconsExpressvpn", + "SimpleIconsEyeem", + "SimpleIconsF1", + "SimpleIconsF5", + "SimpleIconsFacebook", + "SimpleIconsFacebookgaming", + "SimpleIconsFacebooklive", + "SimpleIconsFaceit", + "SimpleIconsFacepunch", + "SimpleIconsFalcon", + "SimpleIconsFampay", + "SimpleIconsFandango", + "SimpleIconsFandom", + "SimpleIconsFanfou", + "SimpleIconsFantom", + "SimpleIconsFarfetch", + "SimpleIconsFastapi", + "SimpleIconsFastify", + "SimpleIconsFastlane", + "SimpleIconsFastly", + "SimpleIconsFathom", + "SimpleIconsFauna", + "SimpleIconsFavro", + "SimpleIconsFdroid", + "SimpleIconsFeathub", + "SimpleIconsFedex", + "SimpleIconsFedora", + "SimpleIconsFeedly", + "SimpleIconsFerrari", + "SimpleIconsFerrarinv", + "SimpleIconsFfmpeg", + "SimpleIconsFiat", + "SimpleIconsFidoalliance", + "SimpleIconsFifa", + "SimpleIconsFig", + "SimpleIconsFigma", + "SimpleIconsFigshare", + "SimpleIconsFila", + "SimpleIconsFiles", + "SimpleIconsFilezilla", + "SimpleIconsFing", + "SimpleIconsFirebase", + "SimpleIconsFirefox", + "SimpleIconsFirefoxbrowser", + "SimpleIconsFireship", + "SimpleIconsFirewalla", + "SimpleIconsFirst", + "SimpleIconsFitbit", + "SimpleIconsFite", + "SimpleIconsFivem", + "SimpleIconsFiverr", + "SimpleIconsFlask", + "SimpleIconsFlat", + "SimpleIconsFlathub", + "SimpleIconsFlatpak", + "SimpleIconsFlattr", + "SimpleIconsFlickr", + "SimpleIconsFlipboard", + "SimpleIconsFlipkart", + "SimpleIconsFloatplane", + "SimpleIconsFlood", + "SimpleIconsFluentbit", + "SimpleIconsFluentd", + "SimpleIconsFlutter", + "SimpleIconsFluxus", + "SimpleIconsFlyway", + "SimpleIconsFmod", + "SimpleIconsFnac", + "SimpleIconsFolium", + "SimpleIconsFonoma", + "SimpleIconsFontawesome", + "SimpleIconsFontbase", + "SimpleIconsFontforge", + "SimpleIconsFoodpanda", + "SimpleIconsFord", + "SimpleIconsForestry", + "SimpleIconsFormstack", + "SimpleIconsFortinet", + "SimpleIconsFortran", + "SimpleIconsFossa", + "SimpleIconsFossilscm", + "SimpleIconsFoursquare", + "SimpleIconsFoursquarecityguide", + "SimpleIconsFox", + "SimpleIconsFoxtel", + "SimpleIconsFozzy", + "SimpleIconsFramer", + "SimpleIconsFramework7", + "SimpleIconsFranprix", + "SimpleIconsFraunhofergesellschaft", + "SimpleIconsFreebsd", + "SimpleIconsFreecodecamp", + "SimpleIconsFreedesktopdotorg", + "SimpleIconsFreelancer", + "SimpleIconsFreenas", + "SimpleIconsFrontendmentor", + "SimpleIconsFsecure", + "SimpleIconsFugacloud", + "SimpleIconsFujifilm", + "SimpleIconsFujitsu", + "SimpleIconsFunimation", + "SimpleIconsFuraffinity", + "SimpleIconsFurrynetwork", + "SimpleIconsFuturelearn", + "SimpleIconsG2", + "SimpleIconsG2A", + "SimpleIconsGameandwatch", + "SimpleIconsGamedeveloper", + "SimpleIconsGamejolt", + "SimpleIconsGarmin", + "SimpleIconsGatling", + "SimpleIconsGatsby", + "SimpleIconsGeant", + "SimpleIconsGeeksforgeeks", + "SimpleIconsGeneralelectric", + "SimpleIconsGeneralmotors", + "SimpleIconsGenius", + "SimpleIconsGentoo", + "SimpleIconsGeocaching", + "SimpleIconsGerrit", + "SimpleIconsGhost", + "SimpleIconsGhostery", + "SimpleIconsGimp", + "SimpleIconsGiphy", + "SimpleIconsGit", + "SimpleIconsGitbook", + "SimpleIconsGitea", + "SimpleIconsGitee", + "SimpleIconsGitextensions", + "SimpleIconsGithub", + "SimpleIconsGithubactions", + "SimpleIconsGithubpages", + "SimpleIconsGithubsponsors", + "SimpleIconsGitignoredotio", + "SimpleIconsGitkraken", + "SimpleIconsGitlab", + "SimpleIconsGitlfs", + "SimpleIconsGitpod", + "SimpleIconsGitter", + "SimpleIconsGlassdoor", + "SimpleIconsGlitch", + "SimpleIconsGlobus", + "SimpleIconsGmail", + "SimpleIconsGnome", + "SimpleIconsGnometerminal", + "SimpleIconsGnu", + "SimpleIconsGnubash", + "SimpleIconsGnuemacs", + "SimpleIconsGnuicecat", + "SimpleIconsGnuprivacyguard", + "SimpleIconsGnusocial", + "SimpleIconsGo", + "SimpleIconsGocd", + "SimpleIconsGodaddy", + "SimpleIconsGodotengine", + "SimpleIconsGofundme", + "SimpleIconsGogdotcom", + "SimpleIconsGoland", + "SimpleIconsGoldenline", + "SimpleIconsGoodreads", + "SimpleIconsGoogle", + "SimpleIconsGoogleadmob", + "SimpleIconsGoogleads", + "SimpleIconsGoogleadsense", + "SimpleIconsGoogleanalytics", + "SimpleIconsGoogleassistant", + "SimpleIconsGooglecalendar", + "SimpleIconsGooglecardboard", + "SimpleIconsGooglechat", + "SimpleIconsGooglechrome", + "SimpleIconsGoogleclassroom", + "SimpleIconsGooglecloud", + "SimpleIconsGooglecolab", + "SimpleIconsGoogledomains", + "SimpleIconsGoogledrive", + "SimpleIconsGoogleearth", + "SimpleIconsGooglefit", + "SimpleIconsGooglefonts", + "SimpleIconsGooglehangouts", + "SimpleIconsGooglehome", + "SimpleIconsGooglekeep", + "SimpleIconsGooglelens", + "SimpleIconsGooglemaps", + "SimpleIconsGooglemarketingplatform", + "SimpleIconsGooglemeet", + "SimpleIconsGooglemessages", + "SimpleIconsGooglemybusiness", + "SimpleIconsGooglenearby", + "SimpleIconsGooglenews", + "SimpleIconsGoogleoptimize", + "SimpleIconsGooglepay", + "SimpleIconsGooglephotos", + "SimpleIconsGoogleplay", + "SimpleIconsGooglepodcasts", + "SimpleIconsGooglescholar", + "SimpleIconsGooglesearchconsole", + "SimpleIconsGooglesheets", + "SimpleIconsGooglestreetview", + "SimpleIconsGoogletagmanager", + "SimpleIconsGoogletranslate", + "SimpleIconsGotomeeting", + "SimpleIconsGrab", + "SimpleIconsGradle", + "SimpleIconsGrafana", + "SimpleIconsGrammarly", + "SimpleIconsGrandfrais", + "SimpleIconsGraphql", + "SimpleIconsGrav", + "SimpleIconsGravatar", + "SimpleIconsGraylog", + "SimpleIconsGreenhouse", + "SimpleIconsGreensock", + "SimpleIconsGriddotai", + "SimpleIconsGridsome", + "SimpleIconsGroupme", + "SimpleIconsGroupon", + "SimpleIconsGrubhub", + "SimpleIconsGrunt", + "SimpleIconsGsk", + "SimpleIconsGtk", + "SimpleIconsGuangzhoumetro", + "SimpleIconsGuilded", + "SimpleIconsGulp", + "SimpleIconsGumroad", + "SimpleIconsGumtree", + "SimpleIconsGunicorn", + "SimpleIconsGurobi", + "SimpleIconsGutenberg", + "SimpleIconsHabr", + "SimpleIconsHackaday", + "SimpleIconsHackclub", + "SimpleIconsHackerearth", + "SimpleIconsHackernoon", + "SimpleIconsHackerone", + "SimpleIconsHackerrank", + "SimpleIconsHackster", + "SimpleIconsHackthebox", + "SimpleIconsHandlebarsdotjs", + "SimpleIconsHandshake", + "SimpleIconsHandshakeProtocol", + "SimpleIconsHappycow", + "SimpleIconsHarbor", + "SimpleIconsHarmonyos", + "SimpleIconsHashnode", + "SimpleIconsHaskell", + "SimpleIconsHasura", + "SimpleIconsHatenabookmark", + "SimpleIconsHaveibeenpwned", + "SimpleIconsHaxe", + "SimpleIconsHbo", + "SimpleIconsHcl", + "SimpleIconsHeadlessui", + "SimpleIconsHeadspace", + "SimpleIconsHedera", + "SimpleIconsHellofresh", + "SimpleIconsHellyhansen", + "SimpleIconsHelm", + "SimpleIconsHelpdesk", + "SimpleIconsHelpscout", + "SimpleIconsHere", + "SimpleIconsHeroku", + "SimpleIconsHetzner", + "SimpleIconsHexo", + "SimpleIconsHey", + "SimpleIconsHibernate", + "SimpleIconsHibob", + "SimpleIconsHilton", + "SimpleIconsHitachi", + "SimpleIconsHive", + "SimpleIconsHiveBlockchain", + "SimpleIconsHomeadvisor", + "SimpleIconsHomeassistant", + "SimpleIconsHomeassistantcommunitystore", + "SimpleIconsHomebrew", + "SimpleIconsHomebridge", + "SimpleIconsHomify", + "SimpleIconsHonda", + "SimpleIconsHoney", + "SimpleIconsHootsuite", + "SimpleIconsHoppscotch", + "SimpleIconsHotelsdotcom", + "SimpleIconsHotjar", + "SimpleIconsHoudini", + "SimpleIconsHouzz", + "SimpleIconsHp", + "SimpleIconsHtml5", + "SimpleIconsHtmlacademy", + "SimpleIconsHttpie", + "SimpleIconsHuawei", + "SimpleIconsHubspot", + "SimpleIconsHugo", + "SimpleIconsHulu", + "SimpleIconsHumblebundle", + "SimpleIconsHungryjacks", + "SimpleIconsHurriyetemlak", + "SimpleIconsHusqvarna", + "SimpleIconsHyper", + "SimpleIconsHyperledger", + "SimpleIconsHypothesis", + "SimpleIconsHyundai", + "SimpleIconsI18Next", + "SimpleIconsIata", + "SimpleIconsIbeacon", + "SimpleIconsIbm", + "SimpleIconsIbmcloud", + "SimpleIconsIbmwatson", + "SimpleIconsIced", + "SimpleIconsIceland", + "SimpleIconsIcinga", + "SimpleIconsIcloud", + "SimpleIconsIcomoon", + "SimpleIconsIcon", + "SimpleIconsIconfinder", + "SimpleIconsIconify", + "SimpleIconsIconjar", + "SimpleIconsIcons8", + "SimpleIconsIcq", + "SimpleIconsIeee", + "SimpleIconsIfixit", + "SimpleIconsIfood", + "SimpleIconsIfttt", + "SimpleIconsIheartradio", + "SimpleIconsIkea", + "SimpleIconsIledefrancemobilites", + "SimpleIconsImagej", + "SimpleIconsImdb", + "SimpleIconsImgur", + "SimpleIconsImmer", + "SimpleIconsImou", + "SimpleIconsIndeed", + "SimpleIconsInfiniti", + "SimpleIconsInfluxdb", + "SimpleIconsInformatica", + "SimpleIconsInfosys", + "SimpleIconsInfracost", + "SimpleIconsIngress", + "SimpleIconsInkdrop", + "SimpleIconsInkscape", + "SimpleIconsInsomnia", + "SimpleIconsInstacart", + "SimpleIconsInstagram", + "SimpleIconsInstapaper", + "SimpleIconsInstatus", + "SimpleIconsInstructables", + "SimpleIconsInstructure", + "SimpleIconsIntegromat", + "SimpleIconsIntel", + "SimpleIconsIntellijidea", + "SimpleIconsInteractiondesignfoundation", + "SimpleIconsInteractjs", + "SimpleIconsIntercom", + "SimpleIconsIntermarche", + "SimpleIconsInternetarchive", + "SimpleIconsInternetexplorer", + "SimpleIconsIntigriti", + "SimpleIconsInvision", + "SimpleIconsInvoiceninja", + "SimpleIconsIobroker", + "SimpleIconsIonic", + "SimpleIconsIonos", + "SimpleIconsIos", + "SimpleIconsIota", + "SimpleIconsIpfs", + "SimpleIconsIssuu", + "SimpleIconsIstio", + "SimpleIconsItchdotio", + "SimpleIconsIterm2", + "SimpleIconsItunes", + "SimpleIconsItvx", + "SimpleIconsIveco", + "SimpleIconsJabber", + "SimpleIconsJaguar", + "SimpleIconsJamboard", + "SimpleIconsJameson", + "SimpleIconsJamstack", + "SimpleIconsJasmine", + "SimpleIconsJavascript", + "SimpleIconsJbl", + "SimpleIconsJcb", + "SimpleIconsJeep", + "SimpleIconsJekyll", + "SimpleIconsJellyfin", + "SimpleIconsJenkins", + "SimpleIconsJenkinsx", + "SimpleIconsJest", + "SimpleIconsJet", + "SimpleIconsJetbrains", + "SimpleIconsJetpackcompose", + "SimpleIconsJfrog", + "SimpleIconsJfrogbintray", + "SimpleIconsJinja", + "SimpleIconsJira", + "SimpleIconsJirasoftware", + "SimpleIconsJitsi", + "SimpleIconsJohndeere", + "SimpleIconsJoomla", + "SimpleIconsJoplin", + "SimpleIconsJordan", + "SimpleIconsJpeg", + "SimpleIconsJquery", + "SimpleIconsJrgroup", + "SimpleIconsJsdelivr", + "SimpleIconsJsfiddle", + "SimpleIconsJson", + "SimpleIconsJsonwebtokens", + "SimpleIconsJss", + "SimpleIconsJuke", + "SimpleIconsJulia", + "SimpleIconsJunipernetworks", + "SimpleIconsJunit5", + "SimpleIconsJupyter", + "SimpleIconsJusteat", + "SimpleIconsJustgiving", + "SimpleIconsK3S", + "SimpleIconsK6", + "SimpleIconsKaggle", + "SimpleIconsKahoot", + "SimpleIconsKaios", + "SimpleIconsKakao", + "SimpleIconsKakaotalk", + "SimpleIconsKalilinux", + "SimpleIconsKaniko", + "SimpleIconsKarlsruherverkehrsverbund", + "SimpleIconsKasasmart", + "SimpleIconsKashflow", + "SimpleIconsKaspersky", + "SimpleIconsKatacoda", + "SimpleIconsKatana", + "SimpleIconsKaufland", + "SimpleIconsKde", + "SimpleIconsKdenlive", + "SimpleIconsKeepachangelog", + "SimpleIconsKeepassxc", + "SimpleIconsKentico", + "SimpleIconsKeras", + "SimpleIconsKeybase", + "SimpleIconsKeycdn", + "SimpleIconsKeystone", + "SimpleIconsKfc", + "SimpleIconsKhanacademy", + "SimpleIconsKhronosgroup", + "SimpleIconsKia", + "SimpleIconsKibana", + "SimpleIconsKicad", + "SimpleIconsKickstarter", + "SimpleIconsKik", + "SimpleIconsKingstontechnology", + "SimpleIconsKinopoisk", + "SimpleIconsKirby", + "SimpleIconsKitsu", + "SimpleIconsKlarna", + "SimpleIconsKlm", + "SimpleIconsKlook", + "SimpleIconsKnative", + "SimpleIconsKnowledgebase", + "SimpleIconsKnown", + "SimpleIconsKoa", + "SimpleIconsKoc", + "SimpleIconsKodi", + "SimpleIconsKofax", + "SimpleIconsKofi", + "SimpleIconsKomoot", + "SimpleIconsKonami", + "SimpleIconsKong", + "SimpleIconsKongregate", + "SimpleIconsKonva", + "SimpleIconsKotlin", + "SimpleIconsKoyeb", + "SimpleIconsKrita", + "SimpleIconsKtm", + "SimpleIconsKuaishou", + "SimpleIconsKubernetes", + "SimpleIconsKubuntu", + "SimpleIconsKuma", + "SimpleIconsKuula", + "SimpleIconsKyocera", + "SimpleIconsLabview", + "SimpleIconsLada", + "SimpleIconsLamborghini", + "SimpleIconsLandrover", + "SimpleIconsLapce", + "SimpleIconsLaragon", + "SimpleIconsLaravel", + "SimpleIconsLaravelhorizon", + "SimpleIconsLaravelnova", + "SimpleIconsLastdotfm", + "SimpleIconsLastpass", + "SimpleIconsLatex", + "SimpleIconsLaunchpad", + "SimpleIconsLazarus", + "SimpleIconsLbry", + "SimpleIconsLeaderprice", + "SimpleIconsLeaflet", + "SimpleIconsLeanpub", + "SimpleIconsLeetcode", + "SimpleIconsLegacygames", + "SimpleIconsLemmy", + "SimpleIconsLenovo", + "SimpleIconsLens", + "SimpleIconsLerna", + "SimpleIconsLeroymerlin", + "SimpleIconsLess", + "SimpleIconsLetsencrypt", + "SimpleIconsLetterboxd", + "SimpleIconsLevelsdotfyi", + "SimpleIconsLg", + "SimpleIconsLgtm", + "SimpleIconsLiberapay", + "SimpleIconsLibrariesdotio", + "SimpleIconsLibrarything", + "SimpleIconsLibreoffice", + "SimpleIconsLibuv", + "SimpleIconsLichess", + "SimpleIconsLidl", + "SimpleIconsLifx", + "SimpleIconsLighthouse", + "SimpleIconsLine", + "SimpleIconsLineageos", + "SimpleIconsLinear", + "SimpleIconsLinkedin", + "SimpleIconsLinkerd", + "SimpleIconsLinkfire", + "SimpleIconsLinktree", + "SimpleIconsLinode", + "SimpleIconsLinux", + "SimpleIconsLinuxcontainers", + "SimpleIconsLinuxfoundation", + "SimpleIconsLinuxmint", + "SimpleIconsLionair", + "SimpleIconsLiquibase", + "SimpleIconsLit", + "SimpleIconsLitecoin", + "SimpleIconsLitiengine", + "SimpleIconsLivechat", + "SimpleIconsLivejournal", + "SimpleIconsLivewire", + "SimpleIconsLlvm", + "SimpleIconsLmms", + "SimpleIconsLodash", + "SimpleIconsLogitech", + "SimpleIconsLogmein", + "SimpleIconsLogstash", + "SimpleIconsLooker", + "SimpleIconsLoom", + "SimpleIconsLoop", + "SimpleIconsLoopback", + "SimpleIconsLospec", + "SimpleIconsLotpolishairlines", + "SimpleIconsLua", + "SimpleIconsLubuntu", + "SimpleIconsLudwig", + "SimpleIconsLufthansa", + "SimpleIconsLumen", + "SimpleIconsLunacy", + "SimpleIconsLydia", + "SimpleIconsLyft", + "SimpleIconsMaas", + "SimpleIconsMacos", + "SimpleIconsMacpaw", + "SimpleIconsMacys", + "SimpleIconsMagasinsu", + "SimpleIconsMagento", + "SimpleIconsMagisk", + "SimpleIconsMailchimp", + "SimpleIconsMaildotru", + "SimpleIconsMailgun", + "SimpleIconsMajorleaguehacking", + "SimpleIconsMakerbot", + "SimpleIconsMamp", + "SimpleIconsMan", + "SimpleIconsManageiq", + "SimpleIconsManjaro", + "SimpleIconsMapbox", + "SimpleIconsMariadb", + "SimpleIconsMariadbfoundation", + "SimpleIconsMarkdown", + "SimpleIconsMarketo", + "SimpleIconsMarko", + "SimpleIconsMarriott", + "SimpleIconsMaserati", + "SimpleIconsMastercard", + "SimpleIconsMastercomfig", + "SimpleIconsMastodon", + "SimpleIconsMaterialdesign", + "SimpleIconsMaterialdesignicons", + "SimpleIconsMatomo", + "SimpleIconsMatrix", + "SimpleIconsMatterdotjs", + "SimpleIconsMattermost", + "SimpleIconsMatternet", + "SimpleIconsMax", + "SimpleIconsMaxplanckgesellschaft", + "SimpleIconsMaytag", + "SimpleIconsMazda", + "SimpleIconsMcafee", + "SimpleIconsMcdonalds", + "SimpleIconsMclaren", + "SimpleIconsMdbook", + "SimpleIconsMdnwebdocs", + "SimpleIconsMdx", + "SimpleIconsMediafire", + "SimpleIconsMediamarkt", + "SimpleIconsMediatek", + "SimpleIconsMediatemple", + "SimpleIconsMedium", + "SimpleIconsMeetup", + "SimpleIconsMega", + "SimpleIconsMendeley", + "SimpleIconsMercadopago", + "SimpleIconsMercedes", + "SimpleIconsMerck", + "SimpleIconsMercurial", + "SimpleIconsMessenger", + "SimpleIconsMeta", + "SimpleIconsMetabase", + "SimpleIconsMetafilter", + "SimpleIconsMeteor", + "SimpleIconsMetro", + "SimpleIconsMetrodelaciudaddemexico", + "SimpleIconsMetrodemadrid", + "SimpleIconsMetrodeparis", + "SimpleIconsMewe", + "SimpleIconsMicrobit", + "SimpleIconsMicrodotblog", + "SimpleIconsMicrogenetics", + "SimpleIconsMicropython", + "SimpleIconsMicrosoft", + "SimpleIconsMicrosoftacademic", + "SimpleIconsMicrosoftaccess", + "SimpleIconsMicrosoftazure", + "SimpleIconsMicrosoftbing", + "SimpleIconsMicrosoftedge", + "SimpleIconsMicrosoftexcel", + "SimpleIconsMicrosoftexchange", + "SimpleIconsMicrosoftoffice", + "SimpleIconsMicrosoftonedrive", + "SimpleIconsMicrosoftonenote", + "SimpleIconsMicrosoftoutlook", + "SimpleIconsMicrosoftpowerpoint", + "SimpleIconsMicrosoftsharepoint", + "SimpleIconsMicrosoftsqlserver", + "SimpleIconsMicrosoftteams", + "SimpleIconsMicrosofttranslator", + "SimpleIconsMicrosoftvisio", + "SimpleIconsMicrosoftword", + "SimpleIconsMicrostrategy", + "SimpleIconsMidi", + "SimpleIconsMinds", + "SimpleIconsMinecraft", + "SimpleIconsMinetest", + "SimpleIconsMini", + "SimpleIconsMinutemailer", + "SimpleIconsMiro", + "SimpleIconsMitsubishi", + "SimpleIconsMix", + "SimpleIconsMixcloud", + "SimpleIconsMlb", + "SimpleIconsMlflow", + "SimpleIconsMobx", + "SimpleIconsMobxstatetree", + "SimpleIconsMocha", + "SimpleIconsModin", + "SimpleIconsModrinth", + "SimpleIconsModx", + "SimpleIconsMojangstudios", + "SimpleIconsMoleculer", + "SimpleIconsMomenteo", + "SimpleIconsMonero", + "SimpleIconsMoneygram", + "SimpleIconsMongodb", + "SimpleIconsMonica", + "SimpleIconsMonkeytie", + "SimpleIconsMonogames", + "SimpleIconsMonoprix", + "SimpleIconsMonster", + "SimpleIconsMonzo", + "SimpleIconsMoo", + "SimpleIconsMoonrepo", + "SimpleIconsMorrisons", + "SimpleIconsMoscowmetro", + "SimpleIconsMotorola", + "SimpleIconsMozilla", + "SimpleIconsMqtt", + "SimpleIconsMsi", + "SimpleIconsMsibusiness", + "SimpleIconsMta", + "SimpleIconsMtr", + "SimpleIconsMui", + "SimpleIconsMulesoft", + "SimpleIconsMuller", + "SimpleIconsMumble", + "SimpleIconsMusescore", + "SimpleIconsMusicbrainz", + "SimpleIconsMxlinux", + "SimpleIconsMyanimelist", + "SimpleIconsMyob", + "SimpleIconsMyspace", + "SimpleIconsMysql", + "SimpleIconsN26", + "SimpleIconsNamebase", + "SimpleIconsNamecheap", + "SimpleIconsNano", + "SimpleIconsNasa", + "SimpleIconsNationalgrid", + "SimpleIconsNativescript", + "SimpleIconsNaver", + "SimpleIconsNba", + "SimpleIconsNbb", + "SimpleIconsNdr", + "SimpleIconsNec", + "SimpleIconsNeo4J", + "SimpleIconsNeovim", + "SimpleIconsNestjs", + "SimpleIconsNetapp", + "SimpleIconsNetbsd", + "SimpleIconsNetflix", + "SimpleIconsNetlify", + "SimpleIconsNette", + "SimpleIconsNetto", + "SimpleIconsNeutralinojs", + "SimpleIconsNewbalance", + "SimpleIconsNewjapanprowrestling", + "SimpleIconsNewrelic", + "SimpleIconsNewyorktimes", + "SimpleIconsNextbilliondotai", + "SimpleIconsNextcloud", + "SimpleIconsNextdoor", + "SimpleIconsNextdotjs", + "SimpleIconsNfc", + "SimpleIconsNginx", + "SimpleIconsNgrok", + "SimpleIconsNiconico", + "SimpleIconsNike", + "SimpleIconsNim", + "SimpleIconsNintendo", + "SimpleIconsNintendo3Ds", + "SimpleIconsNintendogamecube", + "SimpleIconsNintendonetwork", + "SimpleIconsNintendoswitch", + "SimpleIconsNissan", + "SimpleIconsNixos", + "SimpleIconsNodedotjs", + "SimpleIconsNodemon", + "SimpleIconsNodered", + "SimpleIconsNokia", + "SimpleIconsNorco", + "SimpleIconsNordvpn", + "SimpleIconsNorwegian", + "SimpleIconsNotepadplusplus", + "SimpleIconsNotion", + "SimpleIconsNotist", + "SimpleIconsNounproject", + "SimpleIconsNovu", + "SimpleIconsNow", + "SimpleIconsNpm", + "SimpleIconsNrwl", + "SimpleIconsNubank", + "SimpleIconsNucleo", + "SimpleIconsNuget", + "SimpleIconsNuke", + "SimpleIconsNumba", + "SimpleIconsNumpy", + "SimpleIconsNunjucks", + "SimpleIconsNutanix", + "SimpleIconsNuxtdotjs", + "SimpleIconsNvidia", + "SimpleIconsNx", + "SimpleIconsNzxt", + "SimpleIconsObservable", + "SimpleIconsObsidian", + "SimpleIconsObsstudio", + "SimpleIconsOcaml", + "SimpleIconsOctanerender", + "SimpleIconsOctave", + "SimpleIconsOctoprint", + "SimpleIconsOctopusdeploy", + "SimpleIconsOculus", + "SimpleIconsOdnoklassniki", + "SimpleIconsOdysee", + "SimpleIconsOhdear", + "SimpleIconsOkcupid", + "SimpleIconsOkta", + "SimpleIconsOneplus", + "SimpleIconsOnlyfans", + "SimpleIconsOnlyoffice", + "SimpleIconsOnnx", + "SimpleIconsOnstar", + "SimpleIconsOpel", + "SimpleIconsOpenaccess", + "SimpleIconsOpenai", + "SimpleIconsOpenaigym", + "SimpleIconsOpenapiinitiative", + "SimpleIconsOpenbadges", + "SimpleIconsOpenbsd", + "SimpleIconsOpenbugbounty", + "SimpleIconsOpencollective", + "SimpleIconsOpencontainersinitiative", + "SimpleIconsOpencv", + "SimpleIconsOpenfaas", + "SimpleIconsOpengl", + "SimpleIconsOpenid", + "SimpleIconsOpenjdk", + "SimpleIconsOpenlayers", + "SimpleIconsOpenmined", + "SimpleIconsOpennebula", + "SimpleIconsOpenproject", + "SimpleIconsOpensea", + "SimpleIconsOpensearch", + "SimpleIconsOpensourceinitiative", + "SimpleIconsOpenssl", + "SimpleIconsOpenstack", + "SimpleIconsOpenstreetmap", + "SimpleIconsOpensuse", + "SimpleIconsOpentelemetry", + "SimpleIconsOpenverse", + "SimpleIconsOpenvpn", + "SimpleIconsOpenwrt", + "SimpleIconsOpenzeppelin", + "SimpleIconsOpenzfs", + "SimpleIconsOpera", + "SimpleIconsOpnsense", + "SimpleIconsOpsgenie", + "SimpleIconsOpslevel", + "SimpleIconsOracle", + "SimpleIconsOrcid", + "SimpleIconsOreilly", + "SimpleIconsOrg", + "SimpleIconsOrigin", + "SimpleIconsOsano", + "SimpleIconsOshkosh", + "SimpleIconsOsmc", + "SimpleIconsOsu", + "SimpleIconsOtto", + "SimpleIconsOvercast", + "SimpleIconsOverleaf", + "SimpleIconsOvh", + "SimpleIconsOwasp", + "SimpleIconsOxygen", + "SimpleIconsOyo", + "SimpleIconsP5Dotjs", + "SimpleIconsPackagist", + "SimpleIconsPacker", + "SimpleIconsPaddypower", + "SimpleIconsPagekit", + "SimpleIconsPagerduty", + "SimpleIconsPagespeedinsights", + "SimpleIconsPagseguro", + "SimpleIconsPalantir", + "SimpleIconsPaloaltosoftware", + "SimpleIconsPandas", + "SimpleIconsPandora", + "SimpleIconsPantheon", + "SimpleIconsPaperspace", + "SimpleIconsParitysubstrate", + "SimpleIconsParsedotly", + "SimpleIconsPassport", + "SimpleIconsPastebin", + "SimpleIconsPatreon", + "SimpleIconsPayoneer", + "SimpleIconsPaypal", + "SimpleIconsPaytm", + "SimpleIconsPcgamingwiki", + "SimpleIconsPeakdesign", + "SimpleIconsPeertube", + "SimpleIconsPegasusairlines", + "SimpleIconsPelican", + "SimpleIconsPeloton", + "SimpleIconsPenny", + "SimpleIconsPenpot", + "SimpleIconsPepsi", + "SimpleIconsPercy", + "SimpleIconsPerforce", + "SimpleIconsPerl", + "SimpleIconsPersistent", + "SimpleIconsPersonio", + "SimpleIconsPetsathome", + "SimpleIconsPeugeot", + "SimpleIconsPexels", + "SimpleIconsPfsense", + "SimpleIconsPhabricator", + "SimpleIconsPhilipshue", + "SimpleIconsPhonepe", + "SimpleIconsPhotobucket", + "SimpleIconsPhotocrowd", + "SimpleIconsPhotopea", + "SimpleIconsPhp", + "SimpleIconsPhpmyadmin", + "SimpleIconsPhpstorm", + "SimpleIconsPicardsurgeles", + "SimpleIconsPicartodottv", + "SimpleIconsPicnic", + "SimpleIconsPicpay", + "SimpleIconsPihole", + "SimpleIconsPimcore", + "SimpleIconsPinboard", + "SimpleIconsPingdom", + "SimpleIconsPinterest", + "SimpleIconsPioneerdj", + "SimpleIconsPivotaltracker", + "SimpleIconsPiwigo", + "SimpleIconsPix", + "SimpleIconsPixabay", + "SimpleIconsPixiv", + "SimpleIconsPkgsrc", + "SimpleIconsPlanet", + "SimpleIconsPlanetscale", + "SimpleIconsPlangrid", + "SimpleIconsPlatformdotsh", + "SimpleIconsPlatzi", + "SimpleIconsPlausibleanalytics", + "SimpleIconsPlaycanvas", + "SimpleIconsPlayerdotme", + "SimpleIconsPlayerfm", + "SimpleIconsPlaystation", + "SimpleIconsPlaystation2", + "SimpleIconsPlaystation3", + "SimpleIconsPlaystation4", + "SimpleIconsPlaystation5", + "SimpleIconsPlaystationvita", + "SimpleIconsPlaywright", + "SimpleIconsPleroma", + "SimpleIconsPlesk", + "SimpleIconsPlex", + "SimpleIconsPlotly", + "SimpleIconsPluralsight", + "SimpleIconsPlurk", + "SimpleIconsPluscodes", + "SimpleIconsPm2", + "SimpleIconsPnpm", + "SimpleIconsPocket", + "SimpleIconsPocketbase", + "SimpleIconsPocketcasts", + "SimpleIconsPodcastaddict", + "SimpleIconsPodman", + "SimpleIconsPoetry", + "SimpleIconsPointy", + "SimpleIconsPokemon", + "SimpleIconsPolars", + "SimpleIconsPolkadot", + "SimpleIconsPoly", + "SimpleIconsPolymerproject", + "SimpleIconsPolywork", + "SimpleIconsPopos", + "SimpleIconsPorsche", + "SimpleIconsPortainer", + "SimpleIconsPostcss", + "SimpleIconsPostgresql", + "SimpleIconsPostman", + "SimpleIconsPostmates", + "SimpleIconsPowerapps", + "SimpleIconsPowerautomate", + "SimpleIconsPowerbi", + "SimpleIconsPowerfx", + "SimpleIconsPowerpages", + "SimpleIconsPowers", + "SimpleIconsPowershell", + "SimpleIconsPowervirtualagents", + "SimpleIconsPrdotco", + "SimpleIconsPreact", + "SimpleIconsPrecommit", + "SimpleIconsPremierleague", + "SimpleIconsPrestashop", + "SimpleIconsPresto", + "SimpleIconsPrettier", + "SimpleIconsPrevention", + "SimpleIconsPrezi", + "SimpleIconsPrime", + "SimpleIconsPrimevideo", + "SimpleIconsPrisma", + "SimpleIconsPrismic", + "SimpleIconsPrivateinternetaccess", + "SimpleIconsProbot", + "SimpleIconsProcessingfoundation", + "SimpleIconsProcesswire", + "SimpleIconsProducthunt", + "SimpleIconsProgate", + "SimpleIconsProgress", + "SimpleIconsPrometheus", + "SimpleIconsProsieben", + "SimpleIconsProtocolsdotio", + "SimpleIconsProtodotio", + "SimpleIconsProtondb", + "SimpleIconsProtonmail", + "SimpleIconsProtonvpn", + "SimpleIconsProtools", + "SimpleIconsProtractor", + "SimpleIconsProxmox", + "SimpleIconsPubg", + "SimpleIconsPublons", + "SimpleIconsPubmed", + "SimpleIconsPug", + "SimpleIconsPulumi", + "SimpleIconsPuma", + "SimpleIconsPuppet", + "SimpleIconsPuppeteer", + "SimpleIconsPurescript", + "SimpleIconsPurgecss", + "SimpleIconsPurism", + "SimpleIconsPusher", + "SimpleIconsPwa", + "SimpleIconsPycharm", + "SimpleIconsPyg", + "SimpleIconsPypi", + "SimpleIconsPypy", + "SimpleIconsPyscaffold", + "SimpleIconsPysyft", + "SimpleIconsPytest", + "SimpleIconsPython", + "SimpleIconsPytorch", + "SimpleIconsPytorchlightning", + "SimpleIconsPyup", + "SimpleIconsQantas", + "SimpleIconsQatarairways", + "SimpleIconsQemu", + "SimpleIconsQgis", + "SimpleIconsQi", + "SimpleIconsQiita", + "SimpleIconsQiskit", + "SimpleIconsQiwi", + "SimpleIconsQmk", + "SimpleIconsQt", + "SimpleIconsQualcomm", + "SimpleIconsQualtrics", + "SimpleIconsQualys", + "SimpleIconsQuantcast", + "SimpleIconsQuantconnect", + "SimpleIconsQuarkus", + "SimpleIconsQuasar", + "SimpleIconsQubesos", + "SimpleIconsQuest", + "SimpleIconsQuickbooks", + "SimpleIconsQuicklook", + "SimpleIconsQuicktime", + "SimpleIconsQuip", + "SimpleIconsQuora", + "SimpleIconsQwiklabs", + "SimpleIconsQzone", + "SimpleIconsR", + "SimpleIconsR3", + "SimpleIconsRabbitmq", + "SimpleIconsRacket", + "SimpleIconsRadar", + "SimpleIconsRadiopublic", + "SimpleIconsRailway", + "SimpleIconsRainmeter", + "SimpleIconsRakuten", + "SimpleIconsRam", + "SimpleIconsRancher", + "SimpleIconsRarible", + "SimpleIconsRasa", + "SimpleIconsRaspberrypi", + "SimpleIconsRavelry", + "SimpleIconsRay", + "SimpleIconsRazer", + "SimpleIconsRazorpay", + "SimpleIconsReact", + "SimpleIconsReacthookform", + "SimpleIconsReactivex", + "SimpleIconsReactos", + "SimpleIconsReactquery", + "SimpleIconsReactrouter", + "SimpleIconsReacttable", + "SimpleIconsReadme", + "SimpleIconsReadthedocs", + "SimpleIconsRealm", + "SimpleIconsReason", + "SimpleIconsReasonstudios", + "SimpleIconsRed", + "SimpleIconsRedbubble", + "SimpleIconsReddit", + "SimpleIconsRedhat", + "SimpleIconsRedhatopenshift", + "SimpleIconsRedis", + "SimpleIconsRedmine", + "SimpleIconsRedox", + "SimpleIconsRedux", + "SimpleIconsReduxsaga", + "SimpleIconsRedwoodjs", + "SimpleIconsReebok", + "SimpleIconsRelay", + "SimpleIconsRelianceindustrieslimited", + "SimpleIconsRemix", + "SimpleIconsRenault", + "SimpleIconsRender", + "SimpleIconsRenovatebot", + "SimpleIconsRenpy", + "SimpleIconsRenren", + "SimpleIconsReplit", + "SimpleIconsRepublicofgamers", + "SimpleIconsRescript", + "SimpleIconsRescuetime", + "SimpleIconsResearchgate", + "SimpleIconsResharper", + "SimpleIconsResurrectionremixos", + "SimpleIconsRetroarch", + "SimpleIconsRetropie", + "SimpleIconsRevealdotjs", + "SimpleIconsReverbnation", + "SimpleIconsRevoltdotchat", + "SimpleIconsRevolut", + "SimpleIconsRevue", + "SimpleIconsRewe", + "SimpleIconsRezgo", + "SimpleIconsRhinoceros", + "SimpleIconsRider", + "SimpleIconsRimacautomobili", + "SimpleIconsRing", + "SimpleIconsRiotgames", + "SimpleIconsRipple", + "SimpleIconsRiseup", + "SimpleIconsRoamresearch", + "SimpleIconsRoblox", + "SimpleIconsRobotframework", + "SimpleIconsRocketdotchat", + "SimpleIconsRocksdb", + "SimpleIconsRockylinux", + "SimpleIconsRoku", + "SimpleIconsRollsroyce", + "SimpleIconsRollupdotjs", + "SimpleIconsRome", + "SimpleIconsRoots", + "SimpleIconsRootsbedrock", + "SimpleIconsRootssage", + "SimpleIconsRos", + "SimpleIconsRossmann", + "SimpleIconsRotaryinternational", + "SimpleIconsRottentomatoes", + "SimpleIconsRoundcube", + "SimpleIconsRsocket", + "SimpleIconsRss", + "SimpleIconsRstudio", + "SimpleIconsRte", + "SimpleIconsRtl", + "SimpleIconsRtlzwei", + "SimpleIconsRubocop", + "SimpleIconsRuby", + "SimpleIconsRubygems", + "SimpleIconsRubyonrails", + "SimpleIconsRubysinatra", + "SimpleIconsRunkeeper", + "SimpleIconsRunkit", + "SimpleIconsRust", + "SimpleIconsRxdb", + "SimpleIconsRyanair", + "SimpleIconsS7Airlines", + "SimpleIconsSabanci", + "SimpleIconsSafari", + "SimpleIconsSahibinden", + "SimpleIconsSailfishos", + "SimpleIconsSalesforce", + "SimpleIconsSaltproject", + "SimpleIconsSamsung", + "SimpleIconsSamsungpay", + "SimpleIconsSandisk", + "SimpleIconsSanfranciscomunicipalrailway", + "SimpleIconsSaopaulometro", + "SimpleIconsSap", + "SimpleIconsSass", + "SimpleIconsSat1", + "SimpleIconsSaturn", + "SimpleIconsSaucelabs", + "SimpleIconsScala", + "SimpleIconsScaleway", + "SimpleIconsScania", + "SimpleIconsSchneiderelectric", + "SimpleIconsScikitlearn", + "SimpleIconsScipy", + "SimpleIconsScopus", + "SimpleIconsScpfoundation", + "SimpleIconsScratch", + "SimpleIconsScreencastify", + "SimpleIconsScribd", + "SimpleIconsScrimba", + "SimpleIconsScrollreveal", + "SimpleIconsScrumalliance", + "SimpleIconsScrutinizerci", + "SimpleIconsSeagate", + "SimpleIconsSeat", + "SimpleIconsSecurityscorecard", + "SimpleIconsSefaria", + "SimpleIconsSega", + "SimpleIconsSelenium", + "SimpleIconsSellfy", + "SimpleIconsSemanticrelease", + "SimpleIconsSemanticscholar", + "SimpleIconsSemanticuireact", + "SimpleIconsSemanticweb", + "SimpleIconsSemaphoreci", + "SimpleIconsSemver", + "SimpleIconsSencha", + "SimpleIconsSendinblue", + "SimpleIconsSennheiser", + "SimpleIconsSensu", + "SimpleIconsSentry", + "SimpleIconsSepa", + "SimpleIconsSequelize", + "SimpleIconsServerfault", + "SimpleIconsServerless", + "SimpleIconsSessionize", + "SimpleIconsSetapp", + "SimpleIconsSfml", + "SimpleIconsShadow", + "SimpleIconsShanghaimetro", + "SimpleIconsSharp", + "SimpleIconsShazam", + "SimpleIconsShell", + "SimpleIconsShelly", + "SimpleIconsShenzhenmetro", + "SimpleIconsShieldsdotio", + "SimpleIconsShikimori", + "SimpleIconsShopee", + "SimpleIconsShopify", + "SimpleIconsShopware", + "SimpleIconsShotcut", + "SimpleIconsShowpad", + "SimpleIconsShowtime", + "SimpleIconsShutterstock", + "SimpleIconsSiemens", + "SimpleIconsSignal", + "SimpleIconsSimilarweb", + "SimpleIconsSimkl", + "SimpleIconsSimpleanalytics", + "SimpleIconsSimpleicons", + "SimpleIconsSimplenote", + "SimpleIconsSinaweibo", + "SimpleIconsSinglestore", + "SimpleIconsSitepoint", + "SimpleIconsSketch", + "SimpleIconsSketchfab", + "SimpleIconsSketchup", + "SimpleIconsSkillshare", + "SimpleIconsSkoda", + "SimpleIconsSky", + "SimpleIconsSkynet", + "SimpleIconsSkypack", + "SimpleIconsSkype", + "SimpleIconsSkypeforbusiness", + "SimpleIconsSlack", + "SimpleIconsSlackware", + "SimpleIconsSlashdot", + "SimpleIconsSlickpic", + "SimpleIconsSlides", + "SimpleIconsSlideshare", + "SimpleIconsSmart", + "SimpleIconsSmartthings", + "SimpleIconsSmashdotgg", + "SimpleIconsSmashingmagazine", + "SimpleIconsSmrt", + "SimpleIconsSmugmug", + "SimpleIconsSnapchat", + "SimpleIconsSnapcraft", + "SimpleIconsSncf", + "SimpleIconsSnowflake", + "SimpleIconsSnowpack", + "SimpleIconsSnyk", + "SimpleIconsSocialblade", + "SimpleIconsSociety6", + "SimpleIconsSocketdotio", + "SimpleIconsSogou", + "SimpleIconsSolid", + "SimpleIconsSolidity", + "SimpleIconsSololearn", + "SimpleIconsSolus", + "SimpleIconsSonar", + "SimpleIconsSonarcloud", + "SimpleIconsSonarlint", + "SimpleIconsSonarqube", + "SimpleIconsSonarsource", + "SimpleIconsSongkick", + "SimpleIconsSongoda", + "SimpleIconsSonicwall", + "SimpleIconsSonos", + "SimpleIconsSony", + "SimpleIconsSoundcharts", + "SimpleIconsSoundcloud", + "SimpleIconsSourceengine", + "SimpleIconsSourceforge", + "SimpleIconsSourcegraph", + "SimpleIconsSourcetree", + "SimpleIconsSouthwestairlines", + "SimpleIconsSpacemacs", + "SimpleIconsSpacex", + "SimpleIconsSpacy", + "SimpleIconsSparkar", + "SimpleIconsSparkasse", + "SimpleIconsSparkfun", + "SimpleIconsSparkpost", + "SimpleIconsSpdx", + "SimpleIconsSpeakerdeck", + "SimpleIconsSpectrum", + "SimpleIconsSpeedtest", + "SimpleIconsSpinnaker", + "SimpleIconsSpinrilla", + "SimpleIconsSplunk", + "SimpleIconsSpond", + "SimpleIconsSpotify", + "SimpleIconsSpotlight", + "SimpleIconsSpreadshirt", + "SimpleIconsSpreaker", + "SimpleIconsSpring", + "SimpleIconsSpringCreators", + "SimpleIconsSpringboot", + "SimpleIconsSpringsecurity", + "SimpleIconsSpyderide", + "SimpleIconsSqlite", + "SimpleIconsSquare", + "SimpleIconsSquareenix", + "SimpleIconsSquarespace", + "SimpleIconsSsrn", + "SimpleIconsStackbit", + "SimpleIconsStackblitz", + "SimpleIconsStackedit", + "SimpleIconsStackexchange", + "SimpleIconsStackoverflow", + "SimpleIconsStackpath", + "SimpleIconsStackshare", + "SimpleIconsStadia", + "SimpleIconsStaffbase", + "SimpleIconsStandardjs", + "SimpleIconsStarbucks", + "SimpleIconsStardock", + "SimpleIconsStarlingbank", + "SimpleIconsStarship", + "SimpleIconsStartrek", + "SimpleIconsStarz", + "SimpleIconsStatamic", + "SimpleIconsStatuspage", + "SimpleIconsStatuspal", + "SimpleIconsSteam", + "SimpleIconsSteamdb", + "SimpleIconsSteamdeck", + "SimpleIconsSteamworks", + "SimpleIconsSteelseries", + "SimpleIconsSteem", + "SimpleIconsSteemit", + "SimpleIconsSteinberg", + "SimpleIconsStellar", + "SimpleIconsStencyl", + "SimpleIconsStimulus", + "SimpleIconsStitcher", + "SimpleIconsStmicroelectronics", + "SimpleIconsStopstalk", + "SimpleIconsStoryblok", + "SimpleIconsStorybook", + "SimpleIconsStrapi", + "SimpleIconsStrava", + "SimpleIconsStreamlit", + "SimpleIconsStripe", + "SimpleIconsStrongswan", + "SimpleIconsStubhub", + "SimpleIconsStyledcomponents", + "SimpleIconsStylelint", + "SimpleIconsStyleshare", + "SimpleIconsStylus", + "SimpleIconsSubaru", + "SimpleIconsSublimetext", + "SimpleIconsSubstack", + "SimpleIconsSubversion", + "SimpleIconsSuckless", + "SimpleIconsSumologic", + "SimpleIconsSupabase", + "SimpleIconsSupermicro", + "SimpleIconsSuperuser", + "SimpleIconsSurrealdb", + "SimpleIconsSurveymonkey", + "SimpleIconsSuse", + "SimpleIconsSuzuki", + "SimpleIconsSvelte", + "SimpleIconsSvg", + "SimpleIconsSvgo", + "SimpleIconsSwagger", + "SimpleIconsSwarm", + "SimpleIconsSwc", + "SimpleIconsSwift", + "SimpleIconsSwiggy", + "SimpleIconsSwiper", + "SimpleIconsSymantec", + "SimpleIconsSymfony", + "SimpleIconsSymphony", + "SimpleIconsSympy", + "SimpleIconsSynology", + "SimpleIconsSystem76", + "SimpleIconsTableau", + "SimpleIconsTablecheck", + "SimpleIconsTacobell", + "SimpleIconsTado", + "SimpleIconsTaichigraphics", + "SimpleIconsTaichilang", + "SimpleIconsTails", + "SimpleIconsTailwindcss", + "SimpleIconsTalend", + "SimpleIconsTalenthouse", + "SimpleIconsTamiya", + "SimpleIconsTampermonkey", + "SimpleIconsTaobao", + "SimpleIconsTapas", + "SimpleIconsTarget", + "SimpleIconsTask", + "SimpleIconsTasmota", + "SimpleIconsTata", + "SimpleIconsTauri", + "SimpleIconsTaxbuzz", + "SimpleIconsTeamcity", + "SimpleIconsTeamspeak", + "SimpleIconsTeamviewer", + "SimpleIconsTed", + "SimpleIconsTeespring", + "SimpleIconsTekton", + "SimpleIconsTele5", + "SimpleIconsTelegram", + "SimpleIconsTelegraph", + "SimpleIconsTemporal", + "SimpleIconsTencentqq", + "SimpleIconsTensorflow", + "SimpleIconsTeradata", + "SimpleIconsTeratail", + "SimpleIconsTerraform", + "SimpleIconsTesco", + "SimpleIconsTesla", + "SimpleIconsTestcafe", + "SimpleIconsTestin", + "SimpleIconsTestinglibrary", + "SimpleIconsTether", + "SimpleIconsTextpattern", + "SimpleIconsTga", + "SimpleIconsThealgorithms", + "SimpleIconsTheconversation", + "SimpleIconsTheirishtimes", + "SimpleIconsThemighty", + "SimpleIconsThemodelsresource", + "SimpleIconsThemoviedatabase", + "SimpleIconsThenorthface", + "SimpleIconsTheregister", + "SimpleIconsThesoundsresource", + "SimpleIconsThespritersresource", + "SimpleIconsThewashingtonpost", + "SimpleIconsThingiverse", + "SimpleIconsThinkpad", + "SimpleIconsThreadless", + "SimpleIconsThreedotjs", + "SimpleIconsThreema", + "SimpleIconsThumbtack", + "SimpleIconsThunderbird", + "SimpleIconsThymeleaf", + "SimpleIconsTicketmaster", + "SimpleIconsTidal", + "SimpleIconsTide", + "SimpleIconsTidyverse", + "SimpleIconsTietoevry", + "SimpleIconsTiktok", + "SimpleIconsTile", + "SimpleIconsTimescale", + "SimpleIconsTinder", + "SimpleIconsTinyletter", + "SimpleIconsTistory", + "SimpleIconsTmobile", + "SimpleIconsTmux", + "SimpleIconsTnt", + "SimpleIconsTodoist", + "SimpleIconsToggl", + "SimpleIconsTokyometro", + "SimpleIconsToml", + "SimpleIconsTomorrowland", + "SimpleIconsTopcoder", + "SimpleIconsToptal", + "SimpleIconsTorbrowser", + "SimpleIconsTorproject", + "SimpleIconsToshiba", + "SimpleIconsToyota", + "SimpleIconsTplink", + "SimpleIconsTqdm", + "SimpleIconsTraefikmesh", + "SimpleIconsTraefikproxy", + "SimpleIconsTrainerroad", + "SimpleIconsTrakt", + "SimpleIconsTransportforireland", + "SimpleIconsTransportforlondon", + "SimpleIconsTravisci", + "SimpleIconsTreehouse", + "SimpleIconsTrello", + "SimpleIconsTrendmicro", + "SimpleIconsTreyarch", + "SimpleIconsTriller", + "SimpleIconsTrino", + "SimpleIconsTripadvisor", + "SimpleIconsTripdotcom", + "SimpleIconsTrove", + "SimpleIconsTrpc", + "SimpleIconsTruenas", + "SimpleIconsTrulia", + "SimpleIconsTrustedshops", + "SimpleIconsTrustpilot", + "SimpleIconsTryhackme", + "SimpleIconsTryitonline", + "SimpleIconsTsnode", + "SimpleIconsTubi", + "SimpleIconsTui", + "SimpleIconsTumblr", + "SimpleIconsTunein", + "SimpleIconsTurborepo", + "SimpleIconsTurbosquid", + "SimpleIconsTurkishairlines", + "SimpleIconsTutanota", + "SimpleIconsTvtime", + "SimpleIconsTwilio", + "SimpleIconsTwitch", + "SimpleIconsTwitter", + "SimpleIconsTwoo", + "SimpleIconsTypeform", + "SimpleIconsTypescript", + "SimpleIconsTypo3", + "SimpleIconsUber", + "SimpleIconsUbereats", + "SimpleIconsUbiquiti", + "SimpleIconsUbisoft", + "SimpleIconsUblockorigin", + "SimpleIconsUbuntu", + "SimpleIconsUdacity", + "SimpleIconsUdemy", + "SimpleIconsUfc", + "SimpleIconsUikit", + "SimpleIconsUlule", + "SimpleIconsUmbraco", + "SimpleIconsUnacademy", + "SimpleIconsUnderarmour", + "SimpleIconsUnderscoredotjs", + "SimpleIconsUndertale", + "SimpleIconsUnicode", + "SimpleIconsUnilever", + "SimpleIconsUnitedairlines", + "SimpleIconsUnity", + "SimpleIconsUnlicense", + "SimpleIconsUnocss", + "SimpleIconsUnraid", + "SimpleIconsUnrealengine", + "SimpleIconsUnsplash", + "SimpleIconsUntangle", + "SimpleIconsUntappd", + "SimpleIconsUpcloud", + "SimpleIconsUplabs", + "SimpleIconsUploaded", + "SimpleIconsUps", + "SimpleIconsUpstash", + "SimpleIconsUptimekuma", + "SimpleIconsUptobox", + "SimpleIconsUpwork", + "SimpleIconsUsps", + "SimpleIconsV", + "SimpleIconsV2Ex", + "SimpleIconsV8", + "SimpleIconsVaadin", + "SimpleIconsVagrant", + "SimpleIconsVala", + "SimpleIconsValorant", + "SimpleIconsValve", + "SimpleIconsVapor", + "SimpleIconsVault", + "SimpleIconsVauxhall", + "SimpleIconsVbulletin", + "SimpleIconsVectorlogozone", + "SimpleIconsVectorworks", + "SimpleIconsVeeam", + "SimpleIconsVeepee", + "SimpleIconsVelog", + "SimpleIconsVenmo", + "SimpleIconsVercel", + "SimpleIconsVerdaccio", + "SimpleIconsVeritas", + "SimpleIconsVerizon", + "SimpleIconsVexxhost", + "SimpleIconsVfairs", + "SimpleIconsViadeo", + "SimpleIconsViber", + "SimpleIconsVim", + "SimpleIconsVimeo", + "SimpleIconsVimeolivestream", + "SimpleIconsVirgin", + "SimpleIconsVirginmedia", + "SimpleIconsVirtualbox", + "SimpleIconsVirustotal", + "SimpleIconsVisa", + "SimpleIconsVisualstudio", + "SimpleIconsVisualstudiocode", + "SimpleIconsVite", + "SimpleIconsVitess", + "SimpleIconsVitest", + "SimpleIconsVivaldi", + "SimpleIconsVivino", + "SimpleIconsVk", + "SimpleIconsVlcmediaplayer", + "SimpleIconsVmware", + "SimpleIconsVodafone", + "SimpleIconsVolkswagen", + "SimpleIconsVolvo", + "SimpleIconsVonage", + "SimpleIconsVowpalwabbit", + "SimpleIconsVox", + "SimpleIconsVsco", + "SimpleIconsVscodium", + "SimpleIconsVtex", + "SimpleIconsVuedotjs", + "SimpleIconsVuetify", + "SimpleIconsVulkan", + "SimpleIconsVultr", + "SimpleIconsW3C", + "SimpleIconsWacom", + "SimpleIconsWagtail", + "SimpleIconsWails", + "SimpleIconsWakatime", + "SimpleIconsWalkman", + "SimpleIconsWallabag", + "SimpleIconsWalmart", + "SimpleIconsWantedly", + "SimpleIconsWappalyzer", + "SimpleIconsWarnerbros", + "SimpleIconsWarp", + "SimpleIconsWasmcloud", + "SimpleIconsWasmer", + "SimpleIconsWattpad", + "SimpleIconsWayland", + "SimpleIconsWaze", + "SimpleIconsWearos", + "SimpleIconsWeasyl", + "SimpleIconsWeb3Dotjs", + "SimpleIconsWebassembly", + "SimpleIconsWebauthn", + "SimpleIconsWebcomponentsdotorg", + "SimpleIconsWebdriverio", + "SimpleIconsWebflow", + "SimpleIconsWebgl", + "SimpleIconsWebhint", + "SimpleIconsWeblate", + "SimpleIconsWebmin", + "SimpleIconsWebmoney", + "SimpleIconsWebpack", + "SimpleIconsWebrtc", + "SimpleIconsWebstorm", + "SimpleIconsWebtoon", + "SimpleIconsWechat", + "SimpleIconsWegame", + "SimpleIconsWeightsandbiases", + "SimpleIconsWelcometothejungle", + "SimpleIconsWemo", + "SimpleIconsWesterndigital", + "SimpleIconsWetransfer", + "SimpleIconsWhatsapp", + "SimpleIconsWheniwork", + "SimpleIconsWhitesource", + "SimpleIconsWii", + "SimpleIconsWiiu", + "SimpleIconsWikidata", + "SimpleIconsWikidotjs", + "SimpleIconsWikimediacommons", + "SimpleIconsWikipedia", + "SimpleIconsWikiquote", + "SimpleIconsWikivoyage", + "SimpleIconsWinamp", + "SimpleIconsWindicss", + "SimpleIconsWindows", + "SimpleIconsWindows11", + "SimpleIconsWindows95", + "SimpleIconsWindowsterminal", + "SimpleIconsWindowsxp", + "SimpleIconsWinmate", + "SimpleIconsWipro", + "SimpleIconsWire", + "SimpleIconsWireguard", + "SimpleIconsWireshark", + "SimpleIconsWise", + "SimpleIconsWish", + "SimpleIconsWistia", + "SimpleIconsWix", + "SimpleIconsWizzair", + "SimpleIconsWolfram", + "SimpleIconsWolframlanguage", + "SimpleIconsWolframmathematica", + "SimpleIconsWoo", + "SimpleIconsWoocommerce", + "SimpleIconsWordpress", + "SimpleIconsWorkplace", + "SimpleIconsWorldhealthorganization", + "SimpleIconsWpengine", + "SimpleIconsWpexplorer", + "SimpleIconsWprocket", + "SimpleIconsWritedotas", + "SimpleIconsWwe", + "SimpleIconsWwise", + "SimpleIconsXamarin", + "SimpleIconsXaml", + "SimpleIconsXampp", + "SimpleIconsXbox", + "SimpleIconsXcode", + "SimpleIconsXdadevelopers", + "SimpleIconsXdotorg", + "SimpleIconsXero", + "SimpleIconsXfce", + "SimpleIconsXiaomi", + "SimpleIconsXilinx", + "SimpleIconsXing", + "SimpleIconsXmpp", + "SimpleIconsXo", + "SimpleIconsXrp", + "SimpleIconsXsplit", + "SimpleIconsXstate", + "SimpleIconsYahoo", + "SimpleIconsYale", + "SimpleIconsYamahacorporation", + "SimpleIconsYamahamotorcorporation", + "SimpleIconsYammer", + "SimpleIconsYarn", + "SimpleIconsYcombinator", + "SimpleIconsYelp", + "SimpleIconsYoast", + "SimpleIconsYolo", + "SimpleIconsYourtraveldottv", + "SimpleIconsYoutube", + "SimpleIconsYoutubegaming", + "SimpleIconsYoutubemusic", + "SimpleIconsYoutubestudio", + "SimpleIconsYoutubetv", + "SimpleIconsYubico", + "SimpleIconsZabka", + "SimpleIconsZalando", + "SimpleIconsZalo", + "SimpleIconsZapier", + "SimpleIconsZara", + "SimpleIconsZazzle", + "SimpleIconsZcash", + "SimpleIconsZdf", + "SimpleIconsZebratechnologies", + "SimpleIconsZelle", + "SimpleIconsZend", + "SimpleIconsZendesk", + "SimpleIconsZendframework", + "SimpleIconsZenn", + "SimpleIconsZenodo", + "SimpleIconsZerodha", + "SimpleIconsZeromq", + "SimpleIconsZerply", + "SimpleIconsZettlr", + "SimpleIconsZhihu", + "SimpleIconsZig", + "SimpleIconsZigbee", + "SimpleIconsZillow", + "SimpleIconsZincsearch", + "SimpleIconsZingat", + "SimpleIconsZoho", + "SimpleIconsZoiper", + "SimpleIconsZomato", + "SimpleIconsZoom", + "SimpleIconsZorin", + "SimpleIconsZotero", + "SimpleIconsZulip", + "SimpleIconsZwave", + "SimpleIconsZyte" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Finn Bear" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/finnbear/yew_icons/", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "yoke", + "version": "0.7.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "license": "Unicode-3.0", + "license_file": null, + "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yoke-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yoke", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bincode", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/tests/bincode.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "miri", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/tests/miri.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "stable_deref_trait/alloc", + "serde?/alloc", + "zerofrom/alloc" + ], + "default": [ + "alloc", + "zerofrom" + ], + "derive": [ + "dep:yoke-derive", + "zerofrom/derive" + ], + "serde": [ + "dep:serde" + ], + "zerofrom": [ + "dep:zerofrom" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/Cargo.toml", + "metadata": { + "cargo-all-features": { + "max_combination_size": 3 + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "memory-management", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow", + "self-referential" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71.1" + }, + { + "name": "yoke-derive", + "version": "0.7.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", + "license": "Unicode-3.0", + "license_file": null, + "description": "Custom derive for the yoke crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fold" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "yoke_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "yoke_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/examples/yoke_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/Cargo.toml", + "metadata": { + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "memory-management", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow", + "self-referential" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zerocopy", + "version": "0.7.35", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Utilities for zero-copy parsing and serialization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.35", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "assert_matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "elain", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.85", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.35", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerocopy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trybuild", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/tests/trybuild.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__internal_use_only_features_that_work_on_stable": [ + "alloc", + "derive", + "simd" + ], + "alloc": [], + "byteorder": [ + "dep:byteorder" + ], + "default": [ + "byteorder" + ], + "derive": [ + "zerocopy-derive" + ], + "simd": [], + "simd-nightly": [ + "simd" + ], + "zerocopy-derive": [ + "dep:zerocopy-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/Cargo.toml", + "metadata": { + "ci": { + "pinned-nightly": "nightly-2024-06-19", + "pinned-stable": "1.79.0" + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg", + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "__internal_use_only_features_that_work_on_stable" + ] + } + }, + "publish": null, + "authors": [ + "Joshua Liebow-Feeser " + ], + "categories": [ + "embedded", + "encoding", + "no-std::no-alloc", + "parsing", + "rust-patterns" + ], + "keywords": [ + "cast", + "convert", + "transmute", + "transmutation", + "type-punning" + ], + "readme": "README.md", + "repository": "https://github.com/google/zerocopy", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "zerocopy", + "version": "0.8.25", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "elain", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.89", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.25", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerocopy", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trybuild", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/tests/trybuild.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "__internal_use_only_features_that_work_on_stable": [ + "alloc", + "derive", + "simd", + "std" + ], + "alloc": [], + "derive": [ + "zerocopy-derive" + ], + "float-nightly": [], + "simd": [], + "simd-nightly": [ + "simd" + ], + "std": [ + "alloc" + ], + "zerocopy-derive": [ + "dep:zerocopy-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/Cargo.toml", + "metadata": { + "build-rs": { + "zerocopy-aarch64-simd-1-59-0": "1.59.0", + "zerocopy-core-error-1-81-0": "1.81.0", + "zerocopy-diagnostic-on-unimplemented-1-78-0": "1.78.0", + "zerocopy-generic-bounds-in-const-fn-1-61-0": "1.61.0", + "zerocopy-panic-in-const-and-vec-try-reserve-1-57-0": "1.57.0", + "zerocopy-target-has-atomics-1-60-0": "1.60.0" + }, + "ci": { + "pinned-nightly": "nightly-2025-04-23", + "pinned-stable": "1.86.0" + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg", + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "__internal_use_only_features_that_work_on_stable" + ] + } + }, + "publish": null, + "authors": [ + "Joshua Liebow-Feeser ", + "Jack Wrenn " + ], + "categories": [ + "embedded", + "encoding", + "no-std::no-alloc", + "parsing", + "rust-patterns" + ], + "keywords": [ + "cast", + "convert", + "transmute", + "transmutation", + "type-punning" + ], + "readme": "README.md", + "repository": "https://github.com/google/zerocopy", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "zerofrom", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "license": "Unicode-3.0", + "license_file": null, + "description": "ZeroFrom trait for constructing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zerofrom-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerofrom", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ], + "derive": [ + "dep:zerofrom-derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.81" + }, + { + "name": "zerofrom-derive", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", + "license": "Unicode-3.0", + "license_file": null, + "description": "Custom derive for the zerofrom crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fold" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "zerofrom_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zf_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/examples/zf_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/Cargo.toml", + "metadata": { + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "memory-management", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zeroize", + "version": "1.8.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Securely clear secrets from memory with a simple trait built on\nstable Rust primitives which guarantee memory is zeroed using an\noperation will not be 'optimized away' by the compiler.\nUses a portable pure Rust implementation that works everywhere,\neven WASM!\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zeroize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zeroize", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/tests/zeroize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zeroize_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/tests/zeroize_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "aarch64": [], + "alloc": [], + "default": [ + "alloc" + ], + "derive": [ + "zeroize_derive" + ], + "serde": [ + "dep:serde" + ], + "simd": [], + "std": [ + "alloc" + ], + "zeroize_derive": [ + "dep:zeroize_derive" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The RustCrypto Project Developers" + ], + "categories": [ + "cryptography", + "memory-management", + "no-std", + "os" + ], + "keywords": [ + "memory", + "memset", + "secure", + "volatile", + "zero" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils/tree/master/zeroize", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "zerovec", + "version": "0.10.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "license": "Unicode-3.0", + "license_file": null, + "description": "Zero-copy vector backed by a byte array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "twox-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.6.0, <0.8.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerovec-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "iai", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_distr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_pcg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rmp-serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerovec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zv_serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/examples/zv_serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "vzv", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/vzv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zeromap", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zeromap.rs", + "edition": "2021", + "required-features": [ + "serde", + "hashmap", + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zerovec", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zerovec_iai", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec_iai.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zerovec_serde", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec_serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [ + "serde", + "databake" + ], + "databake": [ + "dep:databake" + ], + "derive": [ + "dep:zerovec-derive" + ], + "hashmap": [ + "dep:twox-hash" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "yoke": [ + "dep:yoke" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ], + "max_combination_size": 3 + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "rust-patterns", + "memory-management", + "caching", + "no-std", + "data-structures" + ], + "keywords": [ + "zerocopy", + "serialization", + "zero-copy", + "serde" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "zerovec-derive", + "version": "0.10.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", + "license": "Unicode-3.0", + "license_file": null, + "description": "Custom derive for the zerovec crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "zerovec_derive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "derives", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/derives.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "make", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/make.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "make_var", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/make_var.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/Cargo.toml", + "metadata": { + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "rust-patterns", + "memory-management", + "caching", + "no-std", + "data-structures" + ], + "keywords": [ + "zerocopy", + "serialization", + "zero-copy", + "serde" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zip", + "version": "2.6.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", + "license": "MIT", + "license_file": null, + "description": "Library to support the reading and writing of zip files.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bzip2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "constant_time_eq", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "deflate64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "wasm_js", + "std" + ], + "target": null, + "registry": null + }, + { + "name": "hmac", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "reset" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lzma-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nt-time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pbkdf2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=1.0.60", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.37", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "xz2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "zeroize_derive" + ], + "target": null, + "registry": null + }, + { + "name": "zopfli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zstd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.95", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=4.4.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "wasm_js", + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.15", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.37", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "formatting", + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))", + "registry": null + }, + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": "cfg(fuzzing)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zip", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "merge_archive", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/merge_archive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "read_entry", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/read_entry.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "read_metadata", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/read_metadata.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/src/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "_all-features": [], + "_deflate-any": [], + "aes": [ + "dep:aes" + ], + "aes-crypto": [ + "aes", + "constant_time_eq", + "hmac", + "pbkdf2", + "sha1", + "getrandom", + "zeroize" + ], + "bzip2": [ + "dep:bzip2" + ], + "chrono": [ + "chrono/default" + ], + "constant_time_eq": [ + "dep:constant_time_eq" + ], + "default": [ + "aes-crypto", + "bzip2", + "deflate64", + "deflate", + "lzma", + "time", + "zstd", + "xz" + ], + "deflate": [ + "flate2/rust_backend", + "deflate-zopfli", + "deflate-flate2" + ], + "deflate-flate2": [ + "_deflate-any" + ], + "deflate-miniz": [ + "deflate", + "deflate-flate2" + ], + "deflate-zlib": [ + "flate2/zlib", + "deflate-flate2" + ], + "deflate-zlib-ng": [ + "flate2/zlib-ng", + "deflate-flate2" + ], + "deflate-zopfli": [ + "zopfli", + "_deflate-any" + ], + "deflate64": [ + "dep:deflate64" + ], + "flate2": [ + "dep:flate2" + ], + "getrandom": [ + "dep:getrandom" + ], + "hmac": [ + "dep:hmac" + ], + "jiff-02": [ + "dep:jiff" + ], + "lzma": [ + "lzma-rs/stream" + ], + "lzma-rs": [ + "dep:lzma-rs" + ], + "nt-time": [ + "dep:nt-time" + ], + "pbkdf2": [ + "dep:pbkdf2" + ], + "proc-macro2": [ + "dep:proc-macro2" + ], + "sha1": [ + "dep:sha1" + ], + "time": [ + "dep:time" + ], + "unreserved": [], + "xz": [ + "dep:xz2" + ], + "zeroize": [ + "dep:zeroize" + ], + "zopfli": [ + "dep:zopfli" + ], + "zstd": [ + "dep:zstd" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Mathijs van de Nes ", + "Marli Frost ", + "Ryan Levick ", + "Chris Hennick " + ], + "categories": [], + "keywords": [ + "zip", + "archive", + "compression" + ], + "readme": "README.md", + "repository": "https://github.com/zip-rs/zip2.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.73.0" + }, + { + "name": "zopfli", + "version": "0.8.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", + "license": "Apache-2.0", + "license_file": null, + "description": "A Rust implementation of the Zopfli compression algorithm.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.17.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "simd-adler32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zopfli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "zopfli", + "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/src/main.rs", + "edition": "2021", + "required-features": [ + "gzip", + "std", + "zlib" + ], + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "gzip", + "std", + "zlib" + ], + "gzip": [ + "dep:crc32fast" + ], + "nightly": [ + "crc32fast?/nightly" + ], + "std": [ + "crc32fast?/std", + "dep:log", + "simd-adler32?/std" + ], + "zlib": [ + "dep:simd-adler32" + ] + }, + "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "--all-features" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "compression", + "no-std" + ], + "keywords": [ + "compression" + ], + "readme": "README.md", + "repository": "https://github.com/zopfli-rs/zopfli", + "homepage": "https://github.com/zopfli-rs/zopfli", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.73.0" + } + ], + "workspace_members": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0" + ], + "workspace_default_members": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0" + ], + "resolve": { + "nodes": [ + { + "id": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" + ], + "deps": [ + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "heavyweight", + "lazy_static", + "regex" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "abi_tester", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "adder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1" + ], + "deps": [ + { + "name": "gimli", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cipher", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cpufeatures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" + ], + "deps": [ + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))" + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))" + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))" + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "zerocopy", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "perf-literal", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "alloc_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", + "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", + "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", + "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", + "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" + ], + "deps": [ + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle_parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle_query", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colorchoice", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "is_terminal_polyfill", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "auto", + "default", + "wincon" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" + ], + "deps": [ + { + "name": "utf8parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "utf8" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", + "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24" + ], + "deps": [ + { + "name": "addr2line", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" + } + ] + }, + { + "name": "miniz_oxide", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" + } + ] + }, + { + "name": "object", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" + } + ] + }, + { + "name": "rustc_demangle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "basic_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serial_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "system_sc_interact", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "chain-simulator-tests" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "basic_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "adder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serial_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "chain-simulator-tests" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "big_float_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", + "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cexpr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clang_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "prettyplease", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "shlex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "logging", + "prettyplease", + "runtime", + "static" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22" + ], + "deps": [ + { + "name": "bitcoin_hashes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crate_rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_normalization", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "crate_rand", + "default", + "rand", + "rand_core", + "serde", + "std", + "unicode-normalization" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2" + ], + "deps": [ + { + "name": "internals", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitvec@1.0.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#funty@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#radium@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#wyz@0.5.1" + ], + "deps": [ + { + "name": "funty", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#funty@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "radium", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#radium@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wyz", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wyz@0.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" + ], + "deps": [ + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "bonding_curve_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "builtin_func_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5" + ], + "deps": [ + { + "name": "bytecheck_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ptr_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "simdutf8", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "simdutf8", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5" + ], + "deps": [ + { + "name": "bytecheck_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ptr_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rancor", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "simdutf8", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "simdutf8" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0" + ], + "deps": [ + { + "name": "shlex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3" + ], + "deps": [ + { + "name": "nom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "check_pause", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "child", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "iana_time_zone", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "android-tzdata", + "clock", + "default", + "iana-time-zone", + "js-sys", + "now", + "oldtime", + "std", + "wasm-bindgen", + "wasmbind", + "winapi", + "windows-link" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4" + ], + "deps": [ + { + "name": "crypto_common", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "inout", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6" + ], + "deps": [ + { + "name": "glob", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libloading", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clang_3_5", + "clang_3_6", + "clang_3_7", + "clang_3_8", + "clang_3_9", + "clang_4_0", + "clang_5_0", + "clang_6_0", + "libloading", + "runtime", + "static" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32" + ], + "deps": [ + { + "name": "clap_builder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "color", + "default", + "derive", + "error-context", + "help", + "std", + "suggestions", + "usage" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", + "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1" + ], + "deps": [ + { + "name": "anstream", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_lex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strsim", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "color", + "error-context", + "help", + "std", + "suggestions", + "usage" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "heck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0" + ], + "deps": [ + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "builtin_func_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder_legacy", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder_queue", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder_raw", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "promises_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "proxy_test_first", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "proxy_test_second", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "recursive_caller", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0" + ], + "deps": [ + { + "name": "unicode_segmentation", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" + ], + "deps": [ + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "scopeguard", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "default-stack", + "libc", + "unwind", + "windows-sys" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" + ], + "deps": [ + { + "name": "crossbeam_epoch", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" + ], + "deps": [ + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" + ], + "deps": [ + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "crowdfunding_erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "crowdfunding_esdt", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "crypto_bubbles", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0" + ], + "deps": [ + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "typenum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "crypto_zombies", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" + ], + "deps": [ + { + "name": "cipher", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cpufeatures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"x86_64\")" + } + ] + }, + { + "name": "curve25519_dalek_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(curve25519_dalek_backend = \"fiat\"), not(curve25519_dalek_backend = \"serial\"), target_arch = \"x86_64\"))" + } + ] + }, + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_version", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "digest", + "precomputed-tables", + "zeroize" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11" + ], + "deps": [ + { + "name": "darling_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "darling_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ident_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "darling_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lock_api", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "const_oid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "oid", + "std", + "zeroize" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "display", + "error", + "from" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0" + ], + "deps": [ + { + "name": "derive_more_impl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "debug", + "default", + "from", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_xid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "debug", + "default", + "from" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" + ], + "deps": [ + { + "name": "block_buffer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crypto_common", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "block-buffer", + "core-api", + "default", + "mac", + "std", + "subtle" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "digital_cash", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro_error", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10" + ], + "deps": [ + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dynasm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memmap2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", + "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0" + ], + "deps": [ + { + "name": "pkcs8", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "signature", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", + "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "curve25519_dalek", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ed25519", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "fast", + "std", + "zeroize" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std", + "use_std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "empty", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0" + ], + "deps": [ + { + "name": "enum_iterator_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0" + ], + "deps": [ + { + "name": "enumset_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "darling", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "regex" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27" + ], + "deps": [ + { + "name": "anstream", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "env_filter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "jiff", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "auto-color", + "color", + "default", + "humantime", + "regex" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "erc1155_user_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "erc1155", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc1155_marketplace", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc1155", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc1155_user_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "erc721", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + }, + { + "kind": null, + "target": "cfg(target_os = \"hermit\")" + }, + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0" + ], + "deps": [ + { + "name": "first_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "second_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "esdt_transfer_with_fee", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "exchange_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [ + "run-go-tests" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "factorial", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "order_book_factory", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "first_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8" + ], + "deps": [ + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "miniz_oxide", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))" + } + ] + } + ], + "features": [ + "any_impl", + "default", + "miniz_oxide", + "rust_backend" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1" + ], + "deps": [ + { + "name": "foreign_types_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" + ], + "deps": [ + { + "name": "percent_encoding", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "formatted_message_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "forwarder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "chain-simulator-tests" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "forwarder_legacy", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "forwarder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc_wasm_adapter", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "multiversx-sc-wasm-adapter" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "forwarder_queue", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "forwarder_raw", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "fractional_nfts", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#funty@2.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_executor", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_io", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_task", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "async-await", + "default", + "executor", + "futures-executor", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "futures-sink", + "sink", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_task", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_io", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_task", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "slab", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "async-await", + "async-await-macro", + "channel", + "futures-channel", + "futures-io", + "futures-macro", + "futures-sink", + "io", + "memchr", + "sink", + "slab", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "convert_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "env_logger", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" + ], + "deps": [ + { + "name": "typenum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "more_lengths" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0" + ], + "deps": [ + { + "name": "typenum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [ + "js", + "js-sys", + "std", + "wasm-bindgen" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))" + }, + { + "kind": null, + "target": "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))" + }, + { + "kind": null, + "target": "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))" + }, + { + "kind": null, + "target": "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))" + }, + { + "kind": null, + "target": "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))" + }, + { + "kind": null, + "target": "cfg(target_os = \"netbsd\")" + }, + { + "kind": null, + "target": "cfg(target_os = \"solaris\")" + }, + { + "kind": null, + "target": "cfg(target_os = \"vxworks\")" + } + ] + } + ], + "features": [ + "std", + "wasm_js" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0" + ], + "deps": [ + { + "name": "fallible_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "stable_deref_trait", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "endian-reader", + "fallible-iterator", + "read", + "read-all", + "read-core", + "std", + "write" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", + "dependencies": [], + "deps": [], + "features": [ + "read", + "read-core" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bstr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "log" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", + "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1" + ], + "deps": [ + { + "name": "gloo_console", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_dialogs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_events", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_file", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_history", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_net", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_render", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_storage", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_timers", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_worker", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "console", + "default", + "dialogs", + "events", + "file", + "futures", + "gloo-console", + "gloo-dialogs", + "gloo-events", + "gloo-file", + "gloo-history", + "gloo-net", + "gloo-render", + "gloo-storage", + "gloo-timers", + "gloo-utils", + "gloo-worker", + "history", + "net", + "render", + "storage", + "timers", + "utils", + "worker" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_events", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "futures", + "futures-channel" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "gloo_events", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "query", + "serde_urlencoded", + "thiserror" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "eventsource", + "futures-channel", + "futures-core", + "futures-sink", + "http", + "json", + "pin-project", + "serde", + "serde_json", + "websocket" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "eventsource", + "futures-channel", + "futures-core", + "futures-sink", + "http", + "json", + "pin-project", + "serde", + "serde_json", + "websocket" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "futures", + "futures-channel", + "futures-core" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "anymap2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bincode", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_console", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "futures" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" + ], + "deps": [ + { + "name": "atomic_waker", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "slab", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.11.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8" + ], + "deps": [ + { + "name": "ahash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "ahash" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8" + ], + "deps": [ + { + "name": "ahash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "ahash", + "default", + "inline-more", + "raw" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11" + ], + "deps": [ + { + "name": "ahash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "ahash", + "raw" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "foldhash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default-hasher", + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" + ], + "deps": [ + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "h2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "httparse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "want", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "client", + "default", + "http1", + "http2" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10" + ], + "deps": [ + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio_rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "webpki_roots", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "http1", + "http2", + "ring", + "tls12", + "webpki-roots", + "webpki-tokio" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "native_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio_native_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hyper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "socket2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "client", + "client-legacy", + "default", + "http1", + "http2", + "tokio" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", + "dependencies": [], + "deps": [], + "features": [ + "fallback" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yoke", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "litemap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "writeable", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "zerovec" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid_transform_data", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", + "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_collections", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_normalizer_data", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_properties", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf16_iter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8_iter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "write16", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_collections", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid_transform", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_properties_data", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "stable_deref_trait", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "writeable", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yoke", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "macros" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4" + ], + "deps": [ + { + "name": "idna_adapter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8_iter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "compiled_data", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1" + ], + "deps": [ + { + "name": "icu_normalizer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_properties", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" + ], + "deps": [ + { + "name": "crossbeam_deque", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "globset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "same_file", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "indexmap", + "map" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde", + "serde-1", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "equivalent", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "serde", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" + ], + "deps": [ + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "use_alloc", + "use_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "random", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "kitty", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "kitty_ownership", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "kitty_auction", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" + ], + "deps": [ + { + "name": "kitty", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "random", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "kitty_genetic_alg", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" + ], + "deps": [ + { + "name": "kitty", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "kitty_genetic_alg", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "random", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "kitty_ownership", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "large_storage", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dependencies": [], + "deps": [], + "features": [ + "default", + "extra_traits", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.7.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "linked_list_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15", + "dependencies": [], + "deps": [], + "features": [ + "elf", + "errno", + "general", + "ioctl", + "no_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", + "dependencies": [], + "deps": [], + "features": [ + "elf", + "errno", + "general", + "ioctl", + "no_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", + "dependencies": [], + "deps": [], + "features": [ + "alloc" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "local_esdt_and_nft", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "scopeguard", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "atomic_usize", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "lottery_erc20", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "lottery_esdt", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "derive", + "enable-indexmap", + "indexmap", + "loupe-derive" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "esdt_system_sc_mock", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "managed_map_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "map_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.6.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0" + ], + "deps": [ + { + "name": "adler2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "with-alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + }, + { + "kind": null, + "target": "cfg(target_os = \"hermit\")" + }, + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + } + ], + "features": [ + "net", + "os-ext", + "os-poll" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [ + "example_feature" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "multi_contract_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multisig", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "multisig", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_codec", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8" + ], + "deps": [ + { + "name": "bech32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha3", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer@0.3.0", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ed25519_dalek", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex_literal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_core", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor_wasmer", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor_wasmer_experimental", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_seeder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha3", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "multiversx-chain-vm-executor-wasmer", + "multiversx-chain-vm-executor-wasmer-experimental", + "rand", + "wasm-incompatible", + "wasmer-experimental", + "wasmer-prod" + ] + }, + { + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "chrono", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "chrono", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rc_new_cyclic_fallible", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5" + ], + "deps": [ + { + "name": "arrayvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" + ], + "deps": [ + { + "name": "multiversx_price_aggregator_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex_literal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_core", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_codec", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_derive", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unwrap_infallible", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "esdt-token-payment-legacy-decode", + "managed-buffer-builder-cached", + "num-bigint" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" + ], + "deps": [ + { + "name": "arrayvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_codec_derive", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unwrap_infallible", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "derive", + "multiversx-sc-codec-derive", + "num-bigint" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "radix_trie", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1" + ], + "deps": [ + { + "name": "bip39", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "common_path", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "convert_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "copy_dir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "home", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pathdiff", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "reqwest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruplacer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zip", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "template-test-current", + "template-test-released" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", + "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "convert_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_version", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmprinter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wat", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bech32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_scenario_format", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_vm_executor", + "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pathdiff", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "simple_error", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unwrap_infallible", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "run-go-tests", + "wasm-incompatible", + "wasmer-experimental", + "wasmer-prod" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "env_logger", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_scenario_format", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk_dapp", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk_http", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "dapp", + "default", + "default-tls", + "http", + "multiversx-sdk-dapp", + "multiversx-sdk-http", + "static-tls", + "tokio" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "aes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bech32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bip39", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ctr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hmac", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_chain_core", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pbkdf2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pem", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "scrypt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_repr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha3", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "uuid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo_net", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sdk", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "reqwest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "chain_simulator", + "default", + "default-tls", + "static-tls" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_wegld_swap_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4" + ], + "deps": [ + { + "name": "munge_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "bech32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", + "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" + } + ] + }, + { + "name": "openssl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" + } + ] + }, + { + "name": "openssl_probe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" + } + ] + }, + { + "name": "openssl_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nft_minter", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nft_storage_prepay", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nft_subscription", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0" + ], + "deps": [ + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "minimal_lexical", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "num_integer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" + ], + "deps": [ + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "i128", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default", + "i128", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(windows))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.11.2", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.11.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "coff", + "crc32fast", + "elf", + "hashbrown", + "indexmap", + "macho", + "pe", + "std", + "write", + "write_core", + "write_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0" + ], + "deps": [ + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "flate2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruzstd", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "archive", + "coff", + "compression", + "default", + "elf", + "macho", + "pe", + "read", + "read_core", + "std", + "unaligned", + "write", + "write_core", + "write_std", + "xcoff" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "archive", + "coff", + "elf", + "macho", + "pe", + "read_core", + "unaligned", + "xcoff" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "race", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "foreign_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "openssl_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ffi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", + "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pkg_config", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "vcpkg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "order_book_pair", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [ + "run-go-tests" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "panic_message_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parent", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10" + ], + "deps": [ + { + "name": "lock_api", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" + ], + "deps": [ + { + "name": "base64ct", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "rand_core", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "payable_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "payable_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serial_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "chain-simulator-tests" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1" + ], + "deps": [ + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hmac", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "hmac" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10" + ], + "deps": [ + { + "name": "pin_project_internal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", + "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3" + ], + "deps": [ + { + "name": "console_log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew_router", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew_icons", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ping_pong_egld", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "chain-simulator-tests" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ping_pong_egld", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" + ], + "deps": [ + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3" + ], + "deps": [ + { + "name": "der", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "spki", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25" + ], + "deps": [ + { + "name": "zerocopy", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "simd", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "verbatim" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" + ], + "deps": [ + { + "name": "proc_macro_error_attr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default", + "syn", + "syn-error" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro_error_attr2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "syn-error" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" + ], + "deps": [ + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proc-macro" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17" + ], + "deps": [ + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_cpus", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "pin_project", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pinned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tokio_stream", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "promises_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "check_pause", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proxy_pause", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "hex_literal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proxy_test_first", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proxy_test_second", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4" + ], + "deps": [ + { + "name": "ptr_meta_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0" + ], + "deps": [ + { + "name": "ptr_meta_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "derive", + "ptr_meta_derive", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "queue_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.11", + "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.11", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_aliases", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proto", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "udp", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "socket2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))" + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "ring", + "runtime-tokio", + "rustls", + "rustls-ring" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ring", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": null, + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))" + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "slab", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinyvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "ring", + "rustls-ring" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" + ], + "deps": [ + { + "name": "cfg_aliases", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "socket2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))" + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "tracing" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proc-macro" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#radium@0.7.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0" + ], + "deps": [ + { + "name": "endian_type", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nibble_vec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0" + ], + "deps": [ + { + "name": "ptr_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "rand_chacha", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "getrandom", + "libc", + "rand_chacha", + "std", + "std_rng" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3" + ], + "deps": [ + { + "name": "rand_chacha", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "os_rng", + "small_rng", + "std", + "std_rng", + "thread_rng" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "ppv_lite86", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3" + ], + "deps": [ + { + "name": "ppv_lite86", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16" + ], + "deps": [ + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "getrandom", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2" + ], + "deps": [ + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "os_rng", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rayon_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" + ], + "deps": [ + { + "name": "crossbeam_deque", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "recursive_caller", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "perf", + "perf-backtrack", + "perf-cache", + "perf-dfa", + "perf-inline", + "perf-literal", + "perf-onepass", + "std", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "dfa-onepass", + "hybrid", + "meta", + "nfa", + "nfa-backtrack", + "nfa-pikevm", + "nfa-thompson", + "perf", + "perf-inline", + "perf-literal", + "perf-literal-multisubstring", + "perf-literal-substring", + "std", + "syntax", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + "unicode-word-boundary" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.4.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12" + ], + "deps": [ + { + "name": "bytecheck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "bytecheck", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1" + ], + "deps": [ + { + "name": "bytecheck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "bytecheck" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", + "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", + "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", + "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", + "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.7", + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "encoding_rs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "futures_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "h2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "http", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "http_body", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "http_body_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "hyper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "hyper_rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "hyper_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "hyper_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "ipnet", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "mime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "native_tls_crate", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "percent_encoding", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "quinn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.7", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "rustls_pemfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "rustls_pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "serde_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sync_wrapper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tokio_native_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tokio_rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tower", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "url", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "webpki_roots", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + } + ], + "features": [ + "__rustls", + "__rustls-ring", + "__tls", + "blocking", + "charset", + "default", + "default-tls", + "h2", + "http2", + "json", + "macos-system-configuration", + "rustls-tls", + "rustls-tls-webpki-roots", + "rustls-tls-webpki-roots-no-provider" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rewards_distribution", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "untrusted", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "dev_urandom_fallback", + "wasm32_unknown_unknown_js" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitvec@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#rend@0.4.2", + "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.7.45", + "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", + "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0" + ], + "deps": [ + { + "name": "bitvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitvec@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytecheck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ptr_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rend", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rend@0.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.7.45", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "seahash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinyvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "uuid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "hashbrown", + "size_32", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", + "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", + "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", + "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0" + ], + "deps": [ + { + "name": "bytecheck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytes_1", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap_2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "munge", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ptr_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rancor", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rend", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinyvec_1", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "uuid_1", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "bytecheck", + "bytes-1", + "default", + "indexmap-2", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.7.45", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "bytecheck" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", + "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" + ], + "deps": [ + { + "name": "inflector", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ignore", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rust_snippets_generator_test", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "adder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "basic_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "forwarder", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_bigint", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rust_testing_framework_tester", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26" + ], + "deps": [ + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc_errno", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + }, + { + "kind": null, + "target": "cfg(windows)" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + } + ] + }, + { + "name": "linux_raw_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + } + ] + } + ], + "features": [ + "alloc", + "fs", + "libc-extra-traits", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc_errno", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + }, + { + "kind": null, + "target": "cfg(windows)" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + } + ] + }, + { + "name": "linux_raw_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + } + ] + } + ], + "features": [ + "alloc", + "default", + "fs", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ring", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "webpki", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "log", + "logging", + "ring", + "std", + "tls12" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0" + ], + "deps": [ + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std", + "web", + "web-time" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" + ], + "deps": [ + { + "name": "ring", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "untrusted", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "ring", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", + "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3" + ], + "deps": [ + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "derive_more", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "twox_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" + ], + "deps": [ + { + "name": "cipher", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8" + ], + "deps": [ + { + "name": "sdd", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "scenario_tester", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "use_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9" + ], + "deps": [ + { + "name": "password_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pbkdf2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "salsa20", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "password-hash", + "simple", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "second_contract", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "seed_nft_minter", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "send_tx_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219" + ], + "deps": [ + { + "name": "serde_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": null, + "target": "cfg(any())" + } + ] + } + ], + "features": [ + "alloc", + "default", + "derive", + "rc", + "serde_derive", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ryu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "indexmap", + "preserve_order", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "form_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ryu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", + "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0" + ], + "deps": [ + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "scc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serial_test_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "async", + "default", + "logging" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "async", + "default" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "set_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cpufeatures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" + } + ] + }, + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5" + ], + "deps": [ + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "keccak", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memmap2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "single_value_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dependencies": [], + "deps": [], + "features": [ + "const_generics", + "const_new" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [ + "all" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10" + ], + "deps": [ + { + "name": "base64ct", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "der", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [ + "managed-buffer-builder-cached" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "str_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clone-impls", + "default", + "derive", + "extra-traits", + "full", + "parsing", + "printing", + "proc-macro", + "quote", + "visit-mut" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clone-impls", + "default", + "derive", + "extra-traits", + "fold", + "full", + "parsing", + "printing", + "proc-macro", + "visit", + "visit-mut" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "futures", + "futures-core" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proc-macro" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_snippets", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "chain-simulator-tests" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0" + ], + "deps": [ + { + "name": "filetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "xattr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [ + "default", + "xattr" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5" + ], + "deps": [ + { + "name": "fastrand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(unix, windows, target_os = \"wasi\"))" + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(unix, target_os = \"wasi\"))" + } + ] + } + ], + "features": [ + "default", + "getrandom" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69" + ], + "deps": [ + { + "name": "thiserror_impl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12" + ], + "deps": [ + { + "name": "thiserror_impl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "zerovec" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1" + ], + "deps": [ + { + "name": "tinyvec_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "tinyvec_macros" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "token_release", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", + "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "mio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "signal_hook_registry", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "socket2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_family = \"wasm\"))" + } + ] + }, + { + "name": "tokio_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "bytes", + "default", + "fs", + "full", + "io-std", + "io-util", + "libc", + "macros", + "mio", + "net", + "parking_lot", + "process", + "rt", + "rt-multi-thread", + "signal", + "signal-hook-registry", + "socket2", + "sync", + "time", + "tokio-macros", + "windows-sys" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "native_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "ring", + "tls12" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "time" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" + ], + "deps": [ + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_sink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "codec", + "default", + "io" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_edit", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "display", + "parse" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_edit", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "display", + "indexmap", + "parse", + "preserve_order" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winnow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_write", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winnow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "display", + "parse", + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", + "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" + ], + "deps": [ + { + "name": "futures_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sync_wrapper", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_layer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tower_service", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "__common", + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "timeout", + "tokio", + "util" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", + "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_attributes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "attributes", + "default", + "log", + "std", + "tracing-attributes" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3" + ], + "deps": [ + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "once_cell", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "transfer_role_features", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "static_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", + "dependencies": [], + "deps": [], + "features": [ + "const-generics" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0" + ], + "deps": [ + { + "name": "tinyvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dependencies": [], + "deps": [], + "features": [ + "cjk", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "flate2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls_pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "url", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "webpki_roots", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "gzip", + "tls" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" + ], + "deps": [ + { + "name": "form_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "idna", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "percent_encoding", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "multiversx_sc_modules", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "use_module", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2" + ], + "deps": [ + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))" + } + ] + } + ], + "features": [ + "default", + "rng", + "std", + "v4" + ] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "vault", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" + ], + "deps": [ + { + "name": "benchmark_common", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "multiversx_sc_scenario", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", + "dependencies": [ + "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0" + ], + "deps": [ + { + "name": "multiversx_sc_meta_lib", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "vec_repeat", + "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6" + ], + "deps": [ + { + "name": "same_file", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5" + ], + "deps": [ + { + "name": "try_lock", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "msrv", + "rustversion", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100" + ], + "deps": [ + { + "name": "bumpalo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100" + ], + "deps": [ + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_macro_support", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_backend", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" + ], + "deps": [ + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0" + ], + "deps": [ + { + "name": "leb128fmt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "std" + ] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler-singlepass@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-derive@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-dylib@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-universal@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "target_lexicon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmer_compiler_singlepass", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler-singlepass@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmer_derive", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-derive@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasmer_engine", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmer_engine_dylib", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-dylib@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmer_engine_universal", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-universal@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmer_types", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wat", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiler", + "engine", + "singlepass", + "sys", + "universal", + "wasmer-compiler-singlepass", + "wasmer-engine-dylib", + "wasmer-engine-universal", + "wat" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", + "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", + "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0" + ], + "deps": [ + { + "name": "bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", + "dep_kinds": [ + { + "kind": "build", + "target": "cfg(not(target_env = \"musl\"))" + }, + { + "kind": "build", + "target": "cfg(target_env = \"musl\")" + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cmake", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "derive_more", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "paste", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_demangle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "shared_buffer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tar", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "target_lexicon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ureq", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasmer_compiler_singlepass", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmer_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + }, + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wat", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiler", + "singlepass", + "std", + "sys", + "wasmer-compiler-singlepass", + "wasmparser", + "wat" + ] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#wasmparser@0.78.2" + ], + "deps": [ + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "target_lexicon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmparser", + "pkg": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#wasmparser@0.78.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "enable-rkyv", + "enable-serde", + "rkyv", + "serde", + "serde_bytes", + "std", + "translator", + "wasmparser" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", + "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15" + ], + "deps": [ + { + "name": "backtrace", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enum_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "leb128", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memmap2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "object", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "region", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "rkyv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "self_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "shared_buffer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "target_lexicon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "xxhash_rust", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiler", + "default", + "std", + "translator", + "wasmparser" + ] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler-singlepass@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1" + ], + "deps": [ + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dynasm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dynasmrt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rayon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "avx", + "default", + "rayon", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" + ], + "deps": [ + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dynasm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dynasmrt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gimli", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rayon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "avx", + "default", + "gimli", + "rayon", + "std", + "unwind" + ] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-derive@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro_error", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro_error2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", + "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1" + ], + "deps": [ + { + "name": "backtrace", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memmap2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_demangle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "target_lexicon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-dylib@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#libloading@0.7.4", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", + "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-object@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "registry+https://github.com/rust-lang/crates.io-index#which@4.4.2" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enum_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "leb128", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libloading", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "object", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_engine", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_object", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-object@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "which", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#which@4.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiler" + ] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-universal@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enum_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "leb128", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "region", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_engine", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_vm", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiler" + ] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-object@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1" + ], + "deps": [ + { + "name": "object", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_compiler", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "enable-rkyv", + "enable-serde", + "rkyv", + "serde", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15" + ], + "deps": [ + { + "name": "bytecheck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enum_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enumset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "target_lexicon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "xxhash_rust", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.6.5", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1" + ], + "deps": [ + { + "name": "backtrace", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enum_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "loupe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memoffset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.6.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "region", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rkyv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "enable-rkyv", + "rkyv" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", + "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", + "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" + ], + "deps": [ + { + "name": "backtrace", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "corosensei", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_queue", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dashmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "enum_iterator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libunwind", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_family = \"unix\", all(target_family = \"windows\", target_env = \"gnu\")))" + } + ] + }, + { + "name": "memoffset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "more_asserts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "region", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "scopeguard", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmer_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#wasmparser@0.78.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "features", + "simd", + "validate" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "default", + "features", + "hash-collections", + "serde", + "simd", + "std", + "validate" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "semver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "simd", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", + "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "termcolor", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasmparser", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0" + ], + "deps": [ + { + "name": "bumpalo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "leb128fmt", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_encoder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "wasm-module" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0" + ], + "deps": [ + { + "name": "wast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "component-model", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "AbortController", + "AbortSignal", + "AddEventListenerOptions", + "AnimationEvent", + "BinaryType", + "Blob", + "BlobPropertyBag", + "CharacterData", + "CloseEvent", + "CloseEventInit", + "DedicatedWorkerGlobalScope", + "Document", + "DocumentFragment", + "DomException", + "DragEvent", + "Element", + "ErrorEvent", + "Event", + "EventInit", + "EventSource", + "EventTarget", + "File", + "FileList", + "FilePropertyBag", + "FileReader", + "FocusEvent", + "FormData", + "Headers", + "History", + "HtmlBaseElement", + "HtmlCollection", + "HtmlElement", + "HtmlHeadElement", + "HtmlInputElement", + "HtmlScriptElement", + "HtmlTextAreaElement", + "InputEvent", + "InputEventInit", + "KeyboardEvent", + "Location", + "MessageEvent", + "MouseEvent", + "Node", + "NodeList", + "ObserverCallback", + "PointerEvent", + "ProgressEvent", + "ReadableStream", + "ReferrerPolicy", + "Request", + "RequestCache", + "RequestCredentials", + "RequestInit", + "RequestMode", + "RequestRedirect", + "Response", + "ResponseInit", + "ResponseType", + "ServiceWorkerGlobalScope", + "ShadowRoot", + "Storage", + "SubmitEvent", + "Text", + "TouchEvent", + "TransitionEvent", + "UiEvent", + "Url", + "UrlSearchParams", + "WebSocket", + "WheelEvent", + "Window", + "Worker", + "WorkerGlobalScope", + "WorkerOptions", + "console", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0" + ], + "deps": [ + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#which@4.4.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "home", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(windows, unix, target_os = \"redox\"))" + } + ] + }, + { + "name": "rustix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wyz@0.5.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1" + ], + "deps": [ + { + "name": "tap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5" + ], + "deps": [ + { + "name": "rustix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))" + } + ] + } + ], + "features": [ + "default", + "unsupported" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", + "dependencies": [], + "deps": [], + "features": [ + "xxh64" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0" + ], + "deps": [ + { + "name": "console_error_panic_hook", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "gloo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "implicit_clone", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "prokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "slab", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tokio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "csr", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "boolinator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "prettyplease", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro_error", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0" + ], + "deps": [ + { + "name": "gloo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "route_recognizer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yew_router_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0" + ], + "deps": [ + { + "name": "yew", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "BootstrapHeartFill", + "data_uri", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "stable_deref_trait", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yoke_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "derive", + "zerofrom" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "synstructure", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", + "dependencies": [], + "deps": [], + "features": [ + "simd" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", + "dependencies": [], + "deps": [], + "features": [ + "simd" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6" + ], + "deps": [ + { + "name": "zerofrom_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "derive" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "synstructure", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3" + ], + "deps": [ + { + "name": "yoke", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "derive", + "yoke" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2" + ], + "deps": [ + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "flate2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zopfli", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "_deflate-any", + "deflate", + "deflate-flate2", + "deflate-zopfli", + "flate2", + "zopfli" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7" + ], + "deps": [ + { + "name": "bumpalo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "simd_adler32", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "gzip", + "std", + "zlib" + ] + } + ], + "root": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0" + }, + "target_directory": "/home/bibi/Desktop/mx-sdk-rs/target", + "version": 1, + "workspace_root": "/home/bibi/Desktop/mx-sdk-rs", + "metadata": null +} \ No newline at end of file diff --git a/contracts/examples/multisig/file.txt b/contracts/examples/multisig/file.txt new file mode 100644 index 0000000000..52b67737ac --- /dev/null +++ b/contracts/examples/multisig/file.txt @@ -0,0 +1,841 @@ +multisig +multiversx-sc-modules +multiversx-sc +multiversx-chain-core +multiversx-sc-codec +multiversx-sc-codec-derive +hex +proc-macro2 +unicode-ident +quote +proc-macro2 +syn +proc-macro2 +quote +unicode-ident +arrayvec +bitflags +num-bigint +num-integer +num-traits +[build-dependencies] +autocfg +num-traits +unwrap-infallible +[dev-dependencies] +multiversx-sc-codec-derive +bitflags +multiversx-sc-codec +multiversx-sc-derive +hex +proc-macro2 +quote +radix_trie +endian-type +nibble_vec +smallvec +syn +bitflags +generic-array +typenum +hex-literal +num-traits +unwrap-infallible +multiversx-sc +[dev-dependencies] +multiversx-sc-scenario +multiversx-chain-vm-executor +serde +serde_derive +proc-macro2 +quote +syn +toml +serde +serde_spanned +serde +toml_datetime +serde +toml_edit +indexmap +equivalent +hashbrown +allocator-api2 +equivalent +foldhash +serde +serde +serde +serde_spanned +toml_datetime +winnow +memchr +multiversx-chain-vm +multiversx-chain-vm-executor-wasmer-experimental +multiversx-chain-vm-executor +anyhow +chrono +iana-time-zone +num-traits +log +loupe +indexmap +hashbrown +ahash +getrandom +cfg-if +libc +once_cell +[build-dependencies] +version_check +serde +[build-dependencies] +autocfg +loupe-derive +quote +syn +proc-macro2 +quote +unicode-ident +rustversion +rc-new-cyclic-fallible +wasmer-types +bytecheck +bytecheck_derive +proc-macro2 +quote +syn +ptr_meta +ptr_meta_derive +proc-macro2 +quote +syn +simdutf8 +enum-iterator +enum-iterator-derive +proc-macro2 +quote +syn +enumset +enumset_derive +darling +darling_core +fnv +ident_case +proc-macro2 +quote +syn +darling_macro +darling_core +quote +syn +proc-macro2 +quote +syn +getrandom +hex +indexmap +more-asserts +rkyv +bytecheck +bytecheck_derive +proc-macro2 +quote +syn +ptr_meta +ptr_meta_derive +proc-macro2 +quote +syn +rancor +ptr_meta +simdutf8 +bytes +hashbrown +indexmap +munge +munge_macro +proc-macro2 +quote +syn +ptr_meta +rancor +rend +bytecheck +rkyv_derive +proc-macro2 +quote +syn +tinyvec +tinyvec_macros +uuid +getrandom +cfg-if +libc +sha2 +cfg-if +cpufeatures +digest +block-buffer +generic-array +typenum +[build-dependencies] +version_check +crypto-common +generic-array +typenum +subtle +target-lexicon +thiserror +thiserror-impl +proc-macro2 +quote +syn +xxhash-rust +wasmer +bytes +cfg-if +derive_more +derive_more-impl +proc-macro2 +quote +syn +unicode-xid +indexmap +more-asserts +paste +rustc-demangle +shared-buffer +bytes +memmap2 +libc +target-lexicon +thiserror +tracing +log +pin-project-lite +tracing-attributes +proc-macro2 +quote +syn +tracing-core +once_cell +wasmer-compiler-singlepass +byteorder +dynasm +bitflags +byteorder +lazy_static +proc-macro-error +proc-macro-error-attr +proc-macro2 +quote +[build-dependencies] +version_check +proc-macro2 +quote +syn +[build-dependencies] +version_check +proc-macro2 +quote +syn +dynasmrt +byteorder +dynasm +memmap2 +libc +enumset +gimli +fallible-iterator +indexmap +stable_deref_trait +more-asserts +rayon +either +rayon-core +crossbeam-deque +crossbeam-epoch +crossbeam-utils +crossbeam-utils +crossbeam-utils +smallvec +wasmer-compiler +backtrace +addr2line +gimli +cfg-if +libc +miniz_oxide +adler2 +object +memchr +rustc-demangle +bytes +cfg-if +enum-iterator +enumset +leb128 +libc +memmap2 +more-asserts +object +crc32fast +cfg-if +flate2 +crc32fast +miniz_oxide +hashbrown +ahash +cfg-if +once_cell +zerocopy +[build-dependencies] +version_check +indexmap +memchr +ruzstd +byteorder +derive_more +proc-macro2 +quote +syn +twox-hash +cfg-if +static_assertions +region +bitflags +libc +rkyv +self_cell +shared-buffer +smallvec +target-lexicon +thiserror +wasmer-types +wasmer-vm +backtrace +cfg-if +corosensei +cfg-if +libc +scopeguard +[build-dependencies] +autocfg +crossbeam-queue +crossbeam-utils +dashmap +cfg-if +crossbeam-utils +hashbrown +lock_api +scopeguard +[build-dependencies] +autocfg +once_cell +parking_lot_core +cfg-if +libc +smallvec +enum-iterator +fnv +indexmap +libc +libunwind +memoffset +[build-dependencies] +autocfg +more-asserts +region +scopeguard +thiserror +wasmer-types +[build-dependencies] +cc +shlex +wasmparser +bitflags +xxhash-rust +wasmer-types +wasmer-compiler +wasmer-derive +proc-macro-error2 +proc-macro-error-attr2 +proc-macro2 +quote +proc-macro2 +quote +syn +proc-macro2 +quote +syn +wasmer-types +wasmer-vm +wasmparser +wat +wast +bumpalo +leb128fmt +memchr +unicode-width +wasm-encoder +leb128fmt +wasmparser +bitflags +indexmap +semver +serde +[build-dependencies] +bindgen +bitflags +cexpr +nom +memchr +minimal-lexical +clang-sys +glob +libc +libloading +cfg-if +[build-dependencies] +glob +itertools +either +log +prettyplease +proc-macro2 +syn +proc-macro2 +quote +regex +aho-corasick +memchr +memchr +regex-automata +aho-corasick +memchr +regex-syntax +regex-syntax +rustc-hash +shlex +syn +cmake +cc +tar +filetime +cfg-if +libc +libc +xattr +rustix +bitflags +errno +libc +libc +linux-raw-sys +ureq +base64 +flate2 +log +once_cell +rustls-pki-types +rustls +log +once_cell +ring +cfg-if +getrandom +untrusted +[build-dependencies] +cc +rustls-pki-types +rustls-webpki +ring +rustls-pki-types +untrusted +subtle +zeroize +url +form_urlencoded +percent-encoding +idna +idna_adapter +icu_normalizer +displaydoc +proc-macro2 +quote +syn +icu_collections +displaydoc +yoke +serde +stable_deref_trait +yoke-derive +proc-macro2 +quote +syn +synstructure +proc-macro2 +quote +syn +zerofrom +zerofrom-derive +proc-macro2 +quote +syn +synstructure +zerofrom +zerovec +yoke +zerofrom +zerovec-derive +proc-macro2 +quote +syn +icu_normalizer_data +icu_properties +displaydoc +icu_collections +icu_locid_transform +displaydoc +icu_locid +displaydoc +litemap +tinystr +displaydoc +zerovec +writeable +zerovec +icu_locid_transform_data +icu_provider +displaydoc +icu_locid +icu_provider_macros +proc-macro2 +quote +syn +stable_deref_trait +tinystr +writeable +yoke +zerofrom +zerovec +tinystr +zerovec +icu_properties_data +icu_provider +tinystr +zerovec +icu_provider +smallvec +utf16_iter +utf8_iter +write16 +zerovec +icu_properties +smallvec +utf8_iter +percent-encoding +webpki-roots +rustls-pki-types +multiversx-chain-vm-executor-wasmer +multiversx-chain-vm-executor +wasmer +wasmer-compiler-singlepass +wasmer-compiler +wasmparser +wasmer-types +indexmap +loupe +rkyv +bitvec +funty +radium +tap +wyz +tap +bytecheck +bytes +hashbrown +ptr_meta +rend +bytecheck +rkyv_derive +proc-macro2 +quote +syn +seahash +tinyvec +uuid +serde +thiserror +wasmer-vm +wasmer-types +backtrace +cfg-if +enum-iterator +indexmap +libc +loupe +memoffset +[build-dependencies] +autocfg +more-asserts +region +rkyv +serde +thiserror +[build-dependencies] +cc +enumset +loupe +rkyv +serde +serde_bytes +serde +smallvec +target-lexicon +thiserror +wasmer-types +wasmer-vm +byteorder +dynasm +dynasmrt +lazy_static +loupe +more-asserts +rayon +smallvec +wasmer-compiler +wasmer-derive +proc-macro-error +proc-macro2 +quote +syn +wasmer-engine-dylib +wasmer-compiler +wasmer-engine +wasmer-compiler +wasmer-types +wasmer-vm +backtrace +enumset +lazy_static +loupe +memmap2 +more-asserts +rustc-demangle +serde +serde_bytes +target-lexicon +thiserror +wasmer-object +wasmer-compiler +wasmer-types +object +crc32fast +hashbrown +ahash +indexmap +memchr +thiserror +wasmer-types +wasmer-vm +cfg-if +enum-iterator +enumset +leb128 +libloading +cfg-if +loupe +object +rkyv +serde +tempfile +fastrand +getrandom +once_cell +rustix +tracing +which +either +home +rustix +bitflags +errno +libc +linux-raw-sys +wasmer-engine-universal +wasmer-compiler +wasmer-engine +wasmer-types +wasmer-vm +cfg-if +enum-iterator +enumset +leb128 +loupe +region +rkyv +wasmer-engine +wasmer-types +wasmer-vm +cfg-if +indexmap +loupe +more-asserts +target-lexicon +thiserror +wat +wasmer-types +wasmer-vm +anyhow +chrono +log +loupe +multiversx-chain-vm-executor +multiversx-chain-core +anyhow +bitflags +colored +ed25519-dalek +curve25519-dalek +cfg-if +cpufeatures +curve25519-dalek-derive +proc-macro2 +quote +syn +digest +subtle +zeroize +[build-dependencies] +rustc_version +semver +ed25519 +pkcs8 +der +const-oid +zeroize +spki +base64ct +der +signature +rand_core +getrandom +serde +sha2 +subtle +zeroize +hex-literal +hex +itertools +either +num-bigint +num-traits +rand +libc +rand_chacha +ppv-lite86 +zerocopy +rand_core +rand_core +rand_seeder +rand_core +serde +sha2 +sha3 +digest +keccak +toml +multiversx-sc +multiversx-sc-meta-lib +multiversx-sc +clap +clap_builder +anstream +anstyle-parse +utf8parse +anstyle-query +anstyle +colorchoice +is_terminal_polyfill +utf8parse +anstyle +clap_lex +strsim +clap_derive +heck +proc-macro2 +quote +syn +colored +convert_case +unicode-segmentation +hex +lazy_static +rustc_version +semver +serde +serde_json +indexmap +itoa +memchr +ryu +serde +toml +indexmap +serde +serde_spanned +toml_datetime +toml_edit +indexmap +serde +serde_spanned +toml_datetime +toml_write +winnow +memchr +wasmparser +bitflags +hashbrown +indexmap +semver +serde +wasmprinter +anyhow +termcolor +wasmparser +wat +multiversx-chain-scenario-format +bech32 +hex +num-bigint +num-traits +serde +serde_json +sha3 +base64 +bech32 +colored +hex +itertools +log +num-bigint +num-traits +pathdiff +serde +serde_json +sha2 +simple-error +unwrap-infallible +hex +num-bigint +num-traits + /home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig + +Found 1 contract crates. + +(1/1) +In /home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta +Calling `cargo run clean` diff --git a/contracts/examples/multisig/file2.txt b/contracts/examples/multisig/file2.txt new file mode 100644 index 0000000000..de7456b3b2 --- /dev/null +++ b/contracts/examples/multisig/file2.txt @@ -0,0 +1,633 @@ +multisig v1.0.0 (/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig) +├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) +│ ├── bitflags v2.9.0 +│ ├── generic-array v1.2.0 +│ │ └── typenum v1.18.0 +│ ├── hex-literal v0.4.1 +│ ├── multiversx-chain-core v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/core) +│ │ ├── bitflags v2.9.0 +│ │ └── multiversx-sc-codec v0.22.0 (/home/bibi/Desktop/mx-sdk-rs/data/codec) +│ │ ├── arrayvec v0.7.6 +│ │ ├── bitflags v2.9.0 +│ │ ├── multiversx-sc-codec-derive v0.22.0 (proc-macro) (/home/bibi/Desktop/mx-sdk-rs/data/codec-derive) +│ │ │ ├── hex v0.4.3 +│ │ │ ├── proc-macro2 v1.0.94 +│ │ │ │ └── unicode-ident v1.0.18 +│ │ │ ├── quote v1.0.39 +│ │ │ │ └── proc-macro2 v1.0.94 (*) +│ │ │ └── syn v2.0.100 +│ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ ├── quote v1.0.39 (*) +│ │ │ └── unicode-ident v1.0.18 +│ │ ├── num-bigint v0.4.6 +│ │ │ ├── num-integer v0.1.46 +│ │ │ │ └── num-traits v0.2.19 +│ │ │ │ [build-dependencies] +│ │ │ │ └── autocfg v1.4.0 +│ │ │ └── num-traits v0.2.19 (*) +│ │ └── unwrap-infallible v0.1.5 +│ ├── multiversx-sc-codec v0.22.0 (/home/bibi/Desktop/mx-sdk-rs/data/codec) (*) +│ ├── multiversx-sc-derive v0.57.1 (proc-macro) (/home/bibi/Desktop/mx-sdk-rs/framework/derive) +│ │ ├── hex v0.4.3 +│ │ ├── proc-macro2 v1.0.94 (*) +│ │ ├── quote v1.0.39 (*) +│ │ ├── radix_trie v0.2.1 +│ │ │ ├── endian-type v0.1.2 +│ │ │ └── nibble_vec v0.1.0 +│ │ │ └── smallvec v1.15.0 +│ │ └── syn v2.0.100 (*) +│ ├── num-traits v0.2.19 (*) +│ └── unwrap-infallible v0.1.5 +└── multiversx-sc-modules v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/contracts/modules) + └── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) +[dev-dependencies] +├── hex v0.4.3 +├── multiversx-sc-scenario v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/scenario) +│ ├── base64 v0.22.1 +│ ├── bech32 v0.11.0 +│ ├── colored v3.0.0 +│ ├── hex v0.4.3 +│ ├── itertools v0.14.0 +│ │ └── either v1.15.0 +│ ├── log v0.4.27 +│ ├── multiversx-chain-scenario-format v0.23.1 (/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format) +│ │ ├── bech32 v0.11.0 +│ │ ├── hex v0.4.3 +│ │ ├── num-bigint v0.4.6 (*) +│ │ ├── num-traits v0.2.19 (*) +│ │ ├── serde v1.0.219 +│ │ │ └── serde_derive v1.0.219 (proc-macro) +│ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ ├── quote v1.0.39 (*) +│ │ │ └── syn v2.0.100 (*) +│ │ ├── serde_json v1.0.140 +│ │ │ ├── itoa v1.0.15 +│ │ │ ├── memchr v2.7.4 +│ │ │ ├── ryu v1.0.20 +│ │ │ └── serde v1.0.219 (*) +│ │ └── sha3 v0.10.8 +│ │ ├── digest v0.10.7 +│ │ │ ├── block-buffer v0.10.4 +│ │ │ │ └── generic-array v0.14.7 +│ │ │ │ └── typenum v1.18.0 +│ │ │ │ [build-dependencies] +│ │ │ │ └── version_check v0.9.5 +│ │ │ └── crypto-common v0.1.6 +│ │ │ ├── generic-array v0.14.7 (*) +│ │ │ └── typenum v1.18.0 +│ │ └── keccak v0.1.5 +│ ├── multiversx-chain-vm v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/vm) +│ │ ├── anyhow v1.0.98 +│ │ ├── bitflags v2.9.0 +│ │ ├── colored v3.0.0 +│ │ ├── ed25519-dalek v2.1.1 +│ │ │ ├── curve25519-dalek v4.1.3 +│ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ ├── cpufeatures v0.2.17 +│ │ │ │ ├── curve25519-dalek-derive v0.1.1 (proc-macro) +│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ ├── digest v0.10.7 (*) +│ │ │ │ ├── subtle v2.6.1 +│ │ │ │ └── zeroize v1.8.1 +│ │ │ │ [build-dependencies] +│ │ │ │ └── rustc_version v0.4.1 +│ │ │ │ └── semver v1.0.26 +│ │ │ ├── ed25519 v2.2.3 +│ │ │ │ └── signature v2.2.0 +│ │ │ ├── sha2 v0.10.9 +│ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ ├── cpufeatures v0.2.17 +│ │ │ │ └── digest v0.10.7 (*) +│ │ │ ├── subtle v2.6.1 +│ │ │ └── zeroize v1.8.1 +│ │ ├── hex v0.4.3 +│ │ ├── hex-literal v0.4.1 +│ │ ├── itertools v0.14.0 (*) +│ │ ├── multiversx-chain-core v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/core) (*) +│ │ ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) +│ │ │ ├── serde v1.0.219 (*) +│ │ │ └── toml v0.7.8 +│ │ │ ├── serde v1.0.219 (*) +│ │ │ ├── serde_spanned v0.6.8 +│ │ │ │ └── serde v1.0.219 (*) +│ │ │ ├── toml_datetime v0.6.9 +│ │ │ │ └── serde v1.0.219 (*) +│ │ │ └── toml_edit v0.19.15 +│ │ │ ├── indexmap v2.9.0 +│ │ │ │ ├── equivalent v1.0.2 +│ │ │ │ ├── hashbrown v0.15.2 +│ │ │ │ │ ├── foldhash v0.1.5 +│ │ │ │ │ └── serde v1.0.219 (*) +│ │ │ │ └── serde v1.0.219 (*) +│ │ │ ├── serde v1.0.219 (*) +│ │ │ ├── serde_spanned v0.6.8 (*) +│ │ │ ├── toml_datetime v0.6.9 (*) +│ │ │ └── winnow v0.5.40 +│ │ ├── multiversx-chain-vm-executor-wasmer-experimental v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) +│ │ │ ├── anyhow v1.0.98 +│ │ │ ├── chrono v0.4.41 +│ │ │ │ ├── iana-time-zone v0.1.63 +│ │ │ │ └── num-traits v0.2.19 (*) +│ │ │ ├── log v0.4.27 +│ │ │ ├── loupe v0.1.3 +│ │ │ │ ├── loupe-derive v0.1.3 (proc-macro) +│ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ └── syn v1.0.109 +│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ └── unicode-ident v1.0.18 +│ │ │ │ └── rustversion v1.0.20 (proc-macro) +│ │ │ ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) (*) +│ │ │ ├── rc-new-cyclic-fallible v1.0.0 +│ │ │ ├── wasmer v6.0.0 +│ │ │ │ ├── bytes v1.10.1 +│ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ ├── derive_more v1.0.0 +│ │ │ │ │ └── derive_more-impl v1.0.0 (proc-macro) +│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ ├── syn v2.0.100 (*) +│ │ │ │ │ └── unicode-xid v0.2.6 +│ │ │ │ ├── indexmap v2.9.0 (*) +│ │ │ │ ├── more-asserts v0.2.2 +│ │ │ │ ├── paste v1.0.15 (proc-macro) +│ │ │ │ ├── rustc-demangle v0.1.24 +│ │ │ │ ├── shared-buffer v0.1.4 +│ │ │ │ │ ├── bytes v1.10.1 +│ │ │ │ │ └── memmap2 v0.6.2 +│ │ │ │ │ └── libc v0.2.172 +│ │ │ │ ├── target-lexicon v0.12.16 +│ │ │ │ ├── thiserror v1.0.69 +│ │ │ │ │ └── thiserror-impl v1.0.69 (proc-macro) +│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ ├── tracing v0.1.41 +│ │ │ │ │ ├── pin-project-lite v0.2.16 +│ │ │ │ │ ├── tracing-attributes v0.1.28 (proc-macro) +│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ └── tracing-core v0.1.33 +│ │ │ │ │ └── once_cell v1.21.3 +│ │ │ │ ├── wasmer-compiler v6.0.0 +│ │ │ │ │ ├── backtrace v0.3.74 +│ │ │ │ │ │ ├── addr2line v0.24.2 +│ │ │ │ │ │ │ └── gimli v0.31.1 +│ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ ├── libc v0.2.172 +│ │ │ │ │ │ ├── miniz_oxide v0.8.8 +│ │ │ │ │ │ │ └── adler2 v2.0.0 +│ │ │ │ │ │ ├── object v0.36.7 +│ │ │ │ │ │ │ └── memchr v2.7.4 +│ │ │ │ │ │ └── rustc-demangle v0.1.24 +│ │ │ │ │ ├── bytes v1.10.1 +│ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ ├── enum-iterator v0.7.0 +│ │ │ │ │ │ └── enum-iterator-derive v0.7.0 (proc-macro) +│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ └── syn v1.0.109 (*) +│ │ │ │ │ ├── enumset v1.1.5 +│ │ │ │ │ │ └── enumset_derive v0.10.0 (proc-macro) +│ │ │ │ │ │ ├── darling v0.20.11 +│ │ │ │ │ │ │ ├── darling_core v0.20.11 +│ │ │ │ │ │ │ │ ├── fnv v1.0.7 +│ │ │ │ │ │ │ │ ├── ident_case v1.0.1 +│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ │ └── darling_macro v0.20.11 (proc-macro) +│ │ │ │ │ │ │ ├── darling_core v0.20.11 (*) +│ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ ├── leb128 v0.2.5 +│ │ │ │ │ ├── libc v0.2.172 +│ │ │ │ │ ├── memmap2 v0.6.2 (*) +│ │ │ │ │ ├── more-asserts v0.2.2 +│ │ │ │ │ ├── object v0.32.2 +│ │ │ │ │ │ ├── crc32fast v1.4.2 +│ │ │ │ │ │ │ └── cfg-if v1.0.0 +│ │ │ │ │ │ ├── flate2 v1.1.1 +│ │ │ │ │ │ │ ├── crc32fast v1.4.2 (*) +│ │ │ │ │ │ │ └── miniz_oxide v0.8.8 (*) +│ │ │ │ │ │ ├── hashbrown v0.14.5 +│ │ │ │ │ │ │ └── ahash v0.8.11 +│ │ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ │ ├── once_cell v1.21.3 +│ │ │ │ │ │ │ └── zerocopy v0.7.35 +│ │ │ │ │ │ │ [build-dependencies] +│ │ │ │ │ │ │ └── version_check v0.9.5 +│ │ │ │ │ │ ├── indexmap v2.9.0 (*) +│ │ │ │ │ │ ├── memchr v2.7.4 +│ │ │ │ │ │ └── ruzstd v0.5.0 +│ │ │ │ │ │ ├── byteorder v1.5.0 +│ │ │ │ │ │ ├── derive_more v0.99.20 (proc-macro) +│ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ └── twox-hash v1.6.3 +│ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ └── static_assertions v1.1.0 +│ │ │ │ │ ├── region v3.0.2 +│ │ │ │ │ │ ├── bitflags v1.3.2 +│ │ │ │ │ │ └── libc v0.2.172 +│ │ │ │ │ ├── rkyv v0.8.10 +│ │ │ │ │ │ ├── bytecheck v0.8.1 +│ │ │ │ │ │ │ ├── bytecheck_derive v0.8.1 (proc-macro) +│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ │ ├── ptr_meta v0.3.0 +│ │ │ │ │ │ │ │ └── ptr_meta_derive v0.3.0 (proc-macro) +│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ │ ├── rancor v0.1.0 +│ │ │ │ │ │ │ │ └── ptr_meta v0.3.0 (*) +│ │ │ │ │ │ │ └── simdutf8 v0.1.5 +│ │ │ │ │ │ ├── bytes v1.10.1 +│ │ │ │ │ │ ├── hashbrown v0.15.2 (*) +│ │ │ │ │ │ ├── indexmap v2.9.0 (*) +│ │ │ │ │ │ ├── munge v0.4.4 +│ │ │ │ │ │ │ └── munge_macro v0.4.4 (proc-macro) +│ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ ├── ptr_meta v0.3.0 (*) +│ │ │ │ │ │ ├── rancor v0.1.0 (*) +│ │ │ │ │ │ ├── rend v0.5.2 +│ │ │ │ │ │ │ └── bytecheck v0.8.1 (*) +│ │ │ │ │ │ └── rkyv_derive v0.8.10 (proc-macro) +│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ ├── self_cell v1.2.0 +│ │ │ │ │ ├── shared-buffer v0.1.4 (*) +│ │ │ │ │ ├── smallvec v1.15.0 +│ │ │ │ │ ├── target-lexicon v0.12.16 +│ │ │ │ │ ├── thiserror v1.0.69 (*) +│ │ │ │ │ ├── wasmer-types v6.0.0 +│ │ │ │ │ │ ├── bytecheck v0.6.12 +│ │ │ │ │ │ │ ├── bytecheck_derive v0.6.12 (proc-macro) +│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ └── syn v1.0.109 (*) +│ │ │ │ │ │ │ ├── ptr_meta v0.1.4 +│ │ │ │ │ │ │ │ └── ptr_meta_derive v0.1.4 (proc-macro) +│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ └── syn v1.0.109 (*) +│ │ │ │ │ │ │ └── simdutf8 v0.1.5 +│ │ │ │ │ │ ├── enum-iterator v0.7.0 (*) +│ │ │ │ │ │ ├── enumset v1.1.5 (*) +│ │ │ │ │ │ ├── getrandom v0.2.16 +│ │ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ │ └── libc v0.2.172 +│ │ │ │ │ │ ├── hex v0.4.3 +│ │ │ │ │ │ ├── indexmap v2.9.0 (*) +│ │ │ │ │ │ ├── more-asserts v0.2.2 +│ │ │ │ │ │ ├── rkyv v0.8.10 (*) +│ │ │ │ │ │ ├── sha2 v0.10.9 (*) +│ │ │ │ │ │ ├── target-lexicon v0.12.16 +│ │ │ │ │ │ ├── thiserror v1.0.69 (*) +│ │ │ │ │ │ └── xxhash-rust v0.8.15 +│ │ │ │ │ ├── wasmer-vm v6.0.0 +│ │ │ │ │ │ ├── backtrace v0.3.74 (*) +│ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ ├── corosensei v0.2.1 +│ │ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ │ ├── libc v0.2.172 +│ │ │ │ │ │ │ └── scopeguard v1.2.0 +│ │ │ │ │ │ │ [build-dependencies] +│ │ │ │ │ │ │ └── autocfg v1.4.0 +│ │ │ │ │ │ ├── crossbeam-queue v0.3.12 +│ │ │ │ │ │ │ └── crossbeam-utils v0.8.21 +│ │ │ │ │ │ ├── dashmap v6.1.0 +│ │ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ │ ├── crossbeam-utils v0.8.21 +│ │ │ │ │ │ │ ├── hashbrown v0.14.5 (*) +│ │ │ │ │ │ │ ├── lock_api v0.4.12 +│ │ │ │ │ │ │ │ └── scopeguard v1.2.0 +│ │ │ │ │ │ │ │ [build-dependencies] +│ │ │ │ │ │ │ │ └── autocfg v1.4.0 +│ │ │ │ │ │ │ ├── once_cell v1.21.3 +│ │ │ │ │ │ │ └── parking_lot_core v0.9.10 +│ │ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ │ ├── libc v0.2.172 +│ │ │ │ │ │ │ └── smallvec v1.15.0 +│ │ │ │ │ │ ├── enum-iterator v0.7.0 (*) +│ │ │ │ │ │ ├── fnv v1.0.7 +│ │ │ │ │ │ ├── indexmap v2.9.0 (*) +│ │ │ │ │ │ ├── libc v0.2.172 +│ │ │ │ │ │ ├── libunwind v1.3.3 +│ │ │ │ │ │ ├── memoffset v0.9.1 +│ │ │ │ │ │ │ [build-dependencies] +│ │ │ │ │ │ │ └── autocfg v1.4.0 +│ │ │ │ │ │ ├── more-asserts v0.2.2 +│ │ │ │ │ │ ├── region v3.0.2 (*) +│ │ │ │ │ │ ├── scopeguard v1.2.0 +│ │ │ │ │ │ ├── thiserror v1.0.69 (*) +│ │ │ │ │ │ └── wasmer-types v6.0.0 (*) +│ │ │ │ │ │ [build-dependencies] +│ │ │ │ │ │ └── cc v1.2.20 +│ │ │ │ │ │ └── shlex v1.3.0 +│ │ │ │ │ ├── wasmparser v0.224.1 +│ │ │ │ │ │ └── bitflags v2.9.0 +│ │ │ │ │ └── xxhash-rust v0.8.15 +│ │ │ │ ├── wasmer-compiler-singlepass v6.0.0 +│ │ │ │ │ ├── byteorder v1.5.0 +│ │ │ │ │ ├── dynasm v1.2.3 (proc-macro) +│ │ │ │ │ │ ├── bitflags v1.3.2 +│ │ │ │ │ │ ├── byteorder v1.5.0 +│ │ │ │ │ │ ├── lazy_static v1.5.0 +│ │ │ │ │ │ ├── proc-macro-error v1.0.4 +│ │ │ │ │ │ │ ├── proc-macro-error-attr v1.0.4 (proc-macro) +│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ └── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ [build-dependencies] +│ │ │ │ │ │ │ │ └── version_check v0.9.5 +│ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ └── syn v1.0.109 (*) +│ │ │ │ │ │ │ [build-dependencies] +│ │ │ │ │ │ │ └── version_check v0.9.5 +│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ └── syn v1.0.109 (*) +│ │ │ │ │ ├── dynasmrt v1.2.3 +│ │ │ │ │ │ ├── byteorder v1.5.0 +│ │ │ │ │ │ ├── dynasm v1.2.3 (proc-macro) (*) +│ │ │ │ │ │ └── memmap2 v0.5.10 +│ │ │ │ │ │ └── libc v0.2.172 +│ │ │ │ │ ├── enumset v1.1.5 (*) +│ │ │ │ │ ├── gimli v0.28.1 +│ │ │ │ │ │ ├── fallible-iterator v0.3.0 +│ │ │ │ │ │ ├── indexmap v2.9.0 (*) +│ │ │ │ │ │ └── stable_deref_trait v1.2.0 +│ │ │ │ │ ├── more-asserts v0.2.2 +│ │ │ │ │ ├── rayon v1.10.0 +│ │ │ │ │ │ ├── either v1.15.0 +│ │ │ │ │ │ └── rayon-core v1.12.1 +│ │ │ │ │ │ ├── crossbeam-deque v0.8.6 +│ │ │ │ │ │ │ ├── crossbeam-epoch v0.9.18 +│ │ │ │ │ │ │ │ └── crossbeam-utils v0.8.21 +│ │ │ │ │ │ │ └── crossbeam-utils v0.8.21 +│ │ │ │ │ │ └── crossbeam-utils v0.8.21 +│ │ │ │ │ ├── smallvec v1.15.0 +│ │ │ │ │ ├── wasmer-compiler v6.0.0 (*) +│ │ │ │ │ └── wasmer-types v6.0.0 (*) +│ │ │ │ ├── wasmer-derive v6.0.0 (proc-macro) +│ │ │ │ │ ├── proc-macro-error2 v2.0.1 +│ │ │ │ │ │ ├── proc-macro-error-attr2 v2.0.0 (proc-macro) +│ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ └── quote v1.0.39 (*) +│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ └── syn v1.0.109 (*) +│ │ │ │ ├── wasmer-types v6.0.0 (*) +│ │ │ │ ├── wasmer-vm v6.0.0 (*) +│ │ │ │ ├── wasmparser v0.224.1 (*) +│ │ │ │ └── wat v1.229.0 +│ │ │ │ └── wast v229.0.0 +│ │ │ │ ├── bumpalo v3.17.0 +│ │ │ │ ├── leb128fmt v0.1.0 +│ │ │ │ ├── memchr v2.7.4 +│ │ │ │ ├── unicode-width v0.2.0 +│ │ │ │ └── wasm-encoder v0.229.0 +│ │ │ │ └── leb128fmt v0.1.0 +│ │ │ │ [build-dependencies] +│ │ │ │ ├── bindgen v0.70.1 +│ │ │ │ │ ├── bitflags v2.9.0 +│ │ │ │ │ ├── cexpr v0.6.0 +│ │ │ │ │ │ └── nom v7.1.3 +│ │ │ │ │ │ ├── memchr v2.7.4 +│ │ │ │ │ │ └── minimal-lexical v0.2.1 +│ │ │ │ │ ├── clang-sys v1.8.1 +│ │ │ │ │ │ ├── glob v0.3.2 +│ │ │ │ │ │ ├── libc v0.2.172 +│ │ │ │ │ │ └── libloading v0.8.6 +│ │ │ │ │ │ └── cfg-if v1.0.0 +│ │ │ │ │ │ [build-dependencies] +│ │ │ │ │ │ └── glob v0.3.2 +│ │ │ │ │ ├── itertools v0.13.0 +│ │ │ │ │ │ └── either v1.15.0 +│ │ │ │ │ ├── log v0.4.27 +│ │ │ │ │ ├── prettyplease v0.2.32 +│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ ├── regex v1.11.1 +│ │ │ │ │ │ ├── regex-automata v0.4.9 +│ │ │ │ │ │ │ └── regex-syntax v0.8.5 +│ │ │ │ │ │ └── regex-syntax v0.8.5 +│ │ │ │ │ ├── rustc-hash v1.1.0 +│ │ │ │ │ ├── shlex v1.3.0 +│ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ ├── cmake v0.1.54 +│ │ │ │ │ └── cc v1.2.20 (*) +│ │ │ │ ├── tar v0.4.44 +│ │ │ │ │ ├── filetime v0.2.25 +│ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ └── libc v0.2.172 +│ │ │ │ │ ├── libc v0.2.172 +│ │ │ │ │ └── xattr v1.5.0 +│ │ │ │ │ └── rustix v1.0.5 +│ │ │ │ │ ├── bitflags v2.9.0 +│ │ │ │ │ └── linux-raw-sys v0.9.4 +│ │ │ │ └── ureq v2.12.1 +│ │ │ │ ├── base64 v0.22.1 +│ │ │ │ ├── flate2 v1.1.1 (*) +│ │ │ │ ├── log v0.4.27 +│ │ │ │ ├── once_cell v1.21.3 +│ │ │ │ ├── rustls v0.23.26 +│ │ │ │ │ ├── log v0.4.27 +│ │ │ │ │ ├── once_cell v1.21.3 +│ │ │ │ │ ├── ring v0.17.14 +│ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ ├── getrandom v0.2.16 +│ │ │ │ │ │ │ ├── cfg-if v1.0.0 +│ │ │ │ │ │ │ └── libc v0.2.172 +│ │ │ │ │ │ └── untrusted v0.9.0 +│ │ │ │ │ │ [build-dependencies] +│ │ │ │ │ │ └── cc v1.2.20 (*) +│ │ │ │ │ ├── rustls-pki-types v1.11.0 +│ │ │ │ │ ├── rustls-webpki v0.103.1 +│ │ │ │ │ │ ├── ring v0.17.14 (*) +│ │ │ │ │ │ ├── rustls-pki-types v1.11.0 +│ │ │ │ │ │ └── untrusted v0.9.0 +│ │ │ │ │ ├── subtle v2.6.1 +│ │ │ │ │ └── zeroize v1.8.1 +│ │ │ │ ├── rustls-pki-types v1.11.0 +│ │ │ │ ├── url v2.5.4 +│ │ │ │ │ ├── form_urlencoded v1.2.1 +│ │ │ │ │ │ └── percent-encoding v2.3.1 +│ │ │ │ │ ├── idna v1.0.3 +│ │ │ │ │ │ ├── idna_adapter v1.2.0 +│ │ │ │ │ │ │ ├── icu_normalizer v1.5.0 +│ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) +│ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ │ │ ├── icu_collections v1.5.0 +│ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) +│ │ │ │ │ │ │ │ │ ├── yoke v0.7.5 +│ │ │ │ │ │ │ │ │ │ ├── stable_deref_trait v1.2.0 +│ │ │ │ │ │ │ │ │ │ ├── yoke-derive v0.7.5 (proc-macro) +│ │ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ │ │ │ ├── syn v2.0.100 (*) +│ │ │ │ │ │ │ │ │ │ │ └── synstructure v0.13.1 +│ │ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ │ │ │ │ └── zerofrom v0.1.6 +│ │ │ │ │ │ │ │ │ │ └── zerofrom-derive v0.1.6 (proc-macro) +│ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ │ │ ├── syn v2.0.100 (*) +│ │ │ │ │ │ │ │ │ │ └── synstructure v0.13.1 (*) +│ │ │ │ │ │ │ │ │ ├── zerofrom v0.1.6 (*) +│ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 +│ │ │ │ │ │ │ │ │ ├── yoke v0.7.5 (*) +│ │ │ │ │ │ │ │ │ ├── zerofrom v0.1.6 (*) +│ │ │ │ │ │ │ │ │ └── zerovec-derive v0.10.3 (proc-macro) +│ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ │ │ ├── icu_normalizer_data v1.5.1 +│ │ │ │ │ │ │ │ ├── icu_properties v1.5.1 +│ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) +│ │ │ │ │ │ │ │ │ ├── icu_collections v1.5.0 (*) +│ │ │ │ │ │ │ │ │ ├── icu_locid_transform v1.5.0 +│ │ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) +│ │ │ │ │ │ │ │ │ │ ├── icu_locid v1.5.0 +│ │ │ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) +│ │ │ │ │ │ │ │ │ │ │ ├── litemap v0.7.5 +│ │ │ │ │ │ │ │ │ │ │ ├── tinystr v0.7.6 +│ │ │ │ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) +│ │ │ │ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) +│ │ │ │ │ │ │ │ │ │ │ ├── writeable v0.5.5 +│ │ │ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) +│ │ │ │ │ │ │ │ │ │ ├── icu_locid_transform_data v1.5.1 +│ │ │ │ │ │ │ │ │ │ ├── icu_provider v1.5.0 +│ │ │ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) +│ │ │ │ │ │ │ │ │ │ │ ├── icu_locid v1.5.0 (*) +│ │ │ │ │ │ │ │ │ │ │ ├── icu_provider_macros v1.5.0 (proc-macro) +│ │ │ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ │ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) +│ │ │ │ │ │ │ │ │ │ │ │ └── syn v2.0.100 (*) +│ │ │ │ │ │ │ │ │ │ │ ├── stable_deref_trait v1.2.0 +│ │ │ │ │ │ │ │ │ │ │ ├── tinystr v0.7.6 (*) +│ │ │ │ │ │ │ │ │ │ │ ├── writeable v0.5.5 +│ │ │ │ │ │ │ │ │ │ │ ├── yoke v0.7.5 (*) +│ │ │ │ │ │ │ │ │ │ │ ├── zerofrom v0.1.6 (*) +│ │ │ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) +│ │ │ │ │ │ │ │ │ │ ├── tinystr v0.7.6 (*) +│ │ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) +│ │ │ │ │ │ │ │ │ ├── icu_properties_data v1.5.1 +│ │ │ │ │ │ │ │ │ ├── icu_provider v1.5.0 (*) +│ │ │ │ │ │ │ │ │ ├── tinystr v0.7.6 (*) +│ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) +│ │ │ │ │ │ │ │ ├── icu_provider v1.5.0 (*) +│ │ │ │ │ │ │ │ ├── smallvec v1.15.0 +│ │ │ │ │ │ │ │ ├── utf16_iter v1.0.5 +│ │ │ │ │ │ │ │ ├── utf8_iter v1.0.4 +│ │ │ │ │ │ │ │ ├── write16 v1.0.0 +│ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) +│ │ │ │ │ │ │ └── icu_properties v1.5.1 (*) +│ │ │ │ │ │ ├── smallvec v1.15.0 +│ │ │ │ │ │ └── utf8_iter v1.0.4 +│ │ │ │ │ └── percent-encoding v2.3.1 +│ │ │ │ └── webpki-roots v0.26.10 +│ │ │ │ └── rustls-pki-types v1.11.0 +│ │ │ └── wasmer-types v6.0.0 (*) +│ │ ├── num-bigint v0.4.6 (*) +│ │ ├── num-traits v0.2.19 (*) +│ │ ├── rand v0.8.5 +│ │ │ ├── libc v0.2.172 +│ │ │ ├── rand_chacha v0.3.1 +│ │ │ │ ├── ppv-lite86 v0.2.21 +│ │ │ │ │ └── zerocopy v0.8.25 +│ │ │ │ └── rand_core v0.6.4 +│ │ │ │ └── getrandom v0.2.16 (*) +│ │ │ └── rand_core v0.6.4 (*) +│ │ ├── rand_seeder v0.3.0 +│ │ │ └── rand_core v0.6.4 (*) +│ │ ├── serde v1.0.219 (*) +│ │ ├── sha2 v0.10.9 (*) +│ │ ├── sha3 v0.10.8 (*) +│ │ └── toml v0.7.8 (*) +│ ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) (*) +│ ├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) +│ ├── multiversx-sc-meta-lib v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib) +│ │ ├── clap v4.5.37 +│ │ │ ├── clap_builder v4.5.37 +│ │ │ │ ├── anstream v0.6.18 +│ │ │ │ │ ├── anstyle v1.0.10 +│ │ │ │ │ ├── anstyle-parse v0.2.6 +│ │ │ │ │ │ └── utf8parse v0.2.2 +│ │ │ │ │ ├── anstyle-query v1.1.2 +│ │ │ │ │ ├── colorchoice v1.0.3 +│ │ │ │ │ ├── is_terminal_polyfill v1.70.1 +│ │ │ │ │ └── utf8parse v0.2.2 +│ │ │ │ ├── anstyle v1.0.10 +│ │ │ │ ├── clap_lex v0.7.4 +│ │ │ │ └── strsim v0.11.1 +│ │ │ └── clap_derive v4.5.32 (proc-macro) +│ │ │ ├── heck v0.5.0 +│ │ │ ├── proc-macro2 v1.0.94 (*) +│ │ │ ├── quote v1.0.39 (*) +│ │ │ └── syn v2.0.100 (*) +│ │ ├── colored v3.0.0 +│ │ ├── convert_case v0.8.0 +│ │ │ └── unicode-segmentation v1.12.0 +│ │ ├── hex v0.4.3 +│ │ ├── lazy_static v1.5.0 +│ │ ├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) +│ │ ├── rustc_version v0.4.1 (*) +│ │ ├── semver v1.0.26 +│ │ ├── serde v1.0.219 (*) +│ │ ├── serde_json v1.0.140 (*) +│ │ ├── toml v0.8.22 +│ │ │ ├── indexmap v2.9.0 (*) +│ │ │ ├── serde v1.0.219 (*) +│ │ │ ├── serde_spanned v0.6.8 (*) +│ │ │ ├── toml_datetime v0.6.9 (*) +│ │ │ └── toml_edit v0.22.26 +│ │ │ ├── indexmap v2.9.0 (*) +│ │ │ ├── serde v1.0.219 (*) +│ │ │ ├── serde_spanned v0.6.8 (*) +│ │ │ ├── toml_datetime v0.6.9 (*) +│ │ │ ├── toml_write v0.1.1 +│ │ │ └── winnow v0.7.7 +│ │ ├── wasmparser v0.227.1 +│ │ │ ├── bitflags v2.9.0 +│ │ │ ├── hashbrown v0.15.2 (*) +│ │ │ ├── indexmap v2.9.0 (*) +│ │ │ ├── semver v1.0.26 +│ │ │ └── serde v1.0.219 (*) +│ │ ├── wasmprinter v0.227.1 +│ │ │ ├── anyhow v1.0.98 +│ │ │ ├── termcolor v1.4.1 +│ │ │ └── wasmparser v0.227.1 (*) +│ │ └── wat v1.229.0 (*) +│ ├── num-bigint v0.4.6 (*) +│ ├── num-traits v0.2.19 (*) +│ ├── pathdiff v0.2.3 +│ ├── serde v1.0.219 (*) +│ ├── serde_json v1.0.140 (*) +│ ├── sha2 v0.10.9 (*) +│ ├── simple-error v0.3.1 +│ └── unwrap-infallible v0.1.5 +├── num-bigint v0.4.6 (*) +└── num-traits v0.2.19 (*) diff --git a/framework/meta/Cargo.toml b/framework/meta/Cargo.toml index bef6e422be..11e10cb088 100644 --- a/framework/meta/Cargo.toml +++ b/framework/meta/Cargo.toml @@ -41,6 +41,8 @@ pathdiff = "0.2.1" common-path = "1.0.0" bip39 = "2.0.0" home = "=0.5.11" +cargo_metadata = "0.19.2" +petgraph = "0.8.1" [dependencies.multiversx-sc-meta-lib] version = "=0.57.1" diff --git a/framework/meta/src/cmd/all.rs b/framework/meta/src/cmd/all.rs index a360afc7c5..6ccc904257 100644 --- a/framework/meta/src/cmd/all.rs +++ b/framework/meta/src/cmd/all.rs @@ -1,12 +1,29 @@ -use super::{ - cargo_toml::check_executor, - print_util::{print_all_command, print_all_count, print_all_index}, +use cargo_metadata::{DependencyKind, Metadata, Package, PackageId}; +use petgraph::{ + graph::NodeIndex, + prelude::StableGraph, + visit::{Dfs, EdgeRef}, + Direction, }; + +use super::print_util::{print_all_command, print_all_count, print_all_index}; use crate::{ cli::AllArgs, folder_structure::{dir_pretty_print, RelevantDirectories}, }; -use std::{path::Path, process::Command}; +use std::{ + collections::{HashMap, HashSet}, + env, + ffi::OsString, + path::Path, + process::{Command, Stdio}, +}; + +pub struct Graph { + pub graph: StableGraph, + pub nodes: HashMap, + pub root: Option, +} pub fn call_all_meta(args: &AllArgs) { let path = if let Some(some_path) = &args.path { @@ -21,7 +38,83 @@ pub fn call_all_meta(args: &AllArgs) { fn perform_call_all_meta(path: &Path, ignore: &[String], raw_args: Vec) { let dirs = RelevantDirectories::find_all(path, ignore); - check_executor(&dirs); + let rustc = env::var_os("RUSTC").unwrap_or_else(|| OsString::from("rustc")); + let rustc_output = output(Command::new(rustc).arg("-Vv")); + + let default_target = rustc_output + .lines() + .find_map(|line| line.strip_prefix("host: ").map(str::trim)) + .map(str::to_string) + .unwrap_or_default(); + + let cargo = env::var_os("CARGO").unwrap_or_else(|| OsString::from("cargo")); + let mut command = Command::new(cargo); + command + .arg("metadata") + .arg("--format-version") + .arg("1") + .arg("--all-features") + .arg("--filter-platform") + .arg(default_target); + + let metadata_command = output(&mut command); + + let metadata: Metadata = + serde_json::from_str(&metadata_command).expect("unable to parse metadata"); + + let resolve = metadata.resolve.unwrap(); + + let mut graph = Graph { + graph: StableGraph::new(), + nodes: HashMap::new(), + root: resolve.root, + }; + + for package in metadata.packages { + let id = package.id.clone(); + let index = graph.graph.add_node(package); + graph.nodes.insert(id, index); + } + + for node in resolve.nodes { + let from = graph.nodes[&node.id]; + for dep in node.deps { + let mut kinds = vec![]; + for kind in dep.dep_kinds { + if !kinds.iter().any(|k| *k == kind.kind) { + kinds.push(kind.kind); + } + } + + let to = graph.nodes[&dep.pkg]; + for kind in kinds { + graph.graph.add_edge(from, to, kind); + } + } + } + + // prune nodes not reachable from the root package (directionally) + if let Some(root) = &graph.root { + let mut dfs = Dfs::new(&graph.graph, graph.nodes[root]); + while dfs.next(&graph.graph).is_some() {} + + let g = &mut graph.graph; + graph.nodes.retain(|_, idx| { + if !dfs.discovered.contains(idx.index()) { + g.remove_node(*idx); + false + } else { + true + } + }); + } + + let root = graph.root.as_ref().unwrap(); + let root = &graph.graph[graph.nodes[root]]; + + let direction = Direction::Outgoing; + + check_tree(&graph, root, direction); dir_pretty_print(dirs.iter_contract_crates(), "", &|_| {}); @@ -58,3 +151,117 @@ pub fn call_contract_meta(contract_crate_path: &Path, cargo_run_args: &[String]) assert!(exit_status.success(), "contract meta process failed"); } + +fn output(command: &mut Command) -> String { + let output = command + .stderr(Stdio::inherit()) + .output() + .expect("failed to execute process"); + + if !output.status.success() { + panic!("failed"); + } + + String::from_utf8(output.stdout).expect("error parsing output") +} + +fn check_tree<'a>(graph: &'a Graph, root: &'a Package, direction: Direction) { + let mut visited_deps = HashSet::new(); + let mut levels_continue = vec![]; + + check_package( + graph, + root, + direction, + &mut visited_deps, + &mut levels_continue, + ); +} + +fn check_package<'a>( + graph: &'a Graph, + package: &'a Package, + direction: Direction, + visited_deps: &mut HashSet<&'a PackageId>, + levels_continue: &mut Vec, +) { + let new = visited_deps.insert(&package.id); + + println!("{}", package.name); + + if !new { + return; + } + + for kind in &[ + DependencyKind::Normal, + DependencyKind::Build, + DependencyKind::Development, + ] { + check_dependencies( + graph, + package, + direction, + visited_deps, + levels_continue, + *kind, + ); + } +} + +fn check_dependencies<'a>( + graph: &'a Graph, + package: &'a Package, + direction: Direction, + visited_deps: &mut HashSet<&'a PackageId>, + levels_continue: &mut Vec, + kind: DependencyKind, +) { + let idx = graph.nodes[&package.id]; + let mut deps = vec![]; + for edge in graph.graph.edges_directed(idx, direction) { + if *edge.weight() != kind { + continue; + } + + let dep = match direction { + Direction::Incoming => &graph.graph[edge.source()], + Direction::Outgoing => &graph.graph[edge.target()], + }; + deps.push(dep); + } + + if deps.is_empty() { + return; + } + + // ensure a consistent output ordering + deps.sort_by_key(|p| &p.id); + + let name = match kind { + DependencyKind::Normal => None, + DependencyKind::Build => Some("[build-dependencies]"), + DependencyKind::Development => Some("[dev-dependencies]"), + _ => unreachable!(), + }; + + // println!("{}", name.unwr()); + + // if let Prefix::Indent = prefix { + if let Some(name) = name { + // for continues in &**levels_continue { + // let c = if *continues { symbols.down } else { " " }; + // print!("{} ", c); + // } + + println!("{}", name); + } + // } + + let mut it = deps.iter().peekable(); + while let Some(dependency) = it.next() { + levels_continue.push(it.peek().is_some()); + check_package(graph, dependency, direction, visited_deps, levels_continue); + levels_continue.pop(); + } +} From 9e9a78a2d1409eba163ca94f05a1e19dc6092736 Mon Sep 17 00:00:00 2001 From: BiancaIalangi Date: Sat, 10 May 2025 13:09:54 +0300 Subject: [PATCH 4/7] check-exec - clean-up --- contracts/examples/adder/file.json | 160346 -------------- contracts/examples/adder/file.txt | 211 - contracts/examples/multisig/file.json | 160821 --------------- contracts/examples/multisig/file.txt | 841 - contracts/examples/multisig/file2.txt | 633 - framework/meta/src/cmd/all.rs | 214 +- .../folder_structure/relevant_directory.rs | 2 - 7 files changed, 1 insertion(+), 323067 deletions(-) delete mode 100644 contracts/examples/adder/file.json delete mode 100644 contracts/examples/adder/file.txt delete mode 100644 contracts/examples/multisig/file.json delete mode 100644 contracts/examples/multisig/file.txt delete mode 100644 contracts/examples/multisig/file2.txt diff --git a/contracts/examples/adder/file.json b/contracts/examples/adder/file.json deleted file mode 100644 index 267db24c59..0000000000 --- a/contracts/examples/adder/file.json +++ /dev/null @@ -1,160346 +0,0 @@ -{ - "packages": [ - { - "name": "Inflector", - "version": "0.11.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", - "license": "BSD-2-Clause", - "license_file": null, - "description": "Adds String based inflections for Rust. Snake, kebab, camel, sentence, class, title and table cases as well as ordinalize, deordinalize, demodulize, foreign key, and pluralize/singularize are supported as both traits and pure functions acting on String types.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "inflector", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/tests/lib.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "heavyweight" - ], - "heavyweight": [ - "regex", - "lazy_static" - ], - "lazy_static": [ - "dep:lazy_static" - ], - "regex": [ - "dep:regex" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Josh Teeter" - ], - "categories": [ - "text-processing", - "value-formatting" - ], - "keywords": [ - "pluralize", - "Inflector", - "camel", - "snake", - "inflection" - ], - "readme": "README.md", - "repository": "https://github.com/whatisinternet/inflector", - "homepage": "https://github.com/whatisinternet/inflector", - "documentation": "https://docs.rs/Inflector", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "abi-tester", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "abi_tester", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/src/abi_tester.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "abi_tester_abi_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/tests/abi_tester_abi_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "abi-tester-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "abi-tester", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "abi-tester-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "adder", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "adder", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/src/adder.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_unit_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_unit_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "adder-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "adder", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "adder-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "addr2line", - "version": "0.24.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A cross-platform symbolication library written in Rust, using `gimli`", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.3.21", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "wrap_help" - ], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cpp_demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "fallible-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gimli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.31.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "read" - ], - "target": null, - "registry": null - }, - { - "name": "memmap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "object", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.36.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "read", - "compression" - ], - "target": null, - "registry": null - }, - { - "name": "rustc-demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typed-arena", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "findshlibs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libtest-mimic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "addr2line", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "addr2line", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/src/bin/addr2line.rs", - "edition": "2018", - "required-features": [ - "bin" - ], - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "all": [ - "bin" - ], - "alloc": [ - "dep:alloc" - ], - "bin": [ - "loader", - "rustc-demangle", - "cpp_demangle", - "fallible-iterator", - "smallvec", - "dep:clap" - ], - "cargo-all": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "cpp_demangle": [ - "dep:cpp_demangle" - ], - "default": [ - "rustc-demangle", - "cpp_demangle", - "loader", - "fallible-iterator", - "smallvec" - ], - "fallible-iterator": [ - "dep:fallible-iterator" - ], - "loader": [ - "std", - "dep:object", - "dep:memmap2", - "dep:typed-arena" - ], - "rustc-demangle": [ - "dep:rustc-demangle" - ], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "gimli/rustc-dep-of-std" - ], - "smallvec": [ - "dep:smallvec" - ], - "std": [ - "gimli/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "DWARF", - "debug", - "elf", - "symbolicate", - "atos" - ], - "readme": "README.md", - "repository": "https://github.com/gimli-rs/addr2line", - "homepage": null, - "documentation": "https://docs.rs/addr2line", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "adler2", - "version": "2.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", - "license": "0BSD OR MIT OR Apache-2.0", - "license_file": null, - "description": "A simple clean-room implementation of the Adler-32 checksum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "adler2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg=docsrs" - ] - } - }, - "release": { - "no-dev-version": true, - "pre-release-commit-message": "Release {{version}}", - "tag-message": "{{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "## Unreleased\n\nNo changes.\n\n## [{{version}} - {{date}}](https://github.com/jonas-schievink/adler/releases/tag/v{{version}})\n", - "search": "## Unreleased\n" - }, - { - "file": "README.md", - "replace": "adler = \"{{version}}\"", - "search": "adler = \"[a-z0-9\\\\.-]+\"" - }, - { - "file": "src/lib.rs", - "replace": "https://docs.rs/adler/{{version}}", - "search": "https://docs.rs/adler/[a-z0-9\\.-]+" - } - ] - } - }, - "publish": null, - "authors": [ - "Jonas Schievink ", - "oyvindln " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "checksum", - "integrity", - "hash", - "adler32", - "zlib" - ], - "readme": "README.md", - "repository": "https://github.com/oyvindln/adler2", - "homepage": null, - "documentation": "https://docs.rs/adler2/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "aes", - "version": "0.8.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "aarch64" - ], - "target": "cfg(all(aes_armv8, target_arch = \"aarch64\"))", - "registry": null - }, - { - "name": "cpufeatures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(not(all(aes_armv8, target_arch = \"aarch64\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "aes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hazmat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/tests/hazmat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "hazmat": [], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "aes", - "rijndael", - "block-cipher" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/block-ciphers", - "homepage": null, - "documentation": "https://docs.rs/aes", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "ahash", - "version": "0.8.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A non-cryptographic hash function using AES-NI for high performance", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "atomic-polyfill", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "const-random", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.117", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pcg-mwc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "seahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.59", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.4", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.18.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ahash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "map_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/map_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nopanic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/nopanic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ahash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/map_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "atomic-polyfill": [ - "dep:atomic-polyfill", - "once_cell/atomic-polyfill" - ], - "compile-time-rng": [ - "const-random" - ], - "const-random": [ - "dep:const-random" - ], - "default": [ - "std", - "runtime-rng" - ], - "getrandom": [ - "dep:getrandom" - ], - "nightly-arm-aes": [], - "no-rng": [], - "runtime-rng": [ - "getrandom" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ], - "rustc-args": [ - "-C", - "target-feature=+aes" - ], - "rustdoc-args": [ - "-C", - "target-feature=+aes" - ] - } - } - }, - "publish": null, - "authors": [ - "Tom Kaitchuck " - ], - "categories": [ - "algorithms", - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "hasher", - "hashmap", - "aes", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/tkaitchuck/ahash", - "homepage": null, - "documentation": "https://docs.rs/ahash", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "aho-corasick", - "version": "1.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Fast multiple substring searching.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "aho_corasick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std", - "perf-literal" - ], - "logging": [ - "dep:log" - ], - "perf-literal": [ - "dep:memchr" - ], - "std": [ - "memchr?/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "string", - "search", - "text", - "pattern", - "multi" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/aho-corasick", - "homepage": "https://github.com/BurntSushi/aho-corasick", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "alloc-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmer-experimental" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "alloc_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/src/alloc_features_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "af_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/af_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "alloc_features_general_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_general_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "alloc_features_managed_buffer_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_managed_buffer_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "alloc_features_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "alloc_features_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "alloc-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "alloc-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "alloc-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "android-tzdata", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser for the Android-specific tzdata file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "android_tzdata", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android-tzdata-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android-tzdata-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RumovZ" - ], - "categories": [ - "date-and-time" - ], - "keywords": [ - "parser", - "android", - "timezone" - ], - "readme": "README.md", - "repository": "https://github.com/RumovZ/android-tzdata", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "android_system_properties", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Minimal Android system properties wrapper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.126", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "android_system_properties", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android_system_properties-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "time_zone", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android_system_properties-0.1.5/examples/time_zone.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/android_system_properties-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "arm-linux-androideabi", - "armv7-linux-androideabi", - "aarch64-linux-android", - "i686-linux-android", - "x86_64-linux-android", - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Nicolas Silva " - ], - "categories": [], - "keywords": [ - "android" - ], - "readme": "README.md", - "repository": "https://github.com/nical/android_system_properties", - "homepage": "https://github.com/nical/android_system_properties", - "documentation": "https://docs.rs/android_system_properties", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "anstream", - "version": "0.6.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A simple cross platform library for writing colored text to a terminal.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle-parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle-query", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colorchoice", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is_terminal_polyfill", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.48", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf8parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "divan", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "owo-colors", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strip-ansi-escapes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle-wincon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dump-stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/examples/dump-stream.rs", - "edition": "2021", - "required-features": [ - "auto" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "query-stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/examples/query-stream.rs", - "edition": "2021", - "required-features": [ - "auto" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "strip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/strip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "wincon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/wincon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "auto": [ - "dep:anstyle-query" - ], - "default": [ - "auto", - "wincon" - ], - "test": [], - "wincon": [ - "dep:anstyle-wincon" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "strip", - "wincon" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "anstyle", - "version": "1.0.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "ANSI text styling", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dump-style", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/examples/dump-style.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "tag-prefix": "", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "anstyle-parse", - "version": "0.2.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parse ANSI Style Escapes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf8parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "codegenrs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "divan", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vte_generate_state_changes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle_parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "parselog", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/examples/parselog.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/benches/parse.rs", - "edition": "2021", - "required-features": [ - "utf8" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "core": [ - "dep:arrayvec" - ], - "default": [ - "utf8" - ], - "utf8": [ - "dep:utf8parse" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "vte" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "anstyle-query", - "version": "1.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Look up colored console capabilities", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle_query", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "query", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/examples/query.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "anstyle-wincon", - "version": "3.0.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.7", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Styling legacy Windows terminals", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.20.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle_wincon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-wincon-3.0.7/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dump-wincon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-wincon-3.0.7/examples/dump-wincon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "set-wincon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-wincon-3.0.7/examples/set-wincon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-wincon-3.0.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "windows" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "anyhow", - "version": "1.0.98", - "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Flexible concrete Error type built on std::error::Error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.51", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.66", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anyhow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_autotrait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_autotrait.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_backtrace.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_boxed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_boxed.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_chain", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_chain.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_context", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_context.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_convert", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_convert.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_downcast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_downcast.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ensure", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_ensure.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ffi", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_ffi.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_fmt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_repr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_repr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_source", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_source.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "backtrace": [ - "dep:backtrace" - ], - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "keywords": [ - "error", - "error-handling" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/anyhow", - "homepage": null, - "documentation": "https://docs.rs/anyhow", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.39" - }, - { - "name": "anymap2", - "version": "0.13.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A safe and convenient store for one value of each type", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anymap2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Chris Morgan ", - "Azriel Hoh " - ], - "categories": [], - "keywords": [ - "container", - "data-structure", - "map" - ], - "readme": "README.md", - "repository": "https://github.com/azriel91/anymap2", - "homepage": null, - "documentation": "https://docs.rs/anymap2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "arbitrary", - "version": "1.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#arbitrary@1.4.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The trait for generating structured data from unstructured data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "derive_arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "exhaustigen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "arbitrary", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "derive_enum", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/examples/derive_enum.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bound", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/tests/bound.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/tests/derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/tests/path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "derive": [ - "derive_arbitrary" - ], - "derive_arbitrary": [ - "dep:derive_arbitrary" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arbitrary-1.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust-Fuzz Project Developers", - "Nick Fitzgerald ", - "Manish Goregaokar ", - "Simonas Kazlauskas ", - "Brian L. Troutwine ", - "Corey Farwell " - ], - "categories": [ - "development-tools::testing" - ], - "keywords": [ - "arbitrary", - "testing" - ], - "readme": "README.md", - "repository": "https://github.com/rust-fuzz/arbitrary/", - "homepage": null, - "documentation": "https://docs.rs/arbitrary/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "arrayvec", - "version": "0.7.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "arrayvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "borsh", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/borsh.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "arraystring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/benches/arraystring.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "extend", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/benches/extend.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "borsh": [ - "dep:borsh" - ], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "borsh", - "serde", - "zeroize" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "stack", - "vector", - "array", - "data-structure", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/bluss/arrayvec", - "homepage": null, - "documentation": "https://docs.rs/arrayvec/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.51" - }, - { - "name": "atomic-waker", - "version": "1.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A synchronization primitive for task wakeup", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "cargo_bench_support" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "atomic_waker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/tests/basic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "waker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/benches/waker.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "portable-atomic": [ - "dep:portable-atomic" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Stjepan Glavina ", - "Contributors to futures-rs" - ], - "categories": [ - "asynchronous", - "concurrency" - ], - "keywords": [ - "waker", - "notify", - "wake", - "futures", - "async" - ], - "readme": "README.md", - "repository": "https://github.com/smol-rs/atomic-waker", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "autocfg", - "version": "1.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Automatic cfg for Rust compiler features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "autocfg", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "integers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/integers.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "nightly", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/nightly.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "paths", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/paths.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/traits.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "versions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/versions.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/no_std.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rustflags", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/rustflags.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wrappers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/wrappers.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Josh Stone " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "rustc", - "build", - "autoconf" - ], - "readme": "README.md", - "repository": "https://github.com/cuviper/autocfg", - "homepage": null, - "documentation": "https://docs.rs/autocfg/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.0" - }, - { - "name": "backtrace", - "version": "0.3.74", - "id": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library to acquire a stack trace (backtrace) at runtime in a Rust program.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cpp_demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "rustc-demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "libloading", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "addr2line", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.24.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.156", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", - "registry": null - }, - { - "name": "object", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.36.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "read_core", - "elf", - "macho", - "pe", - "xcoff", - "unaligned", - "archive" - ], - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", - "registry": null - }, - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/examples/backtrace.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "raw", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/examples/raw.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accuracy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/accuracy/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "concurrent-panics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/concurrent-panics.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "current-exe-mismatch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/current-exe-mismatch.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "long_fn_name", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/long_fn_name.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sgx-image-base", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/sgx-image-base.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "skip_inner_frames", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/skip_inner_frames.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/smoke.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/benches/benchmarks.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "coresymbolication": [], - "cpp_demangle": [ - "dep:cpp_demangle" - ], - "dbghelp": [], - "default": [ - "std" - ], - "dl_iterate_phdr": [], - "dladdr": [], - "kernel32": [], - "libunwind": [], - "serde": [ - "dep:serde" - ], - "serialize-serde": [ - "serde" - ], - "std": [], - "unix-backtrace": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/backtrace-rs", - "homepage": "https://github.com/rust-lang/backtrace-rs", - "documentation": "https://docs.rs/backtrace", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "base64", - "version": "0.22.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "encodes and decodes base64 as bytes or utf8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rstest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rstest_reuse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "base64", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "base64", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/examples/base64.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/tests/encode.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/tests/tests.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/benches/benchmarks.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Marshall Pierce " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "base64", - "utf8", - "encode", - "decode", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/marshallpierce/rust-base64", - "homepage": null, - "documentation": "https://docs.rs/base64", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.48.0" - }, - { - "name": "base64ct", - "version": "1.7.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of\ndata-dependent branches/LUTs and thereby provides portable \"best effort\"\nconstant-time operation and embedded-friendly no_std support\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "base64ct", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bcrypt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/bcrypt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crypt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/crypt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proptests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/proptests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "shacrypt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/shacrypt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "standard", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/standard.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "url", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/url.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "encoding", - "no-std", - "parser-implementations" - ], - "keywords": [ - "crypto", - "base64", - "pem", - "phc" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats", - "homepage": "https://github.com/RustCrypto/formats/tree/master/base64ct", - "documentation": "https://docs.rs/base64ct", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "basic-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "basic_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/src/basic_features_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_big_num_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_big_num_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_egld_decimal_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_egld_decimal_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_is_builtin_function_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_is_builtin_function_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_managed_buffer_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_buffer_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_managed_decimal_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_decimal_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_managed_option_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_option_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_managed_vec_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_vec_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_ordered_binary_tree_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_ordered_binary_tree_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_sparse_array_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_sparse_array_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_storage_mapper_get_at_address_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_storage_mapper_get_at_address_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_timelock_mapper_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_timelock_mapper_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_token_identifier_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_token_identifier_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "basic-features-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "basic-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "system-sc-interact", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls" - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "basic_features_interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/src/bf_interact.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "basic-features-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/src/bf_interact_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bf_interact_cs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/tests/bf_interact_cs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "basic-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "basic-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "basic-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "basic-interactor", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "adder", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "basic_interactor", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/src/basic_interactor.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "basic-interactor", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/src/basic_interactor_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_interactor_cs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/tests/basic_interactor_cs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bech32", - "version": "0.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "license": "MIT", - "license_file": null, - "description": "Encodes and decodes the Bech32 format and implements the bech32 and bech32m checksums", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bech32", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bip_173_test_vectors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/tests/bip_173_test_vectors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bip_350_test_vectors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/tests/bip_350_test_vectors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Clark Moody", - "Andrew Poelstra", - "Tobin Harding" - ], - "categories": [ - "encoding", - "cryptography::cryptocurrencies" - ], - "keywords": [ - "base32", - "encoding", - "bech32", - "bitcoin", - "cryptocurrency" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/rust-bech32", - "homepage": null, - "documentation": "https://docs.rs/bech32/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "benchmark-common", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "benchmark_common", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "big-float-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "big_float_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/src/big_float_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_float_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/tests/big_float_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_float_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/tests/big_float_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "big-float-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "big-float-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "big-float-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bincode", - "version": "1.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "license": "MIT", - "license_file": null, - "description": "A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.63", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.27", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bincode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/tests/test.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "i128": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ty Overby ", - "Francesco Mazzoli ", - "David Tolnay ", - "Zoey Riordan " - ], - "categories": [ - "encoding", - "network-programming" - ], - "keywords": [ - "binary", - "encode", - "decode", - "serialize", - "deserialize" - ], - "readme": "./readme.md", - "repository": "https://github.com/servo/bincode", - "homepage": null, - "documentation": "https://docs.rs/bincode", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bindgen", - "version": "0.70.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", - "license": "BSD-3-Clause", - "license_file": null, - "description": "Automatically generates Rust FFI bindings to C and C++ libraries.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "annotate-snippets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "color" - ], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cexpr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clang-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "clang_6_0" - ], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.10, <0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "prettyplease", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "verbatim" - ], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "unicode-perl" - ], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shlex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits", - "visit-mut" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bindgen", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "__cli": [], - "__testing_only_extra_assertions": [], - "__testing_only_libclang_16": [], - "__testing_only_libclang_9": [], - "default": [ - "logging", - "prettyplease", - "runtime" - ], - "experimental": [ - "dep:annotate-snippets" - ], - "logging": [ - "dep:log" - ], - "prettyplease": [ - "dep:prettyplease" - ], - "runtime": [ - "clang-sys/runtime" - ], - "static": [ - "clang-sys/static" - ], - "which-rustfmt": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "experimental" - ] - } - }, - "release": { - "pre-release-hook": [ - "../node_modules/doctoc/doctoc.js", - "../CHANGELOG.md" - ], - "release": true, - "pre-release-replacements": [ - { - "file": "../CHANGELOG.md", - "replace": "# Unreleased\n## Added\n## Changed\n## Removed\n## Fixed\n## Security\n\n# {{version}} ({{date}})", - "search": "# Unreleased" - } - ] - } - }, - "publish": null, - "authors": [ - "Jyun-Yan You ", - "Emilio Cobos Álvarez ", - "Nick Fitzgerald ", - "The Servo project developers" - ], - "categories": [ - "external-ffi-bindings", - "development-tools::ffi" - ], - "keywords": [ - "bindings", - "ffi", - "code-generation" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/rust-bindgen", - "homepage": "https://rust-lang.github.io/rust-bindgen/", - "documentation": "https://docs.rs/bindgen", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.70.0" - }, - { - "name": "bip39", - "version": "2.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "license": "CC0-1.0", - "license_file": null, - "description": "Library for BIP-39 Bitcoin mnemonic codes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitcoin_hashes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.12, <=0.13", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.6.0, <0.9.0", - "kind": null, - "rename": "crate_rand", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.4.0, <0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "unicode-normalization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.1.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "zeroize_derive" - ], - "target": null, - "registry": null - }, - { - "name": "bitcoin_hashes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.12, <0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bip39", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "all-languages": [ - "chinese-simplified", - "chinese-traditional", - "czech", - "french", - "italian", - "japanese", - "korean", - "portuguese", - "spanish" - ], - "alloc": [ - "unicode-normalization" - ], - "chinese-simplified": [], - "chinese-traditional": [], - "crate_rand": [ - "dep:crate_rand" - ], - "czech": [], - "default": [ - "std" - ], - "french": [], - "italian": [], - "japanese": [], - "korean": [], - "portuguese": [], - "rand": [ - "crate_rand", - "rand_core" - ], - "rand_core": [ - "dep:rand_core" - ], - "serde": [ - "dep:serde" - ], - "spanish": [], - "std": [ - "alloc", - "serde/std", - "unicode-normalization/std" - ], - "unicode-normalization": [ - "dep:unicode-normalization" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Steven Roose " - ], - "categories": [], - "keywords": [ - "crypto", - "bitcoin", - "bip39", - "mnemonic" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/rust-bip39/", - "homepage": "https://github.com/rust-bitcoin/rust-bip39/", - "documentation": "https://docs.rs/bip39/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitcoin-internals", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", - "license": "CC0-1.0", - "license_file": null, - "description": "Internal types and macros used by rust-bitcoin ecosystem", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitcoin_internals", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Poelstra ", - "The Rust Bitcoin developers" - ], - "categories": [ - "cryptography::cryptocurrencies" - ], - "keywords": [ - "internal" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/rust-bitcoin/", - "homepage": null, - "documentation": "https://docs.rs/bitcoin-internals", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitcoin_hashes", - "version": "0.13.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", - "license": "CC0-1.0", - "license_file": null, - "description": "Hash functions used by the rust-bitcoin eccosystem", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "core2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": "actual-core2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-conservative", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": "hex", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitcoin-internals", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": "internals", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "wasm32-unknown-unknown", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitcoin_hashes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin_hashes-0.13.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "actual-core2": [ - "dep:actual-core2" - ], - "alloc": [ - "internals/alloc", - "hex/alloc" - ], - "core2": [ - "actual-core2", - "hex/core2" - ], - "default": [ - "std" - ], - "schemars": [ - "dep:schemars" - ], - "serde": [ - "dep:serde" - ], - "serde-std": [ - "serde/std" - ], - "small-hash": [], - "std": [ - "alloc", - "internals/std", - "hex/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin_hashes-0.13.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Poelstra " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "crypto", - "bitcoin", - "hash", - "digest" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/rust-bitcoin", - "homepage": null, - "documentation": "https://docs.rs/bitcoin_hashes/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitflags", - "version": "1.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A macro to generate structures which behave like bitflags.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitflags", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/tests/basic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/tests/compile.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "homepage": "https://github.com/bitflags/bitflags", - "documentation": "https://docs.rs/bitflags", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitflags", - "version": "2.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A macro to generate structures which behave like bitflags.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.19", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitflags", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_bits_type", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/custom_bits_type.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/custom_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/fmt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "macro_free", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/macro_free.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/benches/parse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "bytemuck": [ - "dep:bytemuck" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "homepage": "https://github.com/bitflags/bitflags", - "documentation": "https://docs.rs/bitflags", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "block-buffer", - "version": "0.10.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Buffer type for block processing of data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "block_buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "block", - "buffer" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/block-buffer", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bonding-curve-contract", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bonding_curve_contract", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/src/bonding_curve_contract.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bonding_curve_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/tests/bonding_curve_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bonding_curve_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/tests/bonding_curve_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bonding-curve-contract-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "bonding-curve-contract", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "bonding-curve-contract-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "boolinator", - "version": "2.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Provides the Boolinator trait, which lets you use Option and Result-style combinators with bools.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "boolinator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/boolinator-2.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/boolinator-2.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Daniel Keep " - ], - "categories": [], - "keywords": [ - "bool", - "combinator", - "monad", - "serious" - ], - "readme": "README.md", - "repository": "https://github.com/DanielKeep/rust-boolinator", - "homepage": null, - "documentation": "https://danielkeep.github.io/rust-boolinator/doc/boolinator/index.html", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bstr", - "version": "1.12.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A string type that is not required to be valid UTF-8.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "dfa-search" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.85", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ucd-parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-segmentation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bstr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "graphemes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/graphemes.rs", - "edition": "2021", - "required-features": [ - "std", - "unicode" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "graphemes-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/graphemes-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lines", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/lines.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lines-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/lines-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "uppercase", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/uppercase.rs", - "edition": "2021", - "required-features": [ - "std", - "unicode" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "uppercase-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/uppercase-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "words", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/words.rs", - "edition": "2021", - "required-features": [ - "std", - "unicode" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "words-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/words-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "memchr/alloc", - "serde?/alloc" - ], - "default": [ - "std", - "unicode" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc", - "memchr/std", - "serde?/std" - ], - "unicode": [ - "dep:regex-automata" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing", - "encoding" - ], - "keywords": [ - "string", - "str", - "byte", - "bytes", - "text" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/bstr", - "homepage": "https://github.com/BurntSushi/bstr", - "documentation": "https://docs.rs/bstr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.73" - }, - { - "name": "builtin-func-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "builtin_func_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/src/builtin_func_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_transfer_promise_blackbox_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/tests/esdt_transfer_promise_blackbox_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_transfer_promise_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/tests/esdt_transfer_promise_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "builtin-func-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "builtin-func-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "builtin-func-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bumpalo", - "version": "3.17.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A fast bump allocation arena for Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "allocator-api2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.171", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.115", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bumpalo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.17.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "allocator-api2": [ - "dep:allocator-api2" - ], - "allocator_api": [], - "boxed": [], - "collections": [], - "default": [], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.17.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Nick Fitzgerald " - ], - "categories": [ - "memory-management", - "rust-patterns", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/fitzgen/bumpalo", - "homepage": null, - "documentation": "https://docs.rs/bumpalo", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71.1" - }, - { - "name": "bytecheck", - "version": "0.6.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "license": "MIT", - "license_file": null, - "description": "Derive macro for bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytecheck_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "simdutf8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bytecheck", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "simdutf8", - "std" - ], - "simdutf8": [ - "dep:simdutf8" - ], - "std": [ - "ptr_meta/std", - "bytecheck_derive/std", - "simdutf8/std" - ], - "uuid": [ - "dep:uuid" - ], - "verbose": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "bytecheck", - "validation", - "zero-copy", - "rkyv" - ], - "readme": "crates-io.md", - "repository": "https://github.com/djkoloski/bytecheck", - "homepage": null, - "documentation": "https://docs.rs/bytecheck", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bytecheck", - "version": "0.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "license": "MIT", - "license_file": null, - "description": "Memory validation framework for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytecheck_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rancor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "simdutf8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "uuid-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bytecheck", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.8.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "simdutf8" - ], - "simdutf8": [ - "dep:simdutf8" - ], - "uuid-1": [ - "dep:uuid-1" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.8.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "no_std", - "validation", - "serialization" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/bytecheck", - "homepage": null, - "documentation": "https://docs.rs/bytecheck", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "bytecheck_derive", - "version": "0.6.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", - "license": "MIT", - "license_file": null, - "description": "Derive macro for bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "bytecheck_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.6.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.6.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/djkoloski/bytecheck", - "homepage": null, - "documentation": "https://docs.rs/bytecheck_derive", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bytecheck_derive", - "version": "0.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", - "license": "MIT", - "license_file": null, - "description": "Derive macro for bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "full", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "bytecheck_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.8.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.8.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "no_std", - "validation", - "serialization" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/bytecheck", - "homepage": null, - "documentation": "https://docs.rs/bytecheck_derive", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "byteorder", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Library for reading/writing numbers in big-endian and little-endian.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "byteorder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "i128": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "encoding", - "parsing", - "no-std" - ], - "keywords": [ - "byte", - "endian", - "big-endian", - "little-endian", - "binary" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/byteorder", - "homepage": "https://github.com/BurntSushi/byteorder", - "documentation": "https://docs.rs/byteorder", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "bytes", - "version": "1.10.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "license": "MIT", - "license_file": null, - "description": "Types and traits for working with bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": "extra-platforms", - "optional": true, - "uses_default_features": false, - "features": [ - "require-cas" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_buf.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_buf_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_buf_mut.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_bytes_odd_alloc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes_odd_alloc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_bytes_vec_alloc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes_vec_alloc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_chain", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_chain.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_debug.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_iter.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_reader", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_reader.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_take", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_take.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/buf.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bytes_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/bytes_mut.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "extra-platforms": [ - "dep:extra-platforms" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Carl Lerche ", - "Sean McArthur " - ], - "categories": [ - "network-programming", - "data-structures" - ], - "keywords": [ - "buffers", - "zero-copy", - "io" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/bytes", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.39" - }, - { - "name": "cc", - "version": "1.2.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "jobserver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.30", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shlex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.62", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.20/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "jobserver": [], - "parallel": [ - "dep:libc", - "dep:jobserver" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.20/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "build-dependencies" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/cc-rs", - "homepage": "https://github.com/rust-lang/cc-rs", - "documentation": "https://docs.rs/cc", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "cexpr", - "version": "0.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "A C expression parser and evaluator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "nom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "clang-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.13.0, <0.29.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cexpr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "clang", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/tests/clang.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jethro Beekman " - ], - "categories": [], - "keywords": [ - "C", - "expression", - "parser" - ], - "readme": null, - "repository": "https://github.com/jethrogb/rust-cexpr", - "homepage": null, - "documentation": "https://docs.rs/cexpr/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "cfg-if", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cfg_if", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "xcrate", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/tests/xcrate.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/cfg-if", - "homepage": "https://github.com/alexcrichton/cfg-if", - "documentation": "https://docs.rs/cfg-if", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "check-pause", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "check_pause", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/src/check_pause.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "check-pause-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "check-pause", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "check-pause-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "child", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "child", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "child-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "child", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "child-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "chrono", - "version": "0.4.41", - "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Date and time library for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pure-rust-locales", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.43", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.99", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "similar-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "android-tzdata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"android\")", - "registry": null - }, - { - "name": "iana-time-zone", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.45", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "fallback" - ], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-link", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.61", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "chrono", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dateutils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/dateutils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wasm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/wasm.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "win_bindings", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/win_bindings.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__internal_bench": [], - "alloc": [], - "android-tzdata": [ - "dep:android-tzdata" - ], - "arbitrary": [ - "dep:arbitrary" - ], - "clock": [ - "winapi", - "iana-time-zone", - "android-tzdata", - "now" - ], - "default": [ - "clock", - "std", - "oldtime", - "wasmbind" - ], - "iana-time-zone": [ - "dep:iana-time-zone" - ], - "js-sys": [ - "dep:js-sys" - ], - "libc": [], - "now": [ - "std" - ], - "oldtime": [], - "pure-rust-locales": [ - "dep:pure-rust-locales" - ], - "rkyv": [ - "dep:rkyv", - "rkyv/size_32" - ], - "rkyv-16": [ - "dep:rkyv", - "rkyv?/size_16" - ], - "rkyv-32": [ - "dep:rkyv", - "rkyv?/size_32" - ], - "rkyv-64": [ - "dep:rkyv", - "rkyv?/size_64" - ], - "rkyv-validation": [ - "rkyv?/validation" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "unstable-locales": [ - "pure-rust-locales" - ], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ], - "wasmbind": [ - "wasm-bindgen", - "js-sys" - ], - "winapi": [ - "windows-link" - ], - "windows-link": [ - "dep:windows-link" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "rkyv", - "serde", - "unstable-locales" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "date-and-time" - ], - "keywords": [ - "date", - "time", - "calendar" - ], - "readme": "README.md", - "repository": "https://github.com/chronotope/chrono", - "homepage": "https://github.com/chronotope/chrono", - "documentation": "https://docs.rs/chrono/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.62.0" - }, - { - "name": "cipher", - "version": "0.4.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Traits for describing block ciphers and stream ciphers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "blobby", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crypto-common", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "inout", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cipher", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "blobby": [ - "dep:blobby" - ], - "block-padding": [ - "inout/block-padding" - ], - "dev": [ - "blobby" - ], - "rand_core": [ - "crypto-common/rand_core" - ], - "std": [ - "alloc", - "crypto-common/std", - "inout/std" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "block-cipher", - "stream-cipher", - "trait" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "homepage": null, - "documentation": "https://docs.rs/cipher", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "clang-sys", - "version": "1.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", - "license": "Apache-2.0", - "license_file": null, - "description": "Rust bindings for libclang.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libloading", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=3.0.0, <3.7.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clang_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/tests/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "clang_10_0": [ - "clang_9_0" - ], - "clang_11_0": [ - "clang_10_0" - ], - "clang_12_0": [ - "clang_11_0" - ], - "clang_13_0": [ - "clang_12_0" - ], - "clang_14_0": [ - "clang_13_0" - ], - "clang_15_0": [ - "clang_14_0" - ], - "clang_16_0": [ - "clang_15_0" - ], - "clang_17_0": [ - "clang_16_0" - ], - "clang_18_0": [ - "clang_17_0" - ], - "clang_3_5": [], - "clang_3_6": [ - "clang_3_5" - ], - "clang_3_7": [ - "clang_3_6" - ], - "clang_3_8": [ - "clang_3_7" - ], - "clang_3_9": [ - "clang_3_8" - ], - "clang_4_0": [ - "clang_3_9" - ], - "clang_5_0": [ - "clang_4_0" - ], - "clang_6_0": [ - "clang_5_0" - ], - "clang_7_0": [ - "clang_6_0" - ], - "clang_8_0": [ - "clang_7_0" - ], - "clang_9_0": [ - "clang_8_0" - ], - "libcpp": [], - "libloading": [ - "dep:libloading" - ], - "runtime": [ - "libloading" - ], - "static": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "clang_18_0", - "runtime" - ] - } - } - }, - "publish": null, - "authors": [ - "Kyle Mayes " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/KyleMayes/clang-sys", - "homepage": null, - "documentation": "https://docs.rs/clang-sys", - "edition": "2021", - "links": "clang", - "default_run": null, - "rust_version": null - }, - { - "name": "clap", - "version": "4.5.37", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "clap_builder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=4.5.37", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=4.5.32", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap-cargo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.15", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shlex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "term-svg" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.91", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trycmd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "color-auto", - "diff", - "examples" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "stdio-fixture", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/src/bin/stdio-fixture.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "01_quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/01_quick.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "01_quick_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/01_quick.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_app_settings", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_app_settings.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_app_settings_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_app_settings.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_apps", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_apps.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_apps_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_apps.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_crate", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_crate.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_crate_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_crate.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_bool", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_01_flag_bool.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_bool_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_01_flag_bool.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_count", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_01_flag_count.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_count_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_01_flag_count.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_02_option.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_02_option.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option_mult", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_02_option_mult.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option_mult_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_02_option_mult.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_03_positional.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_03_positional.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional_mult", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_03_positional_mult.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional_mult_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_03_positional_mult.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_04_subcommands", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_04_subcommands.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_04_subcommands_alt_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_04_subcommands_alt.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_04_subcommands_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_04_subcommands.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_05_default_values", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_05_default_values.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_05_default_values_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_05_default_values.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_06_optional_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_06_optional.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_06_required", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_06_required.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_01_enum", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_01_enum.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_01_enum_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_01_enum.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_01_possible", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_01_possible.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_02_parse.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_parse_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_02_parse.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_validate", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_02_validate.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_validate_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_02_validate.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_03_relations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_03_relations.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_03_relations_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_03_relations.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_04_custom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_04_custom.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_04_custom_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_04_custom.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "05_01_assert", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/05_01_assert.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "05_01_assert_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/05_01_assert.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "busybox", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/multicall-busybox.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cargo-example", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/cargo-example.rs", - "edition": "2021", - "required-features": [ - "cargo", - "color" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cargo-example-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/cargo-example-derive.rs", - "edition": "2021", - "required-features": [ - "derive", - "color" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "demo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/demo.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "escaped-positional", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/escaped-positional.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "escaped-positional-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/escaped-positional-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "find", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/find.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "git", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/git.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "git-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/git-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hostname", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/multicall-hostname.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_augment_args", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/augment_args.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_augment_subcommands", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/augment_subcommands.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_flatten_hand_args", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/flatten_hand_args.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_hand_subcommand", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/hand_subcommand.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pacman", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/pacman.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "repl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/repl.rs", - "edition": "2021", - "required-features": [ - "help" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "repl-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/repl-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "typed-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/typed-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "cargo": [ - "clap_builder/cargo" - ], - "color": [ - "clap_builder/color" - ], - "debug": [ - "clap_builder/debug", - "clap_derive?/debug" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [ - "clap_builder/deprecated", - "clap_derive?/deprecated" - ], - "derive": [ - "dep:clap_derive" - ], - "env": [ - "clap_builder/env" - ], - "error-context": [ - "clap_builder/error-context" - ], - "help": [ - "clap_builder/help" - ], - "std": [ - "clap_builder/std" - ], - "string": [ - "clap_builder/string" - ], - "suggestions": [ - "clap_builder/suggestions" - ], - "unicode": [ - "clap_builder/unicode" - ], - "unstable-derive-ui-tests": [], - "unstable-doc": [ - "clap_builder/unstable-doc", - "derive" - ], - "unstable-ext": [ - "clap_builder/unstable-ext" - ], - "unstable-markdown": [ - "clap_derive/unstable-markdown" - ], - "unstable-styles": [ - "clap_builder/unstable-styles" - ], - "unstable-v5": [ - "clap_builder/unstable-v5", - "clap_derive?/unstable-v5", - "deprecated" - ], - "usage": [ - "clap_builder/usage" - ], - "wrap_help": [ - "clap_builder/wrap_help" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "shared-version": true, - "tag-name": "v{{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "file": "CITATION.cff", - "replace": "date-released: {{date}}", - "search": "^date-released: ....-..-.." - }, - { - "file": "CITATION.cff", - "replace": "version: {{version}}", - "search": "^version: .+\\..+\\..+" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "blob/v{{version}}/CHANGELOG.md", - "search": "blob/v.+\\..+\\..+/CHANGELOG.md" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_builder", - "version": "4.5.37", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.73", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap_lex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strsim", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "terminal_size", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicase", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "color-print", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unic-emoji-char", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap_builder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.37/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "cargo": [], - "color": [ - "dep:anstream" - ], - "debug": [ - "dep:backtrace" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [], - "env": [], - "error-context": [], - "help": [], - "std": [ - "anstyle/std" - ], - "string": [], - "suggestions": [ - "dep:strsim", - "error-context" - ], - "unicode": [ - "dep:unicode-width", - "dep:unicase" - ], - "unstable-doc": [ - "cargo", - "wrap_help", - "env", - "unicode", - "string", - "unstable-ext" - ], - "unstable-ext": [], - "unstable-styles": [ - "color" - ], - "unstable-v5": [ - "deprecated" - ], - "usage": [], - "wrap_help": [ - "help", - "dep:terminal_size" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.37/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "dependent-version": "upgrade", - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_derive", - "version": "4.5.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parse command line argument by defining a struct, derive crate.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "heck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pulldown-cmark", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "clap_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "debug": [], - "default": [], - "deprecated": [], - "raw-deprecated": [ - "deprecated" - ], - "unstable-markdown": [ - "dep:pulldown-cmark", - "dep:anstyle" - ], - "unstable-v5": [ - "deprecated" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "release": { - "dependent-version": "upgrade", - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface", - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "clap", - "cli", - "parse", - "derive", - "proc_macro" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_lex", - "version": "0.7.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Minimal, flexible command line parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap_lex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "exactly": 4, - "file": "README.md", - "prerelease": true, - "replace": "github.com/clap-rs/clap/blob/{{tag_name}}/", - "search": "github.com/clap-rs/clap/blob/[^/]+/" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "cmake", - "version": "0.1.54", - "id": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A build dependency for running `cmake` to build a native library\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cmake", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cmake-0.1.54/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cmake-0.1.54/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "build-dependencies" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/cmake-rs", - "homepage": "https://github.com/rust-lang/cmake-rs", - "documentation": "https://docs.rs/cmake", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "colorchoice", - "version": "1.0.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Global override of color control", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "colorchoice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "colored", - "version": "2.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", - "license": "MPL-2.0", - "license_file": null, - "description": "The most simple way to add colors in your terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ansi_term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rspec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.48, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Console" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "colored", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "as_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/as_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "control", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/control.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/custom_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dynamic_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/dynamic_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "most_simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/most_simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "nested_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/nested_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ansi_term_compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/tests/ansi_term_compat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "no-color": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Thomas Wickham " - ], - "categories": [], - "keywords": [ - "color", - "string", - "term", - "ansi_term", - "term-painter" - ], - "readme": "README.md", - "repository": "https://github.com/mackwic/colored", - "homepage": "https://github.com/mackwic/colored", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "colored", - "version": "3.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "license": "MPL-2.0", - "license_file": null, - "description": "The most simple way to add colors in your terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ansi_term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rspec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.48, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Console" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "colored", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "as_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/as_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "control", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/control.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/custom_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dynamic_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/dynamic_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "most_simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/most_simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "nested_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/nested_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ansi_term_compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/tests/ansi_term_compat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "no-color": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Thomas Wickham " - ], - "categories": [], - "keywords": [ - "color", - "string", - "term", - "ansi_term", - "term-painter" - ], - "readme": "README.md", - "repository": "https://github.com/mackwic/colored", - "homepage": "https://github.com/mackwic/colored", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "common-path", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Finds the common prefix between a set of paths\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "common_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/common-path-1.0.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/common-path-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Paul Woolcock " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": "https://gitlab.com/pwoolcoc/common-path", - "documentation": "https://docs.rs/common-path", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "composability-tests", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "builtin-func-features", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features" - }, - { - "name": "forwarder", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" - }, - { - "name": "forwarder-legacy", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy" - }, - { - "name": "forwarder-queue", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue" - }, - { - "name": "forwarder-raw", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "promises-features", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features" - }, - { - "name": "proxy-test-first", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first" - }, - { - "name": "proxy-test-second", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second" - }, - { - "name": "recursive-caller", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - } - ], - "targets": [ - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "composability_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/composability_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "composability_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/composability_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder_blackbox_legacy_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_blackbox_legacy_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder_whitebox_legacy_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_whitebox_legacy_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "promises_feature_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/promises_feature_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "console_error_panic_hook", - "version": "0.1.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "A panic hook for `wasm32-unknown-unknown` that logs panics to `console.error`", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.37", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "console_error_panic_hook", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/tests/tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nick Fitzgerald " - ], - "categories": [ - "wasm" - ], - "keywords": [], - "readme": "./README.md", - "repository": "https://github.com/rustwasm/console_error_panic_hook", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "console_log", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A logging facility that routes Rust log messages to the browser's console.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "console" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "console_log", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_log-1.0.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "color": [ - "wasm-bindgen" - ], - "default": [], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_log-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Matthew Nicholson " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "log", - "logging", - "console", - "web_sys", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/iamcodemaker/console_log", - "homepage": null, - "documentation": "https://docs.rs/console_log", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "const-oid", - "version": "0.9.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard\nas defined in ITU X.660, with support for BER/DER encoding/decoding as well as\nheapless no_std (i.e. embedded) support\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "const_oid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "db": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "keywords": [ - "iso", - "iec", - "itu", - "oid" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/const-oid", - "homepage": null, - "documentation": "https://docs.rs/const-oid", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "convert_case", - "version": "0.8.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "license": "MIT", - "license_file": null, - "description": "Convert strings into any case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-segmentation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "convert_case", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "string_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/tests/string_types.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "rand": [ - "dep:rand" - ], - "random": [ - "rand" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "rutrum " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "casing", - "case", - "string" - ], - "readme": "README.md", - "repository": "https://github.com/rutrum/convert-case", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "copy_dir", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Copy directories recursively in a straightforward and predictable way.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "copy_dir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/copy_dir-0.1.3/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/copy_dir-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Michael Dunsmuir " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": "https://github.com/mdunsmuir/copy_dir", - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "core-foundation", - "version": "0.9.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bindings to Core Foundation for macOS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "core-foundation-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "core_foundation", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_macro_outside_crate", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/tests/use_macro_outside_crate.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chrono": [ - "dep:chrono" - ], - "default": [ - "link" - ], - "link": [ - "core-foundation-sys/link" - ], - "mac_os_10_7_support": [ - "core-foundation-sys/mac_os_10_7_support" - ], - "mac_os_10_8_features": [ - "core-foundation-sys/mac_os_10_8_features" - ], - "uuid": [ - "dep:uuid" - ], - "with-chrono": [ - "chrono" - ], - "with-uuid": [ - "uuid" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-0.9.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-apple-darwin" - } - } - }, - "publish": null, - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "os::macos-apis" - ], - "keywords": [ - "macos", - "framework", - "objc" - ], - "readme": null, - "repository": "https://github.com/servo/core-foundation-rs", - "homepage": "https://github.com/servo/core-foundation-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "core-foundation-sys", - "version": "0.8.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bindings to Core Foundation for macOS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "core_foundation_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "link" - ], - "link": [], - "mac_os_10_7_support": [], - "mac_os_10_8_features": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core-foundation-sys-0.8.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-apple-darwin" - } - } - }, - "publish": null, - "authors": [ - "The Servo Project Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/servo/core-foundation-rs", - "homepage": "https://github.com/servo/core-foundation-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "corosensei", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A fast and safe implementation of stackful coroutines", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scopeguard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.69", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion-cycles-per-byte", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.159", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Diagnostics_Debug", - "Win32_System_Kernel", - "Win32_System_Memory", - "Win32_System_Threading", - "Win32_System_SystemInformation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "corosensei", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/backtrace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "coroutine", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/benches/coroutine.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "asm-unwind": [ - "unwind" - ], - "default": [ - "default-stack", - "unwind" - ], - "default-stack": [ - "libc", - "windows-sys" - ], - "libc": [ - "dep:libc" - ], - "unwind": [], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "aarch64-unknown-linux-gnu", - "armv7-unknown-linux-gnueabihf", - "riscv64gc-unknown-linux-gnu", - "x86_64-apple-darwin", - "aarch64-apple-darwin", - "x86_64-pc-windows-msvc", - "i686-pc-windows-msvc" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std", - "concurrency" - ], - "keywords": [ - "coroutine", - "stack", - "fiber", - "generator" - ], - "readme": "README.md", - "repository": "https://github.com/Amanieu/corosensei", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.59.0" - }, - { - "name": "cpufeatures", - "version": "0.2.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, \nwith no_std support and support for mobile targets including Android and iOS\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "aarch64-linux-android", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cpufeatures", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "aarch64", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/aarch64.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "loongarch64", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/loongarch64.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "x86", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/x86.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "hardware-support", - "no-std" - ], - "keywords": [ - "cpuid", - "target-feature" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/cpufeatures", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crc32fast", - "version": "1.4.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crc32fast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/benches/bench.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sam Rijs ", - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "checksum", - "crc", - "crc32", - "simd", - "fast" - ], - "readme": "README.md", - "repository": "https://github.com/srijs/rust-crc32fast", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crossbeam-deque", - "version": "0.8.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Concurrent work-stealing deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-epoch", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_deque", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fifo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/fifo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "injector", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/injector.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lifo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/lifo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "steal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/steal.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "crossbeam-epoch/std", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "keywords": [ - "chase-lev", - "lock-free", - "scheduler", - "scheduling" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "crossbeam-epoch", - "version": "0.9.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Epoch-based garbage collection", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": "loom-crate", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(crossbeam_loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_epoch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "sanitize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/examples/sanitize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "loom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/tests/loom.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "defer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/defer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "flush", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/flush.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "pin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/pin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "loom": [ - "loom-crate", - "crossbeam-utils/loom" - ], - "loom-crate": [ - "dep:loom-crate" - ], - "nightly": [ - "crossbeam-utils/nightly" - ], - "std": [ - "alloc", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "memory-management", - "no-std" - ], - "keywords": [ - "lock-free", - "rcu", - "atomic", - "garbage" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "crossbeam-queue", - "version": "0.3.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Concurrent queues", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "array_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/tests/array_queue.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "seg_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/tests/seg_queue.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "nightly": [ - "crossbeam-utils/nightly" - ], - "std": [ - "alloc", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "data-structures", - "no-std" - ], - "keywords": [ - "queue", - "mpmc", - "lock-free", - "producer", - "consumer" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "crossbeam-utils", - "version": "0.8.21", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Utilities for concurrent programming", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(crossbeam_loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "atomic_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/atomic_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cache_padded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/cache_padded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/parker.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sharded_lock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/sharded_lock.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "thread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/thread.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wait_group", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/wait_group.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "atomic_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/benches/atomic_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "loom": [ - "dep:loom" - ], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures", - "no-std" - ], - "keywords": [ - "scoped", - "thread", - "atomic", - "cache" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "crowdfunding-erc20", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crowdfunding_erc20", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/src/crowdfunding_erc20.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_erc20_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/tests/crowdfunding_erc20_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_erc20_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/tests/crowdfunding_erc20_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crowdfunding-erc20-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "crowdfunding-erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding-erc20-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crowdfunding-esdt", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crowdfunding_esdt", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/src/crowdfunding_esdt.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_esdt_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_esdt_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_esdt_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crowdfunding-esdt-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "crowdfunding-esdt", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding-esdt-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-bubbles", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crypto_bubbles", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/src/crypto_bubbles.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crypto_bubbles_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/tests/crypto_bubbles_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crypto_bubbles_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/tests/crypto_bubbles_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-bubbles-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "crypto-bubbles", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "crypto-bubbles-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-common", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Common cryptographic traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "more_lengths" - ], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typenum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crypto_common", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "getrandom": [ - "rand_core/getrandom" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "traits" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "homepage": null, - "documentation": "https://docs.rs/crypto-common", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-zombies", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crypto_zombies", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-zombies-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "crypto-zombies", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "crypto-zombies-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ctr", - "version": "0.9.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "CTR block modes of operation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "aes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "kuznyechik", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "magma", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ctr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "aes128", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/benches/aes128.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "cipher/alloc" - ], - "block-padding": [ - "cipher/block-padding" - ], - "std": [ - "cipher/std", - "alloc" - ], - "zeroize": [ - "cipher/zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "block-mode", - "stream-cipher", - "ciphers" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/block-modes", - "homepage": null, - "documentation": "https://docs.rs/ctr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "curve25519-dalek", - "version": "4.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", - "license": "BSD-3-Clause", - "license_file": null, - "description": "A pure-Rust implementation of group operations on ristretto255 and Curve25519", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "group", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "getrandom" - ], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "curve25519-dalek-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(not(curve25519_dalek_backend = \"fiat\"), not(curve25519_dalek_backend = \"serial\"), target_arch = \"x86_64\"))", - "registry": null - }, - { - "name": "fiat-crypto", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(curve25519_dalek_backend = \"fiat\")", - "registry": null - }, - { - "name": "cpufeatures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"x86_64\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "curve25519_dalek", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "dalek_benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/benches/dalek_benchmarks.rs", - "edition": "2021", - "required-features": [ - "alloc", - "rand_core" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "zeroize?/alloc" - ], - "default": [ - "alloc", - "precomputed-tables", - "zeroize" - ], - "digest": [ - "dep:digest" - ], - "ff": [ - "dep:ff" - ], - "group": [ - "dep:group", - "rand_core" - ], - "group-bits": [ - "group", - "ff/bits" - ], - "legacy_compatibility": [], - "precomputed-tables": [], - "rand_core": [ - "dep:rand_core" - ], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "rand_core", - "digest", - "legacy_compatibility", - "group-bits" - ], - "rustdoc-args": [ - "--html-in-header", - "docs/assets/rustdoc-include-katex-header.html", - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Isis Lovecruft ", - "Henry de Valence " - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "cryptography", - "crypto", - "ristretto", - "curve25519", - "ristretto255" - ], - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek", - "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", - "documentation": "https://docs.rs/curve25519-dalek", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "curve25519-dalek-derive", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "curve25519-dalek Derives", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.66", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.27", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "curve25519_dalek_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/curve25519-dalek", - "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", - "documentation": "https://docs.rs/curve25519-dalek-derive", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "darling", - "version": "0.20.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", - "license": "MIT", - "license_file": null, - "description": "A proc-macro library for reading attributes into structs when\nimplementing custom derives.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "darling_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.20.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "darling_macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.20.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.86", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.15", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(compiletests)", - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.89", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(compiletests)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "darling", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "automatic_bounds", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/automatic_bounds.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "consume_fields", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/consume_fields.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "expr_with", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/expr_with.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "fallible_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/fallible_read.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "heterogeneous_enum_and_word", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/heterogeneous_enum_and_word.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "shorthand_or_long_field", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/shorthand_or_long_field.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "supports_struct", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/supports_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accrue_errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/accrue_errors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "attrs_with", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/attrs_with.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/compiletests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "computed_bound", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/computed_bound.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom_bound", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/custom_bound.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "data_with", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/data_with.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "defaults", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/defaults.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_newtype", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_newtype.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_struct", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_unit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_unit.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_error_accumulation", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten_error_accumulation.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_from_field", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten_from_field.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forward_attrs_to_from_attributes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/forward_attrs_to_from_attributes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_meta.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_type_param", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_type_param.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_type_param_default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_type_param_default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_variant", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_variant.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "happy_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/happy_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/hash_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "meta_with", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/meta_with.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/multiple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "newtype", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/newtype.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "skip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/skip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spanned_value", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/spanned_value.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "split_declaration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/split_declaration.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "suggestions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/suggestions.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "supports", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/supports.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unsupported_attributes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/unsupported_attributes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "suggestions" - ], - "diagnostics": [ - "darling_core/diagnostics" - ], - "suggestions": [ - "darling_core/suggestions" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/TedDriggs/darling", - "homepage": null, - "documentation": "https://docs.rs/darling/0.20.11", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "darling_core", - "version": "0.20.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "license": "MIT", - "license_file": null, - "description": "Helper crate for proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ident_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.86", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strsim", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "darling_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_core-0.20.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "diagnostics": [], - "strsim": [ - "dep:strsim" - ], - "suggestions": [ - "strsim" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_core-0.20.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/TedDriggs/darling", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "darling_macro", - "version": "0.20.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", - "license": "MIT", - "license_file": null, - "description": "Internal support for a proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "darling_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.20.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "darling_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_macro-0.20.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_macro-0.20.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/TedDriggs/darling", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "dashmap", - "version": "6.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "license": "MIT", - "license_file": null, - "description": "Blazing fast concurrent HashMap for Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "raw" - ], - "target": null, - "registry": null - }, - { - "name": "lock_api", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.18.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.188", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "typesize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dashmap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "inline": [ - "hashbrown/inline-more" - ], - "raw-api": [], - "rayon": [ - "dep:rayon" - ], - "serde": [ - "dep:serde" - ], - "typesize": [ - "dep:typesize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "rayon", - "raw-api", - "serde" - ] - } - } - }, - "publish": null, - "authors": [ - "Acrimon " - ], - "categories": [ - "concurrency", - "algorithms", - "data-structures" - ], - "keywords": [ - "atomic", - "concurrent", - "hashmap" - ], - "readme": "README.md", - "repository": "https://github.com/xacrimon/dashmap", - "homepage": "https://github.com/xacrimon/dashmap", - "documentation": "https://docs.rs/dashmap", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "der", - "version": "0.7.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules\n(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with\nfull support for heapless no_std targets\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "const-oid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "der_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flagset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pem-rfc7468", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "der", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "datetime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/datetime.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pem", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/pem.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set_of", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/set_of.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "zeroize?/alloc" - ], - "arbitrary": [ - "dep:arbitrary", - "const-oid?/arbitrary", - "std" - ], - "bytes": [ - "dep:bytes", - "alloc" - ], - "derive": [ - "dep:der_derive" - ], - "flagset": [ - "dep:flagset" - ], - "oid": [ - "dep:const-oid" - ], - "pem": [ - "dep:pem-rfc7468", - "alloc", - "zeroize" - ], - "real": [], - "std": [ - "alloc" - ], - "time": [ - "dep:time" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "keywords": [ - "asn1", - "crypto", - "itu", - "pkcs" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/der", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "derive_arbitrary", - "version": "1.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_arbitrary@1.4.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Derives arbitrary traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive", - "parsing", - "extra-traits" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "derive_arbitrary", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_arbitrary-1.4.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_arbitrary-1.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust-Fuzz Project Developers", - "Nick Fitzgerald ", - "Manish Goregaokar ", - "Andre Bogus ", - "Corey Farwell " - ], - "categories": [ - "development-tools::testing" - ], - "keywords": [ - "arbitrary", - "testing", - "derive", - "macro" - ], - "readme": "README.md", - "repository": "https://github.com/rust-fuzz/arbitrary", - "homepage": null, - "documentation": "https://docs.rs/arbitrary/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "derive_more", - "version": "0.99.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", - "license": "MIT", - "license_file": null, - "description": "Adds #[derive(x)] macros for more traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "peg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "derive_more", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deny_missing_docs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/examples/deny_missing_docs.rs", - "edition": "2018", - "required-features": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "from", - "from_str", - "index", - "index_mut", - "into", - "mul_assign", - "mul", - "not", - "try_into", - "is_variant" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "add", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/add.rs", - "edition": "2018", - "required-features": [ - "add" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "add_assign", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/add_assign.rs", - "edition": "2018", - "required-features": [ - "add_assign" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "as_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/as_mut.rs", - "edition": "2018", - "required-features": [ - "as_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "as_ref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/as_ref.rs", - "edition": "2018", - "required-features": [ - "as_ref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "boats_display_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/boats_display_derive.rs", - "edition": "2018", - "required-features": [ - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constructor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/constructor.rs", - "edition": "2018", - "required-features": [ - "constructor" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/deref.rs", - "edition": "2018", - "required-features": [ - "deref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deref_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/deref_mut.rs", - "edition": "2018", - "required-features": [ - "deref_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "display", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/display.rs", - "edition": "2018", - "required-features": [ - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/error_tests.rs", - "edition": "2018", - "required-features": [ - "error" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/from.rs", - "edition": "2018", - "required-features": [ - "from" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_str", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/from_str.rs", - "edition": "2018", - "required-features": [ - "from_str" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/generics.rs", - "edition": "2018", - "required-features": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "from", - "from_str", - "index", - "index_mut", - "into", - "mul_assign", - "mul", - "not", - "try_into", - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "index", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/index.rs", - "edition": "2018", - "required-features": [ - "index" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "index_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/index_mut.rs", - "edition": "2018", - "required-features": [ - "index_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "into", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/into.rs", - "edition": "2018", - "required-features": [ - "into" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "into_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/into_iterator.rs", - "edition": "2018", - "required-features": [ - "into_iterator" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "is_variant", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/is_variant.rs", - "edition": "2018", - "required-features": [ - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/lib.rs", - "edition": "2018", - "required-features": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "from", - "from_str", - "index", - "index_mut", - "into", - "mul_assign", - "mul", - "not", - "try_into", - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mul", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/mul.rs", - "edition": "2018", - "required-features": [ - "mul" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mul_assign", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/mul_assign.rs", - "edition": "2018", - "required-features": [ - "mul_assign" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/no_std.rs", - "edition": "2018", - "required-features": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "from", - "from_str", - "index", - "index_mut", - "into", - "mul_assign", - "mul", - "not", - "sum", - "try_into", - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "not", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/not.rs", - "edition": "2018", - "required-features": [ - "not" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sum", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/sum.rs", - "edition": "2018", - "required-features": [ - "sum" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_into", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/try_into.rs", - "edition": "2018", - "required-features": [ - "try_into" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unwrap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/unwrap.rs", - "edition": "2018", - "required-features": [ - "unwrap" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "add": [], - "add_assign": [], - "as_mut": [], - "as_ref": [], - "constructor": [], - "convert_case": [ - "dep:convert_case" - ], - "default": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "error", - "from", - "from_str", - "index", - "index_mut", - "into", - "into_iterator", - "iterator", - "mul_assign", - "mul", - "not", - "sum", - "try_into", - "is_variant", - "unwrap" - ], - "deref": [], - "deref_mut": [], - "display": [ - "syn/extra-traits" - ], - "error": [ - "syn/extra-traits" - ], - "from": [ - "syn/extra-traits" - ], - "from_str": [], - "generate-parsing-rs": [ - "peg" - ], - "index": [], - "index_mut": [], - "into": [ - "syn/extra-traits" - ], - "into_iterator": [], - "is_variant": [ - "convert_case" - ], - "iterator": [], - "mul": [ - "syn/extra-traits" - ], - "mul_assign": [ - "syn/extra-traits" - ], - "nightly": [], - "not": [ - "syn/extra-traits" - ], - "peg": [ - "dep:peg" - ], - "rustc_version": [ - "dep:rustc_version" - ], - "sum": [], - "testing-helpers": [ - "rustc_version" - ], - "track-caller": [], - "try_into": [ - "syn/extra-traits" - ], - "unwrap": [ - "convert_case", - "rustc_version" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jelte Fennema " - ], - "categories": [ - "development-tools", - "development-tools::procedural-macro-helpers", - "no-std" - ], - "keywords": [ - "derive", - "Add", - "From", - "Display", - "IntoIterator" - ], - "readme": "README.md", - "repository": "https://github.com/JelteF/derive_more", - "homepage": null, - "documentation": "https://jeltef.github.io/derive_more/derive_more/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "derive_more", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", - "license": "MIT", - "license_file": null, - "description": "Adds #[derive(x)] macros for more traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "derive_more-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.56", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "derive_more", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deny_missing_docs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/examples/deny_missing_docs.rs", - "edition": "2021", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "add", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/add.rs", - "edition": "2021", - "required-features": [ - "add" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "add_assign", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/add_assign.rs", - "edition": "2021", - "required-features": [ - "add_assign" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "as_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/as_mut.rs", - "edition": "2021", - "required-features": [ - "as_ref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "as_ref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/as_ref.rs", - "edition": "2021", - "required-features": [ - "as_ref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "boats_display_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/boats_display_derive.rs", - "edition": "2021", - "required-features": [ - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compile_fail", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/compile_fail/mod.rs", - "edition": "2021", - "required-features": [ - "as_ref", - "debug", - "display", - "from", - "into", - "is_variant", - "try_from" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constructor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/constructor.rs", - "edition": "2021", - "required-features": [ - "constructor" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/debug.rs", - "edition": "2021", - "required-features": [ - "debug" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/deref.rs", - "edition": "2021", - "required-features": [ - "deref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deref_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/deref_mut.rs", - "edition": "2021", - "required-features": [ - "deref_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "display", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/display.rs", - "edition": "2021", - "required-features": [ - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/error_tests.rs", - "edition": "2021", - "required-features": [ - "error" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/from.rs", - "edition": "2021", - "required-features": [ - "from" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_str", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/from_str.rs", - "edition": "2021", - "required-features": [ - "from_str" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/generics.rs", - "edition": "2021", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "index", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/index.rs", - "edition": "2021", - "required-features": [ - "index" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "index_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/index_mut.rs", - "edition": "2021", - "required-features": [ - "index_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "into", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/into.rs", - "edition": "2021", - "required-features": [ - "into" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "into_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/into_iterator.rs", - "edition": "2021", - "required-features": [ - "into_iterator" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "is_variant", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/is_variant.rs", - "edition": "2021", - "required-features": [ - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/lib.rs", - "edition": "2021", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mul", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/mul.rs", - "edition": "2021", - "required-features": [ - "mul" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mul_assign", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/mul_assign.rs", - "edition": "2021", - "required-features": [ - "mul_assign" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/no_std.rs", - "edition": "2021", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "not", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/not.rs", - "edition": "2021", - "required-features": [ - "not" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sum", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/sum.rs", - "edition": "2021", - "required-features": [ - "sum" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_from.rs", - "edition": "2021", - "required-features": [ - "try_from" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_into", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_into.rs", - "edition": "2021", - "required-features": [ - "try_into" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_unwrap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_unwrap.rs", - "edition": "2021", - "required-features": [ - "try_unwrap" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unwrap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/unwrap.rs", - "edition": "2021", - "required-features": [ - "unwrap" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "add": [ - "derive_more-impl/add" - ], - "add_assign": [ - "derive_more-impl/add_assign" - ], - "as_ref": [ - "derive_more-impl/as_ref" - ], - "constructor": [ - "derive_more-impl/constructor" - ], - "debug": [ - "derive_more-impl/debug" - ], - "default": [ - "std" - ], - "deref": [ - "derive_more-impl/deref" - ], - "deref_mut": [ - "derive_more-impl/deref_mut" - ], - "display": [ - "derive_more-impl/display" - ], - "error": [ - "derive_more-impl/error" - ], - "from": [ - "derive_more-impl/from" - ], - "from_str": [ - "derive_more-impl/from_str" - ], - "full": [ - "add", - "add_assign", - "as_ref", - "constructor", - "debug", - "deref", - "deref_mut", - "display", - "error", - "from", - "from_str", - "index", - "index_mut", - "into", - "into_iterator", - "is_variant", - "mul", - "mul_assign", - "not", - "sum", - "try_from", - "try_into", - "try_unwrap", - "unwrap" - ], - "index": [ - "derive_more-impl/index" - ], - "index_mut": [ - "derive_more-impl/index_mut" - ], - "into": [ - "derive_more-impl/into" - ], - "into_iterator": [ - "derive_more-impl/into_iterator" - ], - "is_variant": [ - "derive_more-impl/is_variant" - ], - "mul": [ - "derive_more-impl/mul" - ], - "mul_assign": [ - "derive_more-impl/mul_assign" - ], - "not": [ - "derive_more-impl/not" - ], - "std": [], - "sum": [ - "derive_more-impl/sum" - ], - "testing-helpers": [ - "derive_more-impl/testing-helpers", - "dep:rustc_version" - ], - "try_from": [ - "derive_more-impl/try_from" - ], - "try_into": [ - "derive_more-impl/try_into" - ], - "try_unwrap": [ - "derive_more-impl/try_unwrap" - ], - "unwrap": [ - "derive_more-impl/unwrap" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "full" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Jelte Fennema " - ], - "categories": [ - "development-tools", - "development-tools::procedural-macro-helpers", - "no-std", - "rust-patterns" - ], - "keywords": [ - "derive", - "Add", - "From", - "Display", - "IntoIterator" - ], - "readme": "README.md", - "repository": "https://github.com/JelteF/derive_more", - "homepage": null, - "documentation": "https://docs.rs/derive_more", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.75.0" - }, - { - "name": "derive_more-impl", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", - "license": "MIT", - "license_file": null, - "description": "Internal implementation of `derive_more` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.45", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-xid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "derive_more_impl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "add": [], - "add_assign": [], - "as_ref": [ - "syn/extra-traits", - "syn/visit" - ], - "constructor": [], - "debug": [ - "syn/extra-traits", - "dep:unicode-xid" - ], - "default": [], - "deref": [], - "deref_mut": [], - "display": [ - "syn/extra-traits", - "dep:unicode-xid" - ], - "error": [ - "syn/extra-traits" - ], - "from": [ - "syn/extra-traits" - ], - "from_str": [], - "full": [ - "add", - "add_assign", - "as_ref", - "constructor", - "debug", - "deref", - "deref_mut", - "display", - "error", - "from", - "from_str", - "index", - "index_mut", - "into", - "into_iterator", - "is_variant", - "mul", - "mul_assign", - "not", - "sum", - "try_from", - "try_into", - "try_unwrap", - "unwrap" - ], - "index": [], - "index_mut": [], - "into": [ - "syn/extra-traits" - ], - "into_iterator": [], - "is_variant": [ - "dep:convert_case" - ], - "mul": [ - "syn/extra-traits" - ], - "mul_assign": [ - "syn/extra-traits" - ], - "not": [ - "syn/extra-traits" - ], - "sum": [], - "testing-helpers": [ - "dep:rustc_version" - ], - "try_from": [], - "try_into": [ - "syn/extra-traits" - ], - "try_unwrap": [ - "dep:convert_case" - ], - "unwrap": [ - "dep:convert_case" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-1.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "full" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Jelte Fennema " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/JelteF/derive_more", - "homepage": null, - "documentation": "https://docs.rs/derive_more", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.75.0" - }, - { - "name": "digest", - "version": "0.10.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Traits for cryptographic hash functions and message authentication codes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "blobby", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "block-buffer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "const-oid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crypto-common", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "digest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "blobby": [ - "dep:blobby" - ], - "block-buffer": [ - "dep:block-buffer" - ], - "const-oid": [ - "dep:const-oid" - ], - "core-api": [ - "block-buffer" - ], - "default": [ - "core-api" - ], - "dev": [ - "blobby" - ], - "mac": [ - "subtle" - ], - "oid": [ - "const-oid" - ], - "rand_core": [ - "crypto-common/rand_core" - ], - "std": [ - "alloc", - "crypto-common/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "digest", - "crypto", - "hash" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "homepage": null, - "documentation": "https://docs.rs/digest", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "digital-cash", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "digital_cash", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/src/digital_cash.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "digital_cash_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/tests/digital_cash_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "digital_cash_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/tests/digital_cash_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Valentin Craciun" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "digital-cash-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "digital-cash", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "digital-cash-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "displaydoc", - "version": "0.2.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.24", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "displaydoc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compile_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/compile_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "happy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/happy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "num_in_field", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/num_in_field.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "variantless", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/variantless.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "no-dev-version": true, - "pre-release-hook": [ - "./update-readme.sh" - ], - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "#![doc(html_root_url = \"https://docs.rs/{{crate_name}}/{{version}}\")]", - "search": "#!\\[doc\\(html_root_url.*" - }, - { - "file": "CHANGELOG.md", - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n\n# [Unreleased] - ReleaseDate", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/yaahc/{{crate_name}}/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Jane Lusby " - ], - "categories": [], - "keywords": [ - "display", - "derive" - ], - "readme": "README.md", - "repository": "https://github.com/yaahc/displaydoc", - "homepage": "https://github.com/yaahc/displaydoc", - "documentation": "https://docs.rs/displaydoc", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "dynasm", - "version": "1.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "license": "MPL-2.0", - "license_file": null, - "description": "A plugin for assembling code at runtime. Combined with the runtime crate dynasmrt it can be used to write JIT compilers easily.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro-error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.26", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "dynasm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-1.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "dynasm_extract": [], - "dynasm_opmap": [], - "filelocal": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-1.2.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alexander Stocko ", - "CensoredUsername " - ], - "categories": [], - "keywords": [ - "jit", - "dynasm", - "dynasmrt", - "dynasm-rs", - "assembler" - ], - "readme": "../README.md", - "repository": "https://github.com/CensoredUsername/dynasm-rs", - "homepage": null, - "documentation": "https://censoredusername.github.io/dynasm-rs/plugin/dynasm/index.html", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dynasmrt", - "version": "1.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "license": "MPL-2.0", - "license_file": null, - "description": "A simple runtime for assembling code at runtime. Combined with the plugin crate dynasm it can be used to write JIT compilers easily.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dynasm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memmap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dynasmrt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-1.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-1.2.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alexander Stocko ", - "CensoredUsername " - ], - "categories": [], - "keywords": [ - "jit", - "dynasm", - "dynasmrt", - "dynasm-rs", - "assembler" - ], - "readme": "../README.md", - "repository": "https://github.com/CensoredUsername/dynasm-rs", - "homepage": null, - "documentation": "https://censoredusername.github.io/dynasm-rs/plugin/dynasm/index.html", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ed25519", - "version": "2.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)\nsupport library providing signature type definitions and PKCS#8 private key\ndecoding/encoding support\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "pkcs8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "signature", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ed25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rand_core" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "ring-compat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "signature" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ed25519", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/hex.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pkcs8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/pkcs8.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "pkcs8?/alloc" - ], - "default": [ - "std" - ], - "pem": [ - "alloc", - "pkcs8/pem" - ], - "pkcs8": [ - "dep:pkcs8" - ], - "serde": [ - "dep:serde" - ], - "serde_bytes": [ - "serde", - "dep:serde_bytes" - ], - "std": [ - "pkcs8?/std", - "signature/std" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "curve25519", - "ecc", - "signature", - "signing" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/signatures/tree/master/ed25519", - "homepage": null, - "documentation": "https://docs.rs/ed25519", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "ed25519-dalek", - "version": "2.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", - "license": "BSD-3-Clause", - "license_file": null, - "description": "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "curve25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "digest" - ], - "target": null, - "registry": null - }, - { - "name": "ed25519", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=2.2, <2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "merlin", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "signature", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=2.0, <2.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "blake2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "curve25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "digest", - "rand_core" - ], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "x25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "static_secrets" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ed25519_dalek", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ed25519", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/ed25519.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pkcs8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/pkcs8.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "validation_criteria", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/validation_criteria.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "x25519", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/x25519.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ed25519_benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/benches/ed25519_benchmarks.rs", - "edition": "2021", - "required-features": [ - "rand_core" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "curve25519-dalek/alloc", - "ed25519/alloc", - "serde?/alloc", - "zeroize/alloc" - ], - "asm": [ - "sha2/asm" - ], - "batch": [ - "alloc", - "merlin", - "rand_core" - ], - "default": [ - "fast", - "std", - "zeroize" - ], - "digest": [ - "signature/digest" - ], - "fast": [ - "curve25519-dalek/precomputed-tables" - ], - "hazmat": [], - "legacy_compatibility": [ - "curve25519-dalek/legacy_compatibility" - ], - "merlin": [ - "dep:merlin" - ], - "pem": [ - "alloc", - "ed25519/pem", - "pkcs8" - ], - "pkcs8": [ - "ed25519/pkcs8" - ], - "rand_core": [ - "dep:rand_core" - ], - "serde": [ - "dep:serde", - "ed25519/serde" - ], - "signature": [ - "dep:signature" - ], - "std": [ - "alloc", - "ed25519/std", - "serde?/std", - "sha2/std" - ], - "zeroize": [ - "dep:zeroize", - "curve25519-dalek/zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "batch", - "digest", - "hazmat", - "pem", - "serde" - ], - "rustdoc-args": [ - "--html-in-header", - "docs/assets/rustdoc-include-katex-header.html", - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "isis lovecruft ", - "Tony Arcieri ", - "Michael Rosenberg " - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "cryptography", - "ed25519", - "curve25519", - "signature", - "ECC" - ], - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/ed25519-dalek", - "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", - "documentation": "https://docs.rs/ed25519-dalek", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "either", - "version": "1.15.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.95", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "either", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - }, - "release": { - "allow-branch": [ - "main" - ], - "sign-tag": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "data-structure", - "no_std" - ], - "readme": "README-crates.io.md", - "repository": "https://github.com/rayon-rs/either", - "homepage": null, - "documentation": "https://docs.rs/either/1/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "empty", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "empty", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/src/empty.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "empty_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/tests/empty_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "empty_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/tests/empty_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "empty-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "empty", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "empty-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "encoding_rs", - "version": "0.8.35", - "id": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", - "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", - "license_file": null, - "description": "A Gecko-oriented implementation of the Encoding Standard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "any_all_workaround", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "encoding_rs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "any_all_workaround": [ - "dep:any_all_workaround" - ], - "default": [ - "alloc" - ], - "fast-big5-hanzi-encode": [], - "fast-gb-hanzi-encode": [], - "fast-hangul-encode": [], - "fast-hanja-encode": [], - "fast-kanji-encode": [], - "fast-legacy-encode": [ - "fast-hangul-encode", - "fast-hanja-encode", - "fast-kanji-encode", - "fast-gb-hanzi-encode", - "fast-big5-hanzi-encode" - ], - "less-slow-big5-hanzi-encode": [], - "less-slow-gb-hanzi-encode": [], - "less-slow-kanji-encode": [], - "serde": [ - "dep:serde" - ], - "simd-accel": [ - "any_all_workaround" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Henri Sivonen " - ], - "categories": [ - "text-processing", - "encoding", - "web-programming", - "internationalization" - ], - "keywords": [ - "encoding", - "web", - "unicode", - "charset" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/encoding_rs", - "homepage": "https://docs.rs/encoding_rs/", - "documentation": "https://docs.rs/encoding_rs/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "endian-type", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", - "license": "MIT", - "license_file": null, - "description": "Type safe wrappers for types with a defined byte order", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "endian_type", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endian-type-0.1.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endian-type-0.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Lolirofle " - ], - "categories": [], - "keywords": [ - "endian", - "byteorder" - ], - "readme": null, - "repository": "https://github.com/Lolirofle/endian-type.git", - "homepage": "https://github.com/Lolirofle/endian-type", - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "enum-iterator", - "version": "0.7.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "license": "0BSD", - "license_file": null, - "description": "Tools to iterate over the variants of a field-less enum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "enum-iterator-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "enum_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-0.7.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-0.7.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Stephane Raux " - ], - "categories": [], - "keywords": [ - "enum", - "variants", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/stephaneyfx/enum-iterator.git", - "homepage": "https://github.com/stephaneyfx/enum-iterator", - "documentation": "https://docs.rs/enum-iterator", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "enum-iterator-derive", - "version": "0.7.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", - "license": "0BSD", - "license_file": null, - "description": "Procedural macro to iterate over the variants of a field-less enum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "enum_iterator_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-derive-0.7.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-derive-0.7.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Stephane Raux " - ], - "categories": [], - "keywords": [ - "enum", - "variants", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/stephaneyfx/enum-iterator.git", - "homepage": "https://github.com/stephaneyfx/enum-iterator", - "documentation": "https://docs.rs/enum-iterator-derive", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "enumset", - "version": "1.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A library for creating compact sets of enums.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "enumset_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "serde2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "i128" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "enumset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "conversions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/conversions.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ops", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/ops.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "repr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/repr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "proc-macro-crate": [ - "enumset_derive/proc-macro-crate" - ], - "serde": [ - "serde2", - "enumset_derive/serde" - ], - "serde2": [ - "dep:serde2" - ], - "std": [ - "alloc", - "enumset_derive/proc-macro-crate", - "enumset_derive/std_deprecation_warning" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Alissa Rao " - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "enum", - "bitset" - ], - "readme": "README.md", - "repository": "https://github.com/Lymia/enumset", - "homepage": null, - "documentation": "https://docs.rs/enumset/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "enumset_derive", - "version": "0.10.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "An internal helper crate for enumset. Not public API.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "darling", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro-crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "enumset_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset_derive-0.10.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "proc-macro-crate": [ - "dep:proc-macro-crate" - ], - "serde": [], - "std_deprecation_warning": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset_derive-0.10.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alissa Rao " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/Lymia/enumset", - "homepage": null, - "documentation": "https://lymia.moe/doc/enumset/enumset/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "env_filter", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Filter log events using environment variables\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "perf" - ], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "env_filter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-0.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "regex" - ], - "regex": [ - "dep:regex" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-0.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "logging", - "log", - "logger" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/env_logger", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "env_logger", - "version": "0.11.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A logging implementation for `log` which is configured via an environment\nvariable.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "wincon" - ], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_filter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "env_logger", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_default_format", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/custom_default_format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_format", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/custom_format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "direct_logger", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/direct_logger.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "filters_from_code", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/filters_from_code.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "in_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/in_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "syslog_friendly_format", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/syslog_friendly_format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "init-twice-retains-filter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/init-twice-retains-filter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "log-in-log", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/log-in-log.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "log_tls_dtors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/log_tls_dtors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regexp_filter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/regexp_filter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "auto-color": [ - "color", - "anstream/auto" - ], - "color": [ - "dep:anstream", - "dep:anstyle" - ], - "default": [ - "auto-color", - "humantime", - "regex" - ], - "humantime": [ - "dep:jiff" - ], - "kv": [ - "log/kv" - ], - "regex": [ - "env_filter/regex" - ], - "unstable-kv": [ - "kv" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "logging", - "log", - "logger" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/env_logger", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "equivalent", - "version": "1.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Traits for key comparison in maps.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "equivalent", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hashmap", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/indexmap-rs/equivalent", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.6" - }, - { - "name": "erc1155", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "erc1155-user-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc1155", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/src/erc1155.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/tests/erc1155_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/tests/erc1155_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-marketplace", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc1155", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc1155_marketplace", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155_marketplace_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/tests/erc1155_marketplace_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155_marketplace_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/tests/erc1155_marketplace_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-marketplace-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc1155-marketplace", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155-marketplace-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc1155", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-user-mock", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc1155_user_mock", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-user-mock-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc1155-user-mock", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155-user-mock-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc20", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc20", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/src/erc20.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc20_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/tests/erc20_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc20_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/tests/erc20_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc20-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc20-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc721", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc721", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/src/erc721.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/tests/nft_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/tests/nft_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc721-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc721", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc721-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "errno", - "version": "0.3.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Cross-platform interface to the `errno` variable.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"hermit\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Diagnostics_Debug" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "errno", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.11/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "libc/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Chris Wong ", - "Dan Gohman " - ], - "categories": [ - "no-std", - "os" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/lambda-fairy/rust-errno", - "homepage": null, - "documentation": "https://docs.rs/errno", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "esdt-contract-pair", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "first-contract", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "second-contract", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract" - } - ], - "targets": [ - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "esdt-system-sc-mock", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "esdt_system_sc_mock", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/src/esdt_system_sc_mock.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_system_sc_mock_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/tests/esdt_system_sc_mock_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_system_sc_mock_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/tests/esdt_system_sc_mock_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "esdt-system-sc-mock-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "esdt-system-sc-mock-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "esdt-transfer-with-fee", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "esdt_transfer_with_fee", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/src/esdt_transfer_with_fee.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_transfer_with_fee_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/tests/esdt_transfer_with_fee_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_transfer_with_fee_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/tests/esdt_transfer_with_fee_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "esdt-transfer-with-fee-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "esdt-transfer-with-fee", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "esdt-transfer-with-fee-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "exchange-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "exchange_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/src/exchange_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "exchange_features_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/tests/exchange_features_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin-Marius Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "exchange-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "exchange-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "exchange-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "factorial", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmer-experimental" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "factorial", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/src/factorial.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "factorial_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "factorial_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "factorial_scenario_rs_wasmer_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_rs_wasmer_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "factorial_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "run-go-tests": [ - "multiversx-sc-scenario/run-go-tests" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "factorial-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "factorial", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "factorial-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "factory-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "order-book-factory", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "factory-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fallible-iterator", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Fallible iterator traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fallible_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-fallible-iterator", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fastrand", - "version": "2.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A simple and fast random number generator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wyhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "js" - ], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fastrand", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "char", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/tests/char.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/tests/smoke.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "getrandom": [ - "dep:getrandom" - ], - "js": [ - "std", - "getrandom" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Stjepan Glavina " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "simple", - "fast", - "rand", - "random", - "wyrand" - ], - "readme": "README.md", - "repository": "https://github.com/smol-rs/fastrand", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "fiat-crypto", - "version": "0.2.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#fiat-crypto@0.2.9", - "license": "MIT OR Apache-2.0 OR BSD-1-Clause", - "license_file": null, - "description": "Fiat-crypto generated Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fiat_crypto", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fiat-crypto-0.2.9/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fiat-crypto-0.2.9/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Fiat Crypto library authors " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/mit-plv/fiat-crypto", - "homepage": "https://github.com/mit-plv/fiat-crypto", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "filetime", - "version": "0.2.25", - "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Platform-agnostic accessors of timestamps in File metadata\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libredox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"redox\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.27", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "filetime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.25/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.25/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "timestamp", - "mtime" - ], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/filetime", - "homepage": "https://github.com/alexcrichton/filetime", - "documentation": "https://docs.rs/filetime", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "first-contract", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "first_contract", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "first-contract-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "first-contract", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "first-contract-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "flate2", - "version": "1.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams.\nSupports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,\nand raw deflate streams.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cloudflare-zlib-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libz-ng-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libz-rs-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "rust-allocator" - ], - "target": null, - "registry": null - }, - { - "name": "libz-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "with-alloc" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "with-alloc" - ], - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "flate2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "compress_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/compress_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decompress_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/decompress_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflatedecoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflatedecoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflatedecoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflateencoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflateencoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflateencoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzbuilder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzbuilder.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzdecoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzdecoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzdecoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzencoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzencoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzencoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzmultidecoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzmultidecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzmultidecoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzmultidecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibdecoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibdecoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibdecoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibencoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibencoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibencoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "early-flush", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/early-flush.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "empty-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/empty-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gunzip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/gunzip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zero-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/zero-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "any_impl": [], - "any_zlib": [ - "any_impl" - ], - "cloudflare-zlib-sys": [ - "dep:cloudflare-zlib-sys" - ], - "cloudflare_zlib": [ - "any_zlib", - "cloudflare-zlib-sys" - ], - "default": [ - "rust_backend" - ], - "libz-ng-sys": [ - "dep:libz-ng-sys" - ], - "libz-rs-sys": [ - "dep:libz-rs-sys" - ], - "libz-sys": [ - "dep:libz-sys" - ], - "miniz-sys": [ - "rust_backend" - ], - "miniz_oxide": [ - "dep:miniz_oxide" - ], - "rust_backend": [ - "miniz_oxide", - "any_impl" - ], - "zlib": [ - "any_zlib", - "libz-sys" - ], - "zlib-default": [ - "any_zlib", - "libz-sys/default" - ], - "zlib-ng": [ - "any_zlib", - "libz-ng-sys" - ], - "zlib-ng-compat": [ - "zlib", - "libz-sys/zlib-ng" - ], - "zlib-rs": [ - "any_zlib", - "libz-rs-sys" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton ", - "Josh Triplett " - ], - "categories": [ - "compression", - "api-bindings" - ], - "keywords": [ - "gzip", - "deflate", - "zlib", - "zlib-ng", - "encoding" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/flate2-rs", - "homepage": "https://github.com/rust-lang/flate2-rs", - "documentation": "https://docs.rs/flate2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.67.0" - }, - { - "name": "fnv", - "version": "1.0.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "license": "Apache-2.0 / MIT", - "license_file": null, - "description": "Fowler–Noll–Vo hash function", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fnv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/servo/rust-fnv", - "homepage": null, - "documentation": "https://doc.servo.org/fnv/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "foldhash", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", - "license": "Zlib", - "license_file": null, - "description": "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "foldhash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Orson Peters " - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "hash", - "hasher", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/orlp/foldhash", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "foreign-types", - "version": "0.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A framework for Rust wrappers over C APIs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "foreign-types-shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "foreign_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/sfackler/foreign-types", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "foreign-types-shared", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "An internal crate used by foreign-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "foreign_types_shared", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/sfackler/foreign-types", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "form_urlencoded", - "version": "1.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "form_urlencoded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - } - ], - "features": { - "alloc": [ - "percent-encoding/alloc" - ], - "default": [ - "std" - ], - "std": [ - "alloc", - "percent-encoding/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "no_std" - ], - "keywords": [], - "readme": null, - "repository": "https://github.com/servo/rust-url", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.51" - }, - { - "name": "formatted-message-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "formatted_message_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/src/formatted_message_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "msg_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "msg_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "msg_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "formatted-message-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "formatted-message-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "formatted-message-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/src/forwarder_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "forwarder", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder_interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/src/interact.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/src/interactor_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "interact_cs_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/interact_cs_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "interact_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/interact_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenarios_go_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/scenarios_go_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-legacy", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder_legacy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/src/forwarder_legacy_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-legacy-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "forwarder-legacy", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-legacy-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "forwarder", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-queue", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-wasm-adapter", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder_queue", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/src/forwarder_queue.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "multiversx-sc-wasm-adapter": [ - "dep:multiversx-sc-wasm-adapter" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Costin Carabas " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-queue-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "forwarder-queue", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-queue-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-raw", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder_raw", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/src/forwarder_raw.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-raw-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "forwarder-raw", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-raw-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fractional-nfts", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fractional_nfts", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/src/fractional_nfts.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fractional-nfts-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "fractional-nfts", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "fractional-nfts-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "futures", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "sink" - ], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-executor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-task", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "sink" - ], - "target": null, - "registry": null - }, - { - "name": "assert_matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "_require_features", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/_require_features.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async_await_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/async_await_macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "auto_traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/auto_traits.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bilock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/bilock.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/compat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "eager_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/eager_drop.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "eventual", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/eventual.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_abortable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_abortable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_basic_combinators", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_basic_combinators.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_fuse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_fuse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_inspect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_inspect.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_join_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_join_all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_obj", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_obj.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_select_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_select_all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_select_ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_select_ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_shared", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_shared.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_try_flatten_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_try_flatten_stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_try_join_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_try_join_all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_buf_reader", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_buf_reader.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_buf_writer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_buf_writer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_cursor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_cursor.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_line_writer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_line_writer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_lines", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_lines.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_exact", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_exact.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_line", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_line.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_to_end", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_to_end.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_to_string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_to_string.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_until", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_until.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_window", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_window.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lock_mutex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/lock_mutex.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro_comma_support", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/macro_comma_support.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "object_safety", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/object_safety.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "oneshot", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/oneshot.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ready_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/ready_queue.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "recurse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/recurse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sink", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/sink.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sink_fanout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/sink_fanout.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_abortable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_abortable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_buffer_unordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_buffer_unordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_catch_unwind", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_catch_unwind.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_futures_ordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_futures_ordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_futures_unordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_futures_unordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_into_async_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_into_async_read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_peekable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_peekable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_select_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_select_all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_select_next_some", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_select_next_some.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_split.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_try_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_try_stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_unfold", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_unfold.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_arc_wake", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/task_arc_wake.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_atomic_waker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/task_atomic_waker.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/test_macro.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/try_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "futures-core/alloc", - "futures-task/alloc", - "futures-sink/alloc", - "futures-channel/alloc", - "futures-util/alloc" - ], - "async-await": [ - "futures-util/async-await", - "futures-util/async-await-macro" - ], - "bilock": [ - "futures-util/bilock" - ], - "cfg-target-has-atomic": [], - "compat": [ - "std", - "futures-util/compat" - ], - "default": [ - "std", - "async-await", - "executor" - ], - "executor": [ - "std", - "futures-executor/std" - ], - "futures-executor": [ - "dep:futures-executor" - ], - "io-compat": [ - "compat", - "futures-util/io-compat" - ], - "std": [ - "alloc", - "futures-core/std", - "futures-task/std", - "futures-io/std", - "futures-sink/std", - "futures-util/std", - "futures-util/io", - "futures-util/channel" - ], - "thread-pool": [ - "executor", - "futures-executor/thread-pool" - ], - "unstable": [ - "futures-core/unstable", - "futures-task/unstable", - "futures-channel/unstable", - "futures-io/unstable", - "futures-util/unstable" - ], - "write-all-vectored": [ - "futures-util/write-all-vectored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "std", - "async-await", - "compat", - "io-compat", - "executor", - "thread-pool" - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "asynchronous" - ], - "keywords": [ - "futures", - "async", - "future" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-channel", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Channels for asynchronous communication using futures-rs.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_channel", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "channel", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/channel.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mpsc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mpsc-close", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc-close.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mpsc-size_hint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc-size_hint.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "oneshot", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/oneshot.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mpsc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/benches/sync_mpsc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "futures-core/alloc" - ], - "cfg-target-has-atomic": [], - "default": [ - "std" - ], - "futures-sink": [ - "dep:futures-sink" - ], - "sink": [ - "futures-sink" - ], - "std": [ - "alloc", - "futures-core/std" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-core", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The core traits and types in for the `futures` library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "require-cas" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "cfg-target-has-atomic": [], - "default": [ - "std" - ], - "portable-atomic": [ - "dep:portable-atomic" - ], - "std": [ - "alloc" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "futures-executor", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Executors for asynchronous tasks based on the futures-rs library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-task", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_executor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "local_pool", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/tests/local_pool.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "thread_notify", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/benches/thread_notify.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "num_cpus": [ - "dep:num_cpus" - ], - "std": [ - "futures-core/std", - "futures-task/std", - "futures-util/std" - ], - "thread-pool": [ - "std", - "num_cpus" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-io", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_io", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "futures-macro", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The futures-rs procedural macro implementations.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "futures_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-sink", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The asynchronous `Sink` trait for the futures-rs library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_sink", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "futures-task", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Tools for working with tasks.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_task", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "cfg-target-has-atomic": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-util", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Common utilities and extension traits for the futures-rs library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "futures-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-task", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.25", - "kind": null, - "rename": "futures_01", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bilock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/bilock.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_unordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/flatten_unordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "futures_unordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/futures_unordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "select", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/select.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "futures-core/alloc", - "futures-task/alloc" - ], - "async-await": [], - "async-await-macro": [ - "async-await", - "futures-macro" - ], - "bilock": [], - "cfg-target-has-atomic": [], - "channel": [ - "std", - "futures-channel" - ], - "compat": [ - "std", - "futures_01" - ], - "default": [ - "std", - "async-await", - "async-await-macro" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "futures-io": [ - "dep:futures-io" - ], - "futures-macro": [ - "dep:futures-macro" - ], - "futures-sink": [ - "dep:futures-sink" - ], - "futures_01": [ - "dep:futures_01" - ], - "io": [ - "std", - "futures-io", - "memchr" - ], - "io-compat": [ - "io", - "compat", - "tokio-io" - ], - "memchr": [ - "dep:memchr" - ], - "portable-atomic": [ - "futures-core/portable-atomic" - ], - "sink": [ - "futures-sink" - ], - "slab": [ - "dep:slab" - ], - "std": [ - "alloc", - "futures-core/std", - "futures-task/std", - "slab" - ], - "tokio-io": [ - "dep:tokio-io" - ], - "unstable": [ - "futures-core/unstable", - "futures-task/unstable" - ], - "write-all-vectored": [ - "io" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "gas-schedule-generator", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-vm", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm" - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gas_schedule_generator", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "gas-schedule-generator", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generation_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/tests/generation_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "generic-array", - "version": "0.14.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "license": "MIT", - "license_file": null, - "description": "Generic types implementing functionality of arrays", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typenum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "generic_array", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "more_lengths": [], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "zeroize" - ] - } - } - }, - "publish": null, - "authors": [ - "Bartłomiej Kamiński ", - "Aaron Trent " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "generic", - "array" - ], - "readme": "README.md", - "repository": "https://github.com/fizyk20/generic-array.git", - "homepage": null, - "documentation": "http://fizyk20.github.io/generic-array/generic_array/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "generic-array", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", - "license": "MIT", - "license_file": null, - "description": "Generic types implementing functionality of arrays", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "const-default", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "faster-hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typenum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "const-generics" - ], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "generic_array", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-1.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "const-default": [ - "dep:const-default" - ], - "faster-hex": [ - "dep:faster-hex" - ], - "internals": [], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-1.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "zeroize", - "const-default", - "alloc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "all-features": true - } - }, - "publish": null, - "authors": [ - "Bartłomiej Kamiński ", - "Aaron Trent " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "generic", - "array" - ], - "readme": "README.md", - "repository": "https://github.com/fizyk20/generic-array.git", - "homepage": null, - "documentation": "https://fizyk20.github.io/generic-array/generic_array/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.83" - }, - { - "name": "getrandom", - "version": "0.2.16", - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A small cross-platform library for retrieving random data from system source", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.62", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "getrandom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/custom.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "normal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/normal.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rdrand", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/rdrand.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/benches/buffer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "custom": [], - "js": [ - "wasm-bindgen", - "js-sys" - ], - "js-sys": [ - "dep:js-sys" - ], - "linux_disable_fallback": [], - "rdrand": [], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "libc/rustc-dep-of-std", - "wasi/rustc-dep-of-std" - ], - "std": [], - "test-in-browser": [], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/Cargo.toml", - "metadata": { - "cross": { - "target": { - "x86_64-unknown-netbsd": { - "pre-build": [ - "mkdir -p /tmp/netbsd", - "curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O", - "tar -C /tmp/netbsd -xJf base.tar.xz", - "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", - "rm base.tar.xz", - "rm -rf /tmp/netbsd" - ] - } - } - }, - "docs": { - "rs": { - "features": [ - "std", - "custom" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "os", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-random/getrandom", - "homepage": null, - "documentation": "https://docs.rs/getrandom", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "getrandom", - "version": "0.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A small cross-platform library for retrieving random data from system source", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.98", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\")))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\")))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.77", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\"), target_feature = \"atomics\"))", - "registry": null - }, - { - "name": "wasi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))", - "registry": null - }, - { - "name": "r-efi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^5.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"netbsd\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"solaris\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"vxworks\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "getrandom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/benches/buffer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "rustc-dep-of-std": [ - "dep:compiler_builtins", - "dep:core" - ], - "std": [], - "wasm_js": [ - "dep:wasm-bindgen", - "dep:js-sys" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/Cargo.toml", - "metadata": { - "cross": { - "target": { - "x86_64-unknown-netbsd": { - "pre-build": [ - "mkdir -p /tmp/netbsd", - "curl -fO https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.3/amd64/binary/sets/base.tar.xz", - "tar -C /tmp/netbsd -xJf base.tar.xz", - "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", - "rm base.tar.xz", - "rm -rf /tmp/netbsd" - ] - } - } - }, - "docs": { - "rs": { - "features": [ - "std" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "os", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-random/getrandom", - "homepage": null, - "documentation": "https://docs.rs/getrandom", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "gimli", - "version": "0.28.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library for reading and writing the DWARF debugging format.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fallible-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-assembler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gimli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.28.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "read-all", - "write" - ], - "endian-reader": [ - "read", - "dep:stable_deref_trait" - ], - "fallible-iterator": [ - "dep:fallible-iterator" - ], - "read": [ - "read-core" - ], - "read-all": [ - "read", - "std", - "fallible-iterator", - "endian-reader" - ], - "read-core": [], - "rustc-dep-of-std": [ - "dep:core", - "dep:alloc", - "dep:compiler_builtins" - ], - "std": [ - "fallible-iterator?/std", - "stable_deref_trait?/std" - ], - "write": [ - "dep:indexmap" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.28.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "parser-implementations" - ], - "keywords": [ - "DWARF", - "debug", - "ELF", - "eh_frame" - ], - "readme": "./README.md", - "repository": "https://github.com/gimli-rs/gimli", - "homepage": null, - "documentation": "https://docs.rs/gimli", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "gimli", - "version": "0.31.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library for reading and writing the DWARF debugging format.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fallible-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-assembler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gimli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.31.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "read-all", - "write" - ], - "endian-reader": [ - "read", - "dep:stable_deref_trait" - ], - "fallible-iterator": [ - "dep:fallible-iterator" - ], - "read": [ - "read-core" - ], - "read-all": [ - "read", - "std", - "fallible-iterator", - "endian-reader" - ], - "read-core": [], - "rustc-dep-of-std": [ - "dep:core", - "dep:alloc", - "dep:compiler_builtins" - ], - "std": [ - "fallible-iterator?/std", - "stable_deref_trait?/std" - ], - "write": [ - "dep:indexmap" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.31.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "parser-implementations" - ], - "keywords": [ - "DWARF", - "debug", - "ELF", - "eh_frame" - ], - "readme": "README.md", - "repository": "https://github.com/gimli-rs/gimli", - "homepage": null, - "documentation": "https://docs.rs/gimli", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "glob", - "version": "0.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Support for matching file paths against Unix shell style patterns.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "glob", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "glob-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/tests/glob-std.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "filesystem" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/glob", - "homepage": "https://github.com/rust-lang/glob", - "documentation": "https://docs.rs/glob/0.3.1", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.23.0" - }, - { - "name": "globset", - "version": "0.4.16", - "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Cross platform single glob and glob set matching. Glob set matching is the\nprocess of matching one or more glob patterns against a single candidate path\nsimultaneously, and returning all of the globs that matched.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "perf", - "syntax", - "meta", - "nfa", - "hybrid" - ], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.188", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.107", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "globset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "log" - ], - "log": [ - "dep:log" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "simd-accel": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "regex", - "glob", - "multiple", - "set", - "pattern" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "documentation": "https://docs.rs/globset", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo", - "version": "0.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A modular toolkit for Rust and WebAssembly", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo-console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-dialogs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-events", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-history", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-net", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-render", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-storage", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-timers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-worker", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-0.8.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "console": [ - "gloo-console" - ], - "default": [ - "timers", - "events", - "file", - "dialogs", - "storage", - "render", - "console", - "utils", - "history", - "worker", - "net" - ], - "dialogs": [ - "gloo-dialogs" - ], - "events": [ - "gloo-events" - ], - "file": [ - "gloo-file" - ], - "futures": [ - "timers", - "file", - "worker", - "gloo-timers/futures", - "gloo-file/futures", - "gloo-worker/futures" - ], - "gloo-console": [ - "dep:gloo-console" - ], - "gloo-dialogs": [ - "dep:gloo-dialogs" - ], - "gloo-events": [ - "dep:gloo-events" - ], - "gloo-file": [ - "dep:gloo-file" - ], - "gloo-history": [ - "dep:gloo-history" - ], - "gloo-net": [ - "dep:gloo-net" - ], - "gloo-render": [ - "dep:gloo-render" - ], - "gloo-storage": [ - "dep:gloo-storage" - ], - "gloo-timers": [ - "dep:gloo-timers" - ], - "gloo-utils": [ - "dep:gloo-utils" - ], - "gloo-worker": [ - "dep:gloo-worker" - ], - "history": [ - "gloo-history" - ], - "net": [ - "gloo-net" - ], - "render": [ - "gloo-render" - ], - "storage": [ - "gloo-storage" - ], - "timers": [ - "gloo-timers" - ], - "utils": [ - "gloo-utils" - ], - "worker": [ - "gloo-worker" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-0.8.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "docsrs" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo", - "homepage": "https://gloo-rs.web.app/", - "documentation": "https://docs.rs/gloo/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-console", - "version": "0.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with browser's console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "console", - "Document" - ], - "target": null, - "registry": null - }, - { - "name": "gloo-timers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_console", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "web", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/tests/web.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "development-tools::profiling", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/console", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": "https://docs.rs/gloo-console/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-dialogs", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with dialogs in browser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Window" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_dialogs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-dialogs-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-dialogs-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/dialogs", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-events", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with DOM event listeners", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Event", - "EventTarget", - "AddEventListenerOptions" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "HtmlElement", - "Window", - "Document", - "Element", - "MouseEvent", - "ProgressEvent" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_events", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "web", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/tests/web.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "web-programming", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/events", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-file", - "version": "0.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with JavaScript files and blobs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-events", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Blob", - "File", - "FileList", - "FileReader", - "HtmlInputElement", - "BlobPropertyBag", - "FilePropertyBag", - "DomException", - "Url" - ], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmbind" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": "futures_rs", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Window", - "Response" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "web", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/tests/web.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "futures": [ - "futures-channel" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "mime": [ - "dep:mime" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "futures" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/file", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-history", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Universal Session History", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo-events", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde-wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "History", - "Window", - "Location", - "Url" - ], - "target": null, - "registry": null - }, - { - "name": "gloo-timers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_history", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser_history", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/browser_history.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser_history_feat_serialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/browser_history_feat_serialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_history", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/hash_history.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_history_feat_serialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/hash_history_feat_serialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "memory_history", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/memory_history.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "memory_history_feat_serialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/memory_history_feat_serialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/utils.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "query" - ], - "query": [ - "thiserror", - "serde_urlencoded" - ], - "serde_urlencoded": [ - "dep:serde_urlencoded" - ], - "thiserror": [ - "dep:thiserror" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "history", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/history", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-net", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "HTTP requests library for WASM Apps", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_net", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/tests/http.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "query", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/tests/query.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "json", - "websocket", - "http", - "eventsource" - ], - "eventsource": [ - "futures-channel", - "futures-core", - "pin-project", - "web-sys/Event", - "web-sys/EventTarget", - "web-sys/EventSource", - "web-sys/MessageEvent" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "futures-core": [ - "dep:futures-core" - ], - "futures-sink": [ - "dep:futures-sink" - ], - "http": [ - "web-sys/Headers", - "web-sys/UrlSearchParams", - "web-sys/Url", - "web-sys/Request", - "web-sys/RequestInit", - "web-sys/RequestMode", - "web-sys/Response", - "web-sys/ResponseInit", - "web-sys/ResponseType", - "web-sys/Window", - "web-sys/RequestCache", - "web-sys/RequestCredentials", - "web-sys/ObserverCallback", - "web-sys/RequestRedirect", - "web-sys/ReferrerPolicy", - "web-sys/AbortSignal", - "web-sys/ReadableStream", - "web-sys/Blob", - "web-sys/FormData", - "web-sys/WorkerGlobalScope" - ], - "json": [ - "serde", - "serde_json", - "gloo-utils/serde" - ], - "pin-project": [ - "dep:pin-project" - ], - "serde": [ - "dep:serde" - ], - "serde_json": [ - "dep:serde_json" - ], - "websocket": [ - "web-sys/WebSocket", - "web-sys/AddEventListenerOptions", - "web-sys/ErrorEvent", - "web-sys/FileReader", - "web-sys/MessageEvent", - "web-sys/ProgressEvent", - "web-sys/CloseEvent", - "web-sys/CloseEventInit", - "web-sys/BinaryType", - "web-sys/Blob", - "futures-channel", - "futures-core", - "futures-sink", - "pin-project" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group", - "Muhammad Hamza " - ], - "categories": [ - "wasm", - "web-programming::http-client", - "api-bindings" - ], - "keywords": [ - "requests", - "http", - "wasm", - "websockets" - ], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-net", - "version": "0.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "HTTP requests library for WASM Apps", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_net", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/tests/http.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "query", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/tests/query.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "json", - "websocket", - "http", - "eventsource" - ], - "eventsource": [ - "futures-channel", - "futures-core", - "pin-project", - "web-sys/Event", - "web-sys/EventTarget", - "web-sys/EventSource", - "web-sys/MessageEvent" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "futures-core": [ - "dep:futures-core" - ], - "futures-io": [ - "dep:futures-io" - ], - "futures-sink": [ - "dep:futures-sink" - ], - "http": [ - "web-sys/Headers", - "web-sys/UrlSearchParams", - "web-sys/Url", - "web-sys/Request", - "web-sys/RequestInit", - "web-sys/RequestMode", - "web-sys/Response", - "web-sys/ResponseInit", - "web-sys/ResponseType", - "web-sys/RequestCache", - "web-sys/RequestCredentials", - "web-sys/ObserverCallback", - "web-sys/RequestRedirect", - "web-sys/ReferrerPolicy", - "web-sys/AbortSignal", - "web-sys/ReadableStream", - "web-sys/Blob", - "web-sys/FormData" - ], - "io-util": [ - "futures-io" - ], - "json": [ - "serde", - "serde_json", - "gloo-utils/serde" - ], - "pin-project": [ - "dep:pin-project" - ], - "serde": [ - "dep:serde" - ], - "serde_json": [ - "dep:serde_json" - ], - "websocket": [ - "web-sys/WebSocket", - "web-sys/AddEventListenerOptions", - "web-sys/ErrorEvent", - "web-sys/FileReader", - "web-sys/MessageEvent", - "web-sys/ProgressEvent", - "web-sys/CloseEvent", - "web-sys/CloseEventInit", - "web-sys/BinaryType", - "web-sys/Blob", - "futures-channel", - "futures-core", - "futures-sink", - "pin-project" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group", - "Elina " - ], - "categories": [ - "wasm", - "web-programming::http-client", - "api-bindings" - ], - "keywords": [ - "requests", - "http", - "wasm", - "websockets" - ], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64" - }, - { - "name": "gloo-render", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with browser's requestAnimationFrame", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Window" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_render", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-render-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-render-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "storage", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/storage", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-storage", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with local and session storage in browser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Storage", - "Window" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_storage", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "local_storage", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/tests/local_storage.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "session_storage", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/tests/session_storage.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "storage", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/storage", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-timers", - "version": "0.2.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with JavaScript timers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_timers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "node", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/tests/node.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "web", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/tests/web.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "futures": [ - "futures-core", - "futures-channel" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "futures-core": [ - "dep:futures-core" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "futures" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/timers", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-utils", - "version": "0.1.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Convenience crate for common `web_sys` features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Document", - "History", - "HtmlElement", - "Location", - "Window", - "HtmlHeadElement", - "Element" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "serde" - ], - "serde": [ - "dep:serde", - "dep:serde_json" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/utils", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-utils", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for common `web_sys` features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Document", - "History", - "HtmlElement", - "Location", - "Window", - "HtmlHeadElement", - "Element" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "serde" - ], - "serde": [ - "dep:serde", - "dep:serde_json" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/utils", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64" - }, - { - "name": "gloo-worker", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with Web Workers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anymap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Blob", - "BlobPropertyBag", - "DedicatedWorkerGlobalScope", - "MessageEvent", - "Url", - "Worker", - "WorkerOptions" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_worker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-worker-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "futures": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-worker-0.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/worker", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "h2", - "version": "0.4.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "license": "MIT", - "license_file": null, - "description": "An HTTP/2 client and server", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "atomic-waker", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "io-util" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "codec", - "io" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rt-multi-thread", - "macros", - "sync", - "net" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "h2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "akamai", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/akamai.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/client.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/server.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/benches/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "stream": [], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "stream" - ] - } - } - }, - "publish": null, - "authors": [ - "Carl Lerche ", - "Sean McArthur " - ], - "categories": [ - "asynchronous", - "web-programming", - "network-programming" - ], - "keywords": [ - "http", - "async", - "non-blocking" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/h2", - "homepage": null, - "documentation": "https://docs.rs/h2", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "hashbrown", - "version": "0.12.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust port of Google's SwissTable hash map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashbrown", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hasher", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/hasher.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rayon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/rayon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "insert_unique_unchecked", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ahash": [ - "dep:ahash" - ], - "ahash-compile-time-rng": [ - "ahash/compile-time-rng" - ], - "alloc": [ - "dep:alloc" - ], - "bumpalo": [ - "dep:bumpalo" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more" - ], - "inline-more": [], - "nightly": [], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "hashbrown", - "version": "0.14.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust port of Google's SwissTable hash map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "allocator-api2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.42", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "allocator-api2" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.42", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "validation" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashbrown", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hasher", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/hasher.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "raw", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/raw.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rayon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/rayon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "insert_unique_unchecked", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/benches/insert_unique_unchecked.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ahash": [ - "dep:ahash" - ], - "alloc": [ - "dep:alloc" - ], - "allocator-api2": [ - "dep:allocator-api2" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more", - "allocator-api2" - ], - "equivalent": [ - "dep:equivalent" - ], - "inline-more": [], - "nightly": [ - "allocator-api2?/nightly", - "bumpalo/allocator_api" - ], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rkyv": [ - "dep:rkyv" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "hashbrown", - "version": "0.15.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust port of Google's SwissTable hash map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "allocator-api2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "foldhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "allocator-api2" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashbrown", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hasher", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/hasher.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rayon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/rayon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "insert_unique_unchecked", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/insert_unique_unchecked.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "set_ops", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/set_ops.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "dep:alloc" - ], - "allocator-api2": [ - "dep:allocator-api2" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "default-hasher", - "inline-more", - "allocator-api2", - "equivalent", - "raw-entry" - ], - "default-hasher": [ - "dep:foldhash" - ], - "equivalent": [ - "dep:equivalent" - ], - "inline-more": [], - "nightly": [ - "allocator-api2?/nightly", - "bumpalo/allocator_api" - ], - "raw-entry": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api", - "raw-entry" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw-entry" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "heck", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "heck is a case conversion library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "heck", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "no-std" - ], - "keywords": [ - "string", - "case", - "camel", - "snake", - "unicode" - ], - "readme": "README.md", - "repository": "https://github.com/withoutboats/heck", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "hermit-abi", - "version": "0.3.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Hermit system calls definitions.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hermit_abi", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hermit-abi-0.3.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins/rustc-dep-of-std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hermit-abi-0.3.9/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "keywords": [ - "unikernel", - "libos" - ], - "readme": "README.md", - "repository": "https://github.com/hermit-os/hermit-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hex", - "version": "0.4.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Encoding and decoding data into/from hexadecimal representation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "faster-hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version-sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "version-number", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/tests/version-number.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "hex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/benches/hex.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "KokaKiwi " - ], - "categories": [ - "encoding", - "no-std" - ], - "keywords": [ - "no_std", - "hex" - ], - "readme": "README.md", - "repository": "https://github.com/KokaKiwi/rust-hex", - "homepage": null, - "documentation": "https://docs.rs/hex/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hex-conservative", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", - "license": "CC0-1.0", - "license_file": null, - "description": "A hex encoding and decoding crate with a conservative MSRV and dependency policy.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "core2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hex_conservative", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/custom.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hexy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/hexy.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "wrap_array_display_hex_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/wrap_array_display_hex_trait.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "wrap_array_fmt_traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/wrap_array_fmt_traits.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "core2": [ - "dep:core2" - ], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Poelstra " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "encoding", - "hex", - "hexadecimal" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/hex-conservative", - "homepage": null, - "documentation": "https://docs.rs/hex-conservative/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hex-literal", - "version": "0.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Macro for converting hexadecimal string to a byte array at compile time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hex_literal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/tests/basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [], - "keywords": [ - "hex", - "literals" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/hex-literal", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "hmac", - "version": "0.12.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Generic implementation of Hash-based Message Authentication Code (HMAC)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "mac" - ], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "md-5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha-1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "streebog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hmac", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "reset": [], - "std": [ - "digest/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "mac", - "hmac", - "digest" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/MACs", - "homepage": null, - "documentation": "https://docs.rs/hmac", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "home", - "version": "0.5.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Shared definitions of home directories.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_UI_Shell", - "Win32_System_Com" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "home", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Brian Anderson " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/cargo", - "homepage": "https://github.com/rust-lang/cargo", - "documentation": "https://docs.rs/home", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "http", - "version": "0.2.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A set of types for representing HTTP requests and responses.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "<=1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "seahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "header_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/header_map.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "header_map_fuzz", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/header_map_fuzz.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "status_code", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/status_code.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton ", - "Carl Lerche ", - "Sean McArthur " - ], - "categories": [ - "web-programming" - ], - "keywords": [ - "http" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/http", - "homepage": null, - "documentation": "https://docs.rs/http", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.49.0" - }, - { - "name": "http", - "version": "1.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A set of types for representing HTTP requests and responses.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "header_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/header_map.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "header_map_fuzz", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/header_map_fuzz.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "status_code", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/status_code.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton ", - "Carl Lerche ", - "Sean McArthur " - ], - "categories": [ - "web-programming" - ], - "keywords": [ - "http" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/http", - "homepage": null, - "documentation": "https://docs.rs/http", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.49.0" - }, - { - "name": "http-body", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "license": "MIT", - "license_file": null, - "description": "Trait representing an asynchronous, streaming, HTTP request or response body.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "http_body", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "is_end_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/tests/is_end_stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Carl Lerche ", - "Lucio Franco ", - "Sean McArthur " - ], - "categories": [ - "web-programming" - ], - "keywords": [ - "http" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/http-body", - "homepage": null, - "documentation": "https://docs.rs/http-body", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.49" - }, - { - "name": "http-body-util", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Combinators and adapters for HTTP request or response bodies.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "rt", - "sync", - "rt-multi-thread" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "http_body_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "channel": [ - "dep:tokio" - ], - "default": [], - "full": [ - "channel" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Carl Lerche ", - "Lucio Franco ", - "Sean McArthur " - ], - "categories": [ - "web-programming" - ], - "keywords": [ - "http" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/http-body", - "homepage": null, - "documentation": "https://docs.rs/http-body-util", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "httparse", - "version": "1.10.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "httparse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uri", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/tests/uri.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/benches/parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "network-programming", - "no-std", - "parser-implementations", - "web-programming" - ], - "keywords": [ - "http", - "parser", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/httparse", - "homepage": null, - "documentation": "https://docs.rs/httparse", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hyper", - "version": "1.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "license": "MIT", - "license_file": null, - "description": "A protective and efficient HTTP library for all.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "h2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "httparse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "httpdate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "const_generics", - "const_new" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "want", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "form_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sink" - ], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "sink" - ], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "spmc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fs", - "macros", - "net", - "io-std", - "io-util", - "rt", - "rt-multi-thread", - "sync", - "time", - "test-util" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hyper", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.6.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "capi": [], - "client": [ - "dep:want", - "dep:pin-project-lite", - "dep:smallvec" - ], - "default": [], - "ffi": [ - "dep:http-body-util", - "futures-util?/alloc" - ], - "full": [ - "client", - "http1", - "http2", - "server" - ], - "http1": [ - "dep:futures-channel", - "dep:futures-util", - "dep:httparse", - "dep:itoa" - ], - "http2": [ - "dep:futures-channel", - "dep:futures-util", - "dep:h2" - ], - "nightly": [], - "server": [ - "dep:httpdate", - "dep:pin-project-lite", - "dep:smallvec" - ], - "tracing": [ - "dep:tracing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.6.0/Cargo.toml", - "metadata": { - "capi": { - "header": { - "generation": false, - "subdirectory": false - }, - "install": { - "include": { - "asset": [ - { - "from": "capi/include/hyper.h" - } - ] - } - } - }, - "docs": { - "rs": { - "features": [ - "ffi", - "full", - "tracing" - ], - "rustdoc-args": [ - "--cfg", - "hyper_unstable_ffi", - "--cfg", - "hyper_unstable_tracing" - ] - } - }, - "playground": { - "features": [ - "full" - ] - } - }, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "network-programming", - "web-programming::http-client", - "web-programming::http-server" - ], - "keywords": [ - "http", - "hyper", - "hyperium" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/hyper", - "homepage": "https://hyper.rs", - "documentation": "https://docs.rs/hyper", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "hyper-rustls", - "version": "0.27.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", - "license": "Apache-2.0 OR ISC OR MIT", - "license_file": null, - "description": "Rustls+hyper integration for pure rust HTTPS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "client-legacy", - "tokio" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-native-certs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-platform-verifier", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "server-auto" - ], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "tls12" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pemfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "io-std", - "macros", - "net", - "rt-multi-thread" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hyper_rustls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/examples/client.rs", - "edition": "2021", - "required-features": [ - "native-tokio", - "http1" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/examples/server.rs", - "edition": "2021", - "required-features": [ - "aws-lc-rs" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "aws-lc-rs": [ - "rustls/aws_lc_rs" - ], - "default": [ - "native-tokio", - "http1", - "tls12", - "logging", - "aws-lc-rs" - ], - "fips": [ - "aws-lc-rs", - "rustls/fips" - ], - "http1": [ - "hyper-util/http1" - ], - "http2": [ - "hyper-util/http2" - ], - "log": [ - "dep:log" - ], - "logging": [ - "log", - "tokio-rustls/logging", - "rustls/logging" - ], - "native-tokio": [ - "rustls-native-certs" - ], - "ring": [ - "rustls/ring" - ], - "rustls-native-certs": [ - "dep:rustls-native-certs" - ], - "rustls-platform-verifier": [ - "dep:rustls-platform-verifier" - ], - "tls12": [ - "tokio-rustls/tls12", - "rustls/tls12" - ], - "webpki-roots": [ - "dep:webpki-roots" - ], - "webpki-tokio": [ - "webpki-roots" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "http1", - "http2", - "logging", - "native-tokio", - "ring", - "rustls-platform-verifier", - "tls12", - "webpki-tokio" - ], - "no-default-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/hyper-rustls", - "homepage": "https://github.com/rustls/hyper-rustls", - "documentation": "https://docs.rs/hyper-rustls/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "hyper-tls", - "version": "0.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Default TLS implementation for use with hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "client-legacy", - "tokio" - ], - "target": null, - "registry": null - }, - { - "name": "native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "http1" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "io-std", - "macros", - "io-util" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hyper_tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/examples/client.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alpn": [ - "native-tls/alpn" - ], - "vendored": [ - "native-tls/vendored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [], - "keywords": [ - "hyper", - "tls", - "http", - "https", - "ssl" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/hyper-tls", - "homepage": "https://hyper.rs", - "documentation": "https://docs.rs/hyper-tls", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hyper-util", - "version": "0.1.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "license": "MIT", - "license_file": null, - "description": "hyper utilities", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.16", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "socket2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "all" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "pretty_env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "test-util", - "signal" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pnet_datalink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.35.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"linux\", target_os = \"macos\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hyper_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/client.rs", - "edition": "2021", - "required-features": [ - "client-legacy", - "http1", - "tokio" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/server.rs", - "edition": "2021", - "required-features": [ - "server", - "http1", - "tokio" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "server_graceful", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/server_graceful.rs", - "edition": "2021", - "required-features": [ - "tokio", - "server-graceful", - "server-auto" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "legacy_client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/tests/legacy_client.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__internal_happy_eyeballs_tests": [], - "client": [ - "hyper/client", - "dep:tracing", - "dep:futures-channel", - "dep:tower-service" - ], - "client-legacy": [ - "client", - "dep:socket2", - "tokio/sync", - "dep:libc" - ], - "default": [], - "full": [ - "client", - "client-legacy", - "server", - "server-auto", - "server-graceful", - "service", - "http1", - "http2", - "tokio", - "tracing" - ], - "http1": [ - "hyper/http1" - ], - "http2": [ - "hyper/http2" - ], - "server": [ - "hyper/server" - ], - "server-auto": [ - "server", - "http1", - "http2" - ], - "server-graceful": [ - "server", - "tokio/sync", - "futures-util/alloc" - ], - "service": [ - "dep:tower-service" - ], - "tokio": [ - "dep:tokio", - "tokio/net", - "tokio/rt", - "tokio/time" - ], - "tracing": [ - "dep:tracing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "full" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "network-programming", - "web-programming::http-client", - "web-programming::http-server" - ], - "keywords": [ - "http", - "hyper", - "hyperium" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/hyper-util", - "homepage": "https://hyper.rs", - "documentation": "https://docs.rs/hyper-util", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "iana-time-zone", - "version": "0.1.63", - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "get the IANA time zone for the current system", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "chrono-tz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.66", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.89", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.46", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "android_system_properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"android\")", - "registry": null - }, - { - "name": "iana-time-zone-haiku", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"haiku\")", - "registry": null - }, - { - "name": "windows-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.56, <=0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"windows\")", - "registry": null - }, - { - "name": "core-foundation-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "iana_time_zone", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_timezone", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/get_timezone.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_timezone_loop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/get_timezone_loop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stress-test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/stress-test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "fallback": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Straw ", - "René Kijewski ", - "Ryan Lopopolo " - ], - "categories": [ - "date-and-time", - "internationalization", - "os" - ], - "keywords": [ - "IANA", - "time" - ], - "readme": "README.md", - "repository": "https://github.com/strawlab/iana-time-zone", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.62.0" - }, - { - "name": "iana-time-zone-haiku", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "iana-time-zone support crate for Haiku OS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.79", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "iana_time_zone_haiku", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-haiku-0.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-haiku-0.1.2/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-haiku-0.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "René Kijewski " - ], - "categories": [ - "date-and-time", - "internationalization", - "os" - ], - "keywords": [ - "IANA", - "time" - ], - "readme": "README.md", - "repository": "https://github.com/strawlab/iana-time-zone", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "icu_collections", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Collection of API for use in ICU libraries.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive", - "yoke" - ], - "target": null, - "registry": null - }, - { - "name": "iai", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_collections", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "unicode_bmp_blocks_selector", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/examples/unicode_bmp_blocks_selector.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "char16trie", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/tests/char16trie.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cpt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/tests/cpt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "codepointtrie", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/codepointtrie.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iai_cpt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/iai_cpt.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "inv_list", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/inv_list.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "databake": [ - "dep:databake", - "zerovec/databake" - ], - "serde": [ - "dep:serde", - "zerovec/serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_locid", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "API for managing Unicode Language and Locale Identifiers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "litemap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "writeable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "iai", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_locid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "filter_langids", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/examples/filter_langids.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "syntatically_canonicalize_locales", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/examples/syntatically_canonicalize_locales.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "langid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/tests/langid.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "locale", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/tests/locale.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iai_langid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/iai_langid.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "langid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/langid.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "locale", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/locale.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "subtags", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/subtags.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [ - "serde" - ], - "databake": [ - "dep:databake" - ], - "serde": [ - "dep:serde", - "tinystr/serde" - ], - "std": [], - "zerovec": [ - "dep:zerovec" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_locid_transform", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "API for Unicode Language and Locale Identifiers canonicalization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_locid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "zerovec" - ], - "target": null, - "registry": null - }, - { - "name": "icu_locid_transform_data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "zerovec" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "yoke" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_locid_transform", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "locale_canonicalizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/tests/locale_canonicalizer.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "locale_canonicalizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/benches/locale_canonicalizer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [ - "serde" - ], - "compiled_data": [ - "dep:icu_locid_transform_data" - ], - "datagen": [ - "serde", - "dep:databake", - "zerovec/databake", - "icu_locid/databake", - "tinystr/databake" - ], - "default": [ - "compiled_data" - ], - "serde": [ - "dep:serde", - "icu_locid/serde", - "tinystr/serde", - "zerovec/serde", - "icu_provider/serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ], - "skip_optional_dependencies": true - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_locid_transform_data", - "version": "1.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", - "license": "Unicode-3.0", - "license_file": null, - "description": "Data for the icu_locid_transform crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_locid_transform_data", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/Cargo.toml", - "metadata": { - "sources": { - "cldr": { - "tagged": "46.0.0-BETA2" - }, - "icuexport": { - "tagged": "icu4x/2024-05-16/75.x" - }, - "segmenter_lstm": { - "tagged": "v0.1.0" - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_normalizer", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "API for normalizing text into Unicode Normalization Forms", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_collections", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_normalizer_data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf16_iter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf8_iter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "write16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arraystring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "atoi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "detone", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "write16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "arrayvec" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_normalizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "canonical_composition", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/canonical_composition.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "canonical_decomposition", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/canonical_decomposition.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "composing_normalizer_nfc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/composing_normalizer_nfc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "composing_normalizer_nfkc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/composing_normalizer_nfkc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "decomposing_normalizer_nfd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "decomposing_normalizer_nfkd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfkd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiled_data": [ - "dep:icu_normalizer_data", - "icu_properties/compiled_data" - ], - "datagen": [ - "serde", - "dep:databake", - "icu_collections/databake", - "zerovec/databake", - "icu_properties/datagen" - ], - "default": [ - "compiled_data" - ], - "experimental": [], - "serde": [ - "dep:serde", - "icu_collections/serde", - "zerovec/serde", - "icu_properties/serde" - ], - "std": [ - "icu_collections/std", - "icu_properties/std", - "icu_provider/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_normalizer_data", - "version": "1.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", - "license": "Unicode-3.0", - "license_file": null, - "description": "Data for the icu_normalizer crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_normalizer_data", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/Cargo.toml", - "metadata": { - "sources": { - "cldr": { - "tagged": "46.0.0-BETA2" - }, - "icuexport": { - "tagged": "icu4x/2024-05-16/75.x" - }, - "segmenter_lstm": { - "tagged": "v0.1.0" - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_properties", - "version": "1.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "license": "Unicode-3.0", - "license_file": null, - "description": "Definitions for Unicode properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_collections", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_locid_transform", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "compiled_data" - ], - "target": null, - "registry": null - }, - { - "name": "icu_properties_data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "zerovec" - ], - "target": null, - "registry": null - }, - { - "name": "unicode-bidi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_properties", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-1.5.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bidi": [ - "dep:unicode-bidi" - ], - "compiled_data": [ - "dep:icu_properties_data", - "dep:icu_locid_transform" - ], - "datagen": [ - "serde", - "dep:databake", - "zerovec/databake", - "icu_collections/databake", - "tinystr/databake" - ], - "default": [ - "compiled_data" - ], - "serde": [ - "dep:serde", - "tinystr/serde", - "zerovec/serde", - "icu_collections/serde", - "icu_provider/serde" - ], - "std": [ - "icu_collections/std", - "icu_provider/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-1.5.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_properties_data", - "version": "1.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", - "license": "Unicode-3.0", - "license_file": null, - "description": "Data for the icu_properties crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_properties_data", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/Cargo.toml", - "metadata": { - "sources": { - "cldr": { - "tagged": "46.0.0-BETA2" - }, - "icuexport": { - "tagged": "icu4x/2024-05-16/75.x" - }, - "segmenter_lstm": { - "tagged": "v0.1.0" - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_provider", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Trait and struct definitions for the ICU data provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "erased-serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "icu_locid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "writeable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_provider", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "data_locale_bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/benches/data_locale_bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "datagen": [ - "serde", - "dep:erased-serde", - "dep:databake", - "std", - "sync" - ], - "deserialize_bincode_1": [ - "serde", - "dep:bincode", - "std" - ], - "deserialize_json": [ - "serde", - "dep:serde_json" - ], - "deserialize_postcard_1": [ - "serde", - "dep:postcard" - ], - "experimental": [], - "log_error_context": [ - "logging" - ], - "logging": [ - "dep:log" - ], - "macros": [ - "dep:icu_provider_macros" - ], - "serde": [ - "dep:serde", - "yoke/serde" - ], - "std": [ - "icu_locid/std" - ], - "sync": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "macros" - ], - "max_combination_size": 3 - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_provider_macros", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Proc macros for ICU data providers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "icu_provider_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider_macros-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider_macros-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "ident_case", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Utility for applying case rules to Rust identifiers.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ident_case", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ident_case-1.0.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ident_case-1.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/TedDriggs/ident_case", - "homepage": null, - "documentation": "https://docs.rs/ident_case/1.0.1", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "idna", - "version": "1.0.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "idna_adapter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "const_generics" - ], - "target": null, - "registry": null - }, - { - "name": "utf8_iter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "assert_matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tester", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "idna", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/unit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unitbis", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/unitbis.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/benches/all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "compiled_data": [ - "idna_adapter/compiled_data" - ], - "default": [ - "std", - "compiled_data" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [], - "keywords": [ - "no_std", - "web", - "http" - ], - "readme": "README.md", - "repository": "https://github.com/servo/rust-url/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "idna_adapter", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Back end adapter for idna", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "icu_normalizer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "idna_adapter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "compiled_data": [ - "icu_normalizer/compiled_data", - "icu_properties/compiled_data" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "no-std", - "internationalization" - ], - "keywords": [ - "unicode", - "dns", - "idna" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/idna_adapter", - "homepage": "https://docs.rs/crate/idna_adapter/latest", - "documentation": "https://docs.rs/idna_adapter/latest/idna_adapter/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67.0" - }, - { - "name": "ignore", - "version": "0.4.23", - "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "A fast library for efficiently matching ignore files such as `.gitignore`\nagainst file paths.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "globset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "perf", - "syntax", - "meta", - "nfa", - "hybrid", - "dfa-onepass" - ], - "target": null, - "registry": null - }, - { - "name": "same-file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "crossbeam-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ignore", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "walk", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/examples/walk.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gitignore_matched_path_or_any_parents_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/tests/gitignore_matched_path_or_any_parents_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "simd-accel": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "glob", - "ignore", - "gitignore", - "pattern", - "file" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "documentation": "https://docs.rs/ignore", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "implicit-clone", - "version": "0.3.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Immutable types and ImplicitClone trait similar to Copy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "implicit_clone", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/implicit-clone-0.3.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "indexmap": [ - "dep:indexmap" - ], - "map": [ - "indexmap" - ], - "serde": [ - "dep:serde", - "indexmap/serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/implicit-clone-0.3.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Cecile Tonglet " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "immutable", - "cheap-clone", - "copy", - "rc" - ], - "readme": "README.md", - "repository": "https://github.com/yewstack/implicit-clone", - "homepage": "https://github.com/yewstack/implicit-clone", - "documentation": "https://docs.rs/implicit-clone", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "indexmap", - "version": "1.9.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A hash table with consistent order and fast iteration.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "raw" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": "rustc-rayon", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "indexmap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_full_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/macros_full_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/quick.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "faststring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/benches/faststring.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "rustc-rayon": [ - "dep:rustc-rayon" - ], - "serde": [ - "dep:serde" - ], - "serde-1": [ - "serde" - ], - "std": [], - "test_debug": [], - "test_low_transition_point": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "quickcheck", - "serde-1", - "rayon" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hashmap", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/bluss/indexmap", - "homepage": null, - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "indexmap", - "version": "2.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A hash table with consistent order and fast iteration.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "indexmap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_full_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/macros_full_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/quick.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "faststring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/benches/faststring.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "borsh": [ - "dep:borsh" - ], - "default": [ - "std" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "test_debug": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "quickcheck", - "serde", - "borsh", - "rayon" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "allow-branch": [ - "main" - ], - "sign-tag": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hashmap", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/indexmap-rs/indexmap", - "homepage": null, - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "inout", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Custom reference types for code generic over in-place and buffer-to-buffer modes of operation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "block-padding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "inout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "block-padding": [ - "dep:block-padding" - ], - "std": [ - "block-padding/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [], - "keywords": [ - "custom-reference" - ], - "readme": null, - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/inout", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact/src/comp_interact_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Costin Carabas " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ipnet", - "version": "2.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "heapless", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "serde", - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ipnet", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "heapless": [ - "dep:heapless" - ], - "json": [ - "serde", - "schemars" - ], - "schemars": [ - "dep:schemars" - ], - "ser_as_str": [ - "heapless" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Kris Price " - ], - "categories": [ - "network-programming" - ], - "keywords": [ - "IP", - "CIDR", - "network", - "prefix", - "subnet" - ], - "readme": "README.md", - "repository": "https://github.com/krisprice/ipnet", - "homepage": null, - "documentation": "https://docs.rs/ipnet", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "is_terminal_polyfill", - "version": "1.70.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Polyfill for `is_terminal` stdlib feature for use with older MSRVs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "is_terminal_polyfill", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/polyfill-rs/is_terminal_polyfill/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/polyfill-rs/is_terminal_polyfill", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70.0" - }, - { - "name": "itertools", - "version": "0.13.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "permutohedron", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "itertools", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iris", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/examples/iris.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adaptors_no_collect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/adaptors_no_collect.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/flatten_ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "laziness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/laziness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_hygiene", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/macros_hygiene.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "merge_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/merge_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "peeking_take_while", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/peeking_take_while.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/quick.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/test_core.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/test_std.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/zip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench1", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/bench1.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations_with_replacement", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/combinations_with_replacement.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "fold_specialization", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/fold_specialization.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "powerset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/powerset.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tree_reduce", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tree_reduce.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuple_combinations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tuple_combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "use_std" - ], - "use_alloc": [], - "use_std": [ - "use_alloc", - "either/use_std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "algorithms", - "rust-patterns", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "iterator", - "data-structure", - "zip", - "product" - ], - "readme": "README.md", - "repository": "https://github.com/rust-itertools/itertools", - "homepage": null, - "documentation": "https://docs.rs/itertools/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.43.1" - }, - { - "name": "itertools", - "version": "0.14.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "permutohedron", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "itertools", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iris", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/examples/iris.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adaptors_no_collect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/adaptors_no_collect.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/flatten_ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "laziness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/laziness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_hygiene", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/macros_hygiene.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "merge_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/merge_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "peeking_take_while", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/peeking_take_while.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/quick.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/test_core.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/test_std.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/zip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench1", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/bench1.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations_with_replacement", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/combinations_with_replacement.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "fold_specialization", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/fold_specialization.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "k_smallest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/k_smallest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "powerset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/powerset.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tree_reduce", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tree_reduce.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuple_combinations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tuple_combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "use_std" - ], - "use_alloc": [], - "use_std": [ - "use_alloc", - "either/use_std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "algorithms", - "rust-patterns", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "iterator", - "data-structure", - "zip", - "product" - ], - "readme": "README.md", - "repository": "https://github.com/rust-itertools/itertools", - "homepage": null, - "documentation": "https://docs.rs/itertools/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "itoa", - "version": "1.0.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Fast integer primitive to string conversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "itoa", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "no-panic": [ - "dep:no-panic" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "integer" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/itoa", - "homepage": null, - "documentation": "https://docs.rs/itoa", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "jiff", - "version": "0.2.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "A date-time library that encourages you to jump into the pit of success.\n\nThis library is heavily inspired by the Temporal project.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "jiff-static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jiff-tzdb", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.21", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.203", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.38", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "chrono-tz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "humantime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.39.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.203", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.117", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_yaml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.34", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tabwriter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.36", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "local-offset", - "macros", - "parsing" - ], - "target": null, - "registry": null - }, - { - "name": "tzfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.50", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.70", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "jiff-static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - }, - { - "name": "jiff-tzdb-platform", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(any(windows, target_family = \"wasm\"))", - "registry": null - }, - { - "name": "hifitime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(target_has_atomic = \"ptr\"))", - "registry": null - }, - { - "name": "portable-atomic-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(target_has_atomic = \"ptr\"))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52.0, <=0.59", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "Win32_Foundation", - "Win32_System_Time" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "jiff", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "serde?/alloc", - "portable-atomic-util/alloc" - ], - "default": [ - "std", - "tz-system", - "tz-fat", - "tzdb-bundle-platform", - "tzdb-zoneinfo", - "tzdb-concatenated", - "perf-inline" - ], - "js": [ - "dep:wasm-bindgen", - "dep:js-sys" - ], - "logging": [ - "dep:log" - ], - "perf-inline": [], - "serde": [ - "dep:serde" - ], - "static": [ - "static-tz", - "jiff-static?/tzdb" - ], - "static-tz": [ - "dep:jiff-static" - ], - "std": [ - "alloc", - "log?/std", - "serde?/std" - ], - "tz-fat": [ - "jiff-static?/tz-fat" - ], - "tz-system": [ - "std", - "dep:windows-sys" - ], - "tzdb-bundle-always": [ - "dep:jiff-tzdb", - "alloc" - ], - "tzdb-bundle-platform": [ - "dep:jiff-tzdb-platform", - "alloc" - ], - "tzdb-concatenated": [ - "std" - ], - "tzdb-zoneinfo": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "date-and-time", - "no-std" - ], - "keywords": [ - "date", - "time", - "calendar", - "zone", - "duration" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/jiff", - "homepage": null, - "documentation": "https://docs.rs/jiff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "jiff-static", - "version": "0.2.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#jiff-static@0.2.10", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Create static TimeZone values for Jiff (useful in core-only environments).", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "jiff-tzdb", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.93", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.38", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.98", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "jiff_static", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-static-0.2.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "perf-inline": [], - "tz-fat": [], - "tzdb": [ - "dep:jiff-tzdb" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-static-0.2.10/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "date-and-time" - ], - "keywords": [ - "date", - "time", - "static", - "zone", - "iana" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/jiff", - "homepage": "https://github.com/BurntSushi/jiff/tree/master/crates/jiff-static", - "documentation": "https://docs.rs/jiff-tzdb", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "js-sys", - "version": "0.3.77", - "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bindings for all JS global objects and functions in all JS environments like\nNode.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "js_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.77/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "wasm-bindgen/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.77/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/js-sys", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "keccak", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Pure Rust implementation of the Keccak sponge function including the keccak-f\nand keccak-p variants\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cpufeatures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"aarch64\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "keccak", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/benches/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "asm": [], - "no_unroll": [], - "simd": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "sponge", - "keccak", - "keccak-f", - "keccak-p" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/sponges/tree/master/keccak", - "homepage": null, - "documentation": "https://docs.rs/keccak", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "random", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kitty", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-auction", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" - }, - { - "name": "kitty-ownership", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kitty_auction", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_auction_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/tests/kitty_auction_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_auction_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/tests/kitty_auction_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-auction-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty-auction", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "kitty-auction-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-genetic-alg", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "random", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kitty_genetic_alg", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_genetic_alg_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/tests/kitty_genetic_alg_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_genetic_alg_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/tests/kitty_genetic_alg_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-genetic-alg-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty-genetic-alg", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "kitty-genetic-alg-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-ownership", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" - }, - { - "name": "kitty-genetic-alg", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "random", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kitty_ownership", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_ownership_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/tests/kitty_ownership_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_ownership_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/tests/kitty_ownership_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-ownership-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty-ownership", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "kitty-ownership-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "large-storage", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "large_storage", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/src/large_storage.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "large_storage_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/tests/large_storage_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "large_storage_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/tests/large_storage_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "large-storage-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "large-storage", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "large-storage-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lazy_static", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A macro for declaring lazily evaluated statics in Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "spin", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "once" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lazy_static", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "mutex_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/examples/mutex_map.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/no_std.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/test.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ui", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/ui.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "spin": [ - "dep:spin" - ], - "spin_no_std": [ - "spin" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Marvin Löbel " - ], - "categories": [ - "no-std", - "rust-patterns", - "memory-management" - ], - "keywords": [ - "macro", - "lazy", - "static" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/lazy-static.rs", - "homepage": null, - "documentation": "https://docs.rs/lazy_static", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "leb128", - "version": "0.2.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "Read and write DWARF's \"Little Endian Base 128\" (LEB128) variable length integer encoding.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "leb128", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "leb128-repl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/src/bin/leb128-repl.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quickchecks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/tests/quickchecks.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "nightly": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nick Fitzgerald ", - "Philip Craig " - ], - "categories": [], - "keywords": [ - "LEB128", - "DWARF", - "variable", - "length", - "encoding" - ], - "readme": "./README.md", - "repository": "https://github.com/gimli-rs/leb128", - "homepage": null, - "documentation": "https://docs.rs/leb128", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "leb128fmt", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library to encode and decode LEB128 compressed integers.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "leb128fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128fmt-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128fmt-0.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Bryant Luk " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc", - "compression", - "parser-implementations" - ], - "keywords": [ - "leb128", - "encoding", - "no_std", - "compression" - ], - "readme": "README.md", - "repository": "https://github.com/bluk/leb128fmt", - "homepage": null, - "documentation": "https://docs.rs/leb128fmt", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "libc", - "version": "0.2.172", - "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Raw FFI bindings to platform libraries like libc.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "const_fn", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/tests/const_fn.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "align": [], - "const-extern-fn": [], - "default": [ - "std" - ], - "extra_traits": [], - "rustc-dep-of-std": [ - "align", - "rustc-std-workspace-core" - ], - "rustc-std-workspace-core": [ - "dep:rustc-std-workspace-core" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zbuild-std=core" - ], - "default-target": "x86_64-unknown-linux-gnu", - "features": [ - "extra_traits" - ], - "targets": [ - "aarch64-apple-darwin", - "aarch64-apple-ios", - "aarch64-linux-android", - "aarch64-pc-windows-msvc", - "aarch64-unknown-freebsd", - "aarch64-unknown-fuchsia", - "aarch64-unknown-hermit", - "aarch64-unknown-linux-gnu", - "aarch64-unknown-linux-musl", - "aarch64-unknown-netbsd", - "aarch64-unknown-openbsd", - "aarch64-wrs-vxworks", - "arm-linux-androideabi", - "arm-unknown-linux-gnueabi", - "arm-unknown-linux-gnueabihf", - "arm-unknown-linux-musleabi", - "arm-unknown-linux-musleabihf", - "armebv7r-none-eabi", - "armebv7r-none-eabihf", - "armv5te-unknown-linux-gnueabi", - "armv5te-unknown-linux-musleabi", - "armv7-linux-androideabi", - "armv7-unknown-linux-gnueabihf", - "armv7-unknown-linux-musleabihf", - "armv7-wrs-vxworks-eabihf", - "armv7r-none-eabi", - "armv7r-none-eabihf", - "i586-unknown-linux-gnu", - "i586-unknown-linux-musl", - "i686-linux-android", - "i686-pc-windows-gnu", - "i686-pc-windows-msvc", - "i686-pc-windows-msvc", - "i686-unknown-freebsd", - "i686-unknown-haiku", - "i686-unknown-linux-gnu", - "i686-unknown-linux-musl", - "i686-unknown-netbsd", - "i686-unknown-openbsd", - "i686-wrs-vxworks", - "mips-unknown-linux-gnu", - "mips-unknown-linux-musl", - "mips64-unknown-linux-gnuabi64", - "mips64-unknown-linux-muslabi64", - "mips64el-unknown-linux-gnuabi64", - "mips64el-unknown-linux-muslabi64", - "mipsel-sony-psp", - "mipsel-unknown-linux-gnu", - "mipsel-unknown-linux-musl", - "nvptx64-nvidia-cuda", - "powerpc-unknown-linux-gnu", - "powerpc-unknown-linux-gnuspe", - "powerpc-unknown-netbsd", - "powerpc-wrs-vxworks", - "powerpc-wrs-vxworks-spe", - "powerpc64-unknown-freebsd", - "powerpc64-unknown-linux-gnu", - "powerpc64-wrs-vxworks", - "powerpc64le-unknown-linux-gnu", - "riscv32gc-unknown-linux-gnu", - "riscv32i-unknown-none-elf", - "riscv32imac-unknown-none-elf", - "riscv32imc-unknown-none-elf", - "riscv32-wrs-vxworks", - "riscv64gc-unknown-freebsd", - "riscv64gc-unknown-hermit", - "riscv64gc-unknown-linux-gnu", - "riscv64gc-unknown-linux-musl", - "riscv64gc-unknown-none-elf", - "riscv64imac-unknown-none-elf", - "riscv64-wrs-vxworks", - "s390x-unknown-linux-gnu", - "s390x-unknown-linux-musl", - "sparc-unknown-linux-gnu", - "sparc64-unknown-linux-gnu", - "sparc64-unknown-netbsd", - "sparcv9-sun-solaris", - "thumbv6m-none-eabi", - "thumbv7em-none-eabi", - "thumbv7em-none-eabihf", - "thumbv7m-none-eabi", - "thumbv7neon-linux-androideabi", - "thumbv7neon-unknown-linux-gnueabihf", - "wasm32-unknown-emscripten", - "wasm32-unknown-unknown", - "x86_64-apple-darwin", - "x86_64-apple-ios", - "x86_64-fortanix-unknown-sgx", - "x86_64-linux-android", - "x86_64-pc-solaris", - "x86_64-pc-windows-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-dragonfly", - "x86_64-unknown-freebsd", - "x86_64-unknown-fuchsia", - "x86_64-unknown-haiku", - "x86_64-unknown-hermit", - "x86_64-unknown-illumos", - "x86_64-unknown-l4re-uclibc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-linux-gnux32", - "x86_64-unknown-linux-musl", - "x86_64-unknown-netbsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-redox", - "x86_64-wrs-vxworks" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os" - ], - "keywords": [ - "libc", - "ffi", - "bindings", - "operating", - "system" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/libc", - "homepage": "https://github.com/rust-lang/libc", - "documentation": "https://docs.rs/libc/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "libloading", - "version": "0.8.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", - "license": "ISC", - "license_file": null, - "description": "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.48, <0.53", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <0.59", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libloading", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constants", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/constants.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "functions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/functions.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "library_filename", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/library_filename.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "markers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/markers.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "windows", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/windows.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "libloading_docs" - ] - } - } - }, - "publish": null, - "authors": [ - "Simonas Kazlauskas " - ], - "categories": [ - "api-bindings" - ], - "keywords": [ - "dlopen", - "load", - "shared", - "dylib" - ], - "readme": "README.mkd", - "repository": "https://github.com/nagisa/rust_libloading/", - "homepage": null, - "documentation": "https://docs.rs/libloading/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "libredox", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Redox stable ABI", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ioslice", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "redox_syscall", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libredox", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libredox-0.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "call": [], - "default": [ - "call", - "std", - "redox_syscall" - ], - "ioslice": [ - "dep:ioslice" - ], - "mkns": [ - "ioslice" - ], - "redox_syscall": [ - "dep:redox_syscall" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libredox-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "4lDO2 <4lDO2@protonmail.com>" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://gitlab.redox-os.org/redox-os/libredox.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "libunwind", - "version": "1.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", - "license": "MIT", - "license_file": null, - "description": "Rust bindings to the libunwind C library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libunwind", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libunwind-1.3.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libunwind-1.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bluefish43/libunwind-sys", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "linked-list-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "linked_list_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/src/linked_list_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "linked_list_repeat_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/linked_list_repeat_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "linked-list-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "linked-list-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "linked-list-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "linux-raw-sys", - "version": "0.9.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Generated bindings for Linux's userspace API", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.49", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.100", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "linux_raw_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.9.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bootparam": [], - "btrfs": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "elf": [], - "elf_uapi": [], - "errno": [], - "general": [], - "if_arp": [], - "if_ether": [], - "if_packet": [], - "image": [], - "io_uring": [], - "ioctl": [], - "landlock": [], - "loop_device": [], - "mempolicy": [], - "net": [], - "netlink": [], - "no_std": [], - "prctl": [], - "ptrace": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [], - "system": [], - "xdp": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.9.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "bootparam", - "btrfs", - "elf_uapi", - "image", - "ioctl", - "landlock", - "netlink", - "io_uring", - "if_arp", - "if_ether", - "if_packet", - "net", - "ptrace", - "prctl", - "elf", - "xdp", - "mempolicy", - "system", - "loop_device" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "homepage": null, - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "litemap", - "version": "0.7.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", - "license": "Unicode-3.0", - "license_file": null, - "description": "A key-value Map implementation based on a flat, sorted Vec.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "validation" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "litemap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "language_names_hash_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/language_names_hash_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "language_names_lite_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/language_names_lite_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "litemap_bincode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/litemap_bincode.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "litemap_postcard", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/litemap_postcard.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rkyv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/rkyv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "store", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/store.rs", - "edition": "2021", - "required-features": [ - "testing" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "litemap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/benches/litemap.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "databake": [ - "dep:databake" - ], - "default": [ - "alloc" - ], - "serde": [ - "dep:serde" - ], - "testing": [ - "alloc" - ], - "yoke": [ - "dep:yoke" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [], - "keywords": [ - "sorted", - "vec", - "map", - "hashmap", - "btreemap" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": "https://docs.rs/litemap", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "local-esdt-and-nft", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "local_esdt_and_nft", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "local-esdt-and-nft-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "local-esdt-and-nft", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "local-esdt-and-nft-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lock_api", - "version": "0.4.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "owning_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scopeguard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.126", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lock_api", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arc_lock": [], - "atomic_usize": [], - "default": [ - "atomic_usize" - ], - "nightly": [], - "owning_ref": [ - "dep:owning_ref" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "concurrency", - "no-std" - ], - "keywords": [ - "mutex", - "rwlock", - "lock", - "no_std" - ], - "readme": null, - "repository": "https://github.com/Amanieu/parking_lot", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "log", - "version": "0.4.27", - "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A lightweight logging facade for Rust\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "value-bag", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "inline-i128" - ], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.63", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "value-bag", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "test" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "log", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "value", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/benches/value.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "kv": [], - "kv_serde": [ - "kv_std", - "value-bag/serde", - "serde" - ], - "kv_std": [ - "std", - "kv", - "value-bag/error" - ], - "kv_sval": [ - "kv", - "value-bag/sval", - "sval", - "sval_ref" - ], - "kv_unstable": [ - "kv", - "value-bag" - ], - "kv_unstable_serde": [ - "kv_serde", - "kv_unstable_std" - ], - "kv_unstable_std": [ - "kv_std", - "kv_unstable" - ], - "kv_unstable_sval": [ - "kv_sval", - "kv_unstable" - ], - "max_level_debug": [], - "max_level_error": [], - "max_level_info": [], - "max_level_off": [], - "max_level_trace": [], - "max_level_warn": [], - "release_max_level_debug": [], - "release_max_level_error": [], - "release_max_level_info": [], - "release_max_level_off": [], - "release_max_level_trace": [], - "release_max_level_warn": [], - "serde": [ - "dep:serde" - ], - "std": [], - "sval": [ - "dep:sval" - ], - "sval_ref": [ - "dep:sval_ref" - ], - "value-bag": [ - "dep:value-bag" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "serde", - "kv_std", - "kv_sval", - "kv_serde" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "logging" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/log", - "homepage": null, - "documentation": "https://docs.rs/log", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "lottery-erc20", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lottery_erc20", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/src/lottery.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lottery_erc20_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/tests/lottery_erc20_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lottery_erc20_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/tests/lottery_erc20_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lottery-erc20-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "lottery-erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "lottery-erc20-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lottery-esdt", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lottery_esdt", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/src/lottery.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lottery_esdt_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/tests/lottery_esdt_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lottery_esdt_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/tests/lottery_esdt_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lottery-esdt-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "lottery-esdt", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "lottery-esdt-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "loupe", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Profiling tool for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "loupe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/tests/derive.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "derive" - ], - "derive": [ - "loupe-derive" - ], - "enable-indexmap": [ - "indexmap" - ], - "indexmap": [ - "dep:indexmap" - ], - "loupe-derive": [ - "dep:loupe-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/wasmerio/loupe", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "loupe-derive", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Profiling tool for Rust, see the `loupe` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "loupe_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-derive-0.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-derive-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/wasmerio/loupe", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "mach2", - "version": "0.4.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", - "license": "BSD-2-Clause OR MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "mach2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mach2-0.4.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mach2-0.4.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-apple-darwin" - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "api-bindings", - "external-ffi-bindings", - "no-std", - "os" - ], - "keywords": [ - "kernel", - "macos", - "darwin" - ], - "readme": "README.md", - "repository": "https://github.com/JohnTitor/mach2", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "macho-unwind-info", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#macho-unwind-info@0.5.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A parser for Apple's Compact Unwinding Format, which is used in the __unwind_info section of mach-O binaries.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "object", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.36", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "macho_unwind_info", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/macho-unwind-info-0.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "unwindinfodump", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/macho-unwind-info-0.5.0/examples/unwindinfodump.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "unwindinfolookup", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/macho-unwind-info-0.5.0/examples/unwindinfolookup.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/macho-unwind-info-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Markus Stange " - ], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "unwinding", - "exception", - "apple", - "object", - "parser" - ], - "readme": "Readme.md", - "repository": "https://github.com/mstange/macho-unwind-info", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "managed-map-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "managed_map_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/src/mmap_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_map_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/tests/managed_map_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_map_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/tests/managed_map_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "managed-map-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "managed-map-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "managed-map-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "map-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "map_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/src/map_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "map-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "map-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "map-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "memchr", - "version": "2.7.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for\n1, 2 or 3 byte search and single substring search.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memchr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "libc": [], - "logging": [ - "dep:log" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [ - "alloc" - ], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant ", - "bluss" - ], - "categories": [], - "keywords": [ - "memchr", - "memmem", - "substring", - "find", - "search" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/memchr", - "homepage": "https://github.com/BurntSushi/memchr", - "documentation": "https://docs.rs/memchr/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "memmap2", - "version": "0.5.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Cross-platform Rust API for memory-mapped file IO", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "owning_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memmap2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/examples/cat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "stable_deref_trait": [ - "dep:stable_deref_trait" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dan Burkert ", - "Yevhenii Reizner " - ], - "categories": [], - "keywords": [ - "mmap", - "memory-map", - "io", - "file" - ], - "readme": "README.md", - "repository": "https://github.com/RazrFalcon/memmap2-rs", - "homepage": null, - "documentation": "https://docs.rs/memmap2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "memmap2", - "version": "0.6.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Cross-platform Rust API for memory-mapped file IO", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "owning_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memmap2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/examples/cat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "stable_deref_trait": [ - "dep:stable_deref_trait" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dan Burkert ", - "Yevhenii Reizner " - ], - "categories": [], - "keywords": [ - "mmap", - "memory-map", - "io", - "file" - ], - "readme": "README.md", - "repository": "https://github.com/RazrFalcon/memmap2-rs", - "homepage": null, - "documentation": "https://docs.rs/memmap2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "memoffset", - "version": "0.9.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", - "license": "MIT", - "license_file": null, - "description": "offset_of functionality for Rust structs.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memoffset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [], - "unstable_const": [], - "unstable_offset_of": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Gilad Naaman " - ], - "categories": [ - "no-std" - ], - "keywords": [ - "mem", - "offset", - "offset_of", - "offsetof" - ], - "readme": "README.md", - "repository": "https://github.com/Gilnaa/memoffset", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "mime", - "version": "0.3.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Strongly Typed Mimes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "mime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "cmp", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/cmp.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/fmt.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/parse.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [], - "keywords": [ - "mime", - "media-extensions", - "media-types" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/mime", - "homepage": null, - "documentation": "https://docs.rs/mime", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "minimal-lexical", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Fast float parsing conversion routines.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "minimal_lexical", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bellerophon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/bellerophon.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bellerophon_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/bellerophon_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/integration_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lemire_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/lemire_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "libm_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/libm_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mask_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/mask_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "number_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/number_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/parse_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rounding_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/rounding_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "slow_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/slow_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stackvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/stackvec.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "vec_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/vec_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "compact": [], - "default": [ - "std" - ], - "lint": [], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Huszagh " - ], - "categories": [ - "parsing", - "no-std" - ], - "keywords": [ - "parsing", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/Alexhuszagh/minimal-lexical", - "homepage": null, - "documentation": "https://docs.rs/minimal-lexical", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "miniz_oxide", - "version": "0.8.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "license": "MIT OR Zlib OR Apache-2.0", - "license_file": null, - "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "adler2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "simd-adler32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "miniz_oxide", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [ - "dep:alloc" - ], - "block-boundary": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "with-alloc" - ], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "adler2/rustc-dep-of-std" - ], - "serde": [ - "dep:serde" - ], - "simd": [ - "simd-adler32" - ], - "simd-adler32": [ - "dep:simd-adler32" - ], - "std": [], - "with-alloc": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Frommi ", - "oyvindln ", - "Rich Geldreich richgel99@gmail.com" - ], - "categories": [ - "compression" - ], - "keywords": [ - "zlib", - "miniz", - "deflate", - "encoding" - ], - "readme": "Readme.md", - "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "homepage": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "documentation": "https://docs.rs/miniz_oxide", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "mio", - "version": "1.0.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", - "license": "MIT", - "license_file": null, - "description": "Lightweight non-blocking I/O.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.159", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"hermit\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.159", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "wasi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.159", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Wdk_Foundation", - "Wdk_Storage_FileSystem", - "Wdk_System_IO", - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_WindowsProgramming" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "mio", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_listenfd_server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/tcp_listenfd_server.rs", - "edition": "2021", - "required-features": [ - "os-poll", - "net" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/tcp_server.rs", - "edition": "2021", - "required-features": [ - "os-poll", - "net" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "udp_server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/udp_server.rs", - "edition": "2021", - "required-features": [ - "os-poll", - "net" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "log" - ], - "log": [ - "dep:log" - ], - "net": [], - "os-ext": [ - "os-poll", - "windows-sys/Win32_System_Pipes", - "windows-sys/Win32_Security" - ], - "os-poll": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ], - "targets": [ - "aarch64-apple-ios", - "aarch64-linux-android", - "wasm32-wasi", - "x86_64-apple-darwin", - "x86_64-pc-windows-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-dragonfly", - "x86_64-unknown-freebsd", - "x86_64-unknown-illumos", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-netbsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-hermit" - ] - } - }, - "playground": { - "features": [ - "os-poll", - "os-ext", - "net" - ] - } - }, - "publish": null, - "authors": [ - "Carl Lerche ", - "Thomas de Zeeuw ", - "Tokio Contributors " - ], - "categories": [ - "asynchronous" - ], - "keywords": [ - "io", - "async", - "non-blocking" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/mio", - "homepage": "https://github.com/tokio-rs/mio", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "more-asserts", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "license": "CC0-1.0", - "license_file": null, - "description": "Small library providing additional assert_* and debug_assert_* macros.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "more_asserts", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/more-asserts-0.2.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/more-asserts-0.2.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Thom Chiovoloni " - ], - "categories": [], - "keywords": [ - "assert", - "debug_assert", - "debug", - "assertions", - "testing" - ], - "readme": "README.md", - "repository": "https://github.com/thomcc/rust-more-asserts", - "homepage": "https://github.com/thomcc/rust-more-asserts", - "documentation": "https://docs.rs/more-asserts", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multi-contract-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multi_contract_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/src/multi_contract_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_contract_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/tests/multi_contract_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_contract_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/tests/multi_contract_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "example_feature": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multi-contract-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multi-contract-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multi-contract-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multisig", - "version": "1.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmer-experimental" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multisig", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/src/multisig.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/adder_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multisig_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multisig_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multisig_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multisig_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multisig-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multisig", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multisig-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact/src/multisig_interact.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multisig-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multisig", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multisig-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-core", - "version": "0.14.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX chain interfaces, constants, and base types", - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-codec", - "source": null, - "req": "=0.22.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_core", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/core/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/chain/core/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "vm", - "tools" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-scenario-format", - "version": "0.23.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "Parser/writer of the MultiversX transaction scenario format", - "source": null, - "dependencies": [ - { - "name": "bech32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_scenario_format", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "interpreter_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/tests/interpreter_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reconstructor_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/tests/reconstructor_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-vm", - "version": "0.14.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX VM implementation and tooling", - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ed25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-core", - "source": null, - "req": "=0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" - }, - { - "name": "multiversx-chain-vm-executor", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-vm-executor-wasmer", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-vm-executor-wasmer-experimental", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_seeder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_vm", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gas_schedule_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/tests/gas_schedule_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_crypto", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/tests/test_crypto.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "multiversx-chain-vm-executor-wasmer": [ - "dep:multiversx-chain-vm-executor-wasmer" - ], - "multiversx-chain-vm-executor-wasmer-experimental": [ - "dep:multiversx-chain-vm-executor-wasmer-experimental" - ], - "rand": [ - "dep:rand" - ], - "wasm-incompatible": [ - "rand" - ], - "wasmer-experimental": [ - "multiversx-chain-vm-executor-wasmer-experimental" - ], - "wasmer-prod": [ - "multiversx-chain-vm-executor-wasmer" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "vm", - "tools" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-vm-executor", - "version": "0.3.0", - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX VM executor interface", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_vm_executor", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deserialization_from_file_test", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/tests/deserialization_from_file_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "Ovidiu Stinga ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "blockchain", - "VM" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-vm-executor-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-vm-executor-wasmer-experimental", - "version": "0.3.0", - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", - "license": null, - "license_file": null, - "description": null, - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-vm-executor", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rc-new-cyclic-fallible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "singlepass", - "sys", - "wat" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_vm_executor_wasmer_experimental", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "endpoints_test", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/tests/endpoints_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-price-aggregator-sc", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX Price aggregator Smart Contract", - "source": null, - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_price_aggregator_sc", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_stress_blackbox", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_stress_blackbox.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Claudiu-Marcel Bruda ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-price-aggregator-sc-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-price-aggregator-sc", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multiversx-price-aggregator-sc-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX smart contract API", - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-core", - "source": null, - "req": "=0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" - }, - { - "name": "multiversx-sc-codec", - "source": null, - "req": "=0.22.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec" - }, - { - "name": "multiversx-sc-derive", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive" - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.19", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unwrap-infallible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "formatter_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/tests/formatter_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "esdt-token-payment-legacy-decode": [], - "managed-buffer-builder-cached": [], - "num-bigint": [ - "multiversx-sc-codec/num-bigint" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies", - "development-tools" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.83" - }, - { - "name": "multiversx-sc-codec", - "version": "0.22.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "Lightweight binary serializer/deserializer, written especially for MultiversX smart contracts", - "source": null, - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-codec-derive", - "source": null, - "req": "=0.22.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unwrap-infallible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-codec-derive", - "source": null, - "req": "=0.22.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_codec", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_bitflags_struct", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_bitflags_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_empty_struct_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_empty_struct_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_enum_or_default_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_or_default_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_enum_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_enum_tricky_defaults_fieldless_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_tricky_defaults_fieldless_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_enum_tricky_defaults_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_tricky_defaults_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_hygiene", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_hygiene.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_struct_or_default_generic_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_or_default_generic_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_struct_or_default_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_or_default_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_struct_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_struct_with_generic_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_with_generic_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_tuple_struct_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_tuple_struct_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_impl_enum", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_enum.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_impl_struct", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_impl_struct_opt_field", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_struct_opt_field.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_impl_wrapped_array", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_wrapped_array.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "derive": [ - "multiversx-sc-codec-derive" - ], - "multiversx-sc-codec-derive": [ - "dep:multiversx-sc-codec-derive" - ], - "num-bigint": [ - "dep:num-bigint" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies", - "development-tools" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-codec-derive", - "version": "0.22.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "Macro implementations of multiversx-sc-codec #[derive(NestedEncode, NestedDecode, TopEncode, TopDecode)]", - "source": null, - "dependencies": [ - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.94", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.0.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "multiversx_sc_codec_derive", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "syn/full", - "syn/parsing", - "syn/extra-traits" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "dorin.iancu ", - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies", - "development-tools" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-derive", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX smart contract API procedural macros", - "source": null, - "dependencies": [ - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.94", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "radix_trie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.0.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "multiversx_sc_derive", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "syn/full", - "syn/parsing", - "syn/extra-traits" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-meta", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX smart contract crate management standalone tool", - "source": null, - "dependencies": [ - { - "name": "bip39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "common-path", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "copy_dir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "home", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.5.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc", - "num-bigint" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "pathdiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "blocking", - "json" - ], - "target": null, - "registry": null - }, - { - "name": "ruplacer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "preserve_order" - ], - "target": null, - "registry": null - }, - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "deflate" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "sc-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "install_debugger_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/install_debugger_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stg_process_code_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/stg_process_code_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "template_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/template_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "template-test-current": [], - "template-test-released": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract", - "debug" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-meta-lib", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX smart contract meta-programming tools and build system", - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc", - "num-bigint" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "preserve_order" - ], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.227", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmprinter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.227", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.217.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_meta_lib", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ei_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/tests/ei_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_contract_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/tests/multi_contract_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract", - "debug" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-modules", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX WebAssembly standard smart contract modules", - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_modules", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [ - "multiversx-sc/alloc" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-scenario", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX tools for writing and executing scenarios", - "source": null, - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bech32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-scenario-format", - "source": null, - "req": "^0.23.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format" - }, - { - "name": "multiversx-chain-vm", - "source": null, - "req": "=0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm" - }, - { - "name": "multiversx-chain-vm-executor", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc", - "num-bigint" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pathdiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "simple-error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unwrap-infallible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_scenario", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "address_eq_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/address_eq_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_float_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_float_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_int_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_int_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_uint_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_uint_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "contract_without_macros", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/contract_without_macros.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_biguint_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_biguint_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_decimal_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_decimal_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_enum_1", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_1.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_enum_2_managed", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_2_managed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_enum_simple", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_esdt_token_payment_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_esdt_token_payment_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_struct_1_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_1_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_struct_2_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_2_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_struct_3", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_3.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_token_payment_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/esdt_token_payment_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hex_call_data_arg_load", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/hex_call_data_arg_load.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_buffer_read_to_end_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_buffer_read_to_end_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_codec_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_codec_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_decimal_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_decimal_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_map_encoded_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_map_encoded_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_option_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_option_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_ref_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_ref_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_type_debug_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_type_debug_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_vec_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_vec_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_transfer_with_egld", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/multi_transfer_with_egld.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_value_encoded_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/multi_value_encoded_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "path_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/path_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenarios_io_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/scenarios_io_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenarios_self_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/scenarios_self_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "single_tx_api_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/single_tx_api_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "static_buffer_ref_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/static_buffer_ref_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_bi_di_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_bi_di_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_map_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_map_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_map_storage_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_map_storage_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_set_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_set_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_unordered_set_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_unordered_set_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_linked_list_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_linked_list_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_print_api", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_print_api.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_queue_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_queue_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_vec_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_vec_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_identifier_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/token_identifier_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_properties_result_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/token_properties_result_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tx_call_normalize", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/tx_call_normalize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "wasm-incompatible" - ], - "run-go-tests": [], - "wasm-incompatible": [ - "multiversx-chain-vm/wasm-incompatible" - ], - "wasmer-experimental": [ - "multiversx-chain-vm/wasmer-experimental" - ], - "wasmer-prod": [ - "multiversx-chain-vm/wasmer-prod" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract", - "debug" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-snippets", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX framework for building smart contract interaction snippets", - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-scenario-format", - "source": null, - "req": "^0.23.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "multiversx-sdk", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" - }, - { - "name": "multiversx-sdk-dapp", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp" - }, - { - "name": "multiversx-sdk-http", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http" - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_snippets", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_deployed_address", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_deployed_address.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_issued_token_identifier", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_issued_token_identifier.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_logs", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_logs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_multi_contract_sc_result", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_multi_contract_sc_result.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_multiple_sc_results", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_multiple_sc_results.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_sc_result", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_sc_result.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "dapp": [ - "multiversx-sdk-dapp" - ], - "default": [ - "http", - "default-tls" - ], - "default-tls": [ - "multiversx-sdk-http/default-tls" - ], - "http": [ - "multiversx-sdk-http", - "tokio" - ], - "multiversx-sdk-dapp": [ - "dep:multiversx-sdk-dapp" - ], - "multiversx-sdk-http": [ - "dep:multiversx-sdk-http" - ], - "static-tls": [ - "multiversx-sdk-http/static-tls" - ], - "tokio": [ - "dep:tokio" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract", - "snippets" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-wasm-adapter", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX WebAssembly VM API wrapper", - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_wasm_adapter", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies", - "development-tools::ffi" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sdk", - "version": "0.9.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "license": "MIT", - "license_file": null, - "description": "SDK for interacting with the MultiversX blockchain", - "source": null, - "dependencies": [ - { - "name": "aes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bech32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bip39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rand" - ], - "target": null, - "registry": null - }, - { - "name": "ctr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hmac", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-core", - "source": null, - "req": "=0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" - }, - { - "name": "pbkdf2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pem", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scrypt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.130", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.68", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "preserve_order" - ], - "target": null, - "registry": null - }, - { - "name": "serde_repr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "v4" - ], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sdk", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "generate_mnemonic", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/examples/generate_mnemonic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "retrieve_tx_on_network_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/tests/retrieve_tx_on_network_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wallet_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/tests/wallet_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "api-bindings" - ], - "keywords": [ - "multiversx", - "blockchain", - "sdk", - "api" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sdk-dapp", - "version": "0.9.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "license": "MIT", - "license_file": null, - "description": "SDK for interacting with the MultiversX blockchain for wasm-bindgen environments", - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.44", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "gloo-net", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.70", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sdk", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.93", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.43", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.70", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sdk_dapp", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "api-bindings" - ], - "keywords": [ - "multiversx", - "blockchain", - "sdk", - "wasm", - "wasm-bindgen" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sdk-http", - "version": "0.9.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "license": "MIT", - "license_file": null, - "description": "SDK for interacting with the MultiversX blockchain", - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.44", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sdk", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "blocking", - "json" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sdk_http", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "account", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/account.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "account_storage", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/account_storage.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_esdt_tokens", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_esdt_tokens.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_hyper_block_by_hash", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_by_hash.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_hyper_block_by_nonce", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_by_nonce.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_hyper_block_latest", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_latest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_network_config", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_network_config.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_network_economics", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_network_economics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "sign_tx", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/sign_tx.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "sign_txs", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/sign_txs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tx_cost", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_cost.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tx_default_args", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_default_args.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tx_info", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_info.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "vm_query", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/vm_query.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "get_network_config_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/tests/get_network_config_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain_simulator": [], - "default": [ - "default-tls" - ], - "default-tls": [ - "reqwest/default-tls" - ], - "static-tls": [ - "reqwest/rustls-tls" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "api-bindings" - ], - "keywords": [ - "multiversx", - "blockchain", - "sdk", - "api" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-wegld-swap-sc", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX Wrapped EGLD Smart Contract", - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_wegld_swap_sc", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/src/wegld.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wegld_swap_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/tests/wegld_swap_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dorin Iancu ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-wegld-swap-sc-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "multiversx-wegld-swap-sc", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multiversx-wegld-swap-sc-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "munge", - "version": "0.4.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", - "license": "MIT", - "license_file": null, - "description": "Macro for custom destructuring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "munge_macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "munge", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "macro", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/djkoloski/munge", - "homepage": null, - "documentation": "https://docs.rs/munge", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "munge_macro", - "version": "0.4.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", - "license": "MIT", - "license_file": null, - "description": "Macro for custom destructuring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "full", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "munge_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge_macro-0.4.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge_macro-0.4.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "macro", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/djkoloski/munge", - "homepage": null, - "documentation": "https://docs.rs/munge_macro", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "mxpy-snippet-generator", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "bech32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "mxpy-snippet-generator", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator/src/mxpy_snippet_generator.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "native-tls", - "version": "0.2.14", - "id": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A wrapper over a platform's native TLS implementation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-cert-gen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", - "registry": null - }, - { - "name": "openssl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", - "registry": null - }, - { - "name": "openssl-probe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", - "registry": null - }, - { - "name": "openssl-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.81", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"macos\")", - "registry": null - }, - { - "name": "schannel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"windows\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - }, - { - "name": "security-framework", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - }, - { - "name": "security-framework-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "native_tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "google-connect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/google-connect.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple-server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/simple-server.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple-server-pkcs8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/simple-server-pkcs8.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alpn": [ - "security-framework/alpn" - ], - "vendored": [ - "openssl/vendored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "alpn" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-native-tls", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.80.0" - }, - { - "name": "nft-minter", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nft_minter", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_minter_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/tests/nft_minter_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_minter_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/tests/nft_minter_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-minter-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "nft-minter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "nft-minter-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-storage-prepay", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nft_storage_prepay", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/src/nft_storage_prepay.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-storage-prepay-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "nft-storage-prepay", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "nft-storage-prepay-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-subscription", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nft_subscription", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_subscription_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/tests/nft_subscription_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_subscription_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/tests/nft_subscription_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Thouny " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-subscription-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "nft-subscription", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "nft-subscription-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Thouny " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nibble_vec", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", - "license": "MIT", - "license_file": null, - "description": "Vector data-structure for half-byte values.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nibble_vec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/examples/debug.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "nib_bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/benches/nib_bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Michael Sproul " - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "vector", - "nibble", - "slice", - "data-structure", - "collection" - ], - "readme": "README.md", - "repository": "https://github.com/michaelsproul/rust_nibble_vec", - "homepage": null, - "documentation": "https://docs.rs/rust_nibble_vec", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nom", - "version": "7.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "license": "MIT", - "license_file": null, - "description": "A byte-oriented, zero-copy, parser combinators library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "minimal-lexical", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/custom_error.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/json.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/json_iterator.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/iterator.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "s_expression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/s_expression.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/string.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/arithmetic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic_ast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/arithmetic_ast.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "css", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/css.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom_errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/custom_errors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "escaped", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/escaped.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "float", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/float.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fnmut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/fnmut.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/ini.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ini_str", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/ini_str.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issues", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/issues.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/json.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mp4", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/mp4.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiline", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/multiline.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "overflow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/overflow.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reborrow_fold", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/reborrow_fold.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "docsrs": [], - "std": [ - "alloc", - "memchr/std", - "minimal-lexical/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "features": [ - "alloc", - "std", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "contact@geoffroycouprie.com" - ], - "categories": [ - "parsing" - ], - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "readme": "README.md", - "repository": "https://github.com/Geal/nom", - "homepage": null, - "documentation": "https://docs.rs/nom", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.48" - }, - { - "name": "num-bigint", - "version": "0.4.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Big integer implementation for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-integer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.46", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "i128" - ], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "i128" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "num_bigint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bigint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bigint_bitwise", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint_bitwise.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bigint_scalar", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint_scalar.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "biguint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/biguint.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "biguint_scalar", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/biguint_scalar.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fuzzed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/fuzzed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "modpow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/modpow.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/roots.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bigint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/bigint.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "factorial", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/factorial.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "gcd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/gcd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/roots.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "shootout-pidigits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/shootout-pidigits.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "default": [ - "std" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rand": [ - "dep:rand" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "num-integer/std", - "num-traits/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "serde", - "rand", - "quickcheck", - "arbitrary" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "data-structures", - "science" - ], - "keywords": [ - "mathematics", - "numerics", - "bignum" - ], - "readme": "README.md", - "repository": "https://github.com/rust-num/num-bigint", - "homepage": "https://github.com/rust-num/num-bigint", - "documentation": "https://docs.rs/num-bigint", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "num-integer", - "version": "0.1.46", - "id": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Integer traits and functions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "i128" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "num_integer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "average", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/tests/average.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/tests/roots.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "average", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/average.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "gcd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/gcd.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/roots.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "i128": [], - "std": [ - "num-traits/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "science", - "no-std" - ], - "keywords": [ - "mathematics", - "numerics" - ], - "readme": "README.md", - "repository": "https://github.com/rust-num/num-integer", - "homepage": "https://github.com/rust-num/num-integer", - "documentation": "https://docs.rs/num-integer", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "num-traits", - "version": "0.2.19", - "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Numeric traits for generic mathematics", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "num_traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/tests/cast.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "i128": [], - "libm": [ - "dep:libm" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "science", - "no-std" - ], - "keywords": [ - "mathematics", - "numerics" - ], - "readme": "README.md", - "repository": "https://github.com/rust-num/num-traits", - "homepage": "https://github.com/rust-num/num-traits", - "documentation": "https://docs.rs/num-traits", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "num_cpus", - "version": "1.16.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Get the number of CPUs on a machine.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.26", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(windows))", - "registry": null - }, - { - "name": "hermit-abi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"hermit\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "num_cpus", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "values", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/examples/values.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "hardware-support" - ], - "keywords": [ - "cpu", - "cpus", - "cores" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/num_cpus", - "homepage": null, - "documentation": "https://docs.rs/num_cpus", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "object", - "version": "0.32.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A unified interface for reading and writing object file formats.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "ahash" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruzstd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.118.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "object", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/tests/integration.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse_self", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/tests/parse_self.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "all": [ - "read", - "write", - "std", - "compression", - "wasm" - ], - "alloc": [ - "dep:alloc" - ], - "archive": [], - "cargo-all": [], - "coff": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "compression": [ - "dep:flate2", - "dep:ruzstd", - "std" - ], - "core": [ - "dep:core" - ], - "default": [ - "read", - "compression" - ], - "doc": [ - "read_core", - "write_std", - "std", - "compression", - "archive", - "coff", - "elf", - "macho", - "pe", - "wasm", - "xcoff" - ], - "elf": [], - "macho": [], - "pe": [ - "coff" - ], - "read": [ - "read_core", - "archive", - "coff", - "elf", - "macho", - "pe", - "xcoff", - "unaligned" - ], - "read_core": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "alloc", - "memchr/rustc-dep-of-std" - ], - "std": [ - "memchr/std" - ], - "unaligned": [], - "unstable": [], - "unstable-all": [ - "all", - "unstable" - ], - "wasm": [ - "dep:wasmparser" - ], - "write": [ - "write_std", - "coff", - "elf", - "macho", - "pe", - "xcoff" - ], - "write_core": [ - "dep:crc32fast", - "dep:indexmap", - "dep:hashbrown" - ], - "write_std": [ - "write_core", - "std", - "indexmap?/std", - "crc32fast?/std" - ], - "xcoff": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "doc" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "object", - "elf", - "mach-o", - "pe", - "coff" - ], - "readme": "README.md", - "repository": "https://github.com/gimli-rs/object", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "object", - "version": "0.36.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A unified interface for reading and writing object file formats.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruzstd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.222.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "object", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/tests/integration.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse_self", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/tests/parse_self.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "all": [ - "read", - "write", - "build", - "std", - "compression", - "wasm" - ], - "alloc": [ - "dep:alloc" - ], - "archive": [], - "build": [ - "build_core", - "write_std", - "elf" - ], - "build_core": [ - "read_core", - "write_core" - ], - "cargo-all": [], - "coff": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "compression": [ - "dep:flate2", - "dep:ruzstd", - "std" - ], - "core": [ - "dep:core" - ], - "default": [ - "read", - "compression" - ], - "doc": [ - "read_core", - "write_std", - "build_core", - "std", - "compression", - "archive", - "coff", - "elf", - "macho", - "pe", - "wasm", - "xcoff" - ], - "elf": [], - "macho": [], - "pe": [ - "coff" - ], - "read": [ - "read_core", - "archive", - "coff", - "elf", - "macho", - "pe", - "xcoff", - "unaligned" - ], - "read_core": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "alloc", - "memchr/rustc-dep-of-std" - ], - "std": [ - "memchr/std" - ], - "unaligned": [], - "unstable": [], - "unstable-all": [ - "all", - "unstable" - ], - "wasm": [ - "dep:wasmparser" - ], - "write": [ - "write_std", - "coff", - "elf", - "macho", - "pe", - "xcoff" - ], - "write_core": [ - "dep:crc32fast", - "dep:indexmap", - "dep:hashbrown" - ], - "write_std": [ - "write_core", - "std", - "indexmap?/std", - "crc32fast?/std" - ], - "xcoff": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "doc" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "object", - "elf", - "mach-o", - "pe", - "coff" - ], - "readme": "README.md", - "repository": "https://github.com/gimli-rs/object", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "once_cell", - "version": "1.21.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Single assignment cells and lazy values.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "critical-section", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "critical-section", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "once_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bench_acquire", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/bench_acquire.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lazy_static", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/lazy_static.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "reentrant_init_deadlocks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/reentrant_init_deadlocks.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "regex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/regex.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "test_synchronization", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/test_synchronization.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "it", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/tests/it/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "race" - ], - "atomic-polyfill": [ - "critical-section" - ], - "critical-section": [ - "dep:critical-section", - "portable-atomic" - ], - "default": [ - "std" - ], - "parking_lot": [ - "dep:parking_lot_core" - ], - "portable-atomic": [ - "dep:portable-atomic" - ], - "race": [], - "std": [ - "alloc" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "keywords": [ - "lazy", - "static" - ], - "readme": "README.md", - "repository": "https://github.com/matklad/once_cell", - "homepage": null, - "documentation": "https://docs.rs/once_cell", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "openssl", - "version": "0.10.72", - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", - "license": "Apache-2.0", - "license_file": null, - "description": "OpenSSL bindings", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "openssl-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.107", - "kind": null, - "rename": "ffi", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "foreign-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "openssl-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "openssl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "mk_certs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/examples/mk_certs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aws-lc": [ - "ffi/aws-lc" - ], - "bindgen": [ - "ffi/bindgen" - ], - "default": [], - "unstable_boringssl": [ - "ffi/unstable_boringssl" - ], - "v101": [], - "v102": [], - "v110": [], - "v111": [], - "vendored": [ - "ffi/vendored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [ - "cryptography", - "api-bindings" - ], - "keywords": [ - "crypto", - "tls", - "ssl", - "dtls" - ], - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "openssl-macros", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Internal macros used by the openssl crate.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "openssl_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "openssl-probe", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Tool for helping to find SSL certificate locations on the system for OpenSSL\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "openssl_probe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "probe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/examples/probe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/openssl-probe", - "homepage": "https://github.com/alexcrichton/openssl-probe", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "openssl-sys", - "version": "0.9.107", - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", - "license": "MIT", - "license_file": null, - "description": "FFI bindings to OpenSSL", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aws-lc-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.27", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "ssl" - ], - "target": null, - "registry": null - }, - { - "name": "bssl-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.69.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "experimental" - ], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "openssl-src", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^300.2.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "legacy" - ], - "target": null, - "registry": null - }, - { - "name": "pkg-config", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vcpkg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "openssl_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-main", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/build/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aws-lc": [ - "dep:aws-lc-sys" - ], - "bindgen": [ - "dep:bindgen" - ], - "bssl-sys": [ - "dep:bssl-sys" - ], - "openssl-src": [ - "dep:openssl-src" - ], - "unstable_boringssl": [ - "bssl-sys" - ], - "vendored": [ - "openssl-src" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/Cargo.toml", - "metadata": { - "pkg-config": { - "openssl": "1.0.1" - } - }, - "publish": null, - "authors": [ - "Alex Crichton ", - "Steven Fackler " - ], - "categories": [ - "cryptography", - "external-ffi-bindings" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": "openssl", - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "order-book-factory", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "order_book_factory", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "order-book-pair", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "order_book_pair", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pair_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/tests/pair_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pair_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/tests/pair_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "pair-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "order-book-pair", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "pair-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "panic-message-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmer-experimental" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "panic_message_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/src/panic_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pmf_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pmf_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pmf_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pmf_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "run-go-tests": [ - "multiversx-sc-scenario/run-go-tests" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "panic-message-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "panic-message-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "panic-message-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "parent", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "parent", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "parent-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "parent", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "parent-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "parking_lot", - "version": "0.12.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "More compact and efficient implementations of the standard synchronization primitives.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lock_api", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "parking_lot", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue_392", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/tests/issue_392.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue_203", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/tests/issue_203.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "arc_lock": [ - "lock_api/arc_lock" - ], - "deadlock_detection": [ - "parking_lot_core/deadlock_detection" - ], - "default": [], - "hardware-lock-elision": [], - "nightly": [ - "parking_lot_core/nightly", - "lock_api/nightly" - ], - "owning_ref": [ - "lock_api/owning_ref" - ], - "send_guard": [], - "serde": [ - "lock_api/serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arc_lock", - "serde", - "deadlock_detection" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "arc_lock", - "serde", - "deadlock_detection" - ] - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "mutex", - "condvar", - "rwlock", - "once", - "thread" - ], - "readme": "README.md", - "repository": "https://github.com/Amanieu/parking_lot", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "parking_lot_core", - "version": "0.9.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An advanced API for creating custom synchronization primitives.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.60", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "petgraph", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thread-id", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "redox_syscall", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"redox\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "parking_lot_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "backtrace": [ - "dep:backtrace" - ], - "deadlock_detection": [ - "petgraph", - "thread-id", - "backtrace" - ], - "nightly": [], - "petgraph": [ - "dep:petgraph" - ], - "thread-id": [ - "dep:thread-id" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "mutex", - "condvar", - "rwlock", - "once", - "thread" - ], - "readme": null, - "repository": "https://github.com/Amanieu/parking_lot", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "password-hash", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Traits which describe the functionality of password hashing algorithms,\nas well as a `no_std`-friendly implementation of the PHC string format\n(a well-defined subset of the Modular Crypt Format a.k.a. MCF)\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64ct", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "password_hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoding", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/encoding.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hashing", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/hashing.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "password_hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/password_hash.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_vectors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/test_vectors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "base64ct/alloc" - ], - "default": [ - "rand_core" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [ - "alloc", - "base64ct/std", - "rand_core/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "authentication", - "cryptography", - "no-std" - ], - "keywords": [ - "crypt", - "mcf", - "password", - "pbkdf", - "phc" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/password-hash", - "homepage": null, - "documentation": "https://docs.rs/password-hash", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "paste", - "version": "1.0.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Macros for all your token pasting needs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "paste-test-suite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.49", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "paste", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_item", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_item.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_attr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_attr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_doc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_doc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_expr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "macros" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/paste", - "homepage": null, - "documentation": "https://docs.rs/paste", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "pathdiff", - "version": "0.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Library for diffing paths to obtain relative paths", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "camino", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pathdiff", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "camino": [ - "dep:camino" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "path", - "relative" - ], - "readme": null, - "repository": "https://github.com/Manishearth/pathdiff", - "homepage": null, - "documentation": "https://docs.rs/pathdiff/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "payable-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "payable_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/src/payable_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "payable_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "payable_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "payable_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "payable-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "payable-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "payable-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "payable-interactor", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "payable-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "payable_interactor", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/src/payable_interactor.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "payable-interactor", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/src/payable_interactor_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "payable_interactor_cs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/tests/payable_interactor_cs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "pbkdf2", - "version": "0.12.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Generic implementation of PBKDF2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "mac" - ], - "target": null, - "registry": null - }, - { - "name": "hmac", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "password-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "rand_core" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hmac", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "streebog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pbkdf2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/tests/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/benches/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "hmac" - ], - "hmac": [ - "dep:hmac" - ], - "parallel": [ - "rayon", - "std" - ], - "password-hash": [ - "dep:password-hash" - ], - "rayon": [ - "dep:rayon" - ], - "sha1": [ - "dep:sha1" - ], - "sha2": [ - "dep:sha2" - ], - "simple": [ - "hmac", - "password-hash", - "sha2" - ], - "std": [ - "password-hash/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "authentication", - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "hashing", - "password", - "phf" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2", - "homepage": null, - "documentation": "https://docs.rs/pbkdf2", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "pem", - "version": "3.0.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", - "license": "MIT", - "license_file": null, - "description": "Parse and encode PEM-encoded data.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pem", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "pem_benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/benches/pem_benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "base64/std", - "serde?/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jonathan Creekmore " - ], - "categories": [ - "cryptography" - ], - "keywords": [ - "no-std", - "no_std", - "pem" - ], - "readme": "README.md", - "repository": "https://github.com/jcreekmore/pem-rs.git", - "homepage": "https://github.com/jcreekmore/pem-rs.git", - "documentation": "https://docs.rs/pem/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "percent-encoding", - "version": "2.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Percent encoding and decoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "percent_encoding", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "no_std" - ], - "keywords": [], - "readme": null, - "repository": "https://github.com/servo/rust-url/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.51" - }, - { - "name": "pin-project", - "version": "1.1.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A crate for safe and ergonomic pin-projection.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "pin-project-internal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.1.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pin_project", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum-default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/enum-default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum-default-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/enum-default-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "not_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/not_unpin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "not_unpin-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/not_unpin-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pinned_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/pinned_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pinned_drop-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/pinned_drop-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "project_replace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/project_replace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "project_replace-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/project_replace-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "struct-default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/struct-default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "struct-default-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/struct-default-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "unsafe_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/unsafe_unpin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "unsafe_unpin-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/unsafe_unpin-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cfg", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/cfg.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "drop_order", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/drop_order.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "expandtest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/expandtest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pin_project", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/pin_project.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pinned_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/pinned_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proper_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/proper_unpin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "repr_packed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/repr_packed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unsafe_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/unsafe_unpin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "pin_project_internal::*" - ] - }, - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "pin", - "macros", - "attribute" - ], - "readme": "README.md", - "repository": "https://github.com/taiki-e/pin-project", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "pin-project-internal", - "version": "1.1.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Implementation detail of the `pin-project` crate.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "parsing", - "printing", - "clone-impls", - "proc-macro", - "full", - "visit-mut" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "pin_project_internal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "pin", - "macros", - "attribute" - ], - "readme": null, - "repository": "https://github.com/taiki-e/pin-project", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "pin-project-lite", - "version": "0.2.16", - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A lightweight version of pin-project written with declarative macros.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pin_project_lite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "drop_order", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/drop_order.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "expandtest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/expandtest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proper_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/proper_unpin.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [] - }, - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "pin", - "macros" - ], - "readme": "README.md", - "repository": "https://github.com/taiki-e/pin-project-lite", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.37" - }, - { - "name": "pin-utils", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Utilities for pinning\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pin_utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "projection", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/tests/projection.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stack_pin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/tests/stack_pin.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Josef Brandl " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/pin-utils", - "homepage": null, - "documentation": "https://docs.rs/pin-utils", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ping-pong-dapp", - "version": "0.1.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "console_log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "dapp" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.210", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yew", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "csr" - ], - "target": null, - "registry": null - }, - { - "name": "yew-router", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yew_icons", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "BootstrapHeartFill" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ping-pong-dapp", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ping-pong-egld", - "version": "0.0.2", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ping_pong_egld", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/src/ping_pong.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ping_pong_egld_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/tests/ping_pong_egld_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ping_pong_egld_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/tests/ping_pong_egld_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Bruda Claudiu-Marcel " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ping-pong-egld-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "ping-pong-egld", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ping_pong_egld_interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/src/interact.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ping-pong-egld-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/src/interact_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "interact_cs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/tests/interact_cs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ping-pong-egld-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "ping-pong-egld", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ping-pong-egld-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Bruda Claudiu-Marcel " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "pinned", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Synchronisation primitives for !Send tasks.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "async-await" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.21.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pinned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pinned-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pinned-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Kaede Hoshiakwa " - ], - "categories": [ - "asynchronous" - ], - "keywords": [ - "async", - "futures", - "non-blocking" - ], - "readme": "README.md", - "repository": "https://github.com/futursolo/pinned", - "homepage": "https://github.com/futursolo/pinned", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "pkcs8", - "version": "0.10.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "der", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "oid" - ], - "target": null, - "registry": null - }, - { - "name": "pkcs5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "spki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pkcs8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encrypted_private_key", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/encrypted_private_key.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "private_key", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/private_key.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/traits.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "3des": [ - "encryption", - "pkcs5/3des" - ], - "alloc": [ - "der/alloc", - "der/zeroize", - "spki/alloc" - ], - "des-insecure": [ - "encryption", - "pkcs5/des-insecure" - ], - "encryption": [ - "alloc", - "pkcs5/alloc", - "pkcs5/pbes2", - "rand_core" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "pem": [ - "alloc", - "der/pem", - "spki/pem" - ], - "pkcs5": [ - "dep:pkcs5" - ], - "rand_core": [ - "dep:rand_core" - ], - "sha1-insecure": [ - "encryption", - "pkcs5/sha1-insecure" - ], - "std": [ - "alloc", - "der/std", - "spki/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "keywords": [ - "crypto", - "key", - "pkcs", - "private" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/pkcs8", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "pkg-config", - "version": "0.3.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pkg_config", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "build-dependencies" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/pkg-config-rs", - "homepage": null, - "documentation": "https://docs.rs/pkg-config", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "portable-atomic", - "version": "1.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "critical-section", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "build-context", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fastrand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sptr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.163", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Threading" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "portable_atomic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-1.11.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-1.11.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "critical-section": [ - "dep:critical-section" - ], - "default": [ - "fallback" - ], - "disable-fiq": [], - "fallback": [], - "float": [], - "force-amo": [], - "require-cas": [], - "s-mode": [], - "serde": [ - "dep:serde" - ], - "std": [], - "unsafe-assume-single-core": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-1.11.0/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "serde::*" - ] - }, - "docs": { - "rs": { - "features": [ - "float", - "std", - "serde", - "critical-section" - ], - "rustdoc-args": [ - "--cfg", - "portable_atomic_unstable_f16", - "--cfg", - "portable_atomic_unstable_f128" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "embedded", - "hardware-support", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "atomic" - ], - "readme": "README.md", - "repository": "https://github.com/taiki-e/portable-atomic", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.34" - }, - { - "name": "portable-atomic-util", - "version": "0.2.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.4", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Synchronization primitives built with portable-atomic.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "require-cas" - ], - "target": null, - "registry": null - }, - { - "name": "build-context", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "portable_atomic_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-util-0.2.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-util-0.2.4/tests/arc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-util-0.2.4/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/portable-atomic-util-0.2.4/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [] - }, - "docs": { - "rs": { - "all-features": true, - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "data-structures", - "embedded", - "no-std" - ], - "keywords": [ - "atomic" - ], - "readme": "README.md", - "repository": "https://github.com/taiki-e/portable-atomic", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.34" - }, - { - "name": "ppv-lite86", - "version": "0.2.21", - "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Cross-platform cryptography-oriented low-level SIMD library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "simd" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ppv_lite86", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "no_simd": [], - "simd": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The CryptoCorrosion Contributors" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "simd", - "x86" - ], - "readme": null, - "repository": "https://github.com/cryptocorrosion/cryptocorrosion", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "prettyplease", - "version": "0.1.25", - "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A minimal `syn` syntax tree pretty-printer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.90", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.90", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "parsing" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "prettyplease", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "verbatim": [ - "syn/parsing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools" - ], - "keywords": [ - "rustfmt" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/prettyplease", - "homepage": null, - "documentation": "https://docs.rs/prettyplease", - "edition": "2021", - "links": "prettyplease01", - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "prettyplease", - "version": "0.2.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A minimal `syn` syntax tree pretty-printer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.96", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "indoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.96", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "extra-traits", - "parsing", - "printing", - "visit-mut" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "prettyplease", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_precedence", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/tests/test_precedence.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "verbatim": [ - "syn/parsing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "verbatim" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools" - ], - "keywords": [ - "rustfmt" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/prettyplease", - "homepage": null, - "documentation": "https://docs.rs/prettyplease", - "edition": "2021", - "links": "prettyplease02", - "default_run": null, - "rust_version": "1.62" - }, - { - "name": "proc-macro-error", - "version": "1.0.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Almost drop-in replacement to panics in proc-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro-error-attr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.107", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.5.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.19", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proc_macro_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro-errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/macro-errors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "runtime-errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/runtime-errors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "syn-error" - ], - "syn": [ - "dep:syn" - ], - "syn-error": [ - "syn" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "CreepySkeleton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "proc-macro", - "error", - "errors" - ], - "readme": "README.md", - "repository": "https://gitlab.com/CreepySkeleton/proc-macro-error", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proc-macro-error-attr", - "version": "1.0.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Attribute macro for proc-macro-error crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "proc_macro_error_attr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "CreepySkeleton " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://gitlab.com/CreepySkeleton/proc-macro-error", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proc-macro-error-attr2", - "version": "2.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Attribute macro for the proc-macro-error2 crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "proc_macro_error_attr2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "CreepySkeleton ", - "GnomedDev " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/GnomedDev/proc-macro-error-2", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "proc-macro-error2", - "version": "2.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Almost drop-in replacement to panics in proc-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro-error-attr2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.99", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proc_macro_error2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro-errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/macro-errors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/ok.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "runtime-errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/runtime-errors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "syn-error" - ], - "nightly": [], - "syn-error": [ - "dep:syn" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "CreepySkeleton ", - "GnomedDev " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "proc-macro", - "error", - "errors" - ], - "readme": "README.md", - "repository": "https://github.com/GnomedDev/proc-macro-error-2", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "proc-macro2", - "version": "1.0.94", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proc_macro2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "comments", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/comments.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "features", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/features.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "marker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/marker.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test_fmt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test_size.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "proc-macro" - ], - "nightly": [], - "proc-macro": [], - "span-locations": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg=procmacro2_semver_exempt" - ], - "rustdoc-args": [ - "--cfg=procmacro2_semver_exempt", - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "span-locations" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay ", - "Alex Crichton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/proc-macro2", - "homepage": null, - "documentation": "https://docs.rs/proc-macro2", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "prokio", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An asynchronous runtime compatible with WebAssembly and non-WebAssembly targets.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "async-await" - ], - "target": null, - "registry": null - }, - { - "name": "pin-project", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pinned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.21.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rt", - "time" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "time" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "gloo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "prokio", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prokio-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prokio-0.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "documenting" - ] - } - } - }, - "publish": null, - "authors": [ - "Kaede Hoshikawa " - ], - "categories": [ - "asynchronous" - ], - "keywords": [ - "yew", - "futures", - "async", - "io" - ], - "readme": "README.md", - "repository": "https://github.com/futursolo/prokio", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "promises-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "promises_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/src/promises_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "promises_features_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/tests/promises_features_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "promises-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "promises-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "promises-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-pause", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "check-pause", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proxy_pause", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/src/proxy_pause.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proxy_pause_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/tests/proxy_pause_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proxy_pause_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/tests/proxy_pause_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-pause-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "proxy-pause", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "proxy-pause-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-test-first", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proxy_test_first", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/src/proxy-test-first.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-test-first-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "proxy-test-first", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "proxy-test-first-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-test-second", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proxy_test_second", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/src/proxy-test-second.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-test-second-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "proxy-test-second", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "proxy-test-second-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ptr_meta", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "license": "MIT", - "license_file": null, - "description": "A radioactive stabilization of the ptr_meta rfc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ptr_meta_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ptr_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.1.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.1.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std" - ], - "keywords": [ - "ptr", - "meta", - "no_std" - ], - "readme": "crates-io.md", - "repository": "https://github.com/djkoloski/ptr_meta", - "homepage": null, - "documentation": "https://docs.rs/ptr_meta", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ptr_meta", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "license": "MIT", - "license_file": null, - "description": "A radioactive stabilization of the ptr_meta rfc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ptr_meta_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ptr_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.3.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "derive", - "std" - ], - "derive": [ - "ptr_meta_derive" - ], - "ptr_meta_derive": [ - "dep:ptr_meta_derive" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/ptr_meta", - "homepage": null, - "documentation": "https://docs.rs/ptr_meta", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "ptr_meta_derive", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", - "license": "MIT", - "license_file": null, - "description": "Macros for ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "ptr_meta_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.1.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.1.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/djkoloski/ptr_meta", - "homepage": null, - "documentation": "https://docs.rs/ptr_meta_derive", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ptr_meta_derive", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", - "license": "MIT", - "license_file": null, - "description": "Proc macros for ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "full", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "ptr_meta_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.3.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/ptr_meta", - "homepage": null, - "documentation": "https://docs.rs/ptr_meta_derive", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "queue-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "queue_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/src/queue_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "queue-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "queue-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "queue-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "quote", - "version": "1.0.39", - "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Quasi-quoting macro quote!(...)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.66", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "quote", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/quote", - "homepage": null, - "documentation": "https://docs.rs/quote/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "r-efi", - "version": "5.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#r-efi@5.2.0", - "license": "MIT OR Apache-2.0 OR LGPL-2.1-or-later", - "license_file": null, - "description": "UEFI Reference Specification Protocol Constants and Definitions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "r_efi", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "freestanding", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/examples/freestanding.rs", - "edition": "2018", - "required-features": [ - "native" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gop-query", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/examples/gop-query.rs", - "edition": "2018", - "required-features": [ - "native" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hello-world", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/examples/hello-world.rs", - "edition": "2018", - "required-features": [ - "native" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "efiapi": [], - "examples": [ - "native" - ], - "native": [], - "rustc-dep-of-std": [ - "compiler_builtins/rustc-dep-of-std", - "core" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/r-efi-5.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "embedded", - "hardware-support", - "no-std", - "os" - ], - "keywords": [ - "boot", - "efi", - "firmware", - "specification", - "uefi" - ], - "readme": "README.md", - "repository": "https://github.com/r-efi/r-efi", - "homepage": "https://github.com/r-efi/r-efi/wiki", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.68" - }, - { - "name": "radix_trie", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", - "license": "MIT", - "license_file": null, - "description": "Generic radix trie data-structure.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "endian-type", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nibble_vec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "radix_trie", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "child_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/child_iter.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/debug.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "opt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/opt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string_frequency", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/string_frequency.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "trie_benches", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/benches/trie_benches.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Michael Sproul " - ], - "categories": [ - "data-structures", - "text-processing" - ], - "keywords": [ - "trie", - "patricia", - "collection", - "generic", - "prefix" - ], - "readme": "README.md", - "repository": "https://github.com/michaelsproul/rust_radix_trie", - "homepage": null, - "documentation": "https://docs.rs/radix_trie/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rancor", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "license": "MIT", - "license_file": null, - "description": "Scalable and efficient error handling without type composition", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rancor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rancor-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rancor-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "keywords": [ - "error", - "error-handling", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/rancor", - "homepage": null, - "documentation": "https://docs.rs/rancor", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "rand", - "version": "0.8.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Random number generators and other randomness functionality.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "packed_simd_2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.7", - "kind": null, - "rename": "packed_simd", - "optional": true, - "uses_default_features": true, - "features": [ - "into_bits" - ], - "target": null, - "registry": null - }, - { - "name": "rand_chacha", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_pcg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [ - "rand_core/alloc" - ], - "default": [ - "std", - "std_rng" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "libc": [ - "dep:libc" - ], - "log": [ - "dep:log" - ], - "min_const_gen": [], - "nightly": [], - "packed_simd": [ - "dep:packed_simd" - ], - "rand_chacha": [ - "dep:rand_chacha" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde", - "rand_core/serde1" - ], - "simd_support": [ - "packed_simd" - ], - "small_rng": [], - "std": [ - "rand_core/std", - "rand_chacha/std", - "alloc", - "getrandom", - "libc" - ], - "std_rng": [ - "rand_chacha" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ] - } - }, - "playground": { - "features": [ - "small_rng", - "serde1" - ] - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rand_chacha", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "ChaCha random number generator\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ppv-lite86", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_chacha", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "simd": [], - "std": [ - "ppv-lite86/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers", - "The CryptoCorrosion Contributors" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng", - "chacha" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand_chacha", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rand_core", - "version": "0.6.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Core random number generator traits and tools for implementation.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "getrandom": [ - "dep:getrandom" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "std": [ - "alloc", - "getrandom", - "getrandom/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ] - } - }, - "playground": { - "all-features": true - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand_core", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rand_seeder", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A universal random number seeder based on SipHash.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_seeder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "seedrng", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/examples/seedrng.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/benches/mod.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng", - "seeder" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/seeder", - "homepage": "https://rust-random.github.io/book/guide-seeding.html#a-string-or-any-hashable-data", - "documentation": "https://docs.rs/rand_seeder", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "random", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "random", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rayon", - "version": "1.10.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Simple work-stealing parallelism for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm_sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rayon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chars", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/chars.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "clones", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/clones.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "collect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/collect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cross-pool", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/cross-pool.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/debug.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "drain_vec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/drain_vec.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "intersperse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/intersperse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue671", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/issue671.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue671-unzip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/issue671-unzip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "iter_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/iter_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "named-threads", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/named-threads.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "octillion", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/octillion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "par_bridge_recursion", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/par_bridge_recursion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "producer_split_at", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/producer_split_at.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sort-panic-safe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/sort-panic-safe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "str", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/str.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "web_spin_lock": [ - "dep:wasm_sync", - "rayon-core/web_spin_lock" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "homepage": null, - "documentation": "https://docs.rs/rayon/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rayon-core", - "version": "1.12.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Core APIs for Rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm_sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scoped-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rayon_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "double_init_fail", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/double_init_fail.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "init_zero_threads", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/init_zero_threads.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scope_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/scope_join.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scoped_threadpool", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/scoped_threadpool.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "simple_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/simple_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stack_overflow_crash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/stack_overflow_crash.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_current_thread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/use_current_thread.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "web_spin_lock": [ - "dep:wasm_sync" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "homepage": null, - "documentation": "https://docs.rs/rayon/", - "edition": "2021", - "links": "rayon-core", - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rc-new-cyclic-fallible", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "Fallible variant of Rc::new_cyclic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rc_new_cyclic_fallible", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rc_new_cyclic_fallible_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/tests/rc_new_cyclic_fallible_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/multiversx/rc-new-cyclic-fallible", - "homepage": null, - "documentation": "https://github.com/multiversx/rc-new-cyclic-fallible/blob/main/README.md", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "recursive-caller", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "recursive_caller", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/src/recursive_caller.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "recursive-caller-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "recursive-caller", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "recursive-caller-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "redox_syscall", - "version": "0.5.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", - "license": "MIT", - "license_file": null, - "description": "A Rust library to access raw Redox system calls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "syscall", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/redox_syscall-0.5.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "core": [ - "dep:core" - ], - "default": [ - "userspace" - ], - "rustc-dep-of-std": [ - "core", - "bitflags/rustc-dep-of-std" - ], - "std": [], - "userspace": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/redox_syscall-0.5.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "homepage": null, - "documentation": "https://docs.rs/redox_syscall", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "regex", - "version": "1.11.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "syntax", - "meta", - "nfa-pikevm" - ], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "atty", - "humantime", - "termcolor" - ], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std", - "perf", - "unicode", - "regex-syntax/default" - ], - "logging": [ - "aho-corasick?/logging", - "memchr?/logging", - "regex-automata/logging" - ], - "pattern": [], - "perf": [ - "perf-cache", - "perf-dfa", - "perf-onepass", - "perf-backtrack", - "perf-inline", - "perf-literal" - ], - "perf-backtrack": [ - "regex-automata/nfa-backtrack" - ], - "perf-cache": [], - "perf-dfa": [ - "regex-automata/hybrid" - ], - "perf-dfa-full": [ - "regex-automata/dfa-build", - "regex-automata/dfa-search" - ], - "perf-inline": [ - "regex-automata/perf-inline" - ], - "perf-literal": [ - "dep:aho-corasick", - "dep:memchr", - "regex-automata/perf-literal" - ], - "perf-onepass": [ - "regex-automata/dfa-onepass" - ], - "std": [ - "aho-corasick?/std", - "memchr?/std", - "regex-automata/std", - "regex-syntax/std" - ], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "regex-automata/unicode", - "regex-syntax/unicode" - ], - "unicode-age": [ - "regex-automata/unicode-age", - "regex-syntax/unicode-age" - ], - "unicode-bool": [ - "regex-automata/unicode-bool", - "regex-syntax/unicode-bool" - ], - "unicode-case": [ - "regex-automata/unicode-case", - "regex-syntax/unicode-case" - ], - "unicode-gencat": [ - "regex-automata/unicode-gencat", - "regex-syntax/unicode-gencat" - ], - "unicode-perl": [ - "regex-automata/unicode-perl", - "regex-automata/unicode-word-boundary", - "regex-syntax/unicode-perl" - ], - "unicode-script": [ - "regex-automata/unicode-script", - "regex-syntax/unicode-script" - ], - "unicode-segment": [ - "regex-automata/unicode-segment", - "regex-syntax/unicode-segment" - ], - "unstable": [ - "pattern" - ], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers", - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "homepage": "https://github.com/rust-lang/regex", - "documentation": "https://docs.rs/regex", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "regex-automata", - "version": "0.4.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Automata construction and matching using regular expressions.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "atty", - "humantime", - "termcolor" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex_automata", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std", - "syntax", - "perf", - "unicode", - "meta", - "nfa", - "dfa", - "hybrid" - ], - "dfa": [ - "dfa-build", - "dfa-search", - "dfa-onepass" - ], - "dfa-build": [ - "nfa-thompson", - "dfa-search" - ], - "dfa-onepass": [ - "nfa-thompson" - ], - "dfa-search": [], - "hybrid": [ - "alloc", - "nfa-thompson" - ], - "internal-instrument": [ - "internal-instrument-pikevm" - ], - "internal-instrument-pikevm": [ - "logging", - "std" - ], - "logging": [ - "dep:log", - "aho-corasick?/logging", - "memchr?/logging" - ], - "meta": [ - "syntax", - "nfa-pikevm" - ], - "nfa": [ - "nfa-thompson", - "nfa-pikevm", - "nfa-backtrack" - ], - "nfa-backtrack": [ - "nfa-thompson" - ], - "nfa-pikevm": [ - "nfa-thompson" - ], - "nfa-thompson": [ - "alloc" - ], - "perf": [ - "perf-inline", - "perf-literal" - ], - "perf-inline": [], - "perf-literal": [ - "perf-literal-substring", - "perf-literal-multisubstring" - ], - "perf-literal-multisubstring": [ - "std", - "dep:aho-corasick" - ], - "perf-literal-substring": [ - "aho-corasick?/perf-literal", - "dep:memchr" - ], - "std": [ - "regex-syntax?/std", - "memchr?/std", - "aho-corasick?/std", - "alloc" - ], - "syntax": [ - "dep:regex-syntax", - "alloc" - ], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "unicode-word-boundary", - "regex-syntax?/unicode" - ], - "unicode-age": [ - "regex-syntax?/unicode-age" - ], - "unicode-bool": [ - "regex-syntax?/unicode-bool" - ], - "unicode-case": [ - "regex-syntax?/unicode-case" - ], - "unicode-gencat": [ - "regex-syntax?/unicode-gencat" - ], - "unicode-perl": [ - "regex-syntax?/unicode-perl" - ], - "unicode-script": [ - "regex-syntax?/unicode-script" - ], - "unicode-segment": [ - "regex-syntax?/unicode-segment" - ], - "unicode-word-boundary": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers", - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "regex", - "dfa", - "automata", - "automaton", - "nfa" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex/tree/master/regex-automata", - "homepage": null, - "documentation": "https://docs.rs/regex-automata", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "regex-syntax", - "version": "0.8.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A regular expression parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex_syntax", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "default": [ - "std", - "unicode" - ], - "std": [], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "unicode-age": [], - "unicode-bool": [], - "unicode-case": [], - "unicode-gencat": [], - "unicode-perl": [], - "unicode-script": [], - "unicode-segment": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers", - "Andrew Gallant " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex/tree/master/regex-syntax", - "homepage": null, - "documentation": "https://docs.rs/regex-syntax", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "region", - "version": "3.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "license": "MIT", - "license_file": null, - "description": "Cross-platform virtual memory API", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.153", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mach2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", - "registry": null - }, - { - "name": "mmap-fixed", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.6", - "kind": "dev", - "rename": "mmap", - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Memory", - "Win32_System_SystemInformation", - "Win32_System_Diagnostics_Debug" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "region", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/region-3.0.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/region-3.0.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Elliott Linder " - ], - "categories": [], - "keywords": [ - "region", - "page", - "lock", - "protect", - "maps" - ], - "readme": "README.md", - "repository": "https://github.com/darfink/region-rs", - "homepage": "https://github.com/darfink/region-rs", - "documentation": "https://docs.rs/region", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rend", - "version": "0.5.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", - "license": "MIT", - "license_file": null, - "description": "Cross-platform, endian-aware primitives for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "bytemuck-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rend", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.5.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bytecheck": [ - "dep:bytecheck" - ], - "bytemuck-1": [ - "dep:bytemuck-1" - ], - "default": [], - "zerocopy-0_8": [ - "dep:zerocopy", - "dep:zerocopy-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.5.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std" - ], - "keywords": [ - "endian", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/djkoloski/rend", - "homepage": null, - "documentation": "https://docs.rs/rend", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "reqwest", - "version": "0.12.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "higher level HTTP client library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mime_guess", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sync_wrapper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures" - ], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "limit" - ], - "target": null, - "registry": null - }, - { - "name": "async-compression", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "tokio" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "cookie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.18.0", - "kind": null, - "rename": "cookie_crate", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "cookie_store", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.21.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "encoding_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "h2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "h3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "h3-quinn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hickory-resolver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.24", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "tokio-runtime" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "http-body", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "http1", - "client" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper-rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.27.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "http1", - "tls12" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "http1", - "client", - "client-legacy", - "tokio" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "ipnet", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "mime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.16", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.10", - "kind": null, - "rename": "native-tls-crate", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "quinn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "rustls", - "runtime-tokio" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "tls12" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls-native-certs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls-pemfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "net", - "time" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "tls12" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-socks", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "codec", - "io" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tower", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "timeout", - "util" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "brotli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.0", - "kind": "dev", - "rename": "brotli_crate", - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.28", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "alloc" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "http1", - "http2", - "client", - "server" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "http1", - "http2", - "client", - "client-legacy", - "server-auto", - "tokio" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "libflate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "ring" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros", - "rt-multi-thread" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "zstd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": "zstd_crate", - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.89", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-streams", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "AbortController", - "AbortSignal", - "Headers", - "Request", - "RequestInit", - "RequestMode", - "Response", - "Window", - "FormData", - "Blob", - "BlobPropertyBag", - "ServiceWorkerGlobalScope", - "RequestCredentials", - "File", - "ReadableStream" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.89", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde-serialize" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "system-configuration", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"macos\")", - "registry": null - }, - { - "name": "windows-registry", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "reqwest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "blocking", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/blocking.rs", - "edition": "2021", - "required-features": [ - "blocking" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "connect_via_lower_priority_tokio_runtime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/connect_via_lower_priority_tokio_runtime.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "form", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/form.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "h3_simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/h3_simple.rs", - "edition": "2021", - "required-features": [ - "http3", - "rustls-tls" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_dynamic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/json_dynamic.rs", - "edition": "2021", - "required-features": [ - "json" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_typed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/json_typed.rs", - "edition": "2021", - "required-features": [ - "json" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tor_socks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/tor_socks.rs", - "edition": "2021", - "required-features": [ - "socks" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "badssl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/badssl.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "blocking", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/blocking.rs", - "edition": "2021", - "required-features": [ - "blocking" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "brotli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/brotli.rs", - "edition": "2021", - "required-features": [ - "brotli", - "stream" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/client.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "connector_layers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/connector_layers.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cookie", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/cookie.rs", - "edition": "2021", - "required-features": [ - "cookies" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deflate", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/deflate.rs", - "edition": "2021", - "required-features": [ - "deflate", - "stream" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gzip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/gzip.rs", - "edition": "2021", - "required-features": [ - "gzip", - "stream" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "http3", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/http3.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multipart", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/multipart.rs", - "edition": "2021", - "required-features": [ - "multipart" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proxy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "redirect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/redirect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "timeouts", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/timeouts.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "upgrade", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/upgrade.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wasm_simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/wasm_simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zstd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/zstd.rs", - "edition": "2021", - "required-features": [ - "zstd", - "stream" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__rustls": [ - "dep:hyper-rustls", - "dep:tokio-rustls", - "dep:rustls", - "__tls", - "dep:rustls-pemfile", - "dep:rustls-pki-types" - ], - "__rustls-ring": [ - "hyper-rustls?/ring", - "tokio-rustls?/ring", - "rustls?/ring", - "quinn?/ring" - ], - "__tls": [ - "dep:rustls-pemfile", - "tokio/io-util" - ], - "blocking": [ - "dep:futures-channel", - "futures-channel?/sink", - "futures-util/io", - "futures-util/sink", - "tokio/sync" - ], - "brotli": [ - "dep:async-compression", - "async-compression?/brotli", - "dep:tokio-util" - ], - "charset": [ - "dep:encoding_rs" - ], - "cookies": [ - "dep:cookie_crate", - "dep:cookie_store" - ], - "default": [ - "default-tls", - "charset", - "http2", - "macos-system-configuration" - ], - "default-tls": [ - "dep:hyper-tls", - "dep:native-tls-crate", - "__tls", - "dep:tokio-native-tls" - ], - "deflate": [ - "dep:async-compression", - "async-compression?/zlib", - "dep:tokio-util" - ], - "gzip": [ - "dep:async-compression", - "async-compression?/gzip", - "dep:tokio-util" - ], - "h2": [ - "dep:h2" - ], - "hickory-dns": [ - "dep:hickory-resolver" - ], - "http2": [ - "h2", - "hyper/http2", - "hyper-util/http2", - "hyper-rustls?/http2" - ], - "http3": [ - "rustls-tls-manual-roots", - "dep:h3", - "dep:h3-quinn", - "dep:quinn", - "dep:slab", - "dep:futures-channel" - ], - "json": [ - "dep:serde_json" - ], - "macos-system-configuration": [ - "dep:system-configuration" - ], - "multipart": [ - "dep:mime_guess" - ], - "native-tls": [ - "default-tls" - ], - "native-tls-alpn": [ - "native-tls", - "native-tls-crate?/alpn", - "hyper-tls?/alpn" - ], - "native-tls-vendored": [ - "native-tls", - "native-tls-crate?/vendored" - ], - "rustls-tls": [ - "rustls-tls-webpki-roots" - ], - "rustls-tls-manual-roots": [ - "rustls-tls-manual-roots-no-provider", - "__rustls-ring" - ], - "rustls-tls-manual-roots-no-provider": [ - "__rustls" - ], - "rustls-tls-native-roots": [ - "rustls-tls-native-roots-no-provider", - "__rustls-ring" - ], - "rustls-tls-native-roots-no-provider": [ - "dep:rustls-native-certs", - "hyper-rustls?/native-tokio", - "__rustls" - ], - "rustls-tls-no-provider": [ - "rustls-tls-manual-roots-no-provider" - ], - "rustls-tls-webpki-roots": [ - "rustls-tls-webpki-roots-no-provider", - "__rustls-ring" - ], - "rustls-tls-webpki-roots-no-provider": [ - "dep:webpki-roots", - "hyper-rustls?/webpki-tokio", - "__rustls" - ], - "socks": [ - "dep:tokio-socks" - ], - "stream": [ - "tokio/fs", - "dep:tokio-util", - "dep:wasm-streams" - ], - "trust-dns": [], - "zstd": [ - "dep:async-compression", - "async-compression?/zstd", - "dep:tokio-util" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "reqwest_unstable" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "wasm32-unknown-unknown" - ] - } - }, - "playground": { - "features": [ - "blocking", - "cookies", - "json", - "multipart" - ] - } - }, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "web-programming::http-client", - "wasm" - ], - "keywords": [ - "http", - "request", - "client" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/reqwest", - "homepage": null, - "documentation": "https://docs.rs/reqwest", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "rewards-distribution", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rewards_distribution", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/src/rewards_distribution.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mock_seed_nft_minter", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/mock_seed_nft_minter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mock_seed_nft_minter_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/mock_seed_nft_minter_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rewards_distribution_integration_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/rewards_distribution_integration_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/utils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rewards-distribution-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "rewards-distribution", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "rewards-distribution-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ring", - "version": "0.17.14", - "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "license": "Apache-2.0 AND ISC", - "license_file": null, - "description": "An experiment.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "untrusted", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.8", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Threading" - ], - "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.148", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.37", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.148", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(unix, windows, target_os = \"wasi\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "aead_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/aead_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "agreement_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/agreement_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constant_time_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/constant_time_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "digest_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/digest_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ecdsa_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/ecdsa_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ed25519_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/ed25519_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/error_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hkdf_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/hkdf_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hmac_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/hmac_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pbkdf2_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/pbkdf2_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quic_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/quic_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rand_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/rand_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rsa_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/rsa_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signature_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/signature_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "alloc", - "dev_urandom_fallback" - ], - "dev_urandom_fallback": [], - "less-safe-getrandom-custom-or-rdrand": [], - "less-safe-getrandom-espidf": [], - "slow_tests": [], - "std": [ - "alloc" - ], - "test_logging": [], - "unstable-testing-arm-no-hw": [], - "unstable-testing-arm-no-neon": [], - "wasm32_unknown_unknown_js": [ - "getrandom/js" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "cryptography", - "rand", - "ECC", - "RSA" - ], - "readme": "README.md", - "repository": "https://github.com/briansmith/ring", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": "ring_core_0_17_14_", - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "rkyv", - "version": "0.8.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "license": "MIT", - "license_file": null, - "description": "Zero-copy deserialization framework for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": "arrayvec-0_7", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "simdutf8" - ], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "bytes-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": "hashbrown-0_14", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": "indexmap-2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "munge", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rancor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rend", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "smallvec-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smol_str", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": "smol_str-0_2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smol_str", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": "smol_str-0_3", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thin-vec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.12", - "kind": null, - "rename": "thin-vec-0_2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinyvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "tinyvec-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "triomphe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": "triomphe-0_1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "uuid-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "divan", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rkyv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "backwards_compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/backwards_compat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "complex_wrapper_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/complex_wrapper_types.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "derive_partial_ord", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/derive_partial_ord.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_enum_discriminants", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/explicit_enum_discriminants.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_like_schema", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/json_like_schema.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "readme", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/readme.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "remote_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/remote_types.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/tests/derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ui", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/tests/ui.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "log", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/log.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mesh", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/mesh.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "minecraft_savedata", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/minecraft_savedata.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aligned": [], - "alloc": [ - "dep:hashbrown", - "tinyvec-1?/alloc", - "rancor/alloc" - ], - "arrayvec-0_7": [ - "dep:arrayvec-0_7" - ], - "big_endian": [], - "bytecheck": [ - "dep:bytecheck", - "rend/bytecheck", - "rkyv_derive/bytecheck" - ], - "bytes-1": [ - "dep:bytes-1" - ], - "default": [ - "std", - "bytecheck" - ], - "hashbrown-0_14": [ - "dep:hashbrown-0_14" - ], - "hashbrown-0_15": [ - "dep:hashbrown" - ], - "indexmap-2": [ - "dep:indexmap-2", - "alloc" - ], - "little_endian": [], - "pointer_width_16": [], - "pointer_width_32": [], - "pointer_width_64": [], - "smallvec-1": [ - "dep:smallvec-1" - ], - "smol_str-0_2": [ - "dep:smol_str-0_2" - ], - "smol_str-0_3": [ - "dep:smol_str-0_3" - ], - "std": [ - "alloc", - "bytes-1?/std", - "indexmap-2?/std", - "ptr_meta/std", - "uuid-1?/std" - ], - "thin-vec-0_2": [ - "dep:thin-vec-0_2" - ], - "tinyvec-1": [ - "dep:tinyvec-1" - ], - "triomphe-0_1": [ - "dep:triomphe-0_1", - "alloc" - ], - "unaligned": [], - "uuid-1": [ - "dep:uuid-1", - "bytecheck?/uuid-1" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "bytecheck" - ] - } - } - }, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "archive", - "rkyv", - "serialization", - "zero-copy", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/rkyv", - "homepage": null, - "documentation": "https://docs.rs/rkyv", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "rkyv_derive", - "version": "0.8.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", - "license": "MIT", - "license_file": null, - "description": "Derive macro for rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.73", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "rkyv_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.8.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bytecheck": [], - "default": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.8.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "archive", - "rkyv", - "serialization", - "zero-copy", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/rkyv", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "route-recognizer", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", - "license": "MIT", - "license_file": null, - "description": "Recognizes URL patterns with support for dynamic and wildcard segments", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "route_recognizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "nfa", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/benches/nfa.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "wycats", - "rustasync" - ], - "categories": [], - "keywords": [ - "router", - "url" - ], - "readme": "README.md", - "repository": "https://github.com/rustasync/route-recognizer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ruplacer", - "version": "0.10.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", - "license": "BSD-3-Clause", - "license_file": null, - "description": "Find and replace text in source files", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "Inflector", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.32", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.3.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ignore", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruplacer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ruplacer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/tests/integration_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/Cargo.toml", - "metadata": { - "deb": { - "extended-description": "Find and replace text in source files" - } - }, - "publish": null, - "authors": [ - "Dimitri Merejkowsky " - ], - "categories": [ - "command-line-utilities" - ], - "keywords": [ - "ruplacer", - "find", - "grep", - "command", - "line" - ], - "readme": "README.md", - "repository": "https://github.com/your-tools/ruplacer", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rust-snippets-generator-test", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rust_snippets_generator_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rust-snippets-generator-test-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "rust-snippets-generator-test", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "rust-snippets-generator-test-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rust-testing-framework-tester", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "adder", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" - }, - { - "name": "basic-features", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" - }, - { - "name": "forwarder", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rust_testing_framework_tester", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rust_testing_framework_tester_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rust_testing_framework_tester_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tester_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/tester_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tester_whitebox_legacy_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/tester_whitebox_legacy_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rust-testing-framework-tester-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "rust-testing-framework-tester", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "rust-testing-framework-tester-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustc-demangle", - "version": "0.1.24", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Rust compiler symbol demangling.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustc_demangle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-demangle-0.1.24/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-demangle-0.1.24/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/rustc-demangle", - "homepage": "https://github.com/rust-lang/rustc-demangle", - "documentation": "https://docs.rs/rustc-demangle", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustc-hash", - "version": "1.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "speed, non-cryptographic hash used in rustc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustc_hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "keywords": [ - "hash", - "fxhash", - "rustc" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/rustc-hash", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustc_version", - "version": "0.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library for querying the version of a installed rustc compiler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustc_version", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/tests/all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "version", - "rustc" - ], - "readme": "README.md", - "repository": "https://github.com/djc/rustc-version-rs", - "homepage": null, - "documentation": "https://docs.rs/rustc_version/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.32" - }, - { - "name": "rustix", - "version": "1.0.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.49", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": "dev", - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "linux-raw-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "general", - "ioctl", - "no_std" - ], - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": "libc_errno", - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "linux-raw-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "general", - "errno", - "ioctl", - "no_std", - "elf" - ], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock" - ], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.20.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustix", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "all-apis": [ - "event", - "fs", - "io_uring", - "mm", - "mount", - "net", - "param", - "pipe", - "process", - "pty", - "rand", - "runtime", - "shm", - "stdio", - "system", - "termios", - "thread", - "time" - ], - "alloc": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "event": [], - "fs": [], - "io_uring": [ - "event", - "fs", - "net", - "thread", - "linux-raw-sys/io_uring" - ], - "libc": [ - "dep:libc" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "linux_4_11": [], - "linux_5_1": [ - "linux_4_11" - ], - "linux_5_11": [ - "linux_5_1" - ], - "linux_latest": [ - "linux_5_11" - ], - "mm": [], - "mount": [], - "net": [ - "linux-raw-sys/net", - "linux-raw-sys/netlink", - "linux-raw-sys/if_ether", - "linux-raw-sys/xdp" - ], - "param": [], - "pipe": [], - "process": [ - "linux-raw-sys/prctl" - ], - "pty": [ - "fs" - ], - "rand": [], - "runtime": [ - "linux-raw-sys/prctl" - ], - "rustc-dep-of-std": [ - "core", - "rustc-std-workspace-alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std", - "compiler_builtins?/rustc-dep-of-std" - ], - "rustc-std-workspace-alloc": [ - "dep:rustc-std-workspace-alloc" - ], - "shm": [ - "fs" - ], - "std": [ - "bitflags/std", - "alloc", - "libc?/std", - "libc_errno?/std" - ], - "stdio": [], - "system": [ - "linux-raw-sys/system" - ], - "termios": [], - "thread": [ - "linux-raw-sys/prctl" - ], - "time": [], - "try_close": [], - "use-explicitly-provided-auxv": [], - "use-libc": [ - "libc_errno", - "libc" - ], - "use-libc-auxv": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc", - "x86_64-unknown-freebsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-netbsd", - "x86_64-unknown-dragonfly", - "x86_64-unknown-illumos", - "x86_64-unknown-redox", - "x86_64-unknown-haiku", - "wasm32-unknown-emscripten", - "wasm32-wasip1" - ] - } - } - }, - "publish": null, - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "homepage": null, - "documentation": "https://docs.rs/rustix", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rustls", - "version": "0.23.26", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "license": "Apache-2.0 OR ISC OR MIT", - "license_file": null, - "description": "Rustls is a modern TLS library written in Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aws-lc-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "brotli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "brotli-decompressor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher", - "inline-more" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.16", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "race" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-webpki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.103", - "kind": null, - "rename": "webpki", - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zlib-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "macro_rules_attribute", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "pem", - "aws_lc_rs" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "x509-parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "test_ca", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/examples/internal/test_ca.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/benches/benchmarks.rs", - "edition": "2021", - "required-features": [ - "ring" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aws-lc-rs": [ - "aws_lc_rs" - ], - "aws_lc_rs": [ - "dep:aws-lc-rs", - "webpki/aws-lc-rs", - "aws-lc-rs/aws-lc-sys", - "aws-lc-rs/prebuilt-nasm" - ], - "brotli": [ - "dep:brotli", - "dep:brotli-decompressor", - "std" - ], - "custom-provider": [], - "default": [ - "aws_lc_rs", - "logging", - "std", - "tls12" - ], - "fips": [ - "aws_lc_rs", - "aws-lc-rs?/fips", - "webpki/aws-lc-rs-fips" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "log": [ - "dep:log" - ], - "logging": [ - "log" - ], - "prefer-post-quantum": [ - "aws_lc_rs" - ], - "read_buf": [ - "rustversion", - "std" - ], - "ring": [ - "dep:ring", - "webpki/ring" - ], - "rustversion": [ - "dep:rustversion" - ], - "std": [ - "webpki/std", - "pki-types/std", - "once_cell/std" - ], - "tls12": [], - "zlib": [ - "dep:zlib-rs" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/Cargo.toml", - "metadata": { - "cargo-semver-checks": { - "lints": { - "enum_no_repr_variant_discriminant_changed": "warn" - } - }, - "cargo_check_external_types": { - "allowed_external_types": [ - "rustls_pki_types", - "rustls_pki_types::*" - ] - }, - "docs": { - "rs": { - "features": [ - "read_buf", - "ring" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "cryptography" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/rustls", - "homepage": "https://github.com/rustls/rustls", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "rustls-pemfile", - "version": "2.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", - "license": "Apache-2.0 OR ISC OR MIT", - "license_file": null, - "description": "Basic .pem file parser for keys and certificates", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustls_pemfile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/tests/integration.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/benches/benchmark.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "pki-types/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "cryptography" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/pemfile", - "homepage": "https://github.com/rustls/pemfile", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustls-pki-types", - "version": "1.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Shared types for the rustls PKI ecosystem", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "web-time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "crabgrind", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.1.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_os = \"linux\", target_arch = \"x86_64\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustls_pki_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dns_name", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/dns_name.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "key_type", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/key_type.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pem", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/pem.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "server_name", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/server_name.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "std": [ - "alloc" - ], - "web": [ - "web-time" - ], - "web-time": [ - "dep:web-time" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "data-structures", - "cryptography" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/pki-types", - "homepage": "https://github.com/rustls/pki-types", - "documentation": "https://docs.rs/rustls-pki-types", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "rustls-webpki", - "version": "0.103.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", - "license": "ISC", - "license_file": null, - "description": "Web PKI X.509 Certificate Verification.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aws-lc-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "untrusted", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bzip2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "aws_lc_rs" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "webpki", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "amazon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/amazon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "better_tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/better_tls.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cert_v1_unsupported", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/cert_v1_unsupported.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cert_without_extensions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/cert_without_extensions.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client_auth", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/client_auth.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client_auth_revocation", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/client_auth_revocation.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crl_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/crl_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom_ekus", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/custom_ekus.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/integration.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signatures", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/signatures.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tls_server_certs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/tls_server_certs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "ring?/alloc", - "pki-types/alloc" - ], - "aws-lc-rs": [ - "dep:aws-lc-rs", - "aws-lc-rs/aws-lc-sys", - "aws-lc-rs/prebuilt-nasm" - ], - "aws-lc-rs-fips": [ - "dep:aws-lc-rs", - "aws-lc-rs/fips" - ], - "default": [ - "std" - ], - "ring": [ - "dep:ring" - ], - "std": [ - "alloc", - "pki-types/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "rustls_pki_types::*", - "rustls_pki_types" - ] - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/webpki", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "rustversion", - "version": "1.0.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Conditional compilation according to rustc compiler version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.49", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "rustversion", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_const", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_const.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_eval", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_eval.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/build/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::build-utils", - "no-std", - "no-std::no-alloc" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/dtolnay/rustversion", - "homepage": null, - "documentation": "https://docs.rs/rustversion", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "ruzstd", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", - "license": "MIT", - "license_file": null, - "description": "A decoder for the zstd compression format", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "derive_more", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.99", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "display", - "from" - ], - "target": null, - "registry": null - }, - { - "name": "twox-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruzstd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "zstd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/bin/zstd.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "zstd_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/bin/zstd_stream.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "reversedbitreader_bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/benches/reversedbitreader_bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "derive_more/error" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Moritz Borcherding " - ], - "categories": [], - "keywords": [], - "readme": "Readme.md", - "repository": "https://github.com/KillingSpark/zstd-rs", - "homepage": "https://github.com/KillingSpark/zstd-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ryu", - "version": "1.0.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "license": "Apache-2.0 OR BSL-1.0", - "license_file": null, - "description": "Fast floating point to string conversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ryu", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "upstream_benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/examples/upstream_benchmark.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "common_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/common_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "d2s_intrinsics_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_intrinsics_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "d2s_table_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_table_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "d2s_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "exhaustive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/exhaustive.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "f2s_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/f2s_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "s2d_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/s2d_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "s2f_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/s2f_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "no-panic": [ - "dep:no-panic" - ], - "small": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "float" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/ryu", - "homepage": null, - "documentation": "https://docs.rs/ryu", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "salsa20", - "version": "0.10.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Salsa20 Stream Cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "salsa20", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "std": [ - "cipher/std" - ], - "zeroize": [ - "cipher/zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "stream-cipher", - "trait", - "xsalsa20" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/stream-ciphers", - "homepage": null, - "documentation": "https://docs.rs/salsa20", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "same-file", - "version": "1.0.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "license": "Unlicense/MIT", - "license_file": null, - "description": "A simple crate for determining whether two file paths point to the same file.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "same_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "is_same_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/examples/is_same_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "is_stderr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/examples/is_stderr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "same", - "file", - "equal", - "inode" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/same-file", - "homepage": "https://github.com/BurntSushi/same-file", - "documentation": "https://docs.rs/same-file", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "scc", - "version": "2.3.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", - "license": "Apache-2.0", - "license_file": null, - "description": "High-performance containers and utilities for concurrent and asynchronous programming", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sdd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.44", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bag", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/bag.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "hash_cache", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_cache.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "hash_index", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_index.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "hash_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tree_index", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/tree_index.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "equivalent": [ - "dep:equivalent" - ], - "loom": [ - "dep:loom", - "sdd/loom" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "wvwwvwwv " - ], - "categories": [ - "asynchronous", - "caching", - "concurrency", - "data-structures" - ], - "keywords": [ - "async", - "cache", - "concurrent", - "hashmap", - "tree" - ], - "readme": "README.md", - "repository": "https://github.com/wvwwvwwv/scalable-concurrent-containers/", - "homepage": null, - "documentation": "https://docs.rs/scc", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "scenario-tester", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scenario_tester", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_chained_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_chained_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_legacy_proxy_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_legacy_proxy_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_raw_steps_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_raw_steps_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_upgrade_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_upgrade_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_unit_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_unit_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "scenario-tester-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "scenario-tester", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "scenario-tester-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "schannel", - "version": "0.1.27", - "id": "registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.27", - "license": "MIT", - "license_file": null, - "description": "Schannel bindings for rust, allowing SSL/TLS (e.g. https) without openssl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Security_Cryptography", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_System_LibraryLoader", - "Win32_System_Memory", - "Win32_System_SystemInformation" - ], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_SystemInformation", - "Win32_System_Time" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "schannel", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/schannel-0.1.27/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/schannel-0.1.27/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc" - } - } - }, - "publish": null, - "authors": [ - "Steven Fackler ", - "Steffen Butzer " - ], - "categories": [], - "keywords": [ - "windows", - "schannel", - "tls", - "ssl", - "https" - ], - "readme": "README.md", - "repository": "https://github.com/steffengy/schannel-rs", - "homepage": null, - "documentation": "https://docs.rs/schannel/0.1.19/schannel/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "scopeguard", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as\nshorthands for guards with one of the implemented strategies.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scopeguard", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "readme", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/examples/readme.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "use_std" - ], - "use_std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "keywords": [ - "scope-guard", - "defer", - "panic", - "unwind" - ], - "readme": "README.md", - "repository": "https://github.com/bluss/scopeguard", - "homepage": null, - "documentation": "https://docs.rs/scopeguard/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "scrypt", - "version": "0.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Scrypt password-based key derivation function", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "password-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "rand_core" - ], - "target": null, - "registry": null - }, - { - "name": "pbkdf2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "salsa20", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "password-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rand_core" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scrypt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/benches/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "simple", - "std" - ], - "password-hash": [ - "dep:password-hash" - ], - "simple": [ - "password-hash" - ], - "std": [ - "password-hash/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "authentication", - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "hashing", - "password", - "phf" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/password-hashes/tree/master/scrypt", - "homepage": null, - "documentation": "https://docs.rs/scrypt", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "sdd", - "version": "3.0.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", - "license": "Apache-2.0", - "license_file": null, - "description": "Scalable lock-free delayed memory reclaimer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sdd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ebr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/benches/ebr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "loom": [ - "dep:loom" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "wvwwvwwv " - ], - "categories": [ - "concurrency", - "data-structures", - "memory-management" - ], - "keywords": [ - "concurrent", - "epoch", - "garbage", - "lock-free", - "memory" - ], - "readme": "README.md", - "repository": "https://github.com/wvwwvwwv/scalable-delayed-dealloc/", - "homepage": null, - "documentation": "https://docs.rs/sdd", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "second-contract", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "second_contract", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "second-contract-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "second-contract", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "second-contract-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "security-framework", - "version": "2.11.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#security-framework@2.11.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Security.framework bindings for macOS and iOS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "core-foundation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "core-foundation-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.139", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "security-framework-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.11.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "x509-parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "security_framework", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/examples/client.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "find_internet_password", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/examples/find_internet_password.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "set_internet_password", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/examples/set_internet_password.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "OSX_10_10": [ - "OSX_10_9", - "security-framework-sys/OSX_10_10" - ], - "OSX_10_11": [ - "OSX_10_10", - "security-framework-sys/OSX_10_11" - ], - "OSX_10_12": [ - "OSX_10_11", - "security-framework-sys/OSX_10_12" - ], - "OSX_10_13": [ - "OSX_10_12", - "security-framework-sys/OSX_10_13", - "alpn", - "session-tickets", - "serial-number-bigint" - ], - "OSX_10_14": [ - "OSX_10_13", - "security-framework-sys/OSX_10_14" - ], - "OSX_10_15": [ - "OSX_10_14", - "security-framework-sys/OSX_10_15" - ], - "OSX_10_9": [ - "security-framework-sys/OSX_10_9" - ], - "alpn": [], - "default": [ - "OSX_10_12" - ], - "job-bless": [], - "log": [ - "dep:log" - ], - "nightly": [], - "serial-number-bigint": [ - "dep:num-bigint" - ], - "session-tickets": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-2.11.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "OSX_10_15" - ], - "targets": [ - "x86_64-apple-darwin", - "aarch64-apple-ios" - ] - } - } - }, - "publish": null, - "authors": [ - "Steven Fackler ", - "Kornel " - ], - "categories": [ - "os::macos-apis", - "cryptography", - "api-bindings" - ], - "keywords": [ - "iOS", - "TLS", - "SSL", - "crypto", - "keychain" - ], - "readme": "README.md", - "repository": "https://github.com/kornelski/rust-security-framework", - "homepage": "https://lib.rs/crates/security_framework", - "documentation": "https://docs.rs/security_framework", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "security-framework-sys", - "version": "2.14.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Apple `Security.framework` low-level FFI bindings", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "core-foundation-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.150", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "security_framework_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.14.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "OSX_10_10": [ - "OSX_10_9" - ], - "OSX_10_11": [ - "OSX_10_10" - ], - "OSX_10_12": [ - "OSX_10_11" - ], - "OSX_10_13": [ - "OSX_10_12" - ], - "OSX_10_14": [ - "OSX_10_13" - ], - "OSX_10_15": [ - "OSX_10_14" - ], - "OSX_10_9": [], - "default": [ - "OSX_10_12" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/security-framework-sys-2.14.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-apple-darwin", - "aarch64-apple-ios" - ] - } - } - }, - "publish": null, - "authors": [ - "Steven Fackler ", - "Kornel " - ], - "categories": [ - "os::macos-apis", - "external-ffi-bindings" - ], - "keywords": [ - "ffi", - "iOS", - "TLS", - "SSL", - "crypto" - ], - "readme": "README.md", - "repository": "https://github.com/kornelski/rust-security-framework", - "homepage": "https://lib.rs/crates/security-framework-sys", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "seed-nft-minter", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "seed_nft_minter", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/src/seed_nft_minter.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "seed-nft-minter-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "seed-nft-minter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "seed-nft-minter-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "self_cell", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", - "license": "Apache-2.0", - "license_file": null, - "description": "Safe-to-use proc-macro-free self-referential structs in stable Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "self_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "old_rust": [ - "rustversion" - ], - "rustversion": [ - "dep:rustversion" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Lukas Bergdoll " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "keywords": [ - "lifetime", - "borrowing", - "self", - "reference", - "intrusive" - ], - "readme": "README.md", - "repository": "https://github.com/Voultapher/self_cell", - "homepage": null, - "documentation": "https://docs.rs/self_cell", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "semver", - "version": "1.0.26", - "id": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser and evaluator for Cargo's flavor of Semantic Versioning", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.194", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "semver", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_autotrait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_autotrait.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_identifier", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_identifier.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_version", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_version.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_version_req", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_version_req.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/benches/parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "cargo" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/semver", - "homepage": null, - "documentation": "https://docs.rs/semver", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "send-tx-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "send_tx_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/src/send_tx_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "send-tx-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "send-tx-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "send-tx-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serde", - "version": "1.0.219", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A generic serialization/deserialization framework", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.219", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "serde_derive" - ], - "rc": [], - "serde_derive": [ - "dep:serde_derive" - ], - "std": [], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "derive", - "rc", - "unstable" - ], - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "derive", - "rc" - ] - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "no_std" - ], - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "homepage": "https://serde.rs", - "documentation": "https://docs.rs/serde", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "serde-wasm-bindgen", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", - "license": "MIT", - "license_file": null, - "description": "Native Serde adapter for wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.83", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "maplit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.39", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.24", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_wasm_bindgen", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/tests/browser.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "node", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/tests/node.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ingvar Stepanyan " - ], - "categories": [ - "development-tools::ffi", - "wasm", - "encoding" - ], - "keywords": [ - "serde", - "serialization", - "javascript", - "wasm", - "webassembly" - ], - "readme": "README.md", - "repository": "https://github.com/cloudflare/serde-wasm-bindgen", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serde-wasm-bindgen", - "version": "0.6.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", - "license": "MIT", - "license_file": null, - "description": "Native Serde adapter for wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.193", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.83", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "maplit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.39", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.24", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_wasm_bindgen", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.6.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.6.5/tests/browser.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "node", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.6.5/tests/node.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.6.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "wasm32-unknown-unknown" - ] - } - } - }, - "publish": null, - "authors": [ - "Ingvar Stepanyan " - ], - "categories": [ - "development-tools::ffi", - "wasm", - "encoding" - ], - "keywords": [ - "serde", - "serialization", - "javascript", - "wasm", - "webassembly" - ], - "readme": "README.md", - "repository": "https://github.com/RReverser/serde-wasm-bindgen", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serde_derive", - "version": "1.0.219", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.81", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "serde_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.219/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "deserialize_in_place": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.219/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "no_std", - "derive" - ], - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "homepage": "https://serde.rs", - "documentation": "https://serde.rs/derive.html", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "serde_json", - "version": "1.0.140", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A JSON serialization file format", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ryu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.194", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.194", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_stacker", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/debug.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lexical", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/lexical.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/regression.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "serde/alloc" - ], - "arbitrary_precision": [], - "default": [ - "std" - ], - "float_roundtrip": [], - "indexmap": [ - "dep:indexmap" - ], - "preserve_order": [ - "indexmap", - "std" - ], - "raw_value": [], - "std": [ - "memchr/std", - "serde/std" - ], - "unbounded_depth": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "preserve_order", - "raw_value", - "unbounded_depth" - ], - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "float_roundtrip", - "raw_value", - "unbounded_depth" - ] - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "parser-implementations", - "no-std" - ], - "keywords": [ - "json", - "serde", - "serialization" - ], - "readme": "README.md", - "repository": "https://github.com/serde-rs/json", - "homepage": null, - "documentation": "https://docs.rs/serde_json", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "serde_repr", - "version": "0.1.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.46", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.100", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "serde_repr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "integer" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/serde-repr", - "homepage": null, - "documentation": "https://docs.rs/serde_repr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "serde_spanned", - "version": "0.6.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Serde-compatible spanned Value", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde-untagged", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_spanned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-0.6.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-0.6.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "serde", - "span" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "serde_urlencoded", - "version": "0.7.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "`x-www-form-urlencoded` meets Serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "form_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ryu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_urlencoded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_deserialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/tests/test_deserialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_serialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/tests/test_serialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Anthony Ramine " - ], - "categories": [ - "encoding", - "web-programming" - ], - "keywords": [ - "serde", - "serialization", - "urlencoded" - ], - "readme": "README.md", - "repository": "https://github.com/nox/serde_urlencoded", - "homepage": null, - "documentation": "https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serial_test", - "version": "3.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "license": "MIT", - "license_file": null, - "description": "Allows for the creation of serialised Rust tests", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "document-features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.6.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fslock", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "executor" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serial_test_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~3.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use_std" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serial_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "async": [ - "dep:futures", - "serial_test_derive/async" - ], - "default": [ - "logging", - "async" - ], - "docsrs": [ - "dep:document-features" - ], - "file_locks": [ - "dep:fslock" - ], - "logging": [ - "dep:log" - ], - "test_logging": [ - "logging", - "dep:env_logger", - "serial_test_derive/test_logging" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "docsrs", - "test_logging" - ], - "skip_optional_dependencies": true - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Tom Parker-Shemilt " - ], - "categories": [ - "development-tools::testing" - ], - "keywords": [ - "sequential", - "testing", - "parallel" - ], - "readme": "README.md", - "repository": "https://github.com/palfrey/serial_test/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serial_test_derive", - "version": "3.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", - "license": "MIT", - "license_file": null, - "description": "Helper crate for serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "full", - "printing", - "parsing", - "clone-impls" - ], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "prettyplease", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "serial_test_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test_derive-3.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "async": [], - "default": [], - "test_logging": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test_derive-3.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Tom Parker-Shemilt " - ], - "categories": [ - "development-tools::testing" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/palfrey/serial_test/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "set-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "set_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/src/set_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "set-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "set-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "set-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "sha2", - "version": "0.10.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cpufeatures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "registry": null - }, - { - "name": "sha2-asm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sha2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/benches/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "asm": [ - "sha2-asm" - ], - "asm-aarch64": [ - "asm" - ], - "compress": [], - "default": [ - "std" - ], - "force-soft": [], - "force-soft-compact": [], - "loongarch64_asm": [], - "oid": [ - "digest/oid" - ], - "sha2-asm": [ - "dep:sha2-asm" - ], - "std": [ - "digest/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "sha2", - "hash", - "digest" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "homepage": null, - "documentation": "https://docs.rs/sha2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "sha3", - "version": "0.10.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Pure Rust implementation of SHA-3, a family of Keccak-based hash functions\nincluding the SHAKE family of eXtendable-Output Functions (XOFs), as well as\nthe accelerated variant TurboSHAKE\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "keccak", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sha3", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "aliases", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/aliases.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cshake", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/cshake.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "turboshake", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/turboshake.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/benches/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "asm": [ - "keccak/asm" - ], - "default": [ - "std" - ], - "oid": [ - "digest/oid" - ], - "reset": [], - "std": [ - "digest/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "sha3", - "keccak", - "hash", - "digest" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "homepage": null, - "documentation": "https://docs.rs/sha3", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "shared-buffer", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An abstraction over buffers backed by memory-mapped files or bytes in memory", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memmap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "shared_buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shared-buffer-0.1.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shared-buffer-0.1.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/wasmerio/shared-buffer.git", - "homepage": "https://github.com/wasmerio/shared-buffer.git", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "shlex", - "version": "1.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Split a string into shell words, like Python's shlex.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "shlex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "comex ", - "Fenhl ", - "Adrian Taylor ", - "Alex Touchet ", - "Daniel Parks ", - "Garrett Berg " - ], - "categories": [ - "command-line-interface", - "parser-implementations" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/comex/rust-shlex", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.46.0" - }, - { - "name": "signal-hook-registry", - "version": "1.4.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "Backend crate for signal-hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "signal-hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "signal_hook_registry", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unregister_signal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/tests/unregister_signal.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Michal 'vorner' Vaner ", - "Masaki Hara " - ], - "categories": [], - "keywords": [ - "signal", - "unix", - "daemon" - ], - "readme": "README.md", - "repository": "https://github.com/vorner/signal-hook", - "homepage": null, - "documentation": "https://docs.rs/signal-hook-registry", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "signature", - "version": "2.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "signature_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": "derive", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "signature", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/tests/derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "derive": [ - "dep:derive" - ], - "digest": [ - "dep:digest" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [ - "alloc", - "rand_core?/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "ecdsa", - "ed25519", - "signature", - "signing" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/signature", - "homepage": null, - "documentation": "https://docs.rs/signature", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "simd-adler32", - "version": "0.3.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", - "license": "MIT", - "license_file": null, - "description": "A SIMD-accelerated Adler-32 hash algorithm implementation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "adler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "adler32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "simd_adler32", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "alts", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/bench/alts.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "variants", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/bench/variants.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "const-generics": [], - "default": [ - "std", - "const-generics" - ], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Marvin Countryman " - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "simd", - "avx2", - "ssse3", - "adler", - "adler32" - ], - "readme": "README.md", - "repository": "https://github.com/mcountryman/simd-adler32", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "simdutf8", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "SIMD-accelerated UTF-8 validation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "simdutf8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "streaming", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/examples/streaming.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "aarch64_neon": [], - "aarch64_neon_prefetch": [], - "default": [ - "std" - ], - "hints": [], - "public_imp": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-unknown-linux-gnu", - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "aarch64-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasi" - ] - } - } - }, - "publish": null, - "authors": [ - "Hans Kratz " - ], - "categories": [ - "encoding", - "algorithms", - "no-std" - ], - "keywords": [ - "utf-8", - "unicode", - "string", - "validation", - "simd" - ], - "readme": "README.md", - "repository": "https://github.com/rusticstuff/simdutf8", - "homepage": "https://github.com/rusticstuff/simdutf8", - "documentation": "https://docs.rs/simdutf8/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "simple-error", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A simple error type backed by a string\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "simple_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simple-error-0.3.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simple-error-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "error", - "simple-error" - ], - "readme": "README.md", - "repository": "https://github.com/WiSaGaN/simple-error.git", - "homepage": null, - "documentation": "https://docs.rs/simple-error/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.58.0" - }, - { - "name": "single-value-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "single_value_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/src/single_value_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "single-value-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "single-value-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "single-value-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "slab", - "version": "0.4.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "license": "MIT", - "license_file": null, - "description": "Pre-allocated storage for a uniform data type", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.95", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "slab", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "slab", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/tests/slab.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Carl Lerche " - ], - "categories": [ - "memory-management", - "data-structures", - "no-std" - ], - "keywords": [ - "slab", - "allocator", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/slab", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "smallvec", - "version": "1.15.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "'Small vector' optimization: store up to a small number of items on the stack", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "malloc_size_of", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unty", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": "bincode1", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test_parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "smallvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debugger_visualizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/tests/debugger_visualizer.rs", - "edition": "2018", - "required-features": [ - "debugger_visualizer" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/tests/macro.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "bincode": [ - "dep:bincode" - ], - "const_generics": [], - "const_new": [ - "const_generics" - ], - "debugger_visualizer": [], - "drain_filter": [], - "drain_keep_rest": [ - "drain_filter" - ], - "impl_bincode": [ - "bincode", - "unty" - ], - "malloc_size_of": [ - "dep:malloc_size_of" - ], - "may_dangle": [], - "serde": [ - "dep:serde" - ], - "specialization": [], - "union": [], - "unty": [ - "dep:unty" - ], - "write": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "small", - "vec", - "vector", - "stack", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/servo/rust-smallvec", - "homepage": null, - "documentation": "https://docs.rs/smallvec/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "socket2", - "version": "0.5.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Utilities for handling networking sockets with a maximal amount of configuration\npossible intended.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.171", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_System_IO", - "Win32_System_Threading", - "Win32_System_WindowsProgramming" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "socket2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "all": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "aarch64-apple-ios", - "aarch64-linux-android", - "x86_64-apple-darwin", - "x86_64-unknown-fuchsia", - "x86_64-pc-windows-msvc", - "x86_64-pc-solaris", - "x86_64-unknown-freebsd", - "x86_64-unknown-illumos", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-linux-musl", - "x86_64-unknown-netbsd", - "x86_64-unknown-redox", - "armv7-linux-androideabi", - "i686-linux-android" - ] - } - }, - "playground": { - "features": [ - "all" - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton ", - "Thomas de Zeeuw " - ], - "categories": [ - "api-bindings", - "network-programming" - ], - "keywords": [ - "io", - "socket", - "network" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/socket2", - "homepage": "https://github.com/rust-lang/socket2", - "documentation": "https://docs.rs/socket2", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "spki", - "version": "0.7.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "X.509 Subject Public Key Info (RFC5280) describing public keys as well as their\nassociated AlgorithmIdentifiers (i.e. OIDs)\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "base64ct", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "der", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "oid" - ], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "spki", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spki", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/tests/spki.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/tests/traits.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "base64ct?/alloc", - "der/alloc" - ], - "arbitrary": [ - "std", - "dep:arbitrary", - "der/arbitrary" - ], - "base64": [ - "dep:base64ct" - ], - "fingerprint": [ - "sha2" - ], - "pem": [ - "alloc", - "der/pem" - ], - "sha2": [ - "dep:sha2" - ], - "std": [ - "der/std", - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std" - ], - "keywords": [ - "crypto", - "x509" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/spki", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "stable_deref_trait", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "stable_deref_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Robert Grosse " - ], - "categories": [ - "memory-management", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/storyyeller/stable_deref_trait", - "homepage": null, - "documentation": "https://docs.rs/stable_deref_trait/1.2.0/stable_deref_trait", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "static_assertions", - "version": "1.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Compile-time assertions to ensure that invariants are met.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "static_assertions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "nightly": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nikolai Vazquez" - ], - "categories": [ - "no-std", - "rust-patterns", - "development-tools::testing" - ], - "keywords": [ - "assert", - "static", - "testing" - ], - "readme": "README.md", - "repository": "https://github.com/nvzqz/static-assertions-rs", - "homepage": "https://github.com/nvzqz/static-assertions-rs", - "documentation": "https://docs.rs/static_assertions/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "str-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "str_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/src/str_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "managed-buffer-builder-cached": [ - "multiversx-sc/managed-buffer-builder-cached" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "str-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "str-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "str-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "strsim", - "version": "0.11.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "license": "MIT", - "license_file": null, - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "strsim", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/tests/lib.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/benches/benches.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Danny Guo ", - "maxbachmann " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "string", - "similarity", - "Hamming", - "Levenshtein", - "Jaro" - ], - "readme": "README.md", - "repository": "https://github.com/rapidfuzz/strsim-rs", - "homepage": "https://github.com/rapidfuzz/strsim-rs", - "documentation": "https://docs.rs/strsim/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "subtle", - "version": "2.6.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "license": "BSD-3-Clause", - "license_file": null, - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "subtle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "const-generics": [], - "core_hint_black_box": [], - "default": [ - "std", - "i128" - ], - "i128": [], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Isis Lovecruft ", - "Henry de Valence " - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "cryptography", - "crypto", - "constant-time", - "utilities" - ], - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/subtle", - "homepage": "https://dalek.rs/", - "documentation": "https://docs.rs/subtle", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "syn", - "version": "1.0.109", - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser for Rust source code", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.46", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "blocking" - ], - "target": null, - "registry": null - }, - { - "name": "syn-test-suite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "termcolor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "syn", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/regression.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_asyncness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_asyncness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_attribute", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_attribute.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_derive_input", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_derive_input.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_expr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_generics.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_grouping", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_grouping.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ident", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_ident.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_item", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_item.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_iterators", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_iterators.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_lit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_meta.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_parse_buffer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_parse_stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_pat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_pat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_path.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_precedence", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_precedence.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_receiver", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_receiver.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_round_trip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_round_trip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_shebang", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_shebang.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_should_parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_should_parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_size.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_stmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_stmt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_token_trees", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_token_trees.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ty", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_ty.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_visibility", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_visibility.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zzz_stable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/zzz_stable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/benches/file.rs", - "edition": "2018", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "rust", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/benches/rust.rs", - "edition": "2018", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "homepage": null, - "documentation": "https://docs.rs/syn", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "syn", - "version": "2.0.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser for Rust source code", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.91", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn-test-suite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "termcolor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "blocking" - ], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "syn", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/regression.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_asyncness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_asyncness.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_attribute", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_attribute.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_derive_input", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_derive_input.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_expr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_grouping", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_grouping.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ident", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_ident.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_item", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_item.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_iterators", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_iterators.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_lit.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_meta.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_buffer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_quote", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_quote.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_pat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_pat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_precedence", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_precedence.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_receiver", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_receiver.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_round_trip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_round_trip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_shebang", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_shebang.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_size.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_stmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_stmt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_token_trees", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_token_trees.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ty", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_ty.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_unparenthesize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_unparenthesize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_visibility", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_visibility.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zzz_stable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/zzz_stable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/benches/file.rs", - "edition": "2021", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "rust", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/benches/rust.rs", - "edition": "2021", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "dep:quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote?/proc-macro" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--generate-link-to-definition", - "--extend-css=src/gen/token.css", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "homepage": null, - "documentation": "https://docs.rs/syn", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "sync_wrapper", - "version": "1.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "license": "Apache-2.0", - "license_file": null, - "description": "A tool for enlisting the compiler's help in proving the absence of concurrency", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sync_wrapper", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "futures": [ - "futures-core" - ], - "futures-core": [ - "dep:futures-core" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Actyx AG " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "concurrency" - ], - "readme": "README.md", - "repository": "https://github.com/Actyx/sync_wrapper", - "homepage": "https://docs.rs/sync_wrapper", - "documentation": "https://docs.rs/sync_wrapper", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "synstructure", - "version": "0.13.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "license": "MIT", - "license_file": null, - "description": "Helper methods and macros for custom derives", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive", - "parsing", - "printing", - "clone-impls", - "visit", - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure_test_traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "synstructure", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "syn/proc-macro", - "quote/proc-macro" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nika Layzell " - ], - "categories": [], - "keywords": [ - "syn", - "macros", - "derive", - "expand_substructure", - "enum" - ], - "readme": "README.md", - "repository": "https://github.com/mystor/synstructure", - "homepage": null, - "documentation": "https://docs.rs/synstructure", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "system-configuration", - "version": "0.6.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#system-configuration@0.6.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bindings to SystemConfiguration framework for macOS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "core-foundation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "system-configuration-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "system_configuration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.6.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "set_dns", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.6.1/examples/set_dns.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "watch_dns", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.6.1/examples/watch_dns.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-0.6.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Mullvad VPN" - ], - "categories": [ - "api-bindings", - "os::macos-apis" - ], - "keywords": [ - "macos", - "system", - "configuration", - "bindings" - ], - "readme": "README.md", - "repository": "https://github.com/mullvad/system-configuration-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "system-configuration-sys", - "version": "0.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#system-configuration-sys@0.6.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Low level bindings to SystemConfiguration framework for macOS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "core-foundation-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.149", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "system_configuration_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/system-configuration-sys-0.6.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Mullvad VPN" - ], - "categories": [ - "external-ffi-bindings", - "os::macos-apis" - ], - "keywords": [ - "macos", - "system", - "configuration", - "bindings" - ], - "readme": null, - "repository": "https://github.com/mullvad/system-configuration-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "system-sc-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "system_sc_interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/src/system_sc_interact.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "system-sc-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/src/system_sc_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chain_simulator_token_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/tests/chain_simulator_token_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tar", - "version": "0.4.44", - "id": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust implementation of a TAR file reader and writer. This library does not\ncurrently handle compression, but it is abstract over all I/O readers and\nwriters. Additionally, great lengths are taken to ensure that the entire\ncontents are never required to be entirely resident in memory all at once.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "filetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "xattr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tar", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "extract_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/extract_file.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "list", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/list.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "raw_list", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/raw_list.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/write.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/tests/all.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "entry", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/tests/entry.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "xattr" - ], - "xattr": [ - "dep:xattr" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "tar", - "tarfile", - "encoding" - ], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/tar-rs", - "homepage": "https://github.com/alexcrichton/tar-rs", - "documentation": "https://docs.rs/tar", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "target-lexicon", - "version": "0.12.16", - "id": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "license": "Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "Targeting utilities for compilers and related tools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "target_lexicon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "host", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/examples/host.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "misc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/examples/misc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arch_zkasm": [], - "default": [], - "serde": [ - "dep:serde" - ], - "serde_support": [ - "serde", - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dan Gohman " - ], - "categories": [ - "no-std" - ], - "keywords": [ - "target", - "host", - "triple", - "compiler", - "jit" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/target-lexicon", - "homepage": null, - "documentation": "https://docs.rs/target-lexicon/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tempfile", - "version": "3.19.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library for managing temporary files and directories.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "fastrand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fs" - ], - "target": "cfg(any(unix, target_os = \"wasi\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(any(unix, windows, target_os = \"wasi\"))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tempfile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "env", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/env.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "namedtempfile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/namedtempfile.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spooled", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/spooled.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tempdir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/tempdir.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tempfile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/tempfile.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "getrandom" - ], - "getrandom": [ - "dep:getrandom" - ], - "nightly": [], - "unstable-windows-keep-open-tempfile": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Allen ", - "The Rust Project Developers", - "Ashley Mannix ", - "Jason White " - ], - "categories": [], - "keywords": [ - "tempfile", - "tmpfile", - "filesystem" - ], - "readme": "README.md", - "repository": "https://github.com/Stebalien/tempfile", - "homepage": "https://stebalien.com/projects/tempfile-rs/", - "documentation": "https://docs.rs/tempfile", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "termcolor", - "version": "1.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "A simple cross platform library for writing colored text to a terminal.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "termcolor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "windows", - "win", - "color", - "ansi", - "console" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/termcolor", - "homepage": "https://github.com/BurntSushi/termcolor", - "documentation": "https://docs.rs/termcolor", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "thiserror", - "version": "1.0.69", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "derive(Error)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "thiserror-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.73", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "thiserror", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_backtrace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_deprecated", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_deprecated.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_display", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_display.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_expr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_from.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lints", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_lints.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_option", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_option.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_source", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_source.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_transparent", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_transparent.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "error", - "error-handling", - "derive" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": "https://docs.rs/thiserror", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thiserror", - "version": "2.0.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "derive(Error)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "thiserror-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.73", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "thiserror", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_backtrace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_display", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_display.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_expr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_from.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lints", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_lints.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_option", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_option.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_source", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_source.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_transparent", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_transparent.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "error", - "error-handling", - "derive" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": "https://docs.rs/thiserror", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thiserror-impl", - "version": "1.0.69", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Implementation detail of the `thiserror` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.87", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "thiserror_impl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thiserror-impl", - "version": "2.0.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Implementation detail of the `thiserror` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.87", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "thiserror_impl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.12/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "tinystr", - "version": "0.7.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "license": "Unicode-3.0", - "license_file": null, - "description": "A small ASCII-only bounded length string representation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinystr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/tests/serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "construct", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/construct.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "overview", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/overview.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/read.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/serde.rs", - "edition": "2021", - "required-features": [ - "bench", - "serde" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "bench": [], - "databake": [ - "dep:databake" - ], - "default": [ - "alloc" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "zerovec": [ - "dep:zerovec" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "string", - "str", - "small", - "tiny", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "tinyvec", - "version": "1.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "license": "Zlib OR Apache-2.0 OR MIT", - "license_file": null, - "description": "`tinyvec` provides 100% safe vec-like data structures.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinyvec_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test_parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinyvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arrayvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/arrayvec.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debugger_visualizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/debugger_visualizer.rs", - "edition": "2018", - "required-features": [ - "debugger_visualizer" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tinyvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/tinyvec.rs", - "edition": "2018", - "required-features": [ - "alloc", - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/benches/macros.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "smallvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/benches/smallvec.rs", - "edition": "2018", - "required-features": [ - "alloc", - "real_blackbox" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "tinyvec_macros" - ], - "arbitrary": [ - "dep:arbitrary" - ], - "borsh": [ - "dep:borsh" - ], - "debugger_visualizer": [], - "default": [], - "experimental_write_impl": [], - "generic-array": [ - "dep:generic-array" - ], - "grab_spare_slice": [], - "latest_stable_rust": [ - "rustc_1_61" - ], - "nightly_slice_partition_dedup": [], - "real_blackbox": [ - "criterion/real_blackbox" - ], - "rustc_1_40": [], - "rustc_1_55": [ - "rustc_1_40" - ], - "rustc_1_57": [ - "rustc_1_55" - ], - "rustc_1_61": [ - "rustc_1_57" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "tinyvec_macros": [ - "dep:tinyvec_macros" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "latest_stable_rust", - "serde", - "borsh" - ], - "rustdoc-args": [ - "--cfg", - "docs_rs" - ] - } - }, - "playground": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "latest_stable_rust", - "serde", - "borsh" - ] - } - }, - "publish": null, - "authors": [ - "Lokathor " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "vec", - "no_std", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/Lokathor/tinyvec", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tinyvec_macros", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "license": "MIT OR Apache-2.0 OR Zlib", - "license_file": null, - "description": "Some macros for tiny containers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinyvec_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Soveu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/Soveu/tinyvec_macros", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "token-release", - "version": "0.0.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "token_release", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/src/token_release.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_release_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/tests/token_release_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_release_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/tests/token_release_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "token-release-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "token-release", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "token-release-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tokio", - "version": "1.44.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "license": "MIT", - "license_file": null, - "description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O\nbacked applications.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~2.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "async-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "async-await" - ], - "target": null, - "registry": null - }, - { - "name": "futures-concurrency", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.6.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mockall", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_family = \"wasm\", not(target_os = \"wasi\")))", - "registry": null - }, - { - "name": "tracing-mock", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.1.0-beta.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(tokio_unstable, target_has_atomic = \"64\"))", - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures", - "checkpoint" - ], - "target": "cfg(loom)", - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))", - "registry": null - }, - { - "name": "socket2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "all" - ], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "socket2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "mio-aio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "tokio" - ], - "target": "cfg(target_os = \"freebsd\")", - "registry": null - }, - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.58", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(tokio_taskdump)", - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.29", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": "cfg(tokio_unstable)", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "signal-hook-registry", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "nix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.29.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "aio", - "fs", - "socket" - ], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Security_Authorization" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "_require_full", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/_require_full.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async_send_sync", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/async_send_sync.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "buffered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/buffered.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "coop_budget", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/coop_budget.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dump", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/dump.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "duplex_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/duplex_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_canonicalize_dir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_canonicalize_dir.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_copy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_copy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_dir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_dir.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_file.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_link", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_link.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_open_options", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_open_options.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_open_options_windows", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_open_options_windows.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_remove_dir_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_remove_dir_all.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_remove_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_remove_file.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_rename", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_rename.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_symlink_dir_windows", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_symlink_dir_windows.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_symlink_file_windows", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_symlink_file_windows.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_try_exists", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_try_exists.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_async_fd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_async_fd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_async_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_async_read.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_buf_reader", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_buf_reader.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_buf_writer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_buf_writer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_chain", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_chain.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_copy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_copy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_copy_bidirectional", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_copy_bidirectional.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_driver", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_driver.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_driver_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_driver_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_fill_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_fill_buf.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_join.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_lines", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_lines.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_mem_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_mem_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_poll_aio", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_poll_aio.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_buf.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_exact", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_exact.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_line", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_line.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_to_end", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_to_end.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_to_string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_to_string.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_until", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_until.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_repeat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_repeat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_sink", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_sink.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_split.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_take", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_take.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_util_empty", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_util_empty.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_all.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write_all_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_all_buf.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_buf.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write_int", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_int.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "join_handle_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/join_handle_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_join.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_pin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_pin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_rename_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_rename_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_select", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_select.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_try_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_try_join.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_bind_resource", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_bind_resource.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_lookup_host", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_lookup_host.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_named_pipe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_named_pipe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_unix_pipe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_unix_pipe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/no_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_arg0", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_arg0.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_change_of_runtime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_change_of_runtime.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_issue_2174", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_issue_2174.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_issue_42", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_issue_42.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_kill_after_wait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_kill_after_wait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_kill_on_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_kill_on_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_raw_handle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_raw_handle.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_smoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_smoke.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_common", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_common.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_handle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_handle.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_handle_block_on", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_handle_block_on.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_local", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_local.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_metrics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_metrics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_poll_callbacks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_poll_callbacks.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_threaded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_threaded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_threaded_alt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_threaded_alt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_time_start_paused", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_time_start_paused.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_unstable_metrics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_unstable_metrics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_ctrl_c", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_ctrl_c.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_drop_recv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_recv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_drop_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_drop_signal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_signal.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_info", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_info.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_multi_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_multi_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_no_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_no_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_notify_both", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_notify_both.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_realtime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_realtime.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_twice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_twice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_usr1", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_usr1.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_barrier", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_barrier.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_broadcast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_broadcast.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_broadcast_weak", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_broadcast_weak.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_errors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mpsc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mpsc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mpsc_weak", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mpsc_weak.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mutex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mutex.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mutex_owned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mutex_owned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_notify", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_notify.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_once_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_once_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_oneshot", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_oneshot.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_rwlock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_rwlock.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_semaphore", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_semaphore.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_semaphore_owned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_semaphore_owned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_watch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_watch.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_abort", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_abort.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_blocking", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_blocking.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_builder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_builder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_hooks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_hooks.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_id", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_id.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_join_set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_join_set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_local", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_local.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_local_set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_local_set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_trace_self", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_trace_self.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_yield_now", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_yield_now.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_accept", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_accept.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_connect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_connect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_echo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_echo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_into_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_into_split.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_into_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_into_std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_peek", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_peek.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_shutdown", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_shutdown.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_socket", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_socket.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_split.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_clock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/test_clock.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_interval", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_interval.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_pause", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_pause.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_sleep", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_sleep.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_timeout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_timeout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracing_sync", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_sync.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracing_task", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_task.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracing_time", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_time.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "udp", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/udp.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_cred", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_cred.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_datagram", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_datagram.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_socket", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_socket.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_split.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unwindsafe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/unwindsafe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "bytes": [ - "dep:bytes" - ], - "default": [], - "fs": [], - "full": [ - "fs", - "io-util", - "io-std", - "macros", - "net", - "parking_lot", - "process", - "rt", - "rt-multi-thread", - "signal", - "sync", - "time" - ], - "io-std": [], - "io-util": [ - "bytes" - ], - "libc": [ - "dep:libc" - ], - "macros": [ - "tokio-macros" - ], - "mio": [ - "dep:mio" - ], - "net": [ - "libc", - "mio/os-poll", - "mio/os-ext", - "mio/net", - "socket2", - "windows-sys/Win32_Foundation", - "windows-sys/Win32_Security", - "windows-sys/Win32_Storage_FileSystem", - "windows-sys/Win32_System_Pipes", - "windows-sys/Win32_System_SystemServices" - ], - "parking_lot": [ - "dep:parking_lot" - ], - "process": [ - "bytes", - "libc", - "mio/os-poll", - "mio/os-ext", - "mio/net", - "signal-hook-registry", - "windows-sys/Win32_Foundation", - "windows-sys/Win32_System_Threading", - "windows-sys/Win32_System_WindowsProgramming" - ], - "rt": [], - "rt-multi-thread": [ - "rt" - ], - "signal": [ - "libc", - "mio/os-poll", - "mio/net", - "mio/os-ext", - "signal-hook-registry", - "windows-sys/Win32_Foundation", - "windows-sys/Win32_System_Console" - ], - "signal-hook-registry": [ - "dep:signal-hook-registry" - ], - "socket2": [ - "dep:socket2" - ], - "sync": [], - "test-util": [ - "rt", - "sync", - "time" - ], - "time": [], - "tokio-macros": [ - "dep:tokio-macros" - ], - "tracing": [ - "dep:tracing" - ], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "bytes::buf::buf_impl::Buf", - "bytes::buf::buf_mut::BufMut", - "tokio_macros::*" - ] - }, - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "tokio_unstable", - "--cfg", - "tokio_taskdump" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tokio_unstable", - "--cfg", - "tokio_taskdump" - ] - } - }, - "playground": { - "features": [ - "full", - "test-util" - ] - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [ - "io", - "async", - "non-blocking", - "futures" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tokio", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "tokio-macros", - "version": "2.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", - "license": "MIT", - "license_file": null, - "description": "Tokio's proc macros.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "tokio_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tokio", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "tokio-native-tls", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "license": "MIT", - "license_file": null, - "description": "An implementation of TLS/SSL streams for Tokio using native-tls giving an implementation of TLS\nfor nonblocking I/O streams.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "async-await" - ], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "rt", - "rt-multi-thread", - "io-util", - "net" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "openssl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(not(target_os = \"macos\"), not(windows), not(target_os = \"ios\")))", - "registry": null - }, - { - "name": "security-framework", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", - "registry": null - }, - { - "name": "schannel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "lmcons", - "basetsd", - "minwinbase", - "minwindef", - "ntdef", - "sysinfoapi", - "timezoneapi", - "wincrypt", - "winerror" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio_native_tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "download-rust-lang", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/examples/download-rust-lang.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "echo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/examples/echo.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bad", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/bad.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "google", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/google.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/smoke.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "vendored": [ - "native-tls/vendored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tls", - "homepage": "https://tokio.rs", - "documentation": "https://docs.rs/tokio-native-tls", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tokio-rustls", - "version": "0.26.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Asynchronous TLS/SSL streams for Tokio using Rustls.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "argh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "pem" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio_rustls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "badssl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/badssl.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "certs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/certs/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "early-data", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/early-data.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/utils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "aws-lc-rs": [ - "aws_lc_rs" - ], - "aws_lc_rs": [ - "rustls/aws_lc_rs" - ], - "default": [ - "logging", - "tls12", - "aws_lc_rs" - ], - "early-data": [], - "fips": [ - "rustls/fips" - ], - "logging": [ - "rustls/logging" - ], - "ring": [ - "rustls/ring" - ], - "tls12": [ - "rustls/tls12" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "asynchronous", - "cryptography", - "network-programming" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/tokio-rustls", - "homepage": "https://github.com/rustls/tokio-rustls", - "documentation": "https://docs.rs/tokio-rustls", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "tokio-stream", - "version": "0.1.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", - "license": "MIT", - "license_file": null, - "description": "Utilities to work with `Stream` and `tokio`.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.15.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "async-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "test-util" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async_send_sync", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/async_send_sync.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chunks_timeout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/chunks_timeout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_chain", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_chain.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_close", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_close.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_collect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_collect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_empty", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_empty.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_fuse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_fuse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_iter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_merge", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_merge.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_once", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_once.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_pending", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_pending.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_stream_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_stream_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_timeout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_timeout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_throttle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/time_throttle.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "watch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/watch.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "time" - ], - "fs": [ - "tokio/fs" - ], - "full": [ - "time", - "net", - "io-util", - "fs", - "sync", - "signal" - ], - "io-util": [ - "tokio/io-util" - ], - "net": [ - "tokio/net" - ], - "signal": [ - "tokio/signal" - ], - "sync": [ - "tokio/sync", - "tokio-util" - ], - "time": [ - "tokio/time" - ], - "tokio-util": [ - "dep:tokio-util" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "docsrs" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tokio", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "tokio-util", - "version": "0.7.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", - "license": "MIT", - "license_file": null, - "description": "Additional utilities for working with Tokio.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.28.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.29", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "async-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "raw-entry" - ], - "target": "cfg(tokio_unstable)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "_require_full", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/_require_full.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "abort_on_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/abort_on_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "codecs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/codecs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/compat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "context", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/context.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "framed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "framed_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_read.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "framed_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "framed_write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_write.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_inspect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_inspect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_reader_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_reader_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_sink_writer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_sink_writer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_stream_reader", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_stream_reader.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_sync_bridge", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_sync_bridge.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "length_delimited", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/length_delimited.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mpsc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/mpsc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "poll_semaphore", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/poll_semaphore.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reusable_box", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/reusable_box.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spawn_pinned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/spawn_pinned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_cancellation_token", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/sync_cancellation_token.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_join_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/task_join_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_tracker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/task_tracker.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_delay_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/time_delay_queue.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "udp", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/udp.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__docs_rs": [ - "futures-util" - ], - "codec": [], - "compat": [ - "futures-io" - ], - "default": [], - "full": [ - "codec", - "compat", - "io-util", - "time", - "net", - "rt" - ], - "futures-io": [ - "dep:futures-io" - ], - "futures-util": [ - "dep:futures-util" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "io": [], - "io-util": [ - "io", - "tokio/rt", - "tokio/io-util" - ], - "net": [ - "tokio/net" - ], - "rt": [ - "tokio/rt", - "tokio/sync", - "futures-util", - "hashbrown" - ], - "slab": [ - "dep:slab" - ], - "time": [ - "tokio/time", - "slab" - ], - "tracing": [ - "dep:tracing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tokio_unstable" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tokio_unstable" - ] - } - }, - "playground": { - "features": [ - "full" - ] - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tokio", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "toml", - "version": "0.7.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_edit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.19.15", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.160", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.96", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/decode.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum_external", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/enum_external.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "toml2json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/toml2json.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/decoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/decoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/encoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/encoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/testsuite/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_edit" - ], - "indexmap": [ - "dep:indexmap" - ], - "parse": [ - "dep:toml_edit" - ], - "preserve_order": [ - "indexmap" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "toml", - "version": "0.8.22", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_edit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.199", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.116", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "snapshot" - ], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/decode.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum_external", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/enum_external.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "toml2json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/toml2json.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/compliance/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/decoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/decoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/encoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/encoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/serde/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/testsuite/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_edit", - "toml_edit?/display" - ], - "indexmap": [ - "dep:indexmap" - ], - "parse": [ - "dep:toml_edit", - "toml_edit?/parse" - ], - "preserve_order": [ - "indexmap" - ], - "unbounded": [ - "toml_edit?/unbounded" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66" - }, - { - "name": "toml_datetime", - "version": "0.6.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A TOML-compatible datetime type", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_datetime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66" - }, - { - "name": "toml_edit", - "version": "0.19.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Yet another format-preserving TOML parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "kstring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "max_inline" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winnow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libtest-mimic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.96", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "harness" - ], - "target": null, - "registry": null - }, - { - "name": "toml-test-data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_edit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "visit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/examples/visit.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/decoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/decoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/encoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/encoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "invalid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/invalid.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/testsuite/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "tag-name": "v{{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "toml_edit", - "version": "0.22.26", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Yet another format-preserving TOML parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "kstring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "max_inline" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml_write", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winnow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.199", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.116", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "snapshot" - ], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_edit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "visit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/examples/visit.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/compliance/main.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/decoder_compliance.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/encoder_compliance.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/serde/main.rs", - "edition": "2021", - "required-features": [ - "parse", - "display", - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/testsuite/main.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_write" - ], - "parse": [ - "dep:winnow" - ], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "tag-name": "v{{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66" - }, - { - "name": "toml_write", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A low-level interface for writing out TOML\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.10", - "kind": "dev", - "rename": "toml_old", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "float", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/tests/float.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/tests/string.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "encoding" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66" - }, - { - "name": "tower", - "version": "0.5.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", - "license": "MIT", - "license_file": null, - "description": "Tower is a library of modular and reusable components for building robust\nclients and servers.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "hdrhistogram", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sync_wrapper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-layer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hdrhistogram", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "sync", - "test-util", - "rt-multi-thread" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "fmt", - "ansi" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tower", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tower-balance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/examples/tower-balance.rs", - "edition": "2018", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "balance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/balance/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/buffer/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "builder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/builder.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hedge", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/hedge/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "limit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/limit/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "load_shed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/load_shed/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ready_cache", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/ready_cache/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "retry", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/retry/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spawn_ready", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/spawn_ready/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "steer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/steer/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "support", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/support.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/util/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__common": [ - "futures-core", - "pin-project-lite" - ], - "balance": [ - "discover", - "load", - "ready-cache", - "make", - "slab", - "util" - ], - "buffer": [ - "__common", - "tokio/sync", - "tokio/rt", - "tokio-util", - "tracing" - ], - "discover": [ - "__common" - ], - "filter": [ - "__common", - "futures-util" - ], - "full": [ - "balance", - "buffer", - "discover", - "filter", - "hedge", - "limit", - "load", - "load-shed", - "make", - "ready-cache", - "reconnect", - "retry", - "spawn-ready", - "steer", - "timeout", - "util" - ], - "futures-core": [ - "dep:futures-core" - ], - "futures-util": [ - "dep:futures-util" - ], - "hdrhistogram": [ - "dep:hdrhistogram" - ], - "hedge": [ - "util", - "filter", - "futures-util", - "hdrhistogram", - "tokio/time", - "tracing" - ], - "indexmap": [ - "dep:indexmap" - ], - "limit": [ - "__common", - "tokio/time", - "tokio/sync", - "tokio-util", - "tracing" - ], - "load": [ - "__common", - "tokio/time", - "tracing" - ], - "load-shed": [ - "__common" - ], - "log": [ - "tracing/log" - ], - "make": [ - "futures-util", - "pin-project-lite", - "tokio/io-std" - ], - "pin-project-lite": [ - "dep:pin-project-lite" - ], - "ready-cache": [ - "futures-core", - "futures-util", - "indexmap", - "tokio/sync", - "tracing", - "pin-project-lite" - ], - "reconnect": [ - "make", - "tokio/io-std", - "tracing" - ], - "retry": [ - "__common", - "tokio/time", - "util" - ], - "slab": [ - "dep:slab" - ], - "spawn-ready": [ - "__common", - "futures-util", - "tokio/sync", - "tokio/rt", - "util", - "tracing" - ], - "steer": [], - "sync_wrapper": [ - "dep:sync_wrapper" - ], - "timeout": [ - "pin-project-lite", - "tokio/time" - ], - "tokio": [ - "dep:tokio" - ], - "tokio-stream": [ - "dep:tokio-stream" - ], - "tokio-util": [ - "dep:tokio-util" - ], - "tracing": [ - "dep:tracing" - ], - "util": [ - "__common", - "futures-util", - "pin-project-lite", - "sync_wrapper" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "full" - ] - } - }, - "publish": null, - "authors": [ - "Tower Maintainers " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [ - "io", - "async", - "non-blocking", - "futures", - "service" - ], - "readme": "README.md", - "repository": "https://github.com/tower-rs/tower", - "homepage": "https://github.com/tower-rs/tower", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "tower-layer", - "version": "0.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "license": "MIT", - "license_file": null, - "description": "Decorates a `Service` to allow easy composition between `Service`s.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tower_layer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Tower Maintainers " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tower-rs/tower", - "homepage": "https://github.com/tower-rs/tower", - "documentation": "https://docs.rs/tower-layer/0.3.3", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tower-service", - "version": "0.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "license": "MIT", - "license_file": null, - "description": "Trait representing an asynchronous, request / response based, client or server.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "time" - ], - "target": null, - "registry": null - }, - { - "name": "tower-layer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tower_service", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Tower Maintainers " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tower-rs/tower", - "homepage": "https://github.com/tower-rs/tower", - "documentation": "https://docs.rs/tower-service/0.3.3", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tracing", - "version": "0.1.41", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "license": "MIT", - "license_file": null, - "description": "Application-level tracing for Rust.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-attributes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.28", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.33", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.21", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.38", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enabled", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/enabled.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "event", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/event.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filter_caching_is_lexically_scoped", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filter_caching_is_lexically_scoped.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filters_are_not_reevaluated_for_the_same_span", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_are_not_reevaluated_for_the_same_span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filters_are_reevaluated_for_different_call_sites", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_are_reevaluated_for_different_call_sites.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filters_dont_leak", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_dont_leak.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_send", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/future_send.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "instrument", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/instrument.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro_imports", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macro_imports.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_incompatible_concat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macros_incompatible_concat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "max_level_hint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/max_level_hint.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "missed_register_callsite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/missed_register_callsite.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiple_max_level_hints", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/multiple_max_level_hints.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_subscriber", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/no_subscriber.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "register_callsite_deadlock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/register_callsite_deadlock.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scoped_clobbers_default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/scoped_clobbers_default.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "span", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "subscriber", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/subscriber.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "baseline", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/baseline.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "dispatch_get_clone", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/dispatch_get_clone.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "dispatch_get_ref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/dispatch_get_ref.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "empty_span", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/empty_span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "enter_span", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/enter_span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "event", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/event.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "shared", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/shared.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "span_fields", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "span_no_fields", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_no_fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "span_repeated", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_repeated.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "async-await": [], - "attributes": [ - "tracing-attributes" - ], - "default": [ - "std", - "attributes" - ], - "log": [ - "dep:log" - ], - "log-always": [ - "log" - ], - "max_level_debug": [], - "max_level_error": [], - "max_level_info": [], - "max_level_off": [], - "max_level_trace": [], - "max_level_warn": [], - "release_max_level_debug": [], - "release_max_level_error": [], - "release_max_level_info": [], - "release_max_level_off": [], - "release_max_level_trace": [], - "release_max_level_warn": [], - "std": [ - "tracing-core/std" - ], - "tracing-attributes": [ - "dep:tracing-attributes" - ], - "valuable": [ - "tracing-core/valuable" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "tracing_unstable" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tracing_unstable" - ] - } - } - }, - "publish": null, - "authors": [ - "Eliza Weisman ", - "Tokio Contributors " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous", - "no-std" - ], - "keywords": [ - "logging", - "tracing", - "metrics", - "async" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "tracing-attributes", - "version": "0.1.28", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", - "license": "MIT", - "license_file": null, - "description": "Procedural macro attributes for automatically instrumenting functions.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "full", - "parsing", - "printing", - "visit-mut", - "clone-impls", - "extra-traits", - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "async-trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.67", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.35", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "env-filter" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.64", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "tracing_attributes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async_fn", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/async_fn.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "destructuring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/destructuring.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "err", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/err.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fields", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "follows_from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/follows_from.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "instrument", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/instrument.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "levels", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/levels.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "names", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/names.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parents", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/parents.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ret", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/ret.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "targets", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/targets.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ui", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/ui.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "async-await": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Tokio Contributors ", - "Eliza Weisman ", - "David Barsky " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous" - ], - "keywords": [ - "logging", - "tracing", - "macro", - "instrument", - "log" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "tracing-core", - "version": "0.1.33", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", - "license": "MIT", - "license_file": null, - "description": "Core primitives for application-level tracing.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "valuable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(tracing_unstable)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dispatch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/dispatch.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "global_dispatch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/global_dispatch.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "local_dispatch_before_init", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/local_dispatch_before_init.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "missed_register_callsite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/missed_register_callsite.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std", - "valuable?/std" - ], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "once_cell" - ], - "valuable": [ - "dep:valuable" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "tracing_unstable" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tracing_unstable" - ] - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous" - ], - "keywords": [ - "logging", - "tracing", - "profiling" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "transfer-role-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "transfer_role_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "transfer_role_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/tests/transfer_role_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "transfer_role_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/tests/transfer_role_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "transfer-role-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "transfer-role-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "transfer-role-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "try-lock", - "version": "0.2.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "license": "MIT", - "license_file": null, - "description": "A lightweight atomic lock.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "try_lock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "concurrency", - "no-std" - ], - "keywords": [ - "lock", - "atomic" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/try-lock", - "homepage": "https://github.com/seanmonstar/try-lock", - "documentation": "https://docs.rs/try-lock", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "twox-hash", - "version": "1.6.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", - "license": "MIT", - "license_file": null, - "description": "A Rust implementation of the XXHash and XXH3 algorithms", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.1, <2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": "digest", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": "digest_0_10", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": "digest_0_9", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.3.10, <0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "twox_hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "hash_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/src/bin/hash_file.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "digest": [ - "dep:digest" - ], - "digest_0_10": [ - "dep:digest_0_10" - ], - "digest_0_9": [ - "dep:digest_0_9" - ], - "rand": [ - "dep:rand" - ], - "serde": [ - "dep:serde" - ], - "serialize": [ - "serde" - ], - "std": [ - "rand" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jake Goulding " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "hash", - "hasher", - "xxhash", - "xxh3" - ], - "readme": "README.md", - "repository": "https://github.com/shepmaster/twox-hash", - "homepage": null, - "documentation": "https://docs.rs/twox-hash/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "typenum", - "version": "1.18.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Typenum is a Rust library for type-level numbers evaluated at\n compile time. It currently supports bits, unsigned integers, and signed\n integers. It also provides a type-level array of type-level numbers, but its\n implementation is incomplete.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "scale-info", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "typenum", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "const-generics": [], - "force_unix_path_separator": [], - "i128": [], - "no_std": [], - "scale-info": [ - "dep:scale-info" - ], - "scale_info": [ - "scale-info/derive" - ], - "strict": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "i128", - "const-generics" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "i128", - "const-generics" - ] - } - }, - "publish": null, - "authors": [ - "Paho Lurie-Gregg ", - "Andre Bogus " - ], - "categories": [ - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/paholg/typenum", - "homepage": null, - "documentation": "https://docs.rs/typenum", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.37.0" - }, - { - "name": "unicode-ident", - "version": "1.0.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "license": "(MIT OR Apache-2.0) AND Unicode-3.0", - "license_file": null, - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fst", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "roaring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ucd-trie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-xid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_ident", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compare", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/tests/compare.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "static_size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/tests/static_size.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "xid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/benches/xid.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "unicode", - "xid" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/unicode-ident", - "homepage": null, - "documentation": "https://docs.rs/unicode-ident", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "unicode-normalization", - "version": "0.1.22", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "This crate provides functions for normalization of\nUnicode strings, including Canonical and Compatible\nDecomposition and Recomposition, as described in\nUnicode Standard Annex #15.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tinyvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_normalization", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "text", - "unicode", - "normalization", - "decomposition", - "recomposition" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-normalization", - "homepage": "https://github.com/unicode-rs/unicode-normalization", - "documentation": "https://docs.rs/unicode-normalization/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unicode-segmentation", - "version": "1.12.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "This crate provides Grapheme Cluster, Word and Sentence boundaries\naccording to Unicode Standard Annex #29 rules.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_segmentation", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "chars", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/chars.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "word_bounds", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/word_bounds.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "words", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/words.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "no_std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "text", - "unicode", - "grapheme", - "word", - "boundary" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-segmentation", - "homepage": "https://github.com/unicode-rs/unicode-segmentation", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unicode-width", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-std", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "std", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_width", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/benches/benches.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "cjk": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "cjk" - ], - "no_std": [], - "rustc-dep-of-std": [ - "std", - "core", - "compiler_builtins" - ], - "std": [ - "dep:std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [ - "command-line-interface", - "internationalization", - "no-std::no-alloc", - "text-processing" - ], - "keywords": [ - "text", - "width", - "unicode" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-width", - "homepage": "https://github.com/unicode-rs/unicode-width", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unicode-xid", - "version": "0.2.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_xid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "exhaustive_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/tests/exhaustive_tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "xid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/benches/xid.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "default": [], - "no_std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "erick.tryzelaar ", - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "text", - "unicode", - "xid" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-xid", - "homepage": "https://github.com/unicode-rs/unicode-xid", - "documentation": "https://unicode-rs.github.io/unicode-xid", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.17" - }, - { - "name": "untrusted", - "version": "0.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "license": "ISC", - "license_file": null, - "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "untrusted", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Brian Smith " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/briansmith/untrusted", - "homepage": null, - "documentation": "https://briansmith.org/rustdoc/untrusted/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unwrap-infallible", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Unwrapping Result values with compile-time guarantee of infallibility", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unwrap_infallible", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "blanket_impl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/tests/blanket_impl.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "blanket_impl": [ - "never_type" - ], - "default": [], - "never_type": [], - "unstable": [ - "never_type", - "blanket_impl" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Mikhail Zabaluev " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "infallible", - "never-type", - "conversion", - "maintainability", - "refactoring" - ], - "readme": "README.md", - "repository": "https://github.com/mzabaluev/unwrap-infallible", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ureq", - "version": "2.12.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Simple, safe HTTP client", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "brotli-decompressor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cookie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.18", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cookie_store", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.21.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "preserve_order", - "serde_json" - ], - "target": null, - "registry": null - }, - { - "name": "encoding_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hootbin", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": "http-02", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.19", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "ring", - "logging", - "std", - "tls12" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-native-certs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.97", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "socks", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "<=0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "humantime" - ], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "ring" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pemfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ureq", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "count-bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/count-bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cureq", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/cureq/main.rs", - "edition": "2018", - "required-features": [ - "charset", - "cookies", - "socks-proxy", - "native-tls" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom-tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/custom-tls.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ipv6", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/ipv6.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "smoke-test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/smoke-test/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tls_config", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/tls_config.rs", - "edition": "2018", - "required-features": [ - "tls", - "native-tls" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "https-agent", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/tests/https-agent.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "brotli": [ - "dep:brotli-decompressor" - ], - "charset": [ - "dep:encoding_rs" - ], - "cookies": [ - "dep:cookie", - "dep:cookie_store" - ], - "default": [ - "tls", - "gzip" - ], - "gzip": [ - "dep:flate2" - ], - "http-crate": [ - "dep:http" - ], - "http-interop": [ - "dep:http-02" - ], - "json": [ - "dep:serde", - "dep:serde_json" - ], - "native-certs": [ - "dep:rustls-native-certs" - ], - "native-tls": [ - "dep:native-tls" - ], - "proxy-from-env": [], - "socks-proxy": [ - "dep:socks" - ], - "testdeps": [ - "dep:hootbin" - ], - "tls": [ - "dep:webpki-roots", - "dep:rustls", - "dep:rustls-pki-types" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "tls", - "native-tls", - "json", - "charset", - "cookies", - "socks-proxy", - "gzip", - "brotli", - "http-interop", - "http-crate" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Martin Algesten ", - "Jacob Hoffman-Andrews " - ], - "categories": [ - "web-programming::http-client" - ], - "keywords": [ - "web", - "request", - "https", - "http", - "client" - ], - "readme": "README.md", - "repository": "https://github.com/algesten/ureq", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "url", - "version": "2.5.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "URL library for Rust, based on the WHATWG URL Standard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "form_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "idna", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "compiled_data" - ], - "target": null, - "registry": null - }, - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "url", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/tests/unit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "url_wpt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/tests/wpt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "debugger_visualizer": [], - "default": [ - "std" - ], - "expose_internals": [], - "serde": [ - "dep:serde" - ], - "std": [ - "idna/std", - "percent-encoding/std", - "form_urlencoded/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "parser-implementations", - "web-programming", - "encoding", - "no-std" - ], - "keywords": [ - "url", - "parser" - ], - "readme": "README.md", - "repository": "https://github.com/servo/rust-url", - "homepage": null, - "documentation": "https://docs.rs/url", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "use-module", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "use_module", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/src/use_module.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gov_module_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/gov_module_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "staking_module_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/staking_module_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_merge_module_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/token_merge_module_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_module_abi_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_abi_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_module_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_module_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_module_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "use-module-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "use-module", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "use-module-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "utf16_iter", - "version": "1.0.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Iterator by char over potentially-invalid UTF-16 in &[u16]", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "utf16_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf16_iter-1.0.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf16_iter-1.0.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Henri Sivonen " - ], - "categories": [ - "text-processing", - "encoding", - "internationalization" - ], - "keywords": [ - "encoding", - "UTF-16", - "unicode", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/utf16_iter", - "homepage": "https://docs.rs/utf16_iter/", - "documentation": "https://docs.rs/utf16_iter/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "utf8_iter", - "version": "1.0.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "utf8_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Henri Sivonen " - ], - "categories": [ - "text-processing", - "encoding", - "internationalization" - ], - "keywords": [ - "encoding", - "UTF-8", - "unicode", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/utf8_iter", - "homepage": "https://docs.rs/utf8_iter/", - "documentation": "https://docs.rs/utf8_iter/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "utf8parse", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Table-driven UTF-8 parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "utf8parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utf-8-demo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/tests/utf-8-demo.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "nightly": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "keywords": [ - "utf8", - "parse", - "table" - ], - "readme": null, - "repository": "https://github.com/alacritty/vte", - "homepage": null, - "documentation": "https://docs.rs/utf8parse/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "uuid", - "version": "1.16.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A library to generate and parse UUIDs.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.16.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "md-5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.56", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1_smol", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid-macro-internal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.16.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.79", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.56", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.52", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid-rng-internal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.16.0", - "kind": null, - "rename": "uuid-rng-internal-lib", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_feature = \"atomics\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))", - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "uuid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.16.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "atomic": [ - "dep:atomic" - ], - "borsh": [ - "dep:borsh", - "dep:borsh-derive" - ], - "bytemuck": [ - "dep:bytemuck" - ], - "default": [ - "std" - ], - "fast-rng": [ - "rng", - "dep:rand" - ], - "js": [ - "dep:wasm-bindgen", - "dep:js-sys" - ], - "macro-diagnostics": [ - "dep:uuid-macro-internal" - ], - "md5": [ - "dep:md-5" - ], - "rng": [ - "dep:getrandom" - ], - "rng-getrandom": [ - "rng", - "dep:getrandom", - "uuid-rng-internal-lib", - "uuid-rng-internal-lib/getrandom" - ], - "rng-rand": [ - "rng", - "dep:rand", - "uuid-rng-internal-lib", - "uuid-rng-internal-lib/rand" - ], - "serde": [ - "dep:serde" - ], - "sha1": [ - "dep:sha1_smol" - ], - "slog": [ - "dep:slog" - ], - "std": [], - "uuid-rng-internal-lib": [ - "dep:uuid-rng-internal-lib" - ], - "v1": [ - "atomic" - ], - "v3": [ - "md5" - ], - "v4": [ - "rng" - ], - "v5": [ - "sha1" - ], - "v6": [ - "atomic" - ], - "v7": [ - "rng" - ], - "v8": [], - "zerocopy": [ - "dep:zerocopy" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.16.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "arbitrary", - "slog", - "borsh", - "v1", - "v3", - "v4", - "v5", - "v6", - "v7", - "v8" - ], - "rustc-args": [ - "--cfg", - "uuid_unstable" - ], - "rustdoc-args": [ - "--cfg", - "uuid_unstable" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "serde", - "v1", - "v3", - "v4", - "v5", - "v6", - "v7", - "v8" - ] - } - }, - "publish": null, - "authors": [ - "Ashley Mannix", - "Dylan DPC", - "Hunar Roop Kahlon" - ], - "categories": [ - "data-structures", - "no-std", - "parser-implementations", - "wasm" - ], - "keywords": [ - "guid", - "unique", - "uuid" - ], - "readme": "README.md", - "repository": "https://github.com/uuid-rs/uuid", - "homepage": "https://github.com/uuid-rs/uuid", - "documentation": "https://docs.rs/uuid", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "vault", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "vault", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/src/vault.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vault-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "vault-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vcpkg", - "version": "0.2.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A library to find native dependencies in a vcpkg tree at build\ntime in order to be used in Cargo build scripts.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "vcpkg", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jim McGrath " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "build-dependencies", - "windows", - "macos", - "linux" - ], - "readme": "README.md", - "repository": "https://github.com/mcgoo/vcpkg-rs", - "homepage": null, - "documentation": "https://docs.rs/vcpkg", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vec-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "vec_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/src/vec_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vec-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "vec-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "vec-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "version_check", - "version": "0.9.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Tiny crate to check the version of the installed/running rustc.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "version_check", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sergio Benitez " - ], - "categories": [], - "keywords": [ - "version", - "rustc", - "minimum", - "check" - ], - "readme": "README.md", - "repository": "https://github.com/SergioBenitez/version_check", - "homepage": null, - "documentation": "https://docs.rs/version_check/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "walkdir", - "version": "2.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "license": "Unlicense/MIT", - "license_file": null, - "description": "Recursively walk a directory.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "same-file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "walkdir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "filesystem" - ], - "keywords": [ - "directory", - "recursive", - "walk", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/walkdir", - "homepage": "https://github.com/BurntSushi/walkdir", - "documentation": "https://docs.rs/walkdir/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "want", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "license": "MIT", - "license_file": null, - "description": "Detect when another Future wants a result.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "try-lock", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-executor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0-alpha.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0-alpha.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "want", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "throughput", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/benches/throughput.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [], - "keywords": [ - "futures", - "channel", - "async" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/want", - "homepage": null, - "documentation": "https://docs.rs/want", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasi", - "version": "0.11.0+wasi-snapshot-preview1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Experimental WASI API bindings for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasi", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.11.0+wasi-snapshot-preview1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "rustc-std-workspace-alloc" - ], - "rustc-std-workspace-alloc": [ - "dep:rustc-std-workspace-alloc" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.11.0+wasi-snapshot-preview1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Cranelift Project Developers" - ], - "categories": [ - "no-std", - "wasm" - ], - "keywords": [ - "webassembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasi", - "homepage": null, - "documentation": "https://docs.rs/wasi", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasi", - "version": "0.14.2+wasi-0.2.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.14.2+wasi-0.2.4", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "WASI API bindings for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wit-bindgen-rt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.39.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "bitflags" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasi", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "cdylib" - ], - "name": "cli-command", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/cli-command.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "cdylib" - ], - "name": "cli-command-no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/cli-command-no_std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hello-world", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/hello-world.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hello-world-no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/hello-world-no_std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "cdylib" - ], - "name": "http-proxy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/http-proxy.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "cdylib" - ], - "name": "http-proxy-no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/examples/http-proxy-no_std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "rustc-std-workspace-alloc" - ], - "rustc-std-workspace-alloc": [ - "dep:rustc-std-workspace-alloc" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasi-0.14.2+wasi-0.2.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Cranelift Project Developers" - ], - "categories": [ - "no-std", - "wasm" - ], - "keywords": [ - "webassembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasi-rs", - "homepage": null, - "documentation": "https://docs.rs/wasi", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasm-bindgen", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Easy support for interacting between JS and Rust.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std", - "msrv" - ], - "enable-interning": [ - "std" - ], - "gg-alloc": [], - "msrv": [ - "rustversion" - ], - "rustversion": [ - "dep:rustversion" - ], - "serde": [ - "dep:serde" - ], - "serde-serialize": [ - "serde", - "serde_json", - "std" - ], - "serde_json": [ - "dep:serde_json" - ], - "spans": [], - "std": [], - "strict-macro": [ - "wasm-bindgen-macro/strict-macro" - ], - "xxx_debug_only_print_generated_code": [ - "wasm-bindgen-macro/xxx_debug_only_print_generated_code" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde-serialize" - ] - } - } - }, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen", - "homepage": "https://rustwasm.github.io/", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-backend", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Backend code generation of the wasm-bindgen tool\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_backend", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-backend-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "extra-traits": [ - "syn/extra-traits" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-backend-0.2.100/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen-backend", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-futures", - "version": "0.4.50", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bridging the gap between Rust Futures and JavaScript Promises", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "futures-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "MessageEvent", - "Worker" - ], - "target": "cfg(target_feature = \"atomics\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_futures", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.50/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "futures-core": [ - "dep:futures-core" - ], - "futures-core-03-stream": [ - "futures-core" - ], - "std": [ - "wasm-bindgen/std", - "js-sys/std", - "web-sys/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.50/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen-futures", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-macro", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-macro-support", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "wasm_bindgen_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "strict-macro": [ - "wasm-bindgen-macro-support/strict-macro" - ], - "xxx_debug_only_print_generated_code": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.100/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-macro-support", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "visit", - "visit-mut", - "full" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-backend", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_macro_support", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "strict-macro": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.100/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-shared", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_shared", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen-shared", - "edition": "2021", - "links": "wasm_bindgen", - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-encoder", - "version": "0.229.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "A low-level WebAssembly encoder.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "leb128fmt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.229.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "simd", - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmprinter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.229.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_encoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "component-model": [ - "wasmparser?/component-model" - ], - "default": [ - "std", - "component-model" - ], - "std": [ - "wasmparser?/std" - ], - "wasmparser": [ - "dep:wasmparser" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Nick Fitzgerald " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", - "documentation": "https://docs.rs/wasm-encoder", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wasmer", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", - "license": "MIT", - "license_file": null, - "description": "High-performance WebAssembly runtime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "derive_more", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "from", - "debug" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "indexmap", - "enable-indexmap" - ], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shared-buffer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmi_c_api_impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.40.0", - "kind": null, - "rename": "wasmi_c_api", - "optional": true, - "uses_default_features": true, - "features": [ - "prefix-symbols" - ], - "target": null, - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.216.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cmake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.50", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.42", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ureq", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.10.1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "which", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.0.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "xz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(not(target_arch = \"wasm32\"), target_os = \"windows\"))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.51", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rusty_jsc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.74", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler-cranelift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler-llvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler-singlepass", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-vm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.224.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "validate", - "features", - "simd" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "macro-wasmer-universal-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.70.1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_env = \"musl\"))", - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "serde-wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmer-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.224.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "validate", - "features", - "simd" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "macro-wasmer-universal-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.70.1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "static", - "logging", - "prettyplease" - ], - "target": "cfg(target_env = \"musl\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "externals", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/externals.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "function_env", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/function_env.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "import_function", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/import_function.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "instance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/instance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "memory", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/memory.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "module", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/module.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reference_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/reference_types.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "typed_functions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/typed_functions.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "artifact-size": [ - "dep:loupe", - "wasmer-vm/artifact-size", - "wasmer-compiler/artifact-size" - ], - "compiler": [ - "sys", - "dep:wasmer-compiler", - "wasmer-compiler/translator", - "wasmer-compiler/compiler" - ], - "core": [ - "hashbrown" - ], - "cranelift": [ - "compiler", - "wasmer-compiler-cranelift" - ], - "default": [ - "sys-default" - ], - "enable-serde": [ - "wasmer-vm/enable-serde", - "wasmer-compiler/enable-serde", - "wasmer-types/enable-serde" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "js": [ - "wasm-bindgen", - "js-sys" - ], - "js-default": [ - "js", - "std", - "wasm-types-polyfill" - ], - "js-serializable-module": [], - "js-sys": [ - "dep:js-sys" - ], - "jsc": [ - "rusty_jsc", - "wasm-types-polyfill", - "wasmparser" - ], - "jsc-default": [ - "jsc" - ], - "llvm": [ - "compiler", - "wasmer-compiler-llvm" - ], - "rusty_jsc": [ - "dep:rusty_jsc" - ], - "singlepass": [ - "compiler", - "wasmer-compiler-singlepass" - ], - "static-artifact-create": [ - "wasmer-compiler/static-artifact-create" - ], - "static-artifact-load": [ - "wasmer-compiler/static-artifact-load" - ], - "std": [], - "sys": [ - "std", - "dep:wasmer-vm", - "dep:wasmer-compiler" - ], - "sys-default": [ - "sys", - "wat", - "cranelift" - ], - "v8": [ - "wasm-c-api", - "std", - "dep:which", - "dep:xz" - ], - "v8-default": [ - "v8", - "wat" - ], - "wamr": [ - "wasm-c-api", - "std", - "dep:which", - "dep:zip" - ], - "wamr-default": [ - "wamr", - "wat" - ], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ], - "wasm-c-api": [ - "wasm-types-polyfill" - ], - "wasm-types-polyfill": [ - "wasmparser" - ], - "wasmer-artifact-create": [ - "wasmer-compiler/wasmer-artifact-create" - ], - "wasmer-artifact-load": [ - "wasmer-compiler/wasmer-artifact-load" - ], - "wasmer-compiler-cranelift": [ - "dep:wasmer-compiler-cranelift" - ], - "wasmer-compiler-llvm": [ - "dep:wasmer-compiler-llvm" - ], - "wasmer-compiler-singlepass": [ - "dep:wasmer-compiler-singlepass" - ], - "wasmi": [ - "wasm-c-api", - "std", - "dep:wasmi_c_api" - ], - "wasmi-default": [ - "wasmi", - "wat" - ], - "wasmparser": [ - "dep:wasmparser" - ], - "wat": [ - "dep:wat", - "wasmparser" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "compiler", - "core", - "cranelift", - "singlepass", - "static-artifact-create", - "static-artifact-load", - "sys", - "sys-default", - "wasmer-artifact-create", - "wasmer-artifact-load" - ], - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "wasm-pack": { - "profile": { - "release": { - "wasm-opt": false - } - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly", - "runtime", - "vm" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-compiler", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "license": "MIT", - "license_file": null, - "description": "Base compiler abstraction for Wasmer WebAssembly runtime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "leb128", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "indexmap", - "enable-indexmap" - ], - "target": null, - "registry": null - }, - { - "name": "memmap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "object", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.32.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "write" - ], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "indexmap-2", - "bytes-1" - ], - "target": null, - "registry": null - }, - { - "name": "self_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shared-buffer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.224.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "validate", - "features", - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "xxhash-rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "xxh64" - ], - "target": null, - "registry": null - }, - { - "name": "macho-unwind-info", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_os = \"macos\", target_arch = \"aarch64\"))", - "registry": null - }, - { - "name": "region", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-vm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Diagnostics_Debug" - ], - "target": "cfg(target_os = \"windows\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_compiler", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "artifact-size": [ - "dep:loupe" - ], - "compiler": [ - "translator" - ], - "core": [ - "hashbrown", - "wasmer-types/core" - ], - "default": [ - "std" - ], - "enable-serde": [ - "serde", - "serde_bytes", - "wasmer-types/enable-serde" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "serde": [ - "dep:serde" - ], - "serde_bytes": [ - "dep:serde_bytes" - ], - "static-artifact-create": [ - "translator", - "compiler" - ], - "static-artifact-load": [], - "std": [ - "wasmer-types/std" - ], - "translator": [ - "wasmparser" - ], - "wasmer-artifact-create": [], - "wasmer-artifact-load": [], - "wasmparser": [ - "dep:wasmparser" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "static-artifact-create", - "static-artifact-load", - "wasmer-artifact-create", - "wasmer-artifact-load" - ], - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm", - "no-std" - ], - "keywords": [ - "wasm", - "webassembly", - "compiler" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-compiler-singlepass", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", - "license": null, - "license_file": "LICENSE", - "description": "Singlepass compiler for Wasmer WebAssembly runtime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dynasm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dynasmrt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gimli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.28.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "translator", - "compiler" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_compiler_singlepass", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-singlepass-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "avx": [], - "core": [ - "hashbrown", - "wasmer-types/core" - ], - "default": [ - "std", - "rayon", - "unwind", - "avx" - ], - "enable-serde": [], - "gimli": [ - "dep:gimli" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "rayon": [ - "dep:rayon" - ], - "sse": [], - "std": [ - "wasmer-compiler/std", - "wasmer-types/std" - ], - "unwind": [ - "gimli" - ], - "wasm": [ - "std", - "unwind", - "avx" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-singlepass-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly", - "compiler", - "singlepass" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": "https://docs.rs/wasmer-compiler-singlepass/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-derive", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", - "license": "MIT", - "license_file": null, - "description": "Wasmer derive macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro-error2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.72", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "compiletest_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "wasmer_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-types", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "license": "MIT OR Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "Wasmer Common Types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "indexmap-2", - "bytes-1" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.224.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "validate", - "features", - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "xxhash-rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "xxh64" - ], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-types-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "artifact-size": [ - "dep:loupe" - ], - "core": [], - "default": [ - "std" - ], - "detect-wasm-features": [ - "dep:wasmparser" - ], - "enable-serde": [ - "serde", - "serde/std", - "serde_bytes", - "indexmap/serde" - ], - "serde": [ - "dep:serde" - ], - "serde_bytes": [ - "dep:serde_bytes" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-types-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm", - "no-std", - "data-structures" - ], - "keywords": [ - "wasm", - "webassembly", - "types" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-vm", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "license": "MIT OR Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "Runtime library support for Wasmer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "corosensei", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-queue", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dashmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "region", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scopeguard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive", - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libunwind", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_family = \"unix\", all(target_family = \"windows\", target_env = \"gnu\")))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Diagnostics_Debug", - "Win32_System_Threading", - "Win32_System_Kernel", - "Win32_System_Memory" - ], - "target": "cfg(target_os = \"windows\")", - "registry": null - }, - { - "name": "mach2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_vm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-vm-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "artifact-size": [ - "dep:loupe", - "wasmer-types/artifact-size" - ], - "default": [], - "enable-serde": [ - "serde", - "indexmap/serde", - "wasmer-types/enable-serde" - ], - "serde": [ - "dep:serde" - ], - "tracing": [ - "dep:tracing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-vm-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmparser", - "version": "0.224.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "A simple event-driven library for parsing WebAssembly binary files.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmparser", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big-module", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/tests/big-module.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/benches/benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "component-model": [ - "dep:semver" - ], - "default": [ - "std", - "validate", - "serde", - "features", - "component-model", - "hash-collections", - "simd" - ], - "features": [], - "hash-collections": [ - "dep:hashbrown", - "dep:indexmap" - ], - "prefer-btree-collections": [], - "serde": [ - "dep:serde", - "indexmap?/serde", - "hashbrown?/serde" - ], - "simd": [], - "std": [ - "indexmap?/std" - ], - "validate": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Yury Delendik " - ], - "categories": [], - "keywords": [ - "parser", - "WebAssembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wasmparser", - "version": "0.227.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "A simple event-driven library for parsing WebAssembly binary files.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmparser", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big-module", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/tests/big-module.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/benches/benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "component-model": [ - "dep:semver" - ], - "default": [ - "std", - "validate", - "serde", - "features", - "component-model", - "hash-collections", - "simd" - ], - "features": [], - "hash-collections": [ - "dep:hashbrown", - "dep:indexmap" - ], - "prefer-btree-collections": [], - "serde": [ - "dep:serde", - "indexmap?/serde", - "hashbrown?/serde" - ], - "simd": [], - "std": [ - "indexmap?/std" - ], - "validate": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Yury Delendik " - ], - "categories": [], - "keywords": [ - "parser", - "WebAssembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wasmparser", - "version": "0.229.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "A simple event-driven library for parsing WebAssembly binary files.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmparser", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big-module", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/tests/big-module.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/benches/benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "component-model": [ - "dep:semver" - ], - "default": [ - "std", - "validate", - "serde", - "features", - "component-model", - "hash-collections", - "simd" - ], - "features": [], - "hash-collections": [ - "dep:hashbrown", - "dep:indexmap" - ], - "prefer-btree-collections": [], - "serde": [ - "dep:serde", - "indexmap?/serde", - "hashbrown?/serde" - ], - "simd": [], - "std": [ - "indexmap?/std" - ], - "validate": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Yury Delendik " - ], - "categories": [], - "keywords": [ - "parser", - "WebAssembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wasmprinter", - "version": "0.227.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Rust converter from the WebAssembly binary format to the text format.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "termcolor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.227.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "simd", - "std", - "simd" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmprinter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/tests/all.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "component-model": [ - "wasmparser/component-model" - ], - "default": [ - "component-model" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter", - "documentation": "https://docs.rs/wasmprinter", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wast", - "version": "229.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Customizable Rust parsers for the WebAssembly Text formats WAT and WAST\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gimli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.31.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "leb128fmt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-encoder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.229.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libtest-mimic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "annotations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/annotations.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "comments", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/comments.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse-fail", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/parse-fail.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "recursive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/recursive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "component-model": [ - "wasm-module", - "wasm-encoder/component-model" - ], - "default": [ - "wasm-module", - "component-model" - ], - "dwarf": [ - "dep:gimli" - ], - "wasm-module": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", - "documentation": "https://docs.rs/wast", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wat", - "version": "1.229.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Rust parser for the WebAssembly Text format, WAT\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "wast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^229.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "wasm-module" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wat-1.229.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "component-model": [ - "wast/component-model" - ], - "default": [ - "component-model" - ], - "dwarf": [ - "wast/dwarf" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wat-1.229.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", - "documentation": "https://docs.rs/wat", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "web-sys", - "version": "0.3.77", - "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bindings for all Web APIs, a procedurally generated crate from WebIDL\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "web_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.77/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": false - } - ], - "features": { - "AbortController": [], - "AbortSignal": [ - "EventTarget" - ], - "AddEventListenerOptions": [], - "AesCbcParams": [], - "AesCtrParams": [], - "AesDerivedKeyParams": [], - "AesGcmParams": [], - "AesKeyAlgorithm": [], - "AesKeyGenParams": [], - "Algorithm": [], - "AlignSetting": [], - "AllowedBluetoothDevice": [], - "AllowedUsbDevice": [], - "AlphaOption": [], - "AnalyserNode": [ - "AudioNode", - "EventTarget" - ], - "AnalyserOptions": [], - "AngleInstancedArrays": [], - "Animation": [ - "EventTarget" - ], - "AnimationEffect": [], - "AnimationEvent": [ - "Event" - ], - "AnimationEventInit": [], - "AnimationPlayState": [], - "AnimationPlaybackEvent": [ - "Event" - ], - "AnimationPlaybackEventInit": [], - "AnimationPropertyDetails": [], - "AnimationPropertyValueDetails": [], - "AnimationTimeline": [], - "AssignedNodesOptions": [], - "AttestationConveyancePreference": [], - "Attr": [ - "EventTarget", - "Node" - ], - "AttributeNameValue": [], - "AudioBuffer": [], - "AudioBufferOptions": [], - "AudioBufferSourceNode": [ - "AudioNode", - "AudioScheduledSourceNode", - "EventTarget" - ], - "AudioBufferSourceOptions": [], - "AudioConfiguration": [], - "AudioContext": [ - "BaseAudioContext", - "EventTarget" - ], - "AudioContextLatencyCategory": [], - "AudioContextOptions": [], - "AudioContextState": [], - "AudioData": [], - "AudioDataCopyToOptions": [], - "AudioDataInit": [], - "AudioDecoder": [], - "AudioDecoderConfig": [], - "AudioDecoderInit": [], - "AudioDecoderSupport": [], - "AudioDestinationNode": [ - "AudioNode", - "EventTarget" - ], - "AudioEncoder": [], - "AudioEncoderConfig": [], - "AudioEncoderInit": [], - "AudioEncoderSupport": [], - "AudioListener": [], - "AudioNode": [ - "EventTarget" - ], - "AudioNodeOptions": [], - "AudioParam": [], - "AudioParamMap": [], - "AudioProcessingEvent": [ - "Event" - ], - "AudioSampleFormat": [], - "AudioScheduledSourceNode": [ - "AudioNode", - "EventTarget" - ], - "AudioSinkInfo": [], - "AudioSinkOptions": [], - "AudioSinkType": [], - "AudioStreamTrack": [ - "EventTarget", - "MediaStreamTrack" - ], - "AudioTrack": [], - "AudioTrackList": [ - "EventTarget" - ], - "AudioWorklet": [ - "Worklet" - ], - "AudioWorkletGlobalScope": [ - "WorkletGlobalScope" - ], - "AudioWorkletNode": [ - "AudioNode", - "EventTarget" - ], - "AudioWorkletNodeOptions": [], - "AudioWorkletProcessor": [], - "AuthenticationExtensionsClientInputs": [], - "AuthenticationExtensionsClientInputsJson": [], - "AuthenticationExtensionsClientOutputs": [], - "AuthenticationExtensionsClientOutputsJson": [], - "AuthenticationExtensionsDevicePublicKeyInputs": [], - "AuthenticationExtensionsDevicePublicKeyOutputs": [], - "AuthenticationExtensionsLargeBlobInputs": [], - "AuthenticationExtensionsLargeBlobOutputs": [], - "AuthenticationExtensionsPrfInputs": [], - "AuthenticationExtensionsPrfOutputs": [], - "AuthenticationExtensionsPrfValues": [], - "AuthenticationResponseJson": [], - "AuthenticatorAssertionResponse": [ - "AuthenticatorResponse" - ], - "AuthenticatorAssertionResponseJson": [], - "AuthenticatorAttachment": [], - "AuthenticatorAttestationResponse": [ - "AuthenticatorResponse" - ], - "AuthenticatorAttestationResponseJson": [], - "AuthenticatorResponse": [], - "AuthenticatorSelectionCriteria": [], - "AuthenticatorTransport": [], - "AutoKeyword": [], - "AutocompleteInfo": [], - "BarProp": [], - "BaseAudioContext": [ - "EventTarget" - ], - "BaseComputedKeyframe": [], - "BaseKeyframe": [], - "BasePropertyIndexedKeyframe": [], - "BasicCardRequest": [], - "BasicCardResponse": [], - "BasicCardType": [], - "BatteryManager": [ - "EventTarget" - ], - "BeforeUnloadEvent": [ - "Event" - ], - "BinaryType": [], - "BiquadFilterNode": [ - "AudioNode", - "EventTarget" - ], - "BiquadFilterOptions": [], - "BiquadFilterType": [], - "Blob": [], - "BlobEvent": [ - "Event" - ], - "BlobEventInit": [], - "BlobPropertyBag": [], - "BlockParsingOptions": [], - "Bluetooth": [ - "EventTarget" - ], - "BluetoothAdvertisingEvent": [ - "Event" - ], - "BluetoothAdvertisingEventInit": [], - "BluetoothCharacteristicProperties": [], - "BluetoothDataFilterInit": [], - "BluetoothDevice": [ - "EventTarget" - ], - "BluetoothLeScanFilterInit": [], - "BluetoothManufacturerDataMap": [], - "BluetoothPermissionDescriptor": [], - "BluetoothPermissionResult": [ - "EventTarget", - "PermissionStatus" - ], - "BluetoothPermissionStorage": [], - "BluetoothRemoteGattCharacteristic": [ - "EventTarget" - ], - "BluetoothRemoteGattDescriptor": [], - "BluetoothRemoteGattServer": [], - "BluetoothRemoteGattService": [ - "EventTarget" - ], - "BluetoothServiceDataMap": [], - "BluetoothUuid": [], - "BoxQuadOptions": [], - "BroadcastChannel": [ - "EventTarget" - ], - "BrowserElementDownloadOptions": [], - "BrowserElementExecuteScriptOptions": [], - "BrowserFeedWriter": [], - "BrowserFindCaseSensitivity": [], - "BrowserFindDirection": [], - "ByteLengthQueuingStrategy": [], - "Cache": [], - "CacheBatchOperation": [], - "CacheQueryOptions": [], - "CacheStorage": [], - "CacheStorageNamespace": [], - "CanvasCaptureMediaStream": [ - "EventTarget", - "MediaStream" - ], - "CanvasCaptureMediaStreamTrack": [ - "EventTarget", - "MediaStreamTrack" - ], - "CanvasGradient": [], - "CanvasPattern": [], - "CanvasRenderingContext2d": [], - "CanvasWindingRule": [], - "CaretChangedReason": [], - "CaretPosition": [], - "CaretStateChangedEventInit": [], - "CdataSection": [ - "CharacterData", - "EventTarget", - "Node", - "Text" - ], - "ChannelCountMode": [], - "ChannelInterpretation": [], - "ChannelMergerNode": [ - "AudioNode", - "EventTarget" - ], - "ChannelMergerOptions": [], - "ChannelSplitterNode": [ - "AudioNode", - "EventTarget" - ], - "ChannelSplitterOptions": [], - "CharacterData": [ - "EventTarget", - "Node" - ], - "CheckerboardReason": [], - "CheckerboardReport": [], - "CheckerboardReportService": [], - "ChromeFilePropertyBag": [], - "ChromeWorker": [ - "EventTarget", - "Worker" - ], - "Client": [], - "ClientQueryOptions": [], - "ClientRectsAndTexts": [], - "ClientType": [], - "Clients": [], - "Clipboard": [ - "EventTarget" - ], - "ClipboardEvent": [ - "Event" - ], - "ClipboardEventInit": [], - "ClipboardItem": [], - "ClipboardItemOptions": [], - "ClipboardPermissionDescriptor": [], - "ClipboardUnsanitizedFormats": [], - "CloseEvent": [ - "Event" - ], - "CloseEventInit": [], - "CodecState": [], - "CollectedClientData": [], - "ColorSpaceConversion": [], - "Comment": [ - "CharacterData", - "EventTarget", - "Node" - ], - "CompositeOperation": [], - "CompositionEvent": [ - "Event", - "UiEvent" - ], - "CompositionEventInit": [], - "CompressionFormat": [], - "CompressionStream": [], - "ComputedEffectTiming": [], - "ConnStatusDict": [], - "ConnectionType": [], - "ConsoleCounter": [], - "ConsoleCounterError": [], - "ConsoleEvent": [], - "ConsoleInstance": [], - "ConsoleInstanceOptions": [], - "ConsoleLevel": [], - "ConsoleLogLevel": [], - "ConsoleProfileEvent": [], - "ConsoleStackEntry": [], - "ConsoleTimerError": [], - "ConsoleTimerLogOrEnd": [], - "ConsoleTimerStart": [], - "ConstantSourceNode": [ - "AudioNode", - "AudioScheduledSourceNode", - "EventTarget" - ], - "ConstantSourceOptions": [], - "ConstrainBooleanParameters": [], - "ConstrainDomStringParameters": [], - "ConstrainDoubleRange": [], - "ConstrainLongRange": [], - "ContextAttributes2d": [], - "ConvertCoordinateOptions": [], - "ConvolverNode": [ - "AudioNode", - "EventTarget" - ], - "ConvolverOptions": [], - "Coordinates": [], - "CountQueuingStrategy": [], - "Credential": [], - "CredentialCreationOptions": [], - "CredentialPropertiesOutput": [], - "CredentialRequestOptions": [], - "CredentialsContainer": [], - "Crypto": [], - "CryptoKey": [], - "CryptoKeyPair": [], - "CssAnimation": [ - "Animation", - "EventTarget" - ], - "CssBoxType": [], - "CssConditionRule": [ - "CssGroupingRule", - "CssRule" - ], - "CssCounterStyleRule": [ - "CssRule" - ], - "CssFontFaceRule": [ - "CssRule" - ], - "CssFontFeatureValuesRule": [ - "CssRule" - ], - "CssGroupingRule": [ - "CssRule" - ], - "CssImportRule": [ - "CssRule" - ], - "CssKeyframeRule": [ - "CssRule" - ], - "CssKeyframesRule": [ - "CssRule" - ], - "CssMediaRule": [ - "CssConditionRule", - "CssGroupingRule", - "CssRule" - ], - "CssNamespaceRule": [ - "CssRule" - ], - "CssPageRule": [ - "CssRule" - ], - "CssPseudoElement": [], - "CssRule": [], - "CssRuleList": [], - "CssStyleDeclaration": [], - "CssStyleRule": [ - "CssRule" - ], - "CssStyleSheet": [ - "StyleSheet" - ], - "CssStyleSheetParsingMode": [], - "CssSupportsRule": [ - "CssConditionRule", - "CssGroupingRule", - "CssRule" - ], - "CssTransition": [ - "Animation", - "EventTarget" - ], - "CustomElementRegistry": [], - "CustomEvent": [ - "Event" - ], - "CustomEventInit": [], - "DataTransfer": [], - "DataTransferItem": [], - "DataTransferItemList": [], - "DateTimeValue": [], - "DecoderDoctorNotification": [], - "DecoderDoctorNotificationType": [], - "DecompressionStream": [], - "DedicatedWorkerGlobalScope": [ - "EventTarget", - "WorkerGlobalScope" - ], - "DelayNode": [ - "AudioNode", - "EventTarget" - ], - "DelayOptions": [], - "DeviceAcceleration": [], - "DeviceAccelerationInit": [], - "DeviceLightEvent": [ - "Event" - ], - "DeviceLightEventInit": [], - "DeviceMotionEvent": [ - "Event" - ], - "DeviceMotionEventInit": [], - "DeviceOrientationEvent": [ - "Event" - ], - "DeviceOrientationEventInit": [], - "DeviceProximityEvent": [ - "Event" - ], - "DeviceProximityEventInit": [], - "DeviceRotationRate": [], - "DeviceRotationRateInit": [], - "DhKeyDeriveParams": [], - "DirectionSetting": [], - "Directory": [], - "DirectoryPickerOptions": [], - "DisplayMediaStreamConstraints": [], - "DisplayNameOptions": [], - "DisplayNameResult": [], - "DistanceModelType": [], - "DnsCacheDict": [], - "DnsCacheEntry": [], - "DnsLookupDict": [], - "Document": [ - "EventTarget", - "Node" - ], - "DocumentFragment": [ - "EventTarget", - "Node" - ], - "DocumentTimeline": [ - "AnimationTimeline" - ], - "DocumentTimelineOptions": [], - "DocumentType": [ - "EventTarget", - "Node" - ], - "DomError": [], - "DomException": [], - "DomImplementation": [], - "DomMatrix": [ - "DomMatrixReadOnly" - ], - "DomMatrix2dInit": [], - "DomMatrixInit": [], - "DomMatrixReadOnly": [], - "DomParser": [], - "DomPoint": [ - "DomPointReadOnly" - ], - "DomPointInit": [], - "DomPointReadOnly": [], - "DomQuad": [], - "DomQuadInit": [], - "DomQuadJson": [], - "DomRect": [ - "DomRectReadOnly" - ], - "DomRectInit": [], - "DomRectList": [], - "DomRectReadOnly": [], - "DomRequest": [ - "EventTarget" - ], - "DomRequestReadyState": [], - "DomStringList": [], - "DomStringMap": [], - "DomTokenList": [], - "DomWindowResizeEventDetail": [], - "DoubleRange": [], - "DragEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "DragEventInit": [], - "DynamicsCompressorNode": [ - "AudioNode", - "EventTarget" - ], - "DynamicsCompressorOptions": [], - "EcKeyAlgorithm": [], - "EcKeyGenParams": [], - "EcKeyImportParams": [], - "EcdhKeyDeriveParams": [], - "EcdsaParams": [], - "EffectTiming": [], - "Element": [ - "EventTarget", - "Node" - ], - "ElementCreationOptions": [], - "ElementDefinitionOptions": [], - "EncodedAudioChunk": [], - "EncodedAudioChunkInit": [], - "EncodedAudioChunkMetadata": [], - "EncodedAudioChunkType": [], - "EncodedVideoChunk": [], - "EncodedVideoChunkInit": [], - "EncodedVideoChunkMetadata": [], - "EncodedVideoChunkType": [], - "EndingTypes": [], - "ErrorCallback": [], - "ErrorEvent": [ - "Event" - ], - "ErrorEventInit": [], - "Event": [], - "EventInit": [], - "EventListener": [], - "EventListenerOptions": [], - "EventModifierInit": [], - "EventSource": [ - "EventTarget" - ], - "EventSourceInit": [], - "EventTarget": [], - "Exception": [], - "ExtBlendMinmax": [], - "ExtColorBufferFloat": [], - "ExtColorBufferHalfFloat": [], - "ExtDisjointTimerQuery": [], - "ExtFragDepth": [], - "ExtSRgb": [], - "ExtShaderTextureLod": [], - "ExtTextureFilterAnisotropic": [], - "ExtTextureNorm16": [], - "ExtendableEvent": [ - "Event" - ], - "ExtendableEventInit": [], - "ExtendableMessageEvent": [ - "Event", - "ExtendableEvent" - ], - "ExtendableMessageEventInit": [], - "External": [], - "FakePluginMimeEntry": [], - "FakePluginTagInit": [], - "FetchEvent": [ - "Event", - "ExtendableEvent" - ], - "FetchEventInit": [], - "FetchObserver": [ - "EventTarget" - ], - "FetchReadableStreamReadDataArray": [], - "FetchReadableStreamReadDataDone": [], - "FetchState": [], - "File": [ - "Blob" - ], - "FileCallback": [], - "FileList": [], - "FilePickerAcceptType": [], - "FilePickerOptions": [], - "FilePropertyBag": [], - "FileReader": [ - "EventTarget" - ], - "FileReaderSync": [], - "FileSystem": [], - "FileSystemCreateWritableOptions": [], - "FileSystemDirectoryEntry": [ - "FileSystemEntry" - ], - "FileSystemDirectoryHandle": [ - "FileSystemHandle" - ], - "FileSystemDirectoryReader": [], - "FileSystemEntriesCallback": [], - "FileSystemEntry": [], - "FileSystemEntryCallback": [], - "FileSystemFileEntry": [ - "FileSystemEntry" - ], - "FileSystemFileHandle": [ - "FileSystemHandle" - ], - "FileSystemFlags": [], - "FileSystemGetDirectoryOptions": [], - "FileSystemGetFileOptions": [], - "FileSystemHandle": [], - "FileSystemHandleKind": [], - "FileSystemHandlePermissionDescriptor": [], - "FileSystemPermissionDescriptor": [], - "FileSystemPermissionMode": [], - "FileSystemReadWriteOptions": [], - "FileSystemRemoveOptions": [], - "FileSystemSyncAccessHandle": [], - "FileSystemWritableFileStream": [ - "WritableStream" - ], - "FillMode": [], - "FlashClassification": [], - "FlowControlType": [], - "FocusEvent": [ - "Event", - "UiEvent" - ], - "FocusEventInit": [], - "FocusOptions": [], - "FontData": [], - "FontFace": [], - "FontFaceDescriptors": [], - "FontFaceLoadStatus": [], - "FontFaceSet": [ - "EventTarget" - ], - "FontFaceSetIterator": [], - "FontFaceSetIteratorResult": [], - "FontFaceSetLoadEvent": [ - "Event" - ], - "FontFaceSetLoadEventInit": [], - "FontFaceSetLoadStatus": [], - "FormData": [], - "FrameType": [], - "FuzzingFunctions": [], - "GainNode": [ - "AudioNode", - "EventTarget" - ], - "GainOptions": [], - "Gamepad": [], - "GamepadButton": [], - "GamepadEffectParameters": [], - "GamepadEvent": [ - "Event" - ], - "GamepadEventInit": [], - "GamepadHand": [], - "GamepadHapticActuator": [], - "GamepadHapticActuatorType": [], - "GamepadHapticEffectType": [], - "GamepadHapticsResult": [], - "GamepadMappingType": [], - "GamepadPose": [], - "GamepadTouch": [], - "Geolocation": [], - "GetAnimationsOptions": [], - "GetRootNodeOptions": [], - "GetUserMediaRequest": [], - "Gpu": [], - "GpuAdapter": [], - "GpuAdapterInfo": [], - "GpuAddressMode": [], - "GpuAutoLayoutMode": [], - "GpuBindGroup": [], - "GpuBindGroupDescriptor": [], - "GpuBindGroupEntry": [], - "GpuBindGroupLayout": [], - "GpuBindGroupLayoutDescriptor": [], - "GpuBindGroupLayoutEntry": [], - "GpuBlendComponent": [], - "GpuBlendFactor": [], - "GpuBlendOperation": [], - "GpuBlendState": [], - "GpuBuffer": [], - "GpuBufferBinding": [], - "GpuBufferBindingLayout": [], - "GpuBufferBindingType": [], - "GpuBufferDescriptor": [], - "GpuBufferMapState": [], - "GpuCanvasAlphaMode": [], - "GpuCanvasConfiguration": [], - "GpuCanvasContext": [], - "GpuCanvasToneMapping": [], - "GpuCanvasToneMappingMode": [], - "GpuColorDict": [], - "GpuColorTargetState": [], - "GpuCommandBuffer": [], - "GpuCommandBufferDescriptor": [], - "GpuCommandEncoder": [], - "GpuCommandEncoderDescriptor": [], - "GpuCompareFunction": [], - "GpuCompilationInfo": [], - "GpuCompilationMessage": [], - "GpuCompilationMessageType": [], - "GpuComputePassDescriptor": [], - "GpuComputePassEncoder": [], - "GpuComputePassTimestampWrites": [], - "GpuComputePipeline": [], - "GpuComputePipelineDescriptor": [], - "GpuCopyExternalImageDestInfo": [], - "GpuCopyExternalImageSourceInfo": [], - "GpuCullMode": [], - "GpuDepthStencilState": [], - "GpuDevice": [ - "EventTarget" - ], - "GpuDeviceDescriptor": [], - "GpuDeviceLostInfo": [], - "GpuDeviceLostReason": [], - "GpuError": [], - "GpuErrorFilter": [], - "GpuExtent3dDict": [], - "GpuExternalTexture": [], - "GpuExternalTextureBindingLayout": [], - "GpuExternalTextureDescriptor": [], - "GpuFeatureName": [], - "GpuFilterMode": [], - "GpuFragmentState": [], - "GpuFrontFace": [], - "GpuIndexFormat": [], - "GpuInternalError": [ - "GpuError" - ], - "GpuLoadOp": [], - "GpuMipmapFilterMode": [], - "GpuMultisampleState": [], - "GpuObjectDescriptorBase": [], - "GpuOrigin2dDict": [], - "GpuOrigin3dDict": [], - "GpuOutOfMemoryError": [ - "GpuError" - ], - "GpuPipelineDescriptorBase": [], - "GpuPipelineError": [ - "DomException" - ], - "GpuPipelineErrorInit": [], - "GpuPipelineErrorReason": [], - "GpuPipelineLayout": [], - "GpuPipelineLayoutDescriptor": [], - "GpuPowerPreference": [], - "GpuPrimitiveState": [], - "GpuPrimitiveTopology": [], - "GpuProgrammableStage": [], - "GpuQuerySet": [], - "GpuQuerySetDescriptor": [], - "GpuQueryType": [], - "GpuQueue": [], - "GpuQueueDescriptor": [], - "GpuRenderBundle": [], - "GpuRenderBundleDescriptor": [], - "GpuRenderBundleEncoder": [], - "GpuRenderBundleEncoderDescriptor": [], - "GpuRenderPassColorAttachment": [], - "GpuRenderPassDepthStencilAttachment": [], - "GpuRenderPassDescriptor": [], - "GpuRenderPassEncoder": [], - "GpuRenderPassLayout": [], - "GpuRenderPassTimestampWrites": [], - "GpuRenderPipeline": [], - "GpuRenderPipelineDescriptor": [], - "GpuRequestAdapterOptions": [], - "GpuSampler": [], - "GpuSamplerBindingLayout": [], - "GpuSamplerBindingType": [], - "GpuSamplerDescriptor": [], - "GpuShaderModule": [], - "GpuShaderModuleCompilationHint": [], - "GpuShaderModuleDescriptor": [], - "GpuStencilFaceState": [], - "GpuStencilOperation": [], - "GpuStorageTextureAccess": [], - "GpuStorageTextureBindingLayout": [], - "GpuStoreOp": [], - "GpuSupportedFeatures": [], - "GpuSupportedLimits": [], - "GpuTexelCopyBufferInfo": [], - "GpuTexelCopyBufferLayout": [], - "GpuTexelCopyTextureInfo": [], - "GpuTexture": [], - "GpuTextureAspect": [], - "GpuTextureBindingLayout": [], - "GpuTextureDescriptor": [], - "GpuTextureDimension": [], - "GpuTextureFormat": [], - "GpuTextureSampleType": [], - "GpuTextureView": [], - "GpuTextureViewDescriptor": [], - "GpuTextureViewDimension": [], - "GpuUncapturedErrorEvent": [ - "Event" - ], - "GpuUncapturedErrorEventInit": [], - "GpuValidationError": [ - "GpuError" - ], - "GpuVertexAttribute": [], - "GpuVertexBufferLayout": [], - "GpuVertexFormat": [], - "GpuVertexState": [], - "GpuVertexStepMode": [], - "GroupedHistoryEventInit": [], - "HalfOpenInfoDict": [], - "HardwareAcceleration": [], - "HashChangeEvent": [ - "Event" - ], - "HashChangeEventInit": [], - "Headers": [], - "HeadersGuardEnum": [], - "Hid": [ - "EventTarget" - ], - "HidCollectionInfo": [], - "HidConnectionEvent": [ - "Event" - ], - "HidConnectionEventInit": [], - "HidDevice": [ - "EventTarget" - ], - "HidDeviceFilter": [], - "HidDeviceRequestOptions": [], - "HidInputReportEvent": [ - "Event" - ], - "HidInputReportEventInit": [], - "HidReportInfo": [], - "HidReportItem": [], - "HidUnitSystem": [], - "HiddenPluginEventInit": [], - "History": [], - "HitRegionOptions": [], - "HkdfParams": [], - "HmacDerivedKeyParams": [], - "HmacImportParams": [], - "HmacKeyAlgorithm": [], - "HmacKeyGenParams": [], - "HtmlAllCollection": [], - "HtmlAnchorElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlAreaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlAudioElement": [ - "Element", - "EventTarget", - "HtmlElement", - "HtmlMediaElement", - "Node" - ], - "HtmlBaseElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlBodyElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlBrElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlButtonElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlCanvasElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlCollection": [], - "HtmlDListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDataElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDataListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDetailsElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDialogElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDirectoryElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDivElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDocument": [ - "Document", - "EventTarget", - "Node" - ], - "HtmlElement": [ - "Element", - "EventTarget", - "Node" - ], - "HtmlEmbedElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFieldSetElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFontElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFormControlsCollection": [ - "HtmlCollection" - ], - "HtmlFormElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFrameElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFrameSetElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHeadElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHeadingElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHrElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHtmlElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlIFrameElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlImageElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlInputElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLabelElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLegendElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLiElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLinkElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMapElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMediaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMenuElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMenuItemElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMetaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMeterElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlModElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlObjectElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOptGroupElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOptionElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOptionsCollection": [ - "HtmlCollection" - ], - "HtmlOutputElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlParagraphElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlParamElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlPictureElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlPreElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlProgressElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlQuoteElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlScriptElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSelectElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSlotElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSourceElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSpanElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlStyleElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableCaptionElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableCellElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableColElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableRowElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableSectionElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTemplateElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTextAreaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTimeElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTitleElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTrackElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlUListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlUnknownElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlVideoElement": [ - "Element", - "EventTarget", - "HtmlElement", - "HtmlMediaElement", - "Node" - ], - "HttpConnDict": [], - "HttpConnInfo": [], - "HttpConnectionElement": [], - "IdbCursor": [], - "IdbCursorDirection": [], - "IdbCursorWithValue": [ - "IdbCursor" - ], - "IdbDatabase": [ - "EventTarget" - ], - "IdbFactory": [], - "IdbFileHandle": [ - "EventTarget" - ], - "IdbFileMetadataParameters": [], - "IdbFileRequest": [ - "DomRequest", - "EventTarget" - ], - "IdbIndex": [], - "IdbIndexParameters": [], - "IdbKeyRange": [], - "IdbLocaleAwareKeyRange": [ - "IdbKeyRange" - ], - "IdbMutableFile": [ - "EventTarget" - ], - "IdbObjectStore": [], - "IdbObjectStoreParameters": [], - "IdbOpenDbOptions": [], - "IdbOpenDbRequest": [ - "EventTarget", - "IdbRequest" - ], - "IdbRequest": [ - "EventTarget" - ], - "IdbRequestReadyState": [], - "IdbTransaction": [ - "EventTarget" - ], - "IdbTransactionDurability": [], - "IdbTransactionMode": [], - "IdbTransactionOptions": [], - "IdbVersionChangeEvent": [ - "Event" - ], - "IdbVersionChangeEventInit": [], - "IdleDeadline": [], - "IdleRequestOptions": [], - "IirFilterNode": [ - "AudioNode", - "EventTarget" - ], - "IirFilterOptions": [], - "ImageBitmap": [], - "ImageBitmapOptions": [], - "ImageBitmapRenderingContext": [], - "ImageCapture": [], - "ImageCaptureError": [], - "ImageCaptureErrorEvent": [ - "Event" - ], - "ImageCaptureErrorEventInit": [], - "ImageData": [], - "ImageDecodeOptions": [], - "ImageDecodeResult": [], - "ImageDecoder": [], - "ImageDecoderInit": [], - "ImageEncodeOptions": [], - "ImageOrientation": [], - "ImageTrack": [ - "EventTarget" - ], - "ImageTrackList": [], - "InputDeviceInfo": [ - "MediaDeviceInfo" - ], - "InputEvent": [ - "Event", - "UiEvent" - ], - "InputEventInit": [], - "IntersectionObserver": [], - "IntersectionObserverEntry": [], - "IntersectionObserverEntryInit": [], - "IntersectionObserverInit": [], - "IntlUtils": [], - "IsInputPendingOptions": [], - "IterableKeyAndValueResult": [], - "IterableKeyOrValueResult": [], - "IterationCompositeOperation": [], - "JsonWebKey": [], - "KeyAlgorithm": [], - "KeyEvent": [], - "KeyFrameRequestEvent": [ - "Event" - ], - "KeyIdsInitData": [], - "KeyboardEvent": [ - "Event", - "UiEvent" - ], - "KeyboardEventInit": [], - "KeyframeAnimationOptions": [], - "KeyframeEffect": [ - "AnimationEffect" - ], - "KeyframeEffectOptions": [], - "L10nElement": [], - "L10nValue": [], - "LargeBlobSupport": [], - "LatencyMode": [], - "LifecycleCallbacks": [], - "LineAlignSetting": [], - "ListBoxObject": [], - "LocalMediaStream": [ - "EventTarget", - "MediaStream" - ], - "LocaleInfo": [], - "Location": [], - "Lock": [], - "LockInfo": [], - "LockManager": [], - "LockManagerSnapshot": [], - "LockMode": [], - "LockOptions": [], - "MathMlElement": [ - "Element", - "EventTarget", - "Node" - ], - "MediaCapabilities": [], - "MediaCapabilitiesInfo": [], - "MediaConfiguration": [], - "MediaDecodingConfiguration": [], - "MediaDecodingType": [], - "MediaDeviceInfo": [], - "MediaDeviceKind": [], - "MediaDevices": [ - "EventTarget" - ], - "MediaElementAudioSourceNode": [ - "AudioNode", - "EventTarget" - ], - "MediaElementAudioSourceOptions": [], - "MediaEncodingConfiguration": [], - "MediaEncodingType": [], - "MediaEncryptedEvent": [ - "Event" - ], - "MediaError": [], - "MediaImage": [], - "MediaKeyError": [ - "Event" - ], - "MediaKeyMessageEvent": [ - "Event" - ], - "MediaKeyMessageEventInit": [], - "MediaKeyMessageType": [], - "MediaKeyNeededEventInit": [], - "MediaKeySession": [ - "EventTarget" - ], - "MediaKeySessionType": [], - "MediaKeyStatus": [], - "MediaKeyStatusMap": [], - "MediaKeySystemAccess": [], - "MediaKeySystemConfiguration": [], - "MediaKeySystemMediaCapability": [], - "MediaKeySystemStatus": [], - "MediaKeys": [], - "MediaKeysPolicy": [], - "MediaKeysRequirement": [], - "MediaList": [], - "MediaMetadata": [], - "MediaMetadataInit": [], - "MediaPositionState": [], - "MediaQueryList": [ - "EventTarget" - ], - "MediaQueryListEvent": [ - "Event" - ], - "MediaQueryListEventInit": [], - "MediaRecorder": [ - "EventTarget" - ], - "MediaRecorderErrorEvent": [ - "Event" - ], - "MediaRecorderErrorEventInit": [], - "MediaRecorderOptions": [], - "MediaSession": [], - "MediaSessionAction": [], - "MediaSessionActionDetails": [], - "MediaSessionPlaybackState": [], - "MediaSource": [ - "EventTarget" - ], - "MediaSourceEndOfStreamError": [], - "MediaSourceEnum": [], - "MediaSourceReadyState": [], - "MediaStream": [ - "EventTarget" - ], - "MediaStreamAudioDestinationNode": [ - "AudioNode", - "EventTarget" - ], - "MediaStreamAudioSourceNode": [ - "AudioNode", - "EventTarget" - ], - "MediaStreamAudioSourceOptions": [], - "MediaStreamConstraints": [], - "MediaStreamError": [], - "MediaStreamEvent": [ - "Event" - ], - "MediaStreamEventInit": [], - "MediaStreamTrack": [ - "EventTarget" - ], - "MediaStreamTrackEvent": [ - "Event" - ], - "MediaStreamTrackEventInit": [], - "MediaStreamTrackGenerator": [ - "EventTarget", - "MediaStreamTrack" - ], - "MediaStreamTrackGeneratorInit": [], - "MediaStreamTrackProcessor": [], - "MediaStreamTrackProcessorInit": [], - "MediaStreamTrackState": [], - "MediaTrackCapabilities": [], - "MediaTrackConstraintSet": [], - "MediaTrackConstraints": [], - "MediaTrackSettings": [], - "MediaTrackSupportedConstraints": [], - "MemoryAttribution": [], - "MemoryAttributionContainer": [], - "MemoryBreakdownEntry": [], - "MemoryMeasurement": [], - "MessageChannel": [], - "MessageEvent": [ - "Event" - ], - "MessageEventInit": [], - "MessagePort": [ - "EventTarget" - ], - "MidiAccess": [ - "EventTarget" - ], - "MidiConnectionEvent": [ - "Event" - ], - "MidiConnectionEventInit": [], - "MidiInput": [ - "EventTarget", - "MidiPort" - ], - "MidiInputMap": [], - "MidiMessageEvent": [ - "Event" - ], - "MidiMessageEventInit": [], - "MidiOptions": [], - "MidiOutput": [ - "EventTarget", - "MidiPort" - ], - "MidiOutputMap": [], - "MidiPort": [ - "EventTarget" - ], - "MidiPortConnectionState": [], - "MidiPortDeviceState": [], - "MidiPortType": [], - "MimeType": [], - "MimeTypeArray": [], - "MouseEvent": [ - "Event", - "UiEvent" - ], - "MouseEventInit": [], - "MouseScrollEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "MozDebug": [], - "MutationEvent": [ - "Event" - ], - "MutationObserver": [], - "MutationObserverInit": [], - "MutationObservingInfo": [], - "MutationRecord": [], - "NamedNodeMap": [], - "NativeOsFileReadOptions": [], - "NativeOsFileWriteAtomicOptions": [], - "NavigationType": [], - "Navigator": [], - "NavigatorAutomationInformation": [], - "NavigatorUaBrandVersion": [], - "NavigatorUaData": [], - "NetworkCommandOptions": [], - "NetworkInformation": [ - "EventTarget" - ], - "NetworkResultOptions": [], - "Node": [ - "EventTarget" - ], - "NodeFilter": [], - "NodeIterator": [], - "NodeList": [], - "Notification": [ - "EventTarget" - ], - "NotificationAction": [], - "NotificationDirection": [], - "NotificationEvent": [ - "Event", - "ExtendableEvent" - ], - "NotificationEventInit": [], - "NotificationOptions": [], - "NotificationPermission": [], - "ObserverCallback": [], - "OesElementIndexUint": [], - "OesStandardDerivatives": [], - "OesTextureFloat": [], - "OesTextureFloatLinear": [], - "OesTextureHalfFloat": [], - "OesTextureHalfFloatLinear": [], - "OesVertexArrayObject": [], - "OfflineAudioCompletionEvent": [ - "Event" - ], - "OfflineAudioCompletionEventInit": [], - "OfflineAudioContext": [ - "BaseAudioContext", - "EventTarget" - ], - "OfflineAudioContextOptions": [], - "OfflineResourceList": [ - "EventTarget" - ], - "OffscreenCanvas": [ - "EventTarget" - ], - "OffscreenCanvasRenderingContext2d": [], - "OpenFilePickerOptions": [], - "OpenWindowEventDetail": [], - "OptionalEffectTiming": [], - "OrientationLockType": [], - "OrientationType": [], - "OscillatorNode": [ - "AudioNode", - "AudioScheduledSourceNode", - "EventTarget" - ], - "OscillatorOptions": [], - "OscillatorType": [], - "OverSampleType": [], - "OvrMultiview2": [], - "PageTransitionEvent": [ - "Event" - ], - "PageTransitionEventInit": [], - "PaintRequest": [], - "PaintRequestList": [], - "PaintWorkletGlobalScope": [ - "WorkletGlobalScope" - ], - "PannerNode": [ - "AudioNode", - "EventTarget" - ], - "PannerOptions": [], - "PanningModelType": [], - "ParityType": [], - "Path2d": [], - "PaymentAddress": [], - "PaymentComplete": [], - "PaymentMethodChangeEvent": [ - "Event", - "PaymentRequestUpdateEvent" - ], - "PaymentMethodChangeEventInit": [], - "PaymentRequestUpdateEvent": [ - "Event" - ], - "PaymentRequestUpdateEventInit": [], - "PaymentResponse": [], - "Pbkdf2Params": [], - "PcImplIceConnectionState": [], - "PcImplIceGatheringState": [], - "PcImplSignalingState": [], - "PcObserverStateType": [], - "Performance": [ - "EventTarget" - ], - "PerformanceEntry": [], - "PerformanceEntryEventInit": [], - "PerformanceEntryFilterOptions": [], - "PerformanceMark": [ - "PerformanceEntry" - ], - "PerformanceMeasure": [ - "PerformanceEntry" - ], - "PerformanceNavigation": [], - "PerformanceNavigationTiming": [ - "PerformanceEntry", - "PerformanceResourceTiming" - ], - "PerformanceObserver": [], - "PerformanceObserverEntryList": [], - "PerformanceObserverInit": [], - "PerformanceResourceTiming": [ - "PerformanceEntry" - ], - "PerformanceServerTiming": [], - "PerformanceTiming": [], - "PeriodicWave": [], - "PeriodicWaveConstraints": [], - "PeriodicWaveOptions": [], - "PermissionDescriptor": [], - "PermissionName": [], - "PermissionState": [], - "PermissionStatus": [ - "EventTarget" - ], - "Permissions": [], - "PlaneLayout": [], - "PlaybackDirection": [], - "Plugin": [], - "PluginArray": [], - "PluginCrashedEventInit": [], - "PointerEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "PointerEventInit": [], - "PopStateEvent": [ - "Event" - ], - "PopStateEventInit": [], - "PopupBlockedEvent": [ - "Event" - ], - "PopupBlockedEventInit": [], - "Position": [], - "PositionAlignSetting": [], - "PositionError": [], - "PositionOptions": [], - "PremultiplyAlpha": [], - "Presentation": [], - "PresentationAvailability": [ - "EventTarget" - ], - "PresentationConnection": [ - "EventTarget" - ], - "PresentationConnectionAvailableEvent": [ - "Event" - ], - "PresentationConnectionAvailableEventInit": [], - "PresentationConnectionBinaryType": [], - "PresentationConnectionCloseEvent": [ - "Event" - ], - "PresentationConnectionCloseEventInit": [], - "PresentationConnectionClosedReason": [], - "PresentationConnectionList": [ - "EventTarget" - ], - "PresentationConnectionState": [], - "PresentationReceiver": [], - "PresentationRequest": [ - "EventTarget" - ], - "PresentationStyle": [], - "ProcessingInstruction": [ - "CharacterData", - "EventTarget", - "Node" - ], - "ProfileTimelineLayerRect": [], - "ProfileTimelineMarker": [], - "ProfileTimelineMessagePortOperationType": [], - "ProfileTimelineStackFrame": [], - "ProfileTimelineWorkerOperationType": [], - "ProgressEvent": [ - "Event" - ], - "ProgressEventInit": [], - "PromiseNativeHandler": [], - "PromiseRejectionEvent": [ - "Event" - ], - "PromiseRejectionEventInit": [], - "PublicKeyCredential": [ - "Credential" - ], - "PublicKeyCredentialCreationOptions": [], - "PublicKeyCredentialCreationOptionsJson": [], - "PublicKeyCredentialDescriptor": [], - "PublicKeyCredentialDescriptorJson": [], - "PublicKeyCredentialEntity": [], - "PublicKeyCredentialHints": [], - "PublicKeyCredentialParameters": [], - "PublicKeyCredentialRequestOptions": [], - "PublicKeyCredentialRequestOptionsJson": [], - "PublicKeyCredentialRpEntity": [], - "PublicKeyCredentialType": [], - "PublicKeyCredentialUserEntity": [], - "PublicKeyCredentialUserEntityJson": [], - "PushEncryptionKeyName": [], - "PushEvent": [ - "Event", - "ExtendableEvent" - ], - "PushEventInit": [], - "PushManager": [], - "PushMessageData": [], - "PushPermissionState": [], - "PushSubscription": [], - "PushSubscriptionInit": [], - "PushSubscriptionJson": [], - "PushSubscriptionKeys": [], - "PushSubscriptionOptions": [], - "PushSubscriptionOptionsInit": [], - "QueryOptions": [], - "QueuingStrategy": [], - "QueuingStrategyInit": [], - "RadioNodeList": [ - "NodeList" - ], - "Range": [], - "RcwnPerfStats": [], - "RcwnStatus": [], - "ReadableByteStreamController": [], - "ReadableStream": [], - "ReadableStreamByobReader": [], - "ReadableStreamByobRequest": [], - "ReadableStreamDefaultController": [], - "ReadableStreamDefaultReader": [], - "ReadableStreamGetReaderOptions": [], - "ReadableStreamIteratorOptions": [], - "ReadableStreamReadResult": [], - "ReadableStreamReaderMode": [], - "ReadableStreamType": [], - "ReadableWritablePair": [], - "RecordingState": [], - "ReferrerPolicy": [], - "RegisterRequest": [], - "RegisterResponse": [], - "RegisteredKey": [], - "RegistrationOptions": [], - "RegistrationResponseJson": [], - "Request": [], - "RequestCache": [], - "RequestCredentials": [], - "RequestDestination": [], - "RequestDeviceOptions": [], - "RequestInit": [], - "RequestMediaKeySystemAccessNotification": [], - "RequestMode": [], - "RequestRedirect": [], - "ResidentKeyRequirement": [], - "ResizeObserver": [], - "ResizeObserverBoxOptions": [], - "ResizeObserverEntry": [], - "ResizeObserverOptions": [], - "ResizeObserverSize": [], - "ResizeQuality": [], - "Response": [], - "ResponseInit": [], - "ResponseType": [], - "RsaHashedImportParams": [], - "RsaOaepParams": [], - "RsaOtherPrimesInfo": [], - "RsaPssParams": [], - "RtcAnswerOptions": [], - "RtcBundlePolicy": [], - "RtcCertificate": [], - "RtcCertificateExpiration": [], - "RtcCodecStats": [], - "RtcConfiguration": [], - "RtcDataChannel": [ - "EventTarget" - ], - "RtcDataChannelEvent": [ - "Event" - ], - "RtcDataChannelEventInit": [], - "RtcDataChannelInit": [], - "RtcDataChannelState": [], - "RtcDataChannelType": [], - "RtcDegradationPreference": [], - "RtcEncodedAudioFrame": [], - "RtcEncodedAudioFrameMetadata": [], - "RtcEncodedAudioFrameOptions": [], - "RtcEncodedVideoFrame": [], - "RtcEncodedVideoFrameMetadata": [], - "RtcEncodedVideoFrameOptions": [], - "RtcEncodedVideoFrameType": [], - "RtcFecParameters": [], - "RtcIceCandidate": [], - "RtcIceCandidateInit": [], - "RtcIceCandidatePairStats": [], - "RtcIceCandidateStats": [], - "RtcIceComponentStats": [], - "RtcIceConnectionState": [], - "RtcIceCredentialType": [], - "RtcIceGatheringState": [], - "RtcIceServer": [], - "RtcIceTransportPolicy": [], - "RtcIdentityAssertion": [], - "RtcIdentityAssertionResult": [], - "RtcIdentityProvider": [], - "RtcIdentityProviderDetails": [], - "RtcIdentityProviderOptions": [], - "RtcIdentityProviderRegistrar": [], - "RtcIdentityValidationResult": [], - "RtcInboundRtpStreamStats": [], - "RtcMediaStreamStats": [], - "RtcMediaStreamTrackStats": [], - "RtcOfferAnswerOptions": [], - "RtcOfferOptions": [], - "RtcOutboundRtpStreamStats": [], - "RtcPeerConnection": [ - "EventTarget" - ], - "RtcPeerConnectionIceErrorEvent": [ - "Event" - ], - "RtcPeerConnectionIceEvent": [ - "Event" - ], - "RtcPeerConnectionIceEventInit": [], - "RtcPeerConnectionState": [], - "RtcPriorityType": [], - "RtcRtcpParameters": [], - "RtcRtpCapabilities": [], - "RtcRtpCodecCapability": [], - "RtcRtpCodecParameters": [], - "RtcRtpContributingSource": [], - "RtcRtpEncodingParameters": [], - "RtcRtpHeaderExtensionCapability": [], - "RtcRtpHeaderExtensionParameters": [], - "RtcRtpParameters": [], - "RtcRtpReceiver": [], - "RtcRtpScriptTransform": [], - "RtcRtpScriptTransformer": [ - "EventTarget" - ], - "RtcRtpSender": [], - "RtcRtpSourceEntry": [], - "RtcRtpSourceEntryType": [], - "RtcRtpSynchronizationSource": [], - "RtcRtpTransceiver": [], - "RtcRtpTransceiverDirection": [], - "RtcRtpTransceiverInit": [], - "RtcRtxParameters": [], - "RtcSdpType": [], - "RtcSessionDescription": [], - "RtcSessionDescriptionInit": [], - "RtcSignalingState": [], - "RtcStats": [], - "RtcStatsIceCandidatePairState": [], - "RtcStatsIceCandidateType": [], - "RtcStatsReport": [], - "RtcStatsReportInternal": [], - "RtcStatsType": [], - "RtcTrackEvent": [ - "Event" - ], - "RtcTrackEventInit": [], - "RtcTransformEvent": [ - "Event" - ], - "RtcTransportStats": [], - "RtcdtmfSender": [ - "EventTarget" - ], - "RtcdtmfToneChangeEvent": [ - "Event" - ], - "RtcdtmfToneChangeEventInit": [], - "RtcrtpContributingSourceStats": [], - "RtcrtpStreamStats": [], - "SFrameTransform": [ - "EventTarget" - ], - "SFrameTransformErrorEvent": [ - "Event" - ], - "SFrameTransformErrorEventInit": [], - "SFrameTransformErrorEventType": [], - "SFrameTransformOptions": [], - "SFrameTransformRole": [], - "SaveFilePickerOptions": [], - "Scheduler": [], - "SchedulerPostTaskOptions": [], - "Scheduling": [], - "Screen": [ - "EventTarget" - ], - "ScreenColorGamut": [], - "ScreenLuminance": [], - "ScreenOrientation": [ - "EventTarget" - ], - "ScriptProcessorNode": [ - "AudioNode", - "EventTarget" - ], - "ScrollAreaEvent": [ - "Event", - "UiEvent" - ], - "ScrollBehavior": [], - "ScrollBoxObject": [], - "ScrollIntoViewOptions": [], - "ScrollLogicalPosition": [], - "ScrollOptions": [], - "ScrollRestoration": [], - "ScrollSetting": [], - "ScrollState": [], - "ScrollToOptions": [], - "ScrollViewChangeEventInit": [], - "SecurityPolicyViolationEvent": [ - "Event" - ], - "SecurityPolicyViolationEventDisposition": [], - "SecurityPolicyViolationEventInit": [], - "Selection": [], - "SelectionMode": [], - "Serial": [ - "EventTarget" - ], - "SerialInputSignals": [], - "SerialOptions": [], - "SerialOutputSignals": [], - "SerialPort": [ - "EventTarget" - ], - "SerialPortFilter": [], - "SerialPortInfo": [], - "SerialPortRequestOptions": [], - "ServerSocketOptions": [], - "ServiceWorker": [ - "EventTarget" - ], - "ServiceWorkerContainer": [ - "EventTarget" - ], - "ServiceWorkerGlobalScope": [ - "EventTarget", - "WorkerGlobalScope" - ], - "ServiceWorkerRegistration": [ - "EventTarget" - ], - "ServiceWorkerState": [], - "ServiceWorkerUpdateViaCache": [], - "ShadowRoot": [ - "DocumentFragment", - "EventTarget", - "Node" - ], - "ShadowRootInit": [], - "ShadowRootMode": [], - "ShareData": [], - "SharedWorker": [ - "EventTarget" - ], - "SharedWorkerGlobalScope": [ - "EventTarget", - "WorkerGlobalScope" - ], - "SignResponse": [], - "SocketElement": [], - "SocketOptions": [], - "SocketReadyState": [], - "SocketsDict": [], - "SourceBuffer": [ - "EventTarget" - ], - "SourceBufferAppendMode": [], - "SourceBufferList": [ - "EventTarget" - ], - "SpeechGrammar": [], - "SpeechGrammarList": [], - "SpeechRecognition": [ - "EventTarget" - ], - "SpeechRecognitionAlternative": [], - "SpeechRecognitionError": [ - "Event" - ], - "SpeechRecognitionErrorCode": [], - "SpeechRecognitionErrorInit": [], - "SpeechRecognitionEvent": [ - "Event" - ], - "SpeechRecognitionEventInit": [], - "SpeechRecognitionResult": [], - "SpeechRecognitionResultList": [], - "SpeechSynthesis": [ - "EventTarget" - ], - "SpeechSynthesisErrorCode": [], - "SpeechSynthesisErrorEvent": [ - "Event", - "SpeechSynthesisEvent" - ], - "SpeechSynthesisErrorEventInit": [], - "SpeechSynthesisEvent": [ - "Event" - ], - "SpeechSynthesisEventInit": [], - "SpeechSynthesisUtterance": [ - "EventTarget" - ], - "SpeechSynthesisVoice": [], - "StereoPannerNode": [ - "AudioNode", - "EventTarget" - ], - "StereoPannerOptions": [], - "Storage": [], - "StorageEstimate": [], - "StorageEvent": [ - "Event" - ], - "StorageEventInit": [], - "StorageManager": [], - "StorageType": [], - "StreamPipeOptions": [], - "StyleRuleChangeEventInit": [], - "StyleSheet": [], - "StyleSheetApplicableStateChangeEventInit": [], - "StyleSheetChangeEventInit": [], - "StyleSheetList": [], - "SubmitEvent": [ - "Event" - ], - "SubmitEventInit": [], - "SubtleCrypto": [], - "SupportedType": [], - "SvcOutputMetadata": [], - "SvgAngle": [], - "SvgAnimateElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgAnimateMotionElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgAnimateTransformElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgAnimatedAngle": [], - "SvgAnimatedBoolean": [], - "SvgAnimatedEnumeration": [], - "SvgAnimatedInteger": [], - "SvgAnimatedLength": [], - "SvgAnimatedLengthList": [], - "SvgAnimatedNumber": [], - "SvgAnimatedNumberList": [], - "SvgAnimatedPreserveAspectRatio": [], - "SvgAnimatedRect": [], - "SvgAnimatedString": [], - "SvgAnimatedTransformList": [], - "SvgAnimationElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgBoundingBoxOptions": [], - "SvgCircleElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgClipPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgComponentTransferFunctionElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgDefsElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgDescElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgElement": [ - "Element", - "EventTarget", - "Node" - ], - "SvgEllipseElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgFilterElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgForeignObjectElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgGeometryElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgGradientElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgGraphicsElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgImageElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgLength": [], - "SvgLengthList": [], - "SvgLineElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgLinearGradientElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGradientElement" - ], - "SvgMarkerElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgMaskElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgMatrix": [], - "SvgMetadataElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgNumber": [], - "SvgNumberList": [], - "SvgPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgPathSeg": [], - "SvgPathSegArcAbs": [ - "SvgPathSeg" - ], - "SvgPathSegArcRel": [ - "SvgPathSeg" - ], - "SvgPathSegClosePath": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicRel": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicSmoothAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicSmoothRel": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticRel": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticSmoothAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticSmoothRel": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoAbs": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoHorizontalAbs": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoHorizontalRel": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoRel": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoVerticalAbs": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoVerticalRel": [ - "SvgPathSeg" - ], - "SvgPathSegList": [], - "SvgPathSegMovetoAbs": [ - "SvgPathSeg" - ], - "SvgPathSegMovetoRel": [ - "SvgPathSeg" - ], - "SvgPatternElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgPoint": [], - "SvgPointList": [], - "SvgPolygonElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgPolylineElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgPreserveAspectRatio": [], - "SvgRadialGradientElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGradientElement" - ], - "SvgRect": [], - "SvgRectElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgScriptElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgSetElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgStopElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgStringList": [], - "SvgStyleElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgSwitchElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgSymbolElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgTextContentElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgTextElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement", - "SvgTextPositioningElement" - ], - "SvgTextPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement" - ], - "SvgTextPositioningElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement" - ], - "SvgTitleElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgTransform": [], - "SvgTransformList": [], - "SvgUnitTypes": [], - "SvgUseElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgViewElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgZoomAndPan": [], - "SvgaElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgfeBlendElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeColorMatrixElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeComponentTransferElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeCompositeElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeConvolveMatrixElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDiffuseLightingElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDisplacementMapElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDistantLightElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDropShadowElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeFloodElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeFuncAElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeFuncBElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeFuncGElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeFuncRElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeGaussianBlurElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeImageElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeMergeElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeMergeNodeElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeMorphologyElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeOffsetElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfePointLightElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeSpecularLightingElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeSpotLightElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeTileElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeTurbulenceElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvggElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgmPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgsvgElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgtSpanElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement", - "SvgTextPositioningElement" - ], - "TaskController": [ - "AbortController" - ], - "TaskControllerInit": [], - "TaskPriority": [], - "TaskPriorityChangeEvent": [ - "Event" - ], - "TaskPriorityChangeEventInit": [], - "TaskSignal": [ - "AbortSignal", - "EventTarget" - ], - "TaskSignalAnyInit": [], - "TcpReadyState": [], - "TcpServerSocket": [ - "EventTarget" - ], - "TcpServerSocketEvent": [ - "Event" - ], - "TcpServerSocketEventInit": [], - "TcpSocket": [ - "EventTarget" - ], - "TcpSocketBinaryType": [], - "TcpSocketErrorEvent": [ - "Event" - ], - "TcpSocketErrorEventInit": [], - "TcpSocketEvent": [ - "Event" - ], - "TcpSocketEventInit": [], - "Text": [ - "CharacterData", - "EventTarget", - "Node" - ], - "TextDecodeOptions": [], - "TextDecoder": [], - "TextDecoderOptions": [], - "TextEncoder": [], - "TextMetrics": [], - "TextTrack": [ - "EventTarget" - ], - "TextTrackCue": [ - "EventTarget" - ], - "TextTrackCueList": [], - "TextTrackKind": [], - "TextTrackList": [ - "EventTarget" - ], - "TextTrackMode": [], - "TimeEvent": [ - "Event" - ], - "TimeRanges": [], - "ToggleEvent": [ - "Event" - ], - "ToggleEventInit": [], - "TokenBinding": [], - "TokenBindingStatus": [], - "Touch": [], - "TouchEvent": [ - "Event", - "UiEvent" - ], - "TouchEventInit": [], - "TouchInit": [], - "TouchList": [], - "TrackEvent": [ - "Event" - ], - "TrackEventInit": [], - "TransformStream": [], - "TransformStreamDefaultController": [], - "Transformer": [], - "TransitionEvent": [ - "Event" - ], - "TransitionEventInit": [], - "Transport": [], - "TreeBoxObject": [], - "TreeCellInfo": [], - "TreeView": [], - "TreeWalker": [], - "U2f": [], - "U2fClientData": [], - "ULongRange": [], - "UaDataValues": [], - "UaLowEntropyJson": [], - "UdpMessageEventInit": [], - "UdpOptions": [], - "UiEvent": [ - "Event" - ], - "UiEventInit": [], - "UnderlyingSink": [], - "UnderlyingSource": [], - "Url": [], - "UrlSearchParams": [], - "Usb": [ - "EventTarget" - ], - "UsbAlternateInterface": [], - "UsbConfiguration": [], - "UsbConnectionEvent": [ - "Event" - ], - "UsbConnectionEventInit": [], - "UsbControlTransferParameters": [], - "UsbDevice": [], - "UsbDeviceFilter": [], - "UsbDeviceRequestOptions": [], - "UsbDirection": [], - "UsbEndpoint": [], - "UsbEndpointType": [], - "UsbInTransferResult": [], - "UsbInterface": [], - "UsbIsochronousInTransferPacket": [], - "UsbIsochronousInTransferResult": [], - "UsbIsochronousOutTransferPacket": [], - "UsbIsochronousOutTransferResult": [], - "UsbOutTransferResult": [], - "UsbPermissionDescriptor": [], - "UsbPermissionResult": [ - "EventTarget", - "PermissionStatus" - ], - "UsbPermissionStorage": [], - "UsbRecipient": [], - "UsbRequestType": [], - "UsbTransferStatus": [], - "UserActivation": [], - "UserProximityEvent": [ - "Event" - ], - "UserProximityEventInit": [], - "UserVerificationRequirement": [], - "ValidityState": [], - "ValueEvent": [ - "Event" - ], - "ValueEventInit": [], - "VideoColorPrimaries": [], - "VideoColorSpace": [], - "VideoColorSpaceInit": [], - "VideoConfiguration": [], - "VideoDecoder": [], - "VideoDecoderConfig": [], - "VideoDecoderInit": [], - "VideoDecoderSupport": [], - "VideoEncoder": [], - "VideoEncoderConfig": [], - "VideoEncoderEncodeOptions": [], - "VideoEncoderInit": [], - "VideoEncoderSupport": [], - "VideoFacingModeEnum": [], - "VideoFrame": [], - "VideoFrameBufferInit": [], - "VideoFrameCopyToOptions": [], - "VideoFrameInit": [], - "VideoMatrixCoefficients": [], - "VideoPixelFormat": [], - "VideoPlaybackQuality": [], - "VideoStreamTrack": [ - "EventTarget", - "MediaStreamTrack" - ], - "VideoTrack": [], - "VideoTrackList": [ - "EventTarget" - ], - "VideoTransferCharacteristics": [], - "ViewTransition": [], - "VisibilityState": [], - "VisualViewport": [ - "EventTarget" - ], - "VoidCallback": [], - "VrDisplay": [ - "EventTarget" - ], - "VrDisplayCapabilities": [], - "VrEye": [], - "VrEyeParameters": [], - "VrFieldOfView": [], - "VrFrameData": [], - "VrLayer": [], - "VrMockController": [], - "VrMockDisplay": [], - "VrPose": [], - "VrServiceTest": [], - "VrStageParameters": [], - "VrSubmitFrameResult": [], - "VttCue": [ - "EventTarget", - "TextTrackCue" - ], - "VttRegion": [], - "WakeLock": [], - "WakeLockSentinel": [ - "EventTarget" - ], - "WakeLockType": [], - "WatchAdvertisementsOptions": [], - "WaveShaperNode": [ - "AudioNode", - "EventTarget" - ], - "WaveShaperOptions": [], - "WebGl2RenderingContext": [], - "WebGlActiveInfo": [], - "WebGlBuffer": [], - "WebGlContextAttributes": [], - "WebGlContextEvent": [ - "Event" - ], - "WebGlContextEventInit": [], - "WebGlFramebuffer": [], - "WebGlPowerPreference": [], - "WebGlProgram": [], - "WebGlQuery": [], - "WebGlRenderbuffer": [], - "WebGlRenderingContext": [], - "WebGlSampler": [], - "WebGlShader": [], - "WebGlShaderPrecisionFormat": [], - "WebGlSync": [], - "WebGlTexture": [], - "WebGlTransformFeedback": [], - "WebGlUniformLocation": [], - "WebGlVertexArrayObject": [], - "WebKitCssMatrix": [ - "DomMatrix", - "DomMatrixReadOnly" - ], - "WebSocket": [ - "EventTarget" - ], - "WebSocketDict": [], - "WebSocketElement": [], - "WebTransport": [], - "WebTransportBidirectionalStream": [], - "WebTransportCloseInfo": [], - "WebTransportCongestionControl": [], - "WebTransportDatagramDuplexStream": [], - "WebTransportDatagramStats": [], - "WebTransportError": [ - "DomException" - ], - "WebTransportErrorOptions": [], - "WebTransportErrorSource": [], - "WebTransportHash": [], - "WebTransportOptions": [], - "WebTransportReceiveStream": [ - "ReadableStream" - ], - "WebTransportReceiveStreamStats": [], - "WebTransportReliabilityMode": [], - "WebTransportSendStream": [ - "WritableStream" - ], - "WebTransportSendStreamOptions": [], - "WebTransportSendStreamStats": [], - "WebTransportStats": [], - "WebglColorBufferFloat": [], - "WebglCompressedTextureAstc": [], - "WebglCompressedTextureAtc": [], - "WebglCompressedTextureEtc": [], - "WebglCompressedTextureEtc1": [], - "WebglCompressedTexturePvrtc": [], - "WebglCompressedTextureS3tc": [], - "WebglCompressedTextureS3tcSrgb": [], - "WebglDebugRendererInfo": [], - "WebglDebugShaders": [], - "WebglDepthTexture": [], - "WebglDrawBuffers": [], - "WebglLoseContext": [], - "WebglMultiDraw": [], - "WellKnownDirectory": [], - "WgslLanguageFeatures": [], - "WheelEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "WheelEventInit": [], - "WidevineCdmManifest": [], - "Window": [ - "EventTarget" - ], - "WindowClient": [ - "Client" - ], - "Worker": [ - "EventTarget" - ], - "WorkerDebuggerGlobalScope": [ - "EventTarget" - ], - "WorkerGlobalScope": [ - "EventTarget" - ], - "WorkerLocation": [], - "WorkerNavigator": [], - "WorkerOptions": [], - "WorkerType": [], - "Worklet": [], - "WorkletGlobalScope": [], - "WorkletOptions": [], - "WritableStream": [], - "WritableStreamDefaultController": [], - "WritableStreamDefaultWriter": [], - "WriteCommandType": [], - "WriteParams": [], - "XPathExpression": [], - "XPathNsResolver": [], - "XPathResult": [], - "XmlDocument": [ - "Document", - "EventTarget", - "Node" - ], - "XmlHttpRequest": [ - "EventTarget", - "XmlHttpRequestEventTarget" - ], - "XmlHttpRequestEventTarget": [ - "EventTarget" - ], - "XmlHttpRequestResponseType": [], - "XmlHttpRequestUpload": [ - "EventTarget", - "XmlHttpRequestEventTarget" - ], - "XmlSerializer": [], - "XrBoundedReferenceSpace": [ - "EventTarget", - "XrReferenceSpace", - "XrSpace" - ], - "XrEye": [], - "XrFrame": [], - "XrHand": [], - "XrHandJoint": [], - "XrHandedness": [], - "XrInputSource": [], - "XrInputSourceArray": [], - "XrInputSourceEvent": [ - "Event" - ], - "XrInputSourceEventInit": [], - "XrInputSourcesChangeEvent": [ - "Event" - ], - "XrInputSourcesChangeEventInit": [], - "XrJointPose": [ - "XrPose" - ], - "XrJointSpace": [ - "EventTarget", - "XrSpace" - ], - "XrLayer": [ - "EventTarget" - ], - "XrPermissionDescriptor": [], - "XrPermissionStatus": [ - "EventTarget", - "PermissionStatus" - ], - "XrPose": [], - "XrReferenceSpace": [ - "EventTarget", - "XrSpace" - ], - "XrReferenceSpaceEvent": [ - "Event" - ], - "XrReferenceSpaceEventInit": [], - "XrReferenceSpaceType": [], - "XrRenderState": [], - "XrRenderStateInit": [], - "XrRigidTransform": [], - "XrSession": [ - "EventTarget" - ], - "XrSessionEvent": [ - "Event" - ], - "XrSessionEventInit": [], - "XrSessionInit": [], - "XrSessionMode": [], - "XrSessionSupportedPermissionDescriptor": [], - "XrSpace": [ - "EventTarget" - ], - "XrSystem": [ - "EventTarget" - ], - "XrTargetRayMode": [], - "XrView": [], - "XrViewerPose": [ - "XrPose" - ], - "XrViewport": [], - "XrVisibilityState": [], - "XrWebGlLayer": [ - "EventTarget", - "XrLayer" - ], - "XrWebGlLayerInit": [], - "XsltProcessor": [], - "console": [], - "css": [], - "default": [ - "std" - ], - "gpu_buffer_usage": [], - "gpu_color_write": [], - "gpu_map_mode": [], - "gpu_shader_stage": [], - "gpu_texture_usage": [], - "std": [ - "wasm-bindgen/std", - "js-sys/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.77/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg=web_sys_unstable_apis" - ] - } - } - }, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", - "homepage": "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html", - "documentation": "https://rustwasm.github.io/wasm-bindgen/api/web_sys/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "webpki-roots", - "version": "0.26.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", - "license": "CDLA-Permissive-2.0", - "license_file": null, - "description": "Mozilla's CA root certificates for use with webpki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "rt-multi-thread" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-webpki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.102", - "kind": "dev", - "rename": "webpki", - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "x509-parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yasna", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "webpki_roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "codegen", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/tests/codegen.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "verify", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/tests/verify.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/webpki-roots", - "homepage": "https://github.com/rustls/webpki-roots", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "winapi-util", - "version": "0.1.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "A dumping ground for high level safe wrappers over windows-sys.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.48.0, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console", - "Win32_System_SystemInformation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winapi_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winapi-util-0.1.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winapi-util-0.1.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "os::windows-apis", - "external-ffi-bindings" - ], - "keywords": [ - "windows", - "windows-sys", - "util", - "win" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/winapi-util", - "homepage": "https://github.com/BurntSushi/winapi-util", - "documentation": "https://docs.rs/winapi-util", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows-core", - "version": "0.61.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Core type support for COM and Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-implement", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.60.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-interface", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-link", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-result", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-strings", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-core-0.61.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "windows-result/std", - "windows-strings/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-core-0.61.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "windows-implement", - "version": "0.60.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The implement macro for the windows crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "parsing", - "proc-macro", - "printing", - "full", - "clone-impls" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "windows_implement", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-implement-0.60.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-implement-0.60.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "windows-interface", - "version": "0.59.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The interface macro for the windows crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "parsing", - "proc-macro", - "printing", - "full", - "clone-impls" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "windows_interface", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-interface-0.59.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-interface-0.59.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "windows-link", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Linking for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_link", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-link-0.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-link-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "windows-registry", - "version": "0.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.4.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Windows registry", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-result", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-strings", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.53.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_registry", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-registry-0.4.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "windows-result/std", - "windows-strings/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-registry-0.4.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "windows-result", - "version": "0.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Windows error handling", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-link", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_result", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-result-0.3.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-result-0.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "windows-strings", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Windows string types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-link", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_strings", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-strings-0.3.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-strings-0.3.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "windows-strings", - "version": "0.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Windows string types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-link", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_strings", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-strings-0.4.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-strings-0.4.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "windows-sys", - "version": "0.52.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Rust for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-sys-0.52.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "Wdk": [], - "Wdk_Foundation": [ - "Wdk" - ], - "Wdk_Graphics": [ - "Wdk" - ], - "Wdk_Graphics_Direct3D": [ - "Wdk_Graphics" - ], - "Wdk_Storage": [ - "Wdk" - ], - "Wdk_Storage_FileSystem": [ - "Wdk_Storage" - ], - "Wdk_Storage_FileSystem_Minifilters": [ - "Wdk_Storage_FileSystem" - ], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_IO": [ - "Wdk_System" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Wdk_System_Registry": [ - "Wdk_System" - ], - "Wdk_System_SystemInformation": [ - "Wdk_System" - ], - "Wdk_System_SystemServices": [ - "Wdk_System" - ], - "Wdk_System_Threading": [ - "Wdk_System" - ], - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_GdiPlus": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_Nvme": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug_Extensions": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_Variant": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [], - "docs": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-sys-0.52.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows-sys", - "version": "0.59.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Rust for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-sys-0.59.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": false - } - ], - "features": { - "Wdk": [ - "Win32_Foundation" - ], - "Wdk_Devices": [ - "Wdk" - ], - "Wdk_Devices_Bluetooth": [ - "Wdk_Devices" - ], - "Wdk_Devices_HumanInterfaceDevice": [ - "Wdk_Devices" - ], - "Wdk_Foundation": [ - "Wdk" - ], - "Wdk_Graphics": [ - "Wdk" - ], - "Wdk_Graphics_Direct3D": [ - "Wdk_Graphics" - ], - "Wdk_NetworkManagement": [ - "Wdk" - ], - "Wdk_NetworkManagement_Ndis": [ - "Wdk_NetworkManagement" - ], - "Wdk_NetworkManagement_WindowsFilteringPlatform": [ - "Wdk_NetworkManagement" - ], - "Wdk_Storage": [ - "Wdk" - ], - "Wdk_Storage_FileSystem": [ - "Wdk_Storage" - ], - "Wdk_Storage_FileSystem_Minifilters": [ - "Wdk_Storage_FileSystem" - ], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_IO": [ - "Wdk_System" - ], - "Wdk_System_Memory": [ - "Wdk_System" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Wdk_System_Registry": [ - "Wdk_System" - ], - "Wdk_System_SystemInformation": [ - "Wdk_System" - ], - "Wdk_System_SystemServices": [ - "Wdk_System" - ], - "Wdk_System_Threading": [ - "Wdk_System" - ], - "Win32": [ - "Win32_Foundation" - ], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_GdiPlus": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_Nvme": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug_Extensions": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_TraceLogging": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_Variant": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [], - "docs": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-sys-0.59.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows-targets", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import libs for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows_aarch64_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "aarch64-pc-windows-gnullvm", - "registry": null - }, - { - "name": "windows_x86_64_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_aarch64_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_x86_64_gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "i686-pc-windows-gnullvm", - "registry": null - }, - { - "name": "windows_x86_64_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "x86_64-pc-windows-gnullvm", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_targets", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-targets-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-targets-0.52.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows-targets", - "version": "0.53.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import libs for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows_aarch64_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.53.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "aarch64-pc-windows-gnullvm", - "registry": null - }, - { - "name": "windows_x86_64_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.53.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_aarch64_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.53.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.53.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.53.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_x86_64_gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.53.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.53.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "i686-pc-windows-gnullvm", - "registry": null - }, - { - "name": "windows_x86_64_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.53.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "x86_64-pc-windows-gnullvm", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_targets", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-targets-0.53.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows-targets-0.53.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows_aarch64_gnullvm", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_aarch64_gnullvm", - "version": "0.53.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.53.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.53.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.53.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_gnullvm-0.53.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows_aarch64_msvc", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_aarch64_msvc", - "version": "0.53.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.53.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.53.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.53.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_aarch64_msvc-0.53.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows_i686_gnu", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_gnu", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_i686_gnu", - "version": "0.53.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.53.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_gnu", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.53.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.53.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnu-0.53.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows_i686_gnullvm", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_gnullvm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_i686_gnullvm", - "version": "0.53.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.53.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_gnullvm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.53.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.53.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_gnullvm-0.53.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows_i686_msvc", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_msvc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_i686_msvc", - "version": "0.53.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.53.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_msvc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.53.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.53.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_i686_msvc-0.53.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows_x86_64_gnu", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_x86_64_gnu", - "version": "0.53.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.53.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.53.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.53.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnu-0.53.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows_x86_64_gnullvm", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_x86_64_gnullvm", - "version": "0.53.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.53.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.53.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.53.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_gnullvm-0.53.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows_x86_64_msvc", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_x86_64_msvc", - "version": "0.53.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.53.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.53.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/windows_x86_64_msvc-0.53.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "winnow", - "version": "0.5.40", - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", - "license": "MIT", - "license_file": null, - "description": "A byte-oriented, zero-copy, parser combinators library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "terminal_size", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "circular", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "escargot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "examples" - ], - "target": null, - "registry": null - }, - { - "name": "term-transcript", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winnow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/arithmetic/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "css", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/css/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/custom_error.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/http/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ini/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/iterator.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json_iterator.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ndjson", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ndjson/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "s_expression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/s_expression/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/string/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/arithmetic/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "contains_token", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/contains_token.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "find_slice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/find_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/http/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ini/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/iter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "next_slice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/next_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "number", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/number.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "debug": [ - "dep:anstream", - "dep:anstyle", - "dep:is-terminal", - "dep:terminal_size" - ], - "default": [ - "std" - ], - "simd": [ - "dep:memchr" - ], - "std": [ - "alloc", - "memchr?/std" - ], - "unstable-doc": [ - "alloc", - "std", - "simd", - "unstable-recover" - ], - "unstable-recover": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "blob/v{{version}}/CHANGELOG.md", - "search": "blob/v.+\\..+\\..+/CHANGELOG.md" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "parsing" - ], - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "readme": "README.md", - "repository": "https://github.com/winnow-rs/winnow", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "winnow", - "version": "0.7.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", - "license": "MIT", - "license_file": null, - "description": "A byte-oriented, zero-copy, parser combinators library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "terminal_size", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "annotate-snippets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.86", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "circular", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.21", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "examples" - ], - "target": null, - "registry": null - }, - { - "name": "term-transcript", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winnow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/arithmetic/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "css", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/css/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/custom_error.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/http/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ini/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/iterator.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json_iterator.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ndjson", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ndjson/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "s_expression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/s_expression/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/string/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/arithmetic/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "contains_token", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/contains_token.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "find_slice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/find_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/http/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ini/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/iter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "next_slice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/next_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "number", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/number.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "debug": [ - "std", - "dep:anstream", - "dep:anstyle", - "dep:is-terminal", - "dep:terminal_size" - ], - "default": [ - "std" - ], - "simd": [ - "dep:memchr" - ], - "std": [ - "alloc", - "memchr?/std" - ], - "unstable-doc": [ - "alloc", - "std", - "simd", - "unstable-recover" - ], - "unstable-recover": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "blob/v{{version}}/CHANGELOG.md", - "search": "blob/v.+\\..+\\..+/CHANGELOG.md" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "parsing" - ], - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "readme": "README.md", - "repository": "https://github.com/winnow-rs/winnow", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "wit-bindgen-rt", - "version": "0.39.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wit-bindgen-rt@0.39.0", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Runtime support for the `wit-bindgen` crate\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.30", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wit_bindgen_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wit-bindgen-rt-0.39.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wit-bindgen-rt-0.39.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "async": [ - "dep:futures", - "dep:once_cell" - ], - "bitflags": [ - "dep:bitflags" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wit-bindgen-rt-0.39.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/bytecodealliance/wit-bindgen", - "homepage": "https://github.com/bytecodealliance/wit-bindgen", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "write16", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A UTF-16 analog of the Write trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "write16", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/write16-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "arrayvec": [ - "dep:arrayvec" - ], - "smallvec": [ - "dep:smallvec" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/write16-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "text-processing", - "internationalization" - ], - "keywords": [ - "unicode", - "utf-16" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/write16", - "homepage": "https://docs.rs/write16/", - "documentation": "https://docs.rs/write16/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "writeable", - "version": "0.5.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "license": "Unicode-3.0", - "license_file": null, - "description": "A more efficient alternative to fmt::Display", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "writeable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "writeable_message", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/examples/writeable_message.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "writeable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/tests/writeable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "writeable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/benches/writeable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "either": [ - "dep:either" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "xattr", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "unix extended filesystem attributes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "fs", - "std" - ], - "target": "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.150", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "xattr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/tests/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "unsupported" - ], - "unsupported": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Allen " - ], - "categories": [], - "keywords": [ - "xattr", - "filesystem", - "unix" - ], - "readme": "README.md", - "repository": "https://github.com/Stebalien/xattr", - "homepage": null, - "documentation": "https://docs.rs/xattr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "xxhash-rust", - "version": "0.8.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", - "license": "BSL-1.0", - "license_file": null, - "description": "Implementation of xxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "xxhash-c-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "xxhash_rust", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "assert_correctness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/assert_correctness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "assert_correctness_miri", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/assert_correctness_miri.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/size.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test-vectors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/test-vectors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "const_xxh3": [], - "const_xxh32": [], - "const_xxh64": [], - "std": [], - "xxh3": [], - "xxh32": [], - "xxh64": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "xxh32", - "const_xxh32", - "xxh64", - "const_xxh64", - "xxh3", - "const_xxh3" - ] - } - } - }, - "publish": null, - "authors": [ - "Douman " - ], - "categories": [ - "algorithms", - "no-std::no-alloc" - ], - "keywords": [ - "hash", - "xxhash", - "xxh3", - "hasher", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/DoumanAsh/xxhash-rust", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "yew", - "version": "0.20.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A framework for creating reliable and efficient web applications", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64ct", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "console_error_panic_hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "gloo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "html-escape", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "implicit-clone", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "map" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "prokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.36", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "AnimationEvent", - "Document", - "DragEvent", - "Element", - "ErrorEvent", - "Event", - "EventInit", - "EventTarget", - "FocusEvent", - "HtmlElement", - "HtmlInputElement", - "HtmlCollection", - "HtmlTextAreaElement", - "InputEvent", - "InputEventInit", - "KeyboardEvent", - "Location", - "MouseEvent", - "Node", - "NodeList", - "PointerEvent", - "ProgressEvent", - "ShadowRoot", - "Text", - "TouchEvent", - "TransitionEvent", - "UiEvent", - "WheelEvent", - "Window", - "HtmlScriptElement", - "SubmitEvent" - ], - "target": null, - "registry": null - }, - { - "name": "yew-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "ShadowRootInit", - "ShadowRootMode", - "HtmlButtonElement" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rt" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yew", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hydration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/hydration.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "layout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/layout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "raw_html", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/raw_html.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "suspense", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/suspense.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_callback", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_callback.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_context", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_context.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_effect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_effect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_memo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_memo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_prepared_state", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_prepared_state.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_reducer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_reducer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_ref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_ref.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_state", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_state.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_transitive_state", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_transitive_state.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "csr": [], - "default": [], - "hydration": [ - "csr", - "dep:bincode" - ], - "ssr": [ - "dep:html-escape", - "dep:base64ct", - "dep:bincode" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "documenting" - ] - } - } - }, - "publish": null, - "authors": [ - "Denis Kolodin ", - "Justin Starry " - ], - "categories": [ - "gui", - "wasm", - "web-programming" - ], - "keywords": [ - "web", - "webasm", - "javascript" - ], - "readme": "README.md", - "repository": "https://github.com/yewstack/yew", - "homepage": "https://yew.rs", - "documentation": "https://docs.rs/yew/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "yew-macro", - "version": "0.20.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A framework for making client-side single-page apps", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "boolinator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "prettyplease", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro-error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits", - "visit-mut" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "yew_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "classes_macro_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/classes_macro_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_props_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/derive_props_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "function_attr_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/function_attr_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hook_attr_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/hook_attr_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hook_macro_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/hook_macro_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "html_lints_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/html_lints_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "html_macro_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/html_macro_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "props_macro_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/props_macro_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Justin Starry " - ], - "categories": [ - "gui", - "web-programming", - "wasm" - ], - "keywords": [ - "web", - "wasm", - "frontend", - "webasm", - "webassembly" - ], - "readme": null, - "repository": "https://github.com/yewstack/yew", - "homepage": "https://github.com/yewstack/yew", - "documentation": "https://docs.rs/yew-macro/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "yew-router", - "version": "0.17.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A router implementation for the Yew framework", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures" - ], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "route-recognizer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.36", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Document", - "HtmlBaseElement", - "Window" - ], - "target": null, - "registry": null - }, - { - "name": "yew", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yew-router-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "HtmlHeadElement" - ], - "target": null, - "registry": null - }, - { - "name": "yew", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "csr" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yew_router", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basename", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/basename.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser_router", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/browser_router.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_router", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/hash_router.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "link", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/link.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "router_unit_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/router_unit_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/utils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Hamza " - ], - "categories": [ - "gui", - "web-programming" - ], - "keywords": [ - "web", - "yew", - "router" - ], - "readme": "README.md", - "repository": "https://github.com/yewstack/yew", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "yew-router-macro", - "version": "0.17.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Contains macros used with yew-router", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "yew_router_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "routable_derive_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/tests/routable_derive_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Hamza " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/yewstack/yew", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "yew_icons", - "version": "0.7.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", - "license": "MIT", - "license_file": null, - "description": "Easily include a variety of SVG icons into your Yew app", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yew", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "csr" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rt", - "macros" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yew_icons", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "generator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/src/generator.rs", - "edition": "2021", - "required-features": [ - "generator" - ], - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "Bootstrap0Circle": [], - "Bootstrap0CircleFill": [], - "Bootstrap0Square": [], - "Bootstrap0SquareFill": [], - "Bootstrap123": [], - "Bootstrap1Circle": [], - "Bootstrap1CircleFill": [], - "Bootstrap1Square": [], - "Bootstrap1SquareFill": [], - "Bootstrap2Circle": [], - "Bootstrap2CircleFill": [], - "Bootstrap2Square": [], - "Bootstrap2SquareFill": [], - "Bootstrap3Circle": [], - "Bootstrap3CircleFill": [], - "Bootstrap3Square": [], - "Bootstrap3SquareFill": [], - "Bootstrap4Circle": [], - "Bootstrap4CircleFill": [], - "Bootstrap4Square": [], - "Bootstrap4SquareFill": [], - "Bootstrap5Circle": [], - "Bootstrap5CircleFill": [], - "Bootstrap5Square": [], - "Bootstrap5SquareFill": [], - "Bootstrap6Circle": [], - "Bootstrap6CircleFill": [], - "Bootstrap6Square": [], - "Bootstrap6SquareFill": [], - "Bootstrap7Circle": [], - "Bootstrap7CircleFill": [], - "Bootstrap7Square": [], - "Bootstrap7SquareFill": [], - "Bootstrap8Circle": [], - "Bootstrap8CircleFill": [], - "Bootstrap8Square": [], - "Bootstrap8SquareFill": [], - "Bootstrap9Circle": [], - "Bootstrap9CircleFill": [], - "Bootstrap9Square": [], - "Bootstrap9SquareFill": [], - "BootstrapActivity": [], - "BootstrapAirplane": [], - "BootstrapAirplaneEngines": [], - "BootstrapAirplaneEnginesFill": [], - "BootstrapAirplaneFill": [], - "BootstrapAlarm": [], - "BootstrapAlarmFill": [], - "BootstrapAlexa": [], - "BootstrapAlignBottom": [], - "BootstrapAlignCenter": [], - "BootstrapAlignEnd": [], - "BootstrapAlignMiddle": [], - "BootstrapAlignStart": [], - "BootstrapAlignTop": [], - "BootstrapAlipay": [], - "BootstrapAlt": [], - "BootstrapAmd": [], - "BootstrapAndroid": [], - "BootstrapAndroid2": [], - "BootstrapApp": [], - "BootstrapAppIndicator": [], - "BootstrapApple": [], - "BootstrapArchive": [], - "BootstrapArchiveFill": [], - "BootstrapArrow90DegDown": [], - "BootstrapArrow90DegLeft": [], - "BootstrapArrow90DegRight": [], - "BootstrapArrow90DegUp": [], - "BootstrapArrowBarDown": [], - "BootstrapArrowBarLeft": [], - "BootstrapArrowBarRight": [], - "BootstrapArrowBarUp": [], - "BootstrapArrowClockwise": [], - "BootstrapArrowCounterclockwise": [], - "BootstrapArrowDown": [], - "BootstrapArrowDownCircle": [], - "BootstrapArrowDownCircleFill": [], - "BootstrapArrowDownLeft": [], - "BootstrapArrowDownLeftCircle": [], - "BootstrapArrowDownLeftCircleFill": [], - "BootstrapArrowDownLeftSquare": [], - "BootstrapArrowDownLeftSquareFill": [], - "BootstrapArrowDownRight": [], - "BootstrapArrowDownRightCircle": [], - "BootstrapArrowDownRightCircleFill": [], - "BootstrapArrowDownRightSquare": [], - "BootstrapArrowDownRightSquareFill": [], - "BootstrapArrowDownShort": [], - "BootstrapArrowDownSquare": [], - "BootstrapArrowDownSquareFill": [], - "BootstrapArrowDownUp": [], - "BootstrapArrowLeft": [], - "BootstrapArrowLeftCircle": [], - "BootstrapArrowLeftCircleFill": [], - "BootstrapArrowLeftRight": [], - "BootstrapArrowLeftShort": [], - "BootstrapArrowLeftSquare": [], - "BootstrapArrowLeftSquareFill": [], - "BootstrapArrowRepeat": [], - "BootstrapArrowReturnLeft": [], - "BootstrapArrowReturnRight": [], - "BootstrapArrowRight": [], - "BootstrapArrowRightCircle": [], - "BootstrapArrowRightCircleFill": [], - "BootstrapArrowRightShort": [], - "BootstrapArrowRightSquare": [], - "BootstrapArrowRightSquareFill": [], - "BootstrapArrowThroughHeart": [], - "BootstrapArrowThroughHeartFill": [], - "BootstrapArrowUp": [], - "BootstrapArrowUpCircle": [], - "BootstrapArrowUpCircleFill": [], - "BootstrapArrowUpLeft": [], - "BootstrapArrowUpLeftCircle": [], - "BootstrapArrowUpLeftCircleFill": [], - "BootstrapArrowUpLeftSquare": [], - "BootstrapArrowUpLeftSquareFill": [], - "BootstrapArrowUpRight": [], - "BootstrapArrowUpRightCircle": [], - "BootstrapArrowUpRightCircleFill": [], - "BootstrapArrowUpRightSquare": [], - "BootstrapArrowUpRightSquareFill": [], - "BootstrapArrowUpShort": [], - "BootstrapArrowUpSquare": [], - "BootstrapArrowUpSquareFill": [], - "BootstrapArrowsAngleContract": [], - "BootstrapArrowsAngleExpand": [], - "BootstrapArrowsCollapse": [], - "BootstrapArrowsExpand": [], - "BootstrapArrowsFullscreen": [], - "BootstrapArrowsMove": [], - "BootstrapAspectRatio": [], - "BootstrapAspectRatioFill": [], - "BootstrapAsterisk": [], - "BootstrapAt": [], - "BootstrapAward": [], - "BootstrapAwardFill": [], - "BootstrapBack": [], - "BootstrapBackspace": [], - "BootstrapBackspaceFill": [], - "BootstrapBackspaceReverse": [], - "BootstrapBackspaceReverseFill": [], - "BootstrapBadge3D": [], - "BootstrapBadge3DFill": [], - "BootstrapBadge4K": [], - "BootstrapBadge4KFill": [], - "BootstrapBadge8K": [], - "BootstrapBadge8KFill": [], - "BootstrapBadgeAd": [], - "BootstrapBadgeAdFill": [], - "BootstrapBadgeAr": [], - "BootstrapBadgeArFill": [], - "BootstrapBadgeCc": [], - "BootstrapBadgeCcFill": [], - "BootstrapBadgeHd": [], - "BootstrapBadgeHdFill": [], - "BootstrapBadgeSd": [], - "BootstrapBadgeSdFill": [], - "BootstrapBadgeTm": [], - "BootstrapBadgeTmFill": [], - "BootstrapBadgeVo": [], - "BootstrapBadgeVoFill": [], - "BootstrapBadgeVr": [], - "BootstrapBadgeVrFill": [], - "BootstrapBadgeWc": [], - "BootstrapBadgeWcFill": [], - "BootstrapBag": [], - "BootstrapBagCheck": [], - "BootstrapBagCheckFill": [], - "BootstrapBagDash": [], - "BootstrapBagDashFill": [], - "BootstrapBagFill": [], - "BootstrapBagHeart": [], - "BootstrapBagHeartFill": [], - "BootstrapBagPlus": [], - "BootstrapBagPlusFill": [], - "BootstrapBagX": [], - "BootstrapBagXFill": [], - "BootstrapBalloon": [], - "BootstrapBalloonFill": [], - "BootstrapBalloonHeart": [], - "BootstrapBalloonHeartFill": [], - "BootstrapBandaid": [], - "BootstrapBandaidFill": [], - "BootstrapBank": [], - "BootstrapBank2": [], - "BootstrapBarChart": [], - "BootstrapBarChartFill": [], - "BootstrapBarChartLine": [], - "BootstrapBarChartLineFill": [], - "BootstrapBarChartSteps": [], - "BootstrapBasket": [], - "BootstrapBasket2": [], - "BootstrapBasket2Fill": [], - "BootstrapBasket3": [], - "BootstrapBasket3Fill": [], - "BootstrapBasketFill": [], - "BootstrapBattery": [], - "BootstrapBatteryCharging": [], - "BootstrapBatteryFull": [], - "BootstrapBatteryHalf": [], - "BootstrapBehance": [], - "BootstrapBell": [], - "BootstrapBellFill": [], - "BootstrapBellSlash": [], - "BootstrapBellSlashFill": [], - "BootstrapBezier": [], - "BootstrapBezier2": [], - "BootstrapBicycle": [], - "BootstrapBinoculars": [], - "BootstrapBinocularsFill": [], - "BootstrapBlockquoteLeft": [], - "BootstrapBlockquoteRight": [], - "BootstrapBluetooth": [], - "BootstrapBodyText": [], - "BootstrapBook": [], - "BootstrapBookFill": [], - "BootstrapBookHalf": [], - "BootstrapBookmark": [], - "BootstrapBookmarkCheck": [], - "BootstrapBookmarkCheckFill": [], - "BootstrapBookmarkDash": [], - "BootstrapBookmarkDashFill": [], - "BootstrapBookmarkFill": [], - "BootstrapBookmarkHeart": [], - "BootstrapBookmarkHeartFill": [], - "BootstrapBookmarkPlus": [], - "BootstrapBookmarkPlusFill": [], - "BootstrapBookmarkStar": [], - "BootstrapBookmarkStarFill": [], - "BootstrapBookmarkX": [], - "BootstrapBookmarkXFill": [], - "BootstrapBookmarks": [], - "BootstrapBookmarksFill": [], - "BootstrapBookshelf": [], - "BootstrapBoombox": [], - "BootstrapBoomboxFill": [], - "BootstrapBootstrap": [], - "BootstrapBootstrapFill": [], - "BootstrapBootstrapReboot": [], - "BootstrapBorder": [], - "BootstrapBorderAll": [], - "BootstrapBorderBottom": [], - "BootstrapBorderCenter": [], - "BootstrapBorderInner": [], - "BootstrapBorderLeft": [], - "BootstrapBorderMiddle": [], - "BootstrapBorderOuter": [], - "BootstrapBorderRight": [], - "BootstrapBorderStyle": [], - "BootstrapBorderTop": [], - "BootstrapBorderWidth": [], - "BootstrapBoundingBox": [], - "BootstrapBoundingBoxCircles": [], - "BootstrapBox": [], - "BootstrapBox2": [], - "BootstrapBox2Fill": [], - "BootstrapBox2Heart": [], - "BootstrapBox2HeartFill": [], - "BootstrapBoxArrowDown": [], - "BootstrapBoxArrowDownLeft": [], - "BootstrapBoxArrowDownRight": [], - "BootstrapBoxArrowInDown": [], - "BootstrapBoxArrowInDownLeft": [], - "BootstrapBoxArrowInDownRight": [], - "BootstrapBoxArrowInLeft": [], - "BootstrapBoxArrowInRight": [], - "BootstrapBoxArrowInUp": [], - "BootstrapBoxArrowInUpLeft": [], - "BootstrapBoxArrowInUpRight": [], - "BootstrapBoxArrowLeft": [], - "BootstrapBoxArrowRight": [], - "BootstrapBoxArrowUp": [], - "BootstrapBoxArrowUpLeft": [], - "BootstrapBoxArrowUpRight": [], - "BootstrapBoxFill": [], - "BootstrapBoxSeam": [], - "BootstrapBoxSeamFill": [], - "BootstrapBoxes": [], - "BootstrapBraces": [], - "BootstrapBracesAsterisk": [], - "BootstrapBricks": [], - "BootstrapBriefcase": [], - "BootstrapBriefcaseFill": [], - "BootstrapBrightnessAltHigh": [], - "BootstrapBrightnessAltHighFill": [], - "BootstrapBrightnessAltLow": [], - "BootstrapBrightnessAltLowFill": [], - "BootstrapBrightnessHigh": [], - "BootstrapBrightnessHighFill": [], - "BootstrapBrightnessLow": [], - "BootstrapBrightnessLowFill": [], - "BootstrapBroadcast": [], - "BootstrapBroadcastPin": [], - "BootstrapBrowserChrome": [], - "BootstrapBrowserEdge": [], - "BootstrapBrowserFirefox": [], - "BootstrapBrowserSafari": [], - "BootstrapBrush": [], - "BootstrapBrushFill": [], - "BootstrapBucket": [], - "BootstrapBucketFill": [], - "BootstrapBug": [], - "BootstrapBugFill": [], - "BootstrapBuilding": [], - "BootstrapBuildingAdd": [], - "BootstrapBuildingCheck": [], - "BootstrapBuildingDash": [], - "BootstrapBuildingDown": [], - "BootstrapBuildingExclamation": [], - "BootstrapBuildingFill": [], - "BootstrapBuildingFillAdd": [], - "BootstrapBuildingFillCheck": [], - "BootstrapBuildingFillDash": [], - "BootstrapBuildingFillDown": [], - "BootstrapBuildingFillExclamation": [], - "BootstrapBuildingFillGear": [], - "BootstrapBuildingFillLock": [], - "BootstrapBuildingFillSlash": [], - "BootstrapBuildingFillUp": [], - "BootstrapBuildingFillX": [], - "BootstrapBuildingGear": [], - "BootstrapBuildingLock": [], - "BootstrapBuildingSlash": [], - "BootstrapBuildingUp": [], - "BootstrapBuildingX": [], - "BootstrapBuildings": [], - "BootstrapBuildingsFill": [], - "BootstrapBullseye": [], - "BootstrapBusFront": [], - "BootstrapBusFrontFill": [], - "BootstrapCCircle": [], - "BootstrapCCircleFill": [], - "BootstrapCSquare": [], - "BootstrapCSquareFill": [], - "BootstrapCalculator": [], - "BootstrapCalculatorFill": [], - "BootstrapCalendar": [], - "BootstrapCalendar2": [], - "BootstrapCalendar2Check": [], - "BootstrapCalendar2CheckFill": [], - "BootstrapCalendar2Date": [], - "BootstrapCalendar2DateFill": [], - "BootstrapCalendar2Day": [], - "BootstrapCalendar2DayFill": [], - "BootstrapCalendar2Event": [], - "BootstrapCalendar2EventFill": [], - "BootstrapCalendar2Fill": [], - "BootstrapCalendar2Heart": [], - "BootstrapCalendar2HeartFill": [], - "BootstrapCalendar2Minus": [], - "BootstrapCalendar2MinusFill": [], - "BootstrapCalendar2Month": [], - "BootstrapCalendar2MonthFill": [], - "BootstrapCalendar2Plus": [], - "BootstrapCalendar2PlusFill": [], - "BootstrapCalendar2Range": [], - "BootstrapCalendar2RangeFill": [], - "BootstrapCalendar2Week": [], - "BootstrapCalendar2WeekFill": [], - "BootstrapCalendar2X": [], - "BootstrapCalendar2XFill": [], - "BootstrapCalendar3": [], - "BootstrapCalendar3Event": [], - "BootstrapCalendar3EventFill": [], - "BootstrapCalendar3Fill": [], - "BootstrapCalendar3Range": [], - "BootstrapCalendar3RangeFill": [], - "BootstrapCalendar3Week": [], - "BootstrapCalendar3WeekFill": [], - "BootstrapCalendar4": [], - "BootstrapCalendar4Event": [], - "BootstrapCalendar4Range": [], - "BootstrapCalendar4Week": [], - "BootstrapCalendarCheck": [], - "BootstrapCalendarCheckFill": [], - "BootstrapCalendarDate": [], - "BootstrapCalendarDateFill": [], - "BootstrapCalendarDay": [], - "BootstrapCalendarDayFill": [], - "BootstrapCalendarEvent": [], - "BootstrapCalendarEventFill": [], - "BootstrapCalendarFill": [], - "BootstrapCalendarHeart": [], - "BootstrapCalendarHeartFill": [], - "BootstrapCalendarMinus": [], - "BootstrapCalendarMinusFill": [], - "BootstrapCalendarMonth": [], - "BootstrapCalendarMonthFill": [], - "BootstrapCalendarPlus": [], - "BootstrapCalendarPlusFill": [], - "BootstrapCalendarRange": [], - "BootstrapCalendarRangeFill": [], - "BootstrapCalendarWeek": [], - "BootstrapCalendarWeekFill": [], - "BootstrapCalendarX": [], - "BootstrapCalendarXFill": [], - "BootstrapCamera": [], - "BootstrapCamera2": [], - "BootstrapCameraFill": [], - "BootstrapCameraReels": [], - "BootstrapCameraReelsFill": [], - "BootstrapCameraVideo": [], - "BootstrapCameraVideoFill": [], - "BootstrapCameraVideoOff": [], - "BootstrapCameraVideoOffFill": [], - "BootstrapCapslock": [], - "BootstrapCapslockFill": [], - "BootstrapCapsule": [], - "BootstrapCapsulePill": [], - "BootstrapCarFront": [], - "BootstrapCarFrontFill": [], - "BootstrapCardChecklist": [], - "BootstrapCardHeading": [], - "BootstrapCardImage": [], - "BootstrapCardList": [], - "BootstrapCardText": [], - "BootstrapCaretDown": [], - "BootstrapCaretDownFill": [], - "BootstrapCaretDownSquare": [], - "BootstrapCaretDownSquareFill": [], - "BootstrapCaretLeft": [], - "BootstrapCaretLeftFill": [], - "BootstrapCaretLeftSquare": [], - "BootstrapCaretLeftSquareFill": [], - "BootstrapCaretRight": [], - "BootstrapCaretRightFill": [], - "BootstrapCaretRightSquare": [], - "BootstrapCaretRightSquareFill": [], - "BootstrapCaretUp": [], - "BootstrapCaretUpFill": [], - "BootstrapCaretUpSquare": [], - "BootstrapCaretUpSquareFill": [], - "BootstrapCart": [], - "BootstrapCart2": [], - "BootstrapCart3": [], - "BootstrapCart4": [], - "BootstrapCartCheck": [], - "BootstrapCartCheckFill": [], - "BootstrapCartDash": [], - "BootstrapCartDashFill": [], - "BootstrapCartFill": [], - "BootstrapCartPlus": [], - "BootstrapCartPlusFill": [], - "BootstrapCartX": [], - "BootstrapCartXFill": [], - "BootstrapCash": [], - "BootstrapCashCoin": [], - "BootstrapCashStack": [], - "BootstrapCassette": [], - "BootstrapCassetteFill": [], - "BootstrapCast": [], - "BootstrapCcCircle": [], - "BootstrapCcCircleFill": [], - "BootstrapCcSquare": [], - "BootstrapCcSquareFill": [], - "BootstrapChat": [], - "BootstrapChatDots": [], - "BootstrapChatDotsFill": [], - "BootstrapChatFill": [], - "BootstrapChatHeart": [], - "BootstrapChatHeartFill": [], - "BootstrapChatLeft": [], - "BootstrapChatLeftDots": [], - "BootstrapChatLeftDotsFill": [], - "BootstrapChatLeftFill": [], - "BootstrapChatLeftHeart": [], - "BootstrapChatLeftHeartFill": [], - "BootstrapChatLeftQuote": [], - "BootstrapChatLeftQuoteFill": [], - "BootstrapChatLeftText": [], - "BootstrapChatLeftTextFill": [], - "BootstrapChatQuote": [], - "BootstrapChatQuoteFill": [], - "BootstrapChatRight": [], - "BootstrapChatRightDots": [], - "BootstrapChatRightDotsFill": [], - "BootstrapChatRightFill": [], - "BootstrapChatRightHeart": [], - "BootstrapChatRightHeartFill": [], - "BootstrapChatRightQuote": [], - "BootstrapChatRightQuoteFill": [], - "BootstrapChatRightText": [], - "BootstrapChatRightTextFill": [], - "BootstrapChatSquare": [], - "BootstrapChatSquareDots": [], - "BootstrapChatSquareDotsFill": [], - "BootstrapChatSquareFill": [], - "BootstrapChatSquareHeart": [], - "BootstrapChatSquareHeartFill": [], - "BootstrapChatSquareQuote": [], - "BootstrapChatSquareQuoteFill": [], - "BootstrapChatSquareText": [], - "BootstrapChatSquareTextFill": [], - "BootstrapChatText": [], - "BootstrapChatTextFill": [], - "BootstrapCheck": [], - "BootstrapCheck2": [], - "BootstrapCheck2All": [], - "BootstrapCheck2Circle": [], - "BootstrapCheck2Square": [], - "BootstrapCheckAll": [], - "BootstrapCheckCircle": [], - "BootstrapCheckCircleFill": [], - "BootstrapCheckLg": [], - "BootstrapCheckSquare": [], - "BootstrapCheckSquareFill": [], - "BootstrapChevronBarContract": [], - "BootstrapChevronBarDown": [], - "BootstrapChevronBarExpand": [], - "BootstrapChevronBarLeft": [], - "BootstrapChevronBarRight": [], - "BootstrapChevronBarUp": [], - "BootstrapChevronCompactDown": [], - "BootstrapChevronCompactLeft": [], - "BootstrapChevronCompactRight": [], - "BootstrapChevronCompactUp": [], - "BootstrapChevronContract": [], - "BootstrapChevronDoubleDown": [], - "BootstrapChevronDoubleLeft": [], - "BootstrapChevronDoubleRight": [], - "BootstrapChevronDoubleUp": [], - "BootstrapChevronDown": [], - "BootstrapChevronExpand": [], - "BootstrapChevronLeft": [], - "BootstrapChevronRight": [], - "BootstrapChevronUp": [], - "BootstrapCircle": [], - "BootstrapCircleFill": [], - "BootstrapCircleHalf": [], - "BootstrapCircleSquare": [], - "BootstrapClipboard": [], - "BootstrapClipboard2": [], - "BootstrapClipboard2Check": [], - "BootstrapClipboard2CheckFill": [], - "BootstrapClipboard2Data": [], - "BootstrapClipboard2DataFill": [], - "BootstrapClipboard2Fill": [], - "BootstrapClipboard2Heart": [], - "BootstrapClipboard2HeartFill": [], - "BootstrapClipboard2Minus": [], - "BootstrapClipboard2MinusFill": [], - "BootstrapClipboard2Plus": [], - "BootstrapClipboard2PlusFill": [], - "BootstrapClipboard2Pulse": [], - "BootstrapClipboard2PulseFill": [], - "BootstrapClipboard2X": [], - "BootstrapClipboard2XFill": [], - "BootstrapClipboardCheck": [], - "BootstrapClipboardCheckFill": [], - "BootstrapClipboardData": [], - "BootstrapClipboardDataFill": [], - "BootstrapClipboardFill": [], - "BootstrapClipboardHeart": [], - "BootstrapClipboardHeartFill": [], - "BootstrapClipboardMinus": [], - "BootstrapClipboardMinusFill": [], - "BootstrapClipboardPlus": [], - "BootstrapClipboardPlusFill": [], - "BootstrapClipboardPulse": [], - "BootstrapClipboardX": [], - "BootstrapClipboardXFill": [], - "BootstrapClock": [], - "BootstrapClockFill": [], - "BootstrapClockHistory": [], - "BootstrapCloud": [], - "BootstrapCloudArrowDown": [], - "BootstrapCloudArrowDownFill": [], - "BootstrapCloudArrowUp": [], - "BootstrapCloudArrowUpFill": [], - "BootstrapCloudCheck": [], - "BootstrapCloudCheckFill": [], - "BootstrapCloudDownload": [], - "BootstrapCloudDownloadFill": [], - "BootstrapCloudDrizzle": [], - "BootstrapCloudDrizzleFill": [], - "BootstrapCloudFill": [], - "BootstrapCloudFog": [], - "BootstrapCloudFog2": [], - "BootstrapCloudFog2Fill": [], - "BootstrapCloudFogFill": [], - "BootstrapCloudHail": [], - "BootstrapCloudHailFill": [], - "BootstrapCloudHaze": [], - "BootstrapCloudHaze2": [], - "BootstrapCloudHaze2Fill": [], - "BootstrapCloudHazeFill": [], - "BootstrapCloudLightning": [], - "BootstrapCloudLightningFill": [], - "BootstrapCloudLightningRain": [], - "BootstrapCloudLightningRainFill": [], - "BootstrapCloudMinus": [], - "BootstrapCloudMinusFill": [], - "BootstrapCloudMoon": [], - "BootstrapCloudMoonFill": [], - "BootstrapCloudPlus": [], - "BootstrapCloudPlusFill": [], - "BootstrapCloudRain": [], - "BootstrapCloudRainFill": [], - "BootstrapCloudRainHeavy": [], - "BootstrapCloudRainHeavyFill": [], - "BootstrapCloudSlash": [], - "BootstrapCloudSlashFill": [], - "BootstrapCloudSleet": [], - "BootstrapCloudSleetFill": [], - "BootstrapCloudSnow": [], - "BootstrapCloudSnowFill": [], - "BootstrapCloudSun": [], - "BootstrapCloudSunFill": [], - "BootstrapCloudUpload": [], - "BootstrapCloudUploadFill": [], - "BootstrapClouds": [], - "BootstrapCloudsFill": [], - "BootstrapCloudy": [], - "BootstrapCloudyFill": [], - "BootstrapCode": [], - "BootstrapCodeSlash": [], - "BootstrapCodeSquare": [], - "BootstrapCoin": [], - "BootstrapCollection": [], - "BootstrapCollectionFill": [], - "BootstrapCollectionPlay": [], - "BootstrapCollectionPlayFill": [], - "BootstrapColumns": [], - "BootstrapColumnsGap": [], - "BootstrapCommand": [], - "BootstrapCompass": [], - "BootstrapCompassFill": [], - "BootstrapCone": [], - "BootstrapConeStriped": [], - "BootstrapController": [], - "BootstrapCpu": [], - "BootstrapCpuFill": [], - "BootstrapCreditCard": [], - "BootstrapCreditCard2Back": [], - "BootstrapCreditCard2BackFill": [], - "BootstrapCreditCard2Front": [], - "BootstrapCreditCard2FrontFill": [], - "BootstrapCreditCardFill": [], - "BootstrapCrop": [], - "BootstrapCup": [], - "BootstrapCupFill": [], - "BootstrapCupHot": [], - "BootstrapCupHotFill": [], - "BootstrapCupStraw": [], - "BootstrapCurrencyBitcoin": [], - "BootstrapCurrencyDollar": [], - "BootstrapCurrencyEuro": [], - "BootstrapCurrencyExchange": [], - "BootstrapCurrencyPound": [], - "BootstrapCurrencyRupee": [], - "BootstrapCurrencyYen": [], - "BootstrapCursor": [], - "BootstrapCursorFill": [], - "BootstrapCursorText": [], - "BootstrapDash": [], - "BootstrapDashCircle": [], - "BootstrapDashCircleDotted": [], - "BootstrapDashCircleFill": [], - "BootstrapDashLg": [], - "BootstrapDashSquare": [], - "BootstrapDashSquareDotted": [], - "BootstrapDashSquareFill": [], - "BootstrapDatabase": [], - "BootstrapDatabaseAdd": [], - "BootstrapDatabaseCheck": [], - "BootstrapDatabaseDash": [], - "BootstrapDatabaseDown": [], - "BootstrapDatabaseExclamation": [], - "BootstrapDatabaseFill": [], - "BootstrapDatabaseFillAdd": [], - "BootstrapDatabaseFillCheck": [], - "BootstrapDatabaseFillDash": [], - "BootstrapDatabaseFillDown": [], - "BootstrapDatabaseFillExclamation": [], - "BootstrapDatabaseFillGear": [], - "BootstrapDatabaseFillLock": [], - "BootstrapDatabaseFillSlash": [], - "BootstrapDatabaseFillUp": [], - "BootstrapDatabaseFillX": [], - "BootstrapDatabaseGear": [], - "BootstrapDatabaseLock": [], - "BootstrapDatabaseSlash": [], - "BootstrapDatabaseUp": [], - "BootstrapDatabaseX": [], - "BootstrapDeviceHdd": [], - "BootstrapDeviceHddFill": [], - "BootstrapDeviceSsd": [], - "BootstrapDeviceSsdFill": [], - "BootstrapDiagram2": [], - "BootstrapDiagram2Fill": [], - "BootstrapDiagram3": [], - "BootstrapDiagram3Fill": [], - "BootstrapDiamond": [], - "BootstrapDiamondFill": [], - "BootstrapDiamondHalf": [], - "BootstrapDice1": [], - "BootstrapDice1Fill": [], - "BootstrapDice2": [], - "BootstrapDice2Fill": [], - "BootstrapDice3": [], - "BootstrapDice3Fill": [], - "BootstrapDice4": [], - "BootstrapDice4Fill": [], - "BootstrapDice5": [], - "BootstrapDice5Fill": [], - "BootstrapDice6": [], - "BootstrapDice6Fill": [], - "BootstrapDisc": [], - "BootstrapDiscFill": [], - "BootstrapDiscord": [], - "BootstrapDisplay": [], - "BootstrapDisplayFill": [], - "BootstrapDisplayport": [], - "BootstrapDisplayportFill": [], - "BootstrapDistributeHorizontal": [], - "BootstrapDistributeVertical": [], - "BootstrapDoorClosed": [], - "BootstrapDoorClosedFill": [], - "BootstrapDoorOpen": [], - "BootstrapDoorOpenFill": [], - "BootstrapDot": [], - "BootstrapDownload": [], - "BootstrapDpad": [], - "BootstrapDpadFill": [], - "BootstrapDribbble": [], - "BootstrapDropbox": [], - "BootstrapDroplet": [], - "BootstrapDropletFill": [], - "BootstrapDropletHalf": [], - "BootstrapEar": [], - "BootstrapEarFill": [], - "BootstrapEarbuds": [], - "BootstrapEasel": [], - "BootstrapEasel2": [], - "BootstrapEasel2Fill": [], - "BootstrapEasel3": [], - "BootstrapEasel3Fill": [], - "BootstrapEaselFill": [], - "BootstrapEgg": [], - "BootstrapEggFill": [], - "BootstrapEggFried": [], - "BootstrapEject": [], - "BootstrapEjectFill": [], - "BootstrapEmojiAngry": [], - "BootstrapEmojiAngryFill": [], - "BootstrapEmojiDizzy": [], - "BootstrapEmojiDizzyFill": [], - "BootstrapEmojiExpressionless": [], - "BootstrapEmojiExpressionlessFill": [], - "BootstrapEmojiFrown": [], - "BootstrapEmojiFrownFill": [], - "BootstrapEmojiHeartEyes": [], - "BootstrapEmojiHeartEyesFill": [], - "BootstrapEmojiKiss": [], - "BootstrapEmojiKissFill": [], - "BootstrapEmojiLaughing": [], - "BootstrapEmojiLaughingFill": [], - "BootstrapEmojiNeutral": [], - "BootstrapEmojiNeutralFill": [], - "BootstrapEmojiSmile": [], - "BootstrapEmojiSmileFill": [], - "BootstrapEmojiSmileUpsideDown": [], - "BootstrapEmojiSmileUpsideDownFill": [], - "BootstrapEmojiSunglasses": [], - "BootstrapEmojiSunglassesFill": [], - "BootstrapEmojiWink": [], - "BootstrapEmojiWinkFill": [], - "BootstrapEnvelope": [], - "BootstrapEnvelopeAt": [], - "BootstrapEnvelopeAtFill": [], - "BootstrapEnvelopeCheck": [], - "BootstrapEnvelopeCheckFill": [], - "BootstrapEnvelopeDash": [], - "BootstrapEnvelopeDashFill": [], - "BootstrapEnvelopeExclamation": [], - "BootstrapEnvelopeExclamationFill": [], - "BootstrapEnvelopeFill": [], - "BootstrapEnvelopeHeart": [], - "BootstrapEnvelopeHeartFill": [], - "BootstrapEnvelopeOpen": [], - "BootstrapEnvelopeOpenFill": [], - "BootstrapEnvelopeOpenHeart": [], - "BootstrapEnvelopeOpenHeartFill": [], - "BootstrapEnvelopePaper": [], - "BootstrapEnvelopePaperFill": [], - "BootstrapEnvelopePaperHeart": [], - "BootstrapEnvelopePaperHeartFill": [], - "BootstrapEnvelopePlus": [], - "BootstrapEnvelopePlusFill": [], - "BootstrapEnvelopeSlash": [], - "BootstrapEnvelopeSlashFill": [], - "BootstrapEnvelopeX": [], - "BootstrapEnvelopeXFill": [], - "BootstrapEraser": [], - "BootstrapEraserFill": [], - "BootstrapEscape": [], - "BootstrapEthernet": [], - "BootstrapEvFront": [], - "BootstrapEvFrontFill": [], - "BootstrapEvStation": [], - "BootstrapEvStationFill": [], - "BootstrapExclamation": [], - "BootstrapExclamationCircle": [], - "BootstrapExclamationCircleFill": [], - "BootstrapExclamationDiamond": [], - "BootstrapExclamationDiamondFill": [], - "BootstrapExclamationLg": [], - "BootstrapExclamationOctagon": [], - "BootstrapExclamationOctagonFill": [], - "BootstrapExclamationSquare": [], - "BootstrapExclamationSquareFill": [], - "BootstrapExclamationTriangle": [], - "BootstrapExclamationTriangleFill": [], - "BootstrapExclude": [], - "BootstrapExplicit": [], - "BootstrapExplicitFill": [], - "BootstrapEye": [], - "BootstrapEyeFill": [], - "BootstrapEyeSlash": [], - "BootstrapEyeSlashFill": [], - "BootstrapEyedropper": [], - "BootstrapEyeglasses": [], - "BootstrapFacebook": [], - "BootstrapFan": [], - "BootstrapFastForward": [], - "BootstrapFastForwardBtn": [], - "BootstrapFastForwardBtnFill": [], - "BootstrapFastForwardCircle": [], - "BootstrapFastForwardCircleFill": [], - "BootstrapFastForwardFill": [], - "BootstrapFile": [], - "BootstrapFileArrowDown": [], - "BootstrapFileArrowDownFill": [], - "BootstrapFileArrowUp": [], - "BootstrapFileArrowUpFill": [], - "BootstrapFileBarGraph": [], - "BootstrapFileBarGraphFill": [], - "BootstrapFileBinary": [], - "BootstrapFileBinaryFill": [], - "BootstrapFileBreak": [], - "BootstrapFileBreakFill": [], - "BootstrapFileCheck": [], - "BootstrapFileCheckFill": [], - "BootstrapFileCode": [], - "BootstrapFileCodeFill": [], - "BootstrapFileDiff": [], - "BootstrapFileDiffFill": [], - "BootstrapFileEarmark": [], - "BootstrapFileEarmarkArrowDown": [], - "BootstrapFileEarmarkArrowDownFill": [], - "BootstrapFileEarmarkArrowUp": [], - "BootstrapFileEarmarkArrowUpFill": [], - "BootstrapFileEarmarkBarGraph": [], - "BootstrapFileEarmarkBarGraphFill": [], - "BootstrapFileEarmarkBinary": [], - "BootstrapFileEarmarkBinaryFill": [], - "BootstrapFileEarmarkBreak": [], - "BootstrapFileEarmarkBreakFill": [], - "BootstrapFileEarmarkCheck": [], - "BootstrapFileEarmarkCheckFill": [], - "BootstrapFileEarmarkCode": [], - "BootstrapFileEarmarkCodeFill": [], - "BootstrapFileEarmarkDiff": [], - "BootstrapFileEarmarkDiffFill": [], - "BootstrapFileEarmarkEasel": [], - "BootstrapFileEarmarkEaselFill": [], - "BootstrapFileEarmarkExcel": [], - "BootstrapFileEarmarkExcelFill": [], - "BootstrapFileEarmarkFill": [], - "BootstrapFileEarmarkFont": [], - "BootstrapFileEarmarkFontFill": [], - "BootstrapFileEarmarkImage": [], - "BootstrapFileEarmarkImageFill": [], - "BootstrapFileEarmarkLock": [], - "BootstrapFileEarmarkLock2": [], - "BootstrapFileEarmarkLock2Fill": [], - "BootstrapFileEarmarkLockFill": [], - "BootstrapFileEarmarkMedical": [], - "BootstrapFileEarmarkMedicalFill": [], - "BootstrapFileEarmarkMinus": [], - "BootstrapFileEarmarkMinusFill": [], - "BootstrapFileEarmarkMusic": [], - "BootstrapFileEarmarkMusicFill": [], - "BootstrapFileEarmarkPdf": [], - "BootstrapFileEarmarkPdfFill": [], - "BootstrapFileEarmarkPerson": [], - "BootstrapFileEarmarkPersonFill": [], - "BootstrapFileEarmarkPlay": [], - "BootstrapFileEarmarkPlayFill": [], - "BootstrapFileEarmarkPlus": [], - "BootstrapFileEarmarkPlusFill": [], - "BootstrapFileEarmarkPost": [], - "BootstrapFileEarmarkPostFill": [], - "BootstrapFileEarmarkPpt": [], - "BootstrapFileEarmarkPptFill": [], - "BootstrapFileEarmarkRichtext": [], - "BootstrapFileEarmarkRichtextFill": [], - "BootstrapFileEarmarkRuled": [], - "BootstrapFileEarmarkRuledFill": [], - "BootstrapFileEarmarkSlides": [], - "BootstrapFileEarmarkSlidesFill": [], - "BootstrapFileEarmarkSpreadsheet": [], - "BootstrapFileEarmarkSpreadsheetFill": [], - "BootstrapFileEarmarkText": [], - "BootstrapFileEarmarkTextFill": [], - "BootstrapFileEarmarkWord": [], - "BootstrapFileEarmarkWordFill": [], - "BootstrapFileEarmarkX": [], - "BootstrapFileEarmarkXFill": [], - "BootstrapFileEarmarkZip": [], - "BootstrapFileEarmarkZipFill": [], - "BootstrapFileEasel": [], - "BootstrapFileEaselFill": [], - "BootstrapFileExcel": [], - "BootstrapFileExcelFill": [], - "BootstrapFileFill": [], - "BootstrapFileFont": [], - "BootstrapFileFontFill": [], - "BootstrapFileImage": [], - "BootstrapFileImageFill": [], - "BootstrapFileLock": [], - "BootstrapFileLock2": [], - "BootstrapFileLock2Fill": [], - "BootstrapFileLockFill": [], - "BootstrapFileMedical": [], - "BootstrapFileMedicalFill": [], - "BootstrapFileMinus": [], - "BootstrapFileMinusFill": [], - "BootstrapFileMusic": [], - "BootstrapFileMusicFill": [], - "BootstrapFilePdf": [], - "BootstrapFilePdfFill": [], - "BootstrapFilePerson": [], - "BootstrapFilePersonFill": [], - "BootstrapFilePlay": [], - "BootstrapFilePlayFill": [], - "BootstrapFilePlus": [], - "BootstrapFilePlusFill": [], - "BootstrapFilePost": [], - "BootstrapFilePostFill": [], - "BootstrapFilePpt": [], - "BootstrapFilePptFill": [], - "BootstrapFileRichtext": [], - "BootstrapFileRichtextFill": [], - "BootstrapFileRuled": [], - "BootstrapFileRuledFill": [], - "BootstrapFileSlides": [], - "BootstrapFileSlidesFill": [], - "BootstrapFileSpreadsheet": [], - "BootstrapFileSpreadsheetFill": [], - "BootstrapFileText": [], - "BootstrapFileTextFill": [], - "BootstrapFileWord": [], - "BootstrapFileWordFill": [], - "BootstrapFileX": [], - "BootstrapFileXFill": [], - "BootstrapFileZip": [], - "BootstrapFileZipFill": [], - "BootstrapFiles": [], - "BootstrapFilesAlt": [], - "BootstrapFiletypeAac": [], - "BootstrapFiletypeAi": [], - "BootstrapFiletypeBmp": [], - "BootstrapFiletypeCs": [], - "BootstrapFiletypeCss": [], - "BootstrapFiletypeCsv": [], - "BootstrapFiletypeDoc": [], - "BootstrapFiletypeDocx": [], - "BootstrapFiletypeExe": [], - "BootstrapFiletypeGif": [], - "BootstrapFiletypeHeic": [], - "BootstrapFiletypeHtml": [], - "BootstrapFiletypeJava": [], - "BootstrapFiletypeJpg": [], - "BootstrapFiletypeJs": [], - "BootstrapFiletypeJson": [], - "BootstrapFiletypeJsx": [], - "BootstrapFiletypeKey": [], - "BootstrapFiletypeM4P": [], - "BootstrapFiletypeMd": [], - "BootstrapFiletypeMdx": [], - "BootstrapFiletypeMov": [], - "BootstrapFiletypeMp3": [], - "BootstrapFiletypeMp4": [], - "BootstrapFiletypeOtf": [], - "BootstrapFiletypePdf": [], - "BootstrapFiletypePhp": [], - "BootstrapFiletypePng": [], - "BootstrapFiletypePpt": [], - "BootstrapFiletypePptx": [], - "BootstrapFiletypePsd": [], - "BootstrapFiletypePy": [], - "BootstrapFiletypeRaw": [], - "BootstrapFiletypeRb": [], - "BootstrapFiletypeSass": [], - "BootstrapFiletypeScss": [], - "BootstrapFiletypeSh": [], - "BootstrapFiletypeSql": [], - "BootstrapFiletypeSvg": [], - "BootstrapFiletypeTiff": [], - "BootstrapFiletypeTsx": [], - "BootstrapFiletypeTtf": [], - "BootstrapFiletypeTxt": [], - "BootstrapFiletypeWav": [], - "BootstrapFiletypeWoff": [], - "BootstrapFiletypeXls": [], - "BootstrapFiletypeXlsx": [], - "BootstrapFiletypeXml": [], - "BootstrapFiletypeYml": [], - "BootstrapFilm": [], - "BootstrapFilter": [], - "BootstrapFilterCircle": [], - "BootstrapFilterCircleFill": [], - "BootstrapFilterLeft": [], - "BootstrapFilterRight": [], - "BootstrapFilterSquare": [], - "BootstrapFilterSquareFill": [], - "BootstrapFingerprint": [], - "BootstrapFire": [], - "BootstrapFlag": [], - "BootstrapFlagFill": [], - "BootstrapFlower1": [], - "BootstrapFlower2": [], - "BootstrapFlower3": [], - "BootstrapFolder": [], - "BootstrapFolder2": [], - "BootstrapFolder2Open": [], - "BootstrapFolderCheck": [], - "BootstrapFolderFill": [], - "BootstrapFolderMinus": [], - "BootstrapFolderPlus": [], - "BootstrapFolderSymlink": [], - "BootstrapFolderSymlinkFill": [], - "BootstrapFolderX": [], - "BootstrapFonts": [], - "BootstrapForward": [], - "BootstrapForwardFill": [], - "BootstrapFront": [], - "BootstrapFuelPump": [], - "BootstrapFuelPumpDiesel": [], - "BootstrapFuelPumpDieselFill": [], - "BootstrapFuelPumpFill": [], - "BootstrapFullscreen": [], - "BootstrapFullscreenExit": [], - "BootstrapFunnel": [], - "BootstrapFunnelFill": [], - "BootstrapGear": [], - "BootstrapGearFill": [], - "BootstrapGearWide": [], - "BootstrapGearWideConnected": [], - "BootstrapGem": [], - "BootstrapGenderAmbiguous": [], - "BootstrapGenderFemale": [], - "BootstrapGenderMale": [], - "BootstrapGenderTrans": [], - "BootstrapGeo": [], - "BootstrapGeoAlt": [], - "BootstrapGeoAltFill": [], - "BootstrapGeoFill": [], - "BootstrapGift": [], - "BootstrapGiftFill": [], - "BootstrapGit": [], - "BootstrapGithub": [], - "BootstrapGlobe": [], - "BootstrapGlobe2": [], - "BootstrapGlobeAmericas": [], - "BootstrapGlobeAsiaAustralia": [], - "BootstrapGlobeCentralSouthAsia": [], - "BootstrapGlobeEuropeAfrica": [], - "BootstrapGoogle": [], - "BootstrapGooglePlay": [], - "BootstrapGpuCard": [], - "BootstrapGraphDown": [], - "BootstrapGraphDownArrow": [], - "BootstrapGraphUp": [], - "BootstrapGraphUpArrow": [], - "BootstrapGrid": [], - "BootstrapGrid1X2": [], - "BootstrapGrid1X2Fill": [], - "BootstrapGrid3X2": [], - "BootstrapGrid3X2Gap": [], - "BootstrapGrid3X2GapFill": [], - "BootstrapGrid3X3": [], - "BootstrapGrid3X3Gap": [], - "BootstrapGrid3X3GapFill": [], - "BootstrapGridFill": [], - "BootstrapGripHorizontal": [], - "BootstrapGripVertical": [], - "BootstrapHCircle": [], - "BootstrapHCircleFill": [], - "BootstrapHSquare": [], - "BootstrapHSquareFill": [], - "BootstrapHammer": [], - "BootstrapHandIndex": [], - "BootstrapHandIndexFill": [], - "BootstrapHandIndexThumb": [], - "BootstrapHandIndexThumbFill": [], - "BootstrapHandThumbsDown": [], - "BootstrapHandThumbsDownFill": [], - "BootstrapHandThumbsUp": [], - "BootstrapHandThumbsUpFill": [], - "BootstrapHandbag": [], - "BootstrapHandbagFill": [], - "BootstrapHash": [], - "BootstrapHdd": [], - "BootstrapHddFill": [], - "BootstrapHddNetwork": [], - "BootstrapHddNetworkFill": [], - "BootstrapHddRack": [], - "BootstrapHddRackFill": [], - "BootstrapHddStack": [], - "BootstrapHddStackFill": [], - "BootstrapHdmi": [], - "BootstrapHdmiFill": [], - "BootstrapHeadphones": [], - "BootstrapHeadset": [], - "BootstrapHeadsetVr": [], - "BootstrapHeart": [], - "BootstrapHeartArrow": [], - "BootstrapHeartFill": [], - "BootstrapHeartHalf": [], - "BootstrapHeartPulse": [], - "BootstrapHeartPulseFill": [], - "BootstrapHeartbreak": [], - "BootstrapHeartbreakFill": [], - "BootstrapHearts": [], - "BootstrapHeptagon": [], - "BootstrapHeptagonFill": [], - "BootstrapHeptagonHalf": [], - "BootstrapHexagon": [], - "BootstrapHexagonFill": [], - "BootstrapHexagonHalf": [], - "BootstrapHospital": [], - "BootstrapHospitalFill": [], - "BootstrapHourglass": [], - "BootstrapHourglassBottom": [], - "BootstrapHourglassSplit": [], - "BootstrapHourglassTop": [], - "BootstrapHouse": [], - "BootstrapHouseAdd": [], - "BootstrapHouseAddFill": [], - "BootstrapHouseCheck": [], - "BootstrapHouseCheckFill": [], - "BootstrapHouseDash": [], - "BootstrapHouseDashFill": [], - "BootstrapHouseDoor": [], - "BootstrapHouseDoorFill": [], - "BootstrapHouseDown": [], - "BootstrapHouseDownFill": [], - "BootstrapHouseExclamation": [], - "BootstrapHouseExclamationFill": [], - "BootstrapHouseFill": [], - "BootstrapHouseGear": [], - "BootstrapHouseGearFill": [], - "BootstrapHouseHeart": [], - "BootstrapHouseHeartFill": [], - "BootstrapHouseLock": [], - "BootstrapHouseLockFill": [], - "BootstrapHouseSlash": [], - "BootstrapHouseSlashFill": [], - "BootstrapHouseUp": [], - "BootstrapHouseUpFill": [], - "BootstrapHouseX": [], - "BootstrapHouseXFill": [], - "BootstrapHouses": [], - "BootstrapHousesFill": [], - "BootstrapHr": [], - "BootstrapHurricane": [], - "BootstrapHypnotize": [], - "BootstrapImage": [], - "BootstrapImageAlt": [], - "BootstrapImageFill": [], - "BootstrapImages": [], - "BootstrapInbox": [], - "BootstrapInboxFill": [], - "BootstrapInboxes": [], - "BootstrapInboxesFill": [], - "BootstrapIncognito": [], - "BootstrapIndent": [], - "BootstrapInfinity": [], - "BootstrapInfo": [], - "BootstrapInfoCircle": [], - "BootstrapInfoCircleFill": [], - "BootstrapInfoLg": [], - "BootstrapInfoSquare": [], - "BootstrapInfoSquareFill": [], - "BootstrapInputCursor": [], - "BootstrapInputCursorText": [], - "BootstrapInstagram": [], - "BootstrapIntersect": [], - "BootstrapJournal": [], - "BootstrapJournalAlbum": [], - "BootstrapJournalArrowDown": [], - "BootstrapJournalArrowUp": [], - "BootstrapJournalBookmark": [], - "BootstrapJournalBookmarkFill": [], - "BootstrapJournalCheck": [], - "BootstrapJournalCode": [], - "BootstrapJournalMedical": [], - "BootstrapJournalMinus": [], - "BootstrapJournalPlus": [], - "BootstrapJournalRichtext": [], - "BootstrapJournalText": [], - "BootstrapJournalX": [], - "BootstrapJournals": [], - "BootstrapJoystick": [], - "BootstrapJustify": [], - "BootstrapJustifyLeft": [], - "BootstrapJustifyRight": [], - "BootstrapKanban": [], - "BootstrapKanbanFill": [], - "BootstrapKey": [], - "BootstrapKeyFill": [], - "BootstrapKeyboard": [], - "BootstrapKeyboardFill": [], - "BootstrapLadder": [], - "BootstrapLamp": [], - "BootstrapLampFill": [], - "BootstrapLaptop": [], - "BootstrapLaptopFill": [], - "BootstrapLayerBackward": [], - "BootstrapLayerForward": [], - "BootstrapLayers": [], - "BootstrapLayersFill": [], - "BootstrapLayersHalf": [], - "BootstrapLayoutSidebar": [], - "BootstrapLayoutSidebarInset": [], - "BootstrapLayoutSidebarInsetReverse": [], - "BootstrapLayoutSidebarReverse": [], - "BootstrapLayoutSplit": [], - "BootstrapLayoutTextSidebar": [], - "BootstrapLayoutTextSidebarReverse": [], - "BootstrapLayoutTextWindow": [], - "BootstrapLayoutTextWindowReverse": [], - "BootstrapLayoutThreeColumns": [], - "BootstrapLayoutWtf": [], - "BootstrapLifePreserver": [], - "BootstrapLightbulb": [], - "BootstrapLightbulbFill": [], - "BootstrapLightbulbOff": [], - "BootstrapLightbulbOffFill": [], - "BootstrapLightning": [], - "BootstrapLightningCharge": [], - "BootstrapLightningChargeFill": [], - "BootstrapLightningFill": [], - "BootstrapLine": [], - "BootstrapLink": [], - "BootstrapLink45Deg": [], - "BootstrapLinkedin": [], - "BootstrapList": [], - "BootstrapListCheck": [], - "BootstrapListColumns": [], - "BootstrapListColumnsReverse": [], - "BootstrapListNested": [], - "BootstrapListOl": [], - "BootstrapListStars": [], - "BootstrapListTask": [], - "BootstrapListUl": [], - "BootstrapLock": [], - "BootstrapLockFill": [], - "BootstrapLungs": [], - "BootstrapLungsFill": [], - "BootstrapMagic": [], - "BootstrapMagnet": [], - "BootstrapMagnetFill": [], - "BootstrapMailbox": [], - "BootstrapMailbox2": [], - "BootstrapMap": [], - "BootstrapMapFill": [], - "BootstrapMarkdown": [], - "BootstrapMarkdownFill": [], - "BootstrapMask": [], - "BootstrapMastodon": [], - "BootstrapMedium": [], - "BootstrapMegaphone": [], - "BootstrapMegaphoneFill": [], - "BootstrapMemory": [], - "BootstrapMenuApp": [], - "BootstrapMenuAppFill": [], - "BootstrapMenuButton": [], - "BootstrapMenuButtonFill": [], - "BootstrapMenuButtonWide": [], - "BootstrapMenuButtonWideFill": [], - "BootstrapMenuDown": [], - "BootstrapMenuUp": [], - "BootstrapMessenger": [], - "BootstrapMeta": [], - "BootstrapMic": [], - "BootstrapMicFill": [], - "BootstrapMicMute": [], - "BootstrapMicMuteFill": [], - "BootstrapMicrosoft": [], - "BootstrapMicrosoftTeams": [], - "BootstrapMinecart": [], - "BootstrapMinecartLoaded": [], - "BootstrapModem": [], - "BootstrapModemFill": [], - "BootstrapMoisture": [], - "BootstrapMoon": [], - "BootstrapMoonFill": [], - "BootstrapMoonStars": [], - "BootstrapMoonStarsFill": [], - "BootstrapMortarboard": [], - "BootstrapMortarboardFill": [], - "BootstrapMotherboard": [], - "BootstrapMotherboardFill": [], - "BootstrapMouse": [], - "BootstrapMouse2": [], - "BootstrapMouse2Fill": [], - "BootstrapMouse3": [], - "BootstrapMouse3Fill": [], - "BootstrapMouseFill": [], - "BootstrapMusicNote": [], - "BootstrapMusicNoteBeamed": [], - "BootstrapMusicNoteList": [], - "BootstrapMusicPlayer": [], - "BootstrapMusicPlayerFill": [], - "BootstrapNewspaper": [], - "BootstrapNintendoSwitch": [], - "BootstrapNodeMinus": [], - "BootstrapNodeMinusFill": [], - "BootstrapNodePlus": [], - "BootstrapNodePlusFill": [], - "BootstrapNut": [], - "BootstrapNutFill": [], - "BootstrapNvidia": [], - "BootstrapOctagon": [], - "BootstrapOctagonFill": [], - "BootstrapOctagonHalf": [], - "BootstrapOpticalAudio": [], - "BootstrapOpticalAudioFill": [], - "BootstrapOption": [], - "BootstrapOutlet": [], - "BootstrapPCircle": [], - "BootstrapPCircleFill": [], - "BootstrapPSquare": [], - "BootstrapPSquareFill": [], - "BootstrapPaintBucket": [], - "BootstrapPalette": [], - "BootstrapPalette2": [], - "BootstrapPaletteFill": [], - "BootstrapPaperclip": [], - "BootstrapParagraph": [], - "BootstrapPass": [], - "BootstrapPassFill": [], - "BootstrapPatchCheck": [], - "BootstrapPatchCheckFill": [], - "BootstrapPatchExclamation": [], - "BootstrapPatchExclamationFill": [], - "BootstrapPatchMinus": [], - "BootstrapPatchMinusFill": [], - "BootstrapPatchPlus": [], - "BootstrapPatchPlusFill": [], - "BootstrapPatchQuestion": [], - "BootstrapPatchQuestionFill": [], - "BootstrapPause": [], - "BootstrapPauseBtn": [], - "BootstrapPauseBtnFill": [], - "BootstrapPauseCircle": [], - "BootstrapPauseCircleFill": [], - "BootstrapPauseFill": [], - "BootstrapPaypal": [], - "BootstrapPc": [], - "BootstrapPcDisplay": [], - "BootstrapPcDisplayHorizontal": [], - "BootstrapPcHorizontal": [], - "BootstrapPciCard": [], - "BootstrapPeace": [], - "BootstrapPeaceFill": [], - "BootstrapPen": [], - "BootstrapPenFill": [], - "BootstrapPencil": [], - "BootstrapPencilFill": [], - "BootstrapPencilSquare": [], - "BootstrapPentagon": [], - "BootstrapPentagonFill": [], - "BootstrapPentagonHalf": [], - "BootstrapPeople": [], - "BootstrapPeopleFill": [], - "BootstrapPercent": [], - "BootstrapPerson": [], - "BootstrapPersonAdd": [], - "BootstrapPersonBadge": [], - "BootstrapPersonBadgeFill": [], - "BootstrapPersonBoundingBox": [], - "BootstrapPersonCheck": [], - "BootstrapPersonCheckFill": [], - "BootstrapPersonCircle": [], - "BootstrapPersonDash": [], - "BootstrapPersonDashFill": [], - "BootstrapPersonDown": [], - "BootstrapPersonExclamation": [], - "BootstrapPersonFill": [], - "BootstrapPersonFillAdd": [], - "BootstrapPersonFillCheck": [], - "BootstrapPersonFillDash": [], - "BootstrapPersonFillDown": [], - "BootstrapPersonFillExclamation": [], - "BootstrapPersonFillGear": [], - "BootstrapPersonFillLock": [], - "BootstrapPersonFillSlash": [], - "BootstrapPersonFillUp": [], - "BootstrapPersonFillX": [], - "BootstrapPersonGear": [], - "BootstrapPersonHeart": [], - "BootstrapPersonHearts": [], - "BootstrapPersonLinesFill": [], - "BootstrapPersonLock": [], - "BootstrapPersonPlus": [], - "BootstrapPersonPlusFill": [], - "BootstrapPersonRolodex": [], - "BootstrapPersonSlash": [], - "BootstrapPersonSquare": [], - "BootstrapPersonUp": [], - "BootstrapPersonVcard": [], - "BootstrapPersonVcardFill": [], - "BootstrapPersonVideo": [], - "BootstrapPersonVideo2": [], - "BootstrapPersonVideo3": [], - "BootstrapPersonWorkspace": [], - "BootstrapPersonX": [], - "BootstrapPersonXFill": [], - "BootstrapPhone": [], - "BootstrapPhoneFill": [], - "BootstrapPhoneFlip": [], - "BootstrapPhoneLandscape": [], - "BootstrapPhoneLandscapeFill": [], - "BootstrapPhoneVibrate": [], - "BootstrapPhoneVibrateFill": [], - "BootstrapPieChart": [], - "BootstrapPieChartFill": [], - "BootstrapPiggyBank": [], - "BootstrapPiggyBankFill": [], - "BootstrapPin": [], - "BootstrapPinAngle": [], - "BootstrapPinAngleFill": [], - "BootstrapPinFill": [], - "BootstrapPinMap": [], - "BootstrapPinMapFill": [], - "BootstrapPinterest": [], - "BootstrapPip": [], - "BootstrapPipFill": [], - "BootstrapPlay": [], - "BootstrapPlayBtn": [], - "BootstrapPlayBtnFill": [], - "BootstrapPlayCircle": [], - "BootstrapPlayCircleFill": [], - "BootstrapPlayFill": [], - "BootstrapPlaystation": [], - "BootstrapPlug": [], - "BootstrapPlugFill": [], - "BootstrapPlugin": [], - "BootstrapPlus": [], - "BootstrapPlusCircle": [], - "BootstrapPlusCircleDotted": [], - "BootstrapPlusCircleFill": [], - "BootstrapPlusLg": [], - "BootstrapPlusSlashMinus": [], - "BootstrapPlusSquare": [], - "BootstrapPlusSquareDotted": [], - "BootstrapPlusSquareFill": [], - "BootstrapPostage": [], - "BootstrapPostageFill": [], - "BootstrapPostageHeart": [], - "BootstrapPostageHeartFill": [], - "BootstrapPostcard": [], - "BootstrapPostcardFill": [], - "BootstrapPostcardHeart": [], - "BootstrapPostcardHeartFill": [], - "BootstrapPower": [], - "BootstrapPrescription": [], - "BootstrapPrescription2": [], - "BootstrapPrinter": [], - "BootstrapPrinterFill": [], - "BootstrapProjector": [], - "BootstrapProjectorFill": [], - "BootstrapPuzzle": [], - "BootstrapPuzzleFill": [], - "BootstrapQrCode": [], - "BootstrapQrCodeScan": [], - "BootstrapQuestion": [], - "BootstrapQuestionCircle": [], - "BootstrapQuestionCircleFill": [], - "BootstrapQuestionDiamond": [], - "BootstrapQuestionDiamondFill": [], - "BootstrapQuestionLg": [], - "BootstrapQuestionOctagon": [], - "BootstrapQuestionOctagonFill": [], - "BootstrapQuestionSquare": [], - "BootstrapQuestionSquareFill": [], - "BootstrapQuora": [], - "BootstrapQuote": [], - "BootstrapRCircle": [], - "BootstrapRCircleFill": [], - "BootstrapRSquare": [], - "BootstrapRSquareFill": [], - "BootstrapRadioactive": [], - "BootstrapRainbow": [], - "BootstrapReceipt": [], - "BootstrapReceiptCutoff": [], - "BootstrapReception0": [], - "BootstrapReception1": [], - "BootstrapReception2": [], - "BootstrapReception3": [], - "BootstrapReception4": [], - "BootstrapRecord": [], - "BootstrapRecord2": [], - "BootstrapRecord2Fill": [], - "BootstrapRecordBtn": [], - "BootstrapRecordBtnFill": [], - "BootstrapRecordCircle": [], - "BootstrapRecordCircleFill": [], - "BootstrapRecordFill": [], - "BootstrapRecycle": [], - "BootstrapReddit": [], - "BootstrapRegex": [], - "BootstrapRepeat": [], - "BootstrapRepeat1": [], - "BootstrapReply": [], - "BootstrapReplyAll": [], - "BootstrapReplyAllFill": [], - "BootstrapReplyFill": [], - "BootstrapRewind": [], - "BootstrapRewindBtn": [], - "BootstrapRewindBtnFill": [], - "BootstrapRewindCircle": [], - "BootstrapRewindCircleFill": [], - "BootstrapRewindFill": [], - "BootstrapRobot": [], - "BootstrapRocket": [], - "BootstrapRocketFill": [], - "BootstrapRocketTakeoff": [], - "BootstrapRocketTakeoffFill": [], - "BootstrapRouter": [], - "BootstrapRouterFill": [], - "BootstrapRss": [], - "BootstrapRssFill": [], - "BootstrapRulers": [], - "BootstrapSafe": [], - "BootstrapSafe2": [], - "BootstrapSafe2Fill": [], - "BootstrapSafeFill": [], - "BootstrapSave": [], - "BootstrapSave2": [], - "BootstrapSave2Fill": [], - "BootstrapSaveFill": [], - "BootstrapScissors": [], - "BootstrapScooter": [], - "BootstrapScrewdriver": [], - "BootstrapSdCard": [], - "BootstrapSdCardFill": [], - "BootstrapSearch": [], - "BootstrapSearchHeart": [], - "BootstrapSearchHeartFill": [], - "BootstrapSegmentedNav": [], - "BootstrapSend": [], - "BootstrapSendCheck": [], - "BootstrapSendCheckFill": [], - "BootstrapSendDash": [], - "BootstrapSendDashFill": [], - "BootstrapSendExclamation": [], - "BootstrapSendExclamationFill": [], - "BootstrapSendFill": [], - "BootstrapSendPlus": [], - "BootstrapSendPlusFill": [], - "BootstrapSendSlash": [], - "BootstrapSendSlashFill": [], - "BootstrapSendX": [], - "BootstrapSendXFill": [], - "BootstrapServer": [], - "BootstrapShare": [], - "BootstrapShareFill": [], - "BootstrapShield": [], - "BootstrapShieldCheck": [], - "BootstrapShieldExclamation": [], - "BootstrapShieldFill": [], - "BootstrapShieldFillCheck": [], - "BootstrapShieldFillExclamation": [], - "BootstrapShieldFillMinus": [], - "BootstrapShieldFillPlus": [], - "BootstrapShieldFillX": [], - "BootstrapShieldLock": [], - "BootstrapShieldLockFill": [], - "BootstrapShieldMinus": [], - "BootstrapShieldPlus": [], - "BootstrapShieldShaded": [], - "BootstrapShieldSlash": [], - "BootstrapShieldSlashFill": [], - "BootstrapShieldX": [], - "BootstrapShift": [], - "BootstrapShiftFill": [], - "BootstrapShop": [], - "BootstrapShopWindow": [], - "BootstrapShuffle": [], - "BootstrapSignDeadEnd": [], - "BootstrapSignDeadEndFill": [], - "BootstrapSignDoNotEnter": [], - "BootstrapSignDoNotEnterFill": [], - "BootstrapSignIntersection": [], - "BootstrapSignIntersectionFill": [], - "BootstrapSignIntersectionSide": [], - "BootstrapSignIntersectionSideFill": [], - "BootstrapSignIntersectionT": [], - "BootstrapSignIntersectionTFill": [], - "BootstrapSignIntersectionY": [], - "BootstrapSignIntersectionYFill": [], - "BootstrapSignMergeLeft": [], - "BootstrapSignMergeLeftFill": [], - "BootstrapSignMergeRight": [], - "BootstrapSignMergeRightFill": [], - "BootstrapSignNoLeftTurn": [], - "BootstrapSignNoLeftTurnFill": [], - "BootstrapSignNoParking": [], - "BootstrapSignNoParkingFill": [], - "BootstrapSignNoRightTurn": [], - "BootstrapSignNoRightTurnFill": [], - "BootstrapSignRailroad": [], - "BootstrapSignRailroadFill": [], - "BootstrapSignStop": [], - "BootstrapSignStopFill": [], - "BootstrapSignStopLights": [], - "BootstrapSignStopLightsFill": [], - "BootstrapSignTurnLeft": [], - "BootstrapSignTurnLeftFill": [], - "BootstrapSignTurnRight": [], - "BootstrapSignTurnRightFill": [], - "BootstrapSignTurnSlightLeft": [], - "BootstrapSignTurnSlightLeftFill": [], - "BootstrapSignTurnSlightRight": [], - "BootstrapSignTurnSlightRightFill": [], - "BootstrapSignYield": [], - "BootstrapSignYieldFill": [], - "BootstrapSignal": [], - "BootstrapSignpost": [], - "BootstrapSignpost2": [], - "BootstrapSignpost2Fill": [], - "BootstrapSignpostFill": [], - "BootstrapSignpostSplit": [], - "BootstrapSignpostSplitFill": [], - "BootstrapSim": [], - "BootstrapSimFill": [], - "BootstrapSinaWeibo": [], - "BootstrapSkipBackward": [], - "BootstrapSkipBackwardBtn": [], - "BootstrapSkipBackwardBtnFill": [], - "BootstrapSkipBackwardCircle": [], - "BootstrapSkipBackwardCircleFill": [], - "BootstrapSkipBackwardFill": [], - "BootstrapSkipEnd": [], - "BootstrapSkipEndBtn": [], - "BootstrapSkipEndBtnFill": [], - "BootstrapSkipEndCircle": [], - "BootstrapSkipEndCircleFill": [], - "BootstrapSkipEndFill": [], - "BootstrapSkipForward": [], - "BootstrapSkipForwardBtn": [], - "BootstrapSkipForwardBtnFill": [], - "BootstrapSkipForwardCircle": [], - "BootstrapSkipForwardCircleFill": [], - "BootstrapSkipForwardFill": [], - "BootstrapSkipStart": [], - "BootstrapSkipStartBtn": [], - "BootstrapSkipStartBtnFill": [], - "BootstrapSkipStartCircle": [], - "BootstrapSkipStartCircleFill": [], - "BootstrapSkipStartFill": [], - "BootstrapSkype": [], - "BootstrapSlack": [], - "BootstrapSlash": [], - "BootstrapSlashCircle": [], - "BootstrapSlashCircleFill": [], - "BootstrapSlashLg": [], - "BootstrapSlashSquare": [], - "BootstrapSlashSquareFill": [], - "BootstrapSliders": [], - "BootstrapSliders2": [], - "BootstrapSliders2Vertical": [], - "BootstrapSmartwatch": [], - "BootstrapSnapchat": [], - "BootstrapSnow": [], - "BootstrapSnow2": [], - "BootstrapSnow3": [], - "BootstrapSortAlphaDown": [], - "BootstrapSortAlphaDownAlt": [], - "BootstrapSortAlphaUp": [], - "BootstrapSortAlphaUpAlt": [], - "BootstrapSortDown": [], - "BootstrapSortDownAlt": [], - "BootstrapSortNumericDown": [], - "BootstrapSortNumericDownAlt": [], - "BootstrapSortNumericUp": [], - "BootstrapSortNumericUpAlt": [], - "BootstrapSortUp": [], - "BootstrapSortUpAlt": [], - "BootstrapSoundwave": [], - "BootstrapSpeaker": [], - "BootstrapSpeakerFill": [], - "BootstrapSpeedometer": [], - "BootstrapSpeedometer2": [], - "BootstrapSpellcheck": [], - "BootstrapSpotify": [], - "BootstrapSquare": [], - "BootstrapSquareFill": [], - "BootstrapSquareHalf": [], - "BootstrapStack": [], - "BootstrapStackOverflow": [], - "BootstrapStar": [], - "BootstrapStarFill": [], - "BootstrapStarHalf": [], - "BootstrapStars": [], - "BootstrapSteam": [], - "BootstrapStickies": [], - "BootstrapStickiesFill": [], - "BootstrapSticky": [], - "BootstrapStickyFill": [], - "BootstrapStop": [], - "BootstrapStopBtn": [], - "BootstrapStopBtnFill": [], - "BootstrapStopCircle": [], - "BootstrapStopCircleFill": [], - "BootstrapStopFill": [], - "BootstrapStoplights": [], - "BootstrapStoplightsFill": [], - "BootstrapStopwatch": [], - "BootstrapStopwatchFill": [], - "BootstrapStrava": [], - "BootstrapStripe": [], - "BootstrapSubscript": [], - "BootstrapSubtract": [], - "BootstrapSuitClub": [], - "BootstrapSuitClubFill": [], - "BootstrapSuitDiamond": [], - "BootstrapSuitDiamondFill": [], - "BootstrapSuitHeart": [], - "BootstrapSuitHeartFill": [], - "BootstrapSuitSpade": [], - "BootstrapSuitSpadeFill": [], - "BootstrapSun": [], - "BootstrapSunFill": [], - "BootstrapSunglasses": [], - "BootstrapSunrise": [], - "BootstrapSunriseFill": [], - "BootstrapSunset": [], - "BootstrapSunsetFill": [], - "BootstrapSuperscript": [], - "BootstrapSymmetryHorizontal": [], - "BootstrapSymmetryVertical": [], - "BootstrapTable": [], - "BootstrapTablet": [], - "BootstrapTabletFill": [], - "BootstrapTabletLandscape": [], - "BootstrapTabletLandscapeFill": [], - "BootstrapTag": [], - "BootstrapTagFill": [], - "BootstrapTags": [], - "BootstrapTagsFill": [], - "BootstrapTaxiFront": [], - "BootstrapTaxiFrontFill": [], - "BootstrapTelegram": [], - "BootstrapTelephone": [], - "BootstrapTelephoneFill": [], - "BootstrapTelephoneForward": [], - "BootstrapTelephoneForwardFill": [], - "BootstrapTelephoneInbound": [], - "BootstrapTelephoneInboundFill": [], - "BootstrapTelephoneMinus": [], - "BootstrapTelephoneMinusFill": [], - "BootstrapTelephoneOutbound": [], - "BootstrapTelephoneOutboundFill": [], - "BootstrapTelephonePlus": [], - "BootstrapTelephonePlusFill": [], - "BootstrapTelephoneX": [], - "BootstrapTelephoneXFill": [], - "BootstrapTencentQq": [], - "BootstrapTerminal": [], - "BootstrapTerminalDash": [], - "BootstrapTerminalFill": [], - "BootstrapTerminalPlus": [], - "BootstrapTerminalSplit": [], - "BootstrapTerminalX": [], - "BootstrapTextCenter": [], - "BootstrapTextIndentLeft": [], - "BootstrapTextIndentRight": [], - "BootstrapTextLeft": [], - "BootstrapTextParagraph": [], - "BootstrapTextRight": [], - "BootstrapTextWrap": [], - "BootstrapTextarea": [], - "BootstrapTextareaResize": [], - "BootstrapTextareaT": [], - "BootstrapThermometer": [], - "BootstrapThermometerHalf": [], - "BootstrapThermometerHigh": [], - "BootstrapThermometerLow": [], - "BootstrapThermometerSnow": [], - "BootstrapThermometerSun": [], - "BootstrapThreeDots": [], - "BootstrapThreeDotsVertical": [], - "BootstrapThunderbolt": [], - "BootstrapThunderboltFill": [], - "BootstrapTicket": [], - "BootstrapTicketDetailed": [], - "BootstrapTicketDetailedFill": [], - "BootstrapTicketFill": [], - "BootstrapTicketPerforated": [], - "BootstrapTicketPerforatedFill": [], - "BootstrapTiktok": [], - "BootstrapToggle2Off": [], - "BootstrapToggle2On": [], - "BootstrapToggleOff": [], - "BootstrapToggleOn": [], - "BootstrapToggles": [], - "BootstrapToggles2": [], - "BootstrapTools": [], - "BootstrapTornado": [], - "BootstrapTrainFreightFront": [], - "BootstrapTrainFreightFrontFill": [], - "BootstrapTrainFront": [], - "BootstrapTrainFrontFill": [], - "BootstrapTrainLightrailFront": [], - "BootstrapTrainLightrailFrontFill": [], - "BootstrapTranslate": [], - "BootstrapTrash": [], - "BootstrapTrash2": [], - "BootstrapTrash2Fill": [], - "BootstrapTrash3": [], - "BootstrapTrash3Fill": [], - "BootstrapTrashFill": [], - "BootstrapTree": [], - "BootstrapTreeFill": [], - "BootstrapTrello": [], - "BootstrapTriangle": [], - "BootstrapTriangleFill": [], - "BootstrapTriangleHalf": [], - "BootstrapTrophy": [], - "BootstrapTrophyFill": [], - "BootstrapTropicalStorm": [], - "BootstrapTruck": [], - "BootstrapTruckFlatbed": [], - "BootstrapTruckFront": [], - "BootstrapTruckFrontFill": [], - "BootstrapTsunami": [], - "BootstrapTv": [], - "BootstrapTvFill": [], - "BootstrapTwitch": [], - "BootstrapTwitter": [], - "BootstrapType": [], - "BootstrapTypeBold": [], - "BootstrapTypeH1": [], - "BootstrapTypeH2": [], - "BootstrapTypeH3": [], - "BootstrapTypeItalic": [], - "BootstrapTypeStrikethrough": [], - "BootstrapTypeUnderline": [], - "BootstrapUbuntu": [], - "BootstrapUiChecks": [], - "BootstrapUiChecksGrid": [], - "BootstrapUiRadios": [], - "BootstrapUiRadiosGrid": [], - "BootstrapUmbrella": [], - "BootstrapUmbrellaFill": [], - "BootstrapUnindent": [], - "BootstrapUnion": [], - "BootstrapUnity": [], - "BootstrapUniversalAccess": [], - "BootstrapUniversalAccessCircle": [], - "BootstrapUnlock": [], - "BootstrapUnlockFill": [], - "BootstrapUpc": [], - "BootstrapUpcScan": [], - "BootstrapUpload": [], - "BootstrapUsb": [], - "BootstrapUsbC": [], - "BootstrapUsbCFill": [], - "BootstrapUsbDrive": [], - "BootstrapUsbDriveFill": [], - "BootstrapUsbFill": [], - "BootstrapUsbMicro": [], - "BootstrapUsbMicroFill": [], - "BootstrapUsbMini": [], - "BootstrapUsbMiniFill": [], - "BootstrapUsbPlug": [], - "BootstrapUsbPlugFill": [], - "BootstrapUsbSymbol": [], - "BootstrapValentine": [], - "BootstrapValentine2": [], - "BootstrapVectorPen": [], - "BootstrapViewList": [], - "BootstrapViewStacked": [], - "BootstrapVimeo": [], - "BootstrapVinyl": [], - "BootstrapVinylFill": [], - "BootstrapVirus": [], - "BootstrapVirus2": [], - "BootstrapVoicemail": [], - "BootstrapVolumeDown": [], - "BootstrapVolumeDownFill": [], - "BootstrapVolumeMute": [], - "BootstrapVolumeMuteFill": [], - "BootstrapVolumeOff": [], - "BootstrapVolumeOffFill": [], - "BootstrapVolumeUp": [], - "BootstrapVolumeUpFill": [], - "BootstrapVr": [], - "BootstrapWallet": [], - "BootstrapWallet2": [], - "BootstrapWalletFill": [], - "BootstrapWatch": [], - "BootstrapWater": [], - "BootstrapWebcam": [], - "BootstrapWebcamFill": [], - "BootstrapWechat": [], - "BootstrapWhatsapp": [], - "BootstrapWifi": [], - "BootstrapWifi1": [], - "BootstrapWifi2": [], - "BootstrapWifiOff": [], - "BootstrapWikipedia": [], - "BootstrapWind": [], - "BootstrapWindow": [], - "BootstrapWindowDash": [], - "BootstrapWindowDesktop": [], - "BootstrapWindowDock": [], - "BootstrapWindowFullscreen": [], - "BootstrapWindowPlus": [], - "BootstrapWindowSidebar": [], - "BootstrapWindowSplit": [], - "BootstrapWindowStack": [], - "BootstrapWindowX": [], - "BootstrapWindows": [], - "BootstrapWordpress": [], - "BootstrapWrench": [], - "BootstrapWrenchAdjustable": [], - "BootstrapWrenchAdjustableCircle": [], - "BootstrapWrenchAdjustableCircleFill": [], - "BootstrapX": [], - "BootstrapXCircle": [], - "BootstrapXCircleFill": [], - "BootstrapXDiamond": [], - "BootstrapXDiamondFill": [], - "BootstrapXLg": [], - "BootstrapXOctagon": [], - "BootstrapXOctagonFill": [], - "BootstrapXSquare": [], - "BootstrapXSquareFill": [], - "BootstrapXbox": [], - "BootstrapYelp": [], - "BootstrapYinYang": [], - "BootstrapYoutube": [], - "BootstrapZoomIn": [], - "BootstrapZoomOut": [], - "ExtraGooglePlay": [], - "FeatherActivity": [], - "FeatherAirplay": [], - "FeatherAlertCircle": [], - "FeatherAlertOctagon": [], - "FeatherAlertTriangle": [], - "FeatherAlignCenter": [], - "FeatherAlignJustify": [], - "FeatherAlignLeft": [], - "FeatherAlignRight": [], - "FeatherAnchor": [], - "FeatherAperture": [], - "FeatherArchive": [], - "FeatherArrowDown": [], - "FeatherArrowDownCircle": [], - "FeatherArrowDownLeft": [], - "FeatherArrowDownRight": [], - "FeatherArrowLeft": [], - "FeatherArrowLeftCircle": [], - "FeatherArrowRight": [], - "FeatherArrowRightCircle": [], - "FeatherArrowUp": [], - "FeatherArrowUpCircle": [], - "FeatherArrowUpLeft": [], - "FeatherArrowUpRight": [], - "FeatherAtSign": [], - "FeatherAward": [], - "FeatherBarChart": [], - "FeatherBarChart2": [], - "FeatherBattery": [], - "FeatherBatteryCharging": [], - "FeatherBell": [], - "FeatherBellOff": [], - "FeatherBluetooth": [], - "FeatherBold": [], - "FeatherBook": [], - "FeatherBookOpen": [], - "FeatherBookmark": [], - "FeatherBox": [], - "FeatherBriefcase": [], - "FeatherCalendar": [], - "FeatherCamera": [], - "FeatherCameraOff": [], - "FeatherCast": [], - "FeatherCheck": [], - "FeatherCheckCircle": [], - "FeatherCheckSquare": [], - "FeatherChevronDown": [], - "FeatherChevronLeft": [], - "FeatherChevronRight": [], - "FeatherChevronUp": [], - "FeatherChevronsDown": [], - "FeatherChevronsLeft": [], - "FeatherChevronsRight": [], - "FeatherChevronsUp": [], - "FeatherChrome": [], - "FeatherCircle": [], - "FeatherClipboard": [], - "FeatherClock": [], - "FeatherCloud": [], - "FeatherCloudDrizzle": [], - "FeatherCloudLightning": [], - "FeatherCloudOff": [], - "FeatherCloudRain": [], - "FeatherCloudSnow": [], - "FeatherCode": [], - "FeatherCodepen": [], - "FeatherCodesandbox": [], - "FeatherCoffee": [], - "FeatherColumns": [], - "FeatherCommand": [], - "FeatherCompass": [], - "FeatherCopy": [], - "FeatherCornerDownLeft": [], - "FeatherCornerDownRight": [], - "FeatherCornerLeftDown": [], - "FeatherCornerLeftUp": [], - "FeatherCornerRightDown": [], - "FeatherCornerRightUp": [], - "FeatherCornerUpLeft": [], - "FeatherCornerUpRight": [], - "FeatherCpu": [], - "FeatherCreditCard": [], - "FeatherCrop": [], - "FeatherCrosshair": [], - "FeatherDatabase": [], - "FeatherDelete": [], - "FeatherDisc": [], - "FeatherDivide": [], - "FeatherDivideCircle": [], - "FeatherDivideSquare": [], - "FeatherDollarSign": [], - "FeatherDownload": [], - "FeatherDownloadCloud": [], - "FeatherDribbble": [], - "FeatherDroplet": [], - "FeatherEdit": [], - "FeatherEdit2": [], - "FeatherEdit3": [], - "FeatherExternalLink": [], - "FeatherEye": [], - "FeatherEyeOff": [], - "FeatherFacebook": [], - "FeatherFastForward": [], - "FeatherFeather": [], - "FeatherFigma": [], - "FeatherFile": [], - "FeatherFileMinus": [], - "FeatherFilePlus": [], - "FeatherFileText": [], - "FeatherFilm": [], - "FeatherFilter": [], - "FeatherFlag": [], - "FeatherFolder": [], - "FeatherFolderMinus": [], - "FeatherFolderPlus": [], - "FeatherFramer": [], - "FeatherFrown": [], - "FeatherGift": [], - "FeatherGitBranch": [], - "FeatherGitCommit": [], - "FeatherGitMerge": [], - "FeatherGitPullRequest": [], - "FeatherGithub": [], - "FeatherGitlab": [], - "FeatherGlobe": [], - "FeatherGrid": [], - "FeatherHardDrive": [], - "FeatherHash": [], - "FeatherHeadphones": [], - "FeatherHeart": [], - "FeatherHelpCircle": [], - "FeatherHexagon": [], - "FeatherHome": [], - "FeatherImage": [], - "FeatherInbox": [], - "FeatherInfo": [], - "FeatherInstagram": [], - "FeatherItalic": [], - "FeatherKey": [], - "FeatherLayers": [], - "FeatherLayout": [], - "FeatherLifeBuoy": [], - "FeatherLink": [], - "FeatherLink2": [], - "FeatherLinkedin": [], - "FeatherList": [], - "FeatherLoader": [], - "FeatherLock": [], - "FeatherLogIn": [], - "FeatherLogOut": [], - "FeatherMail": [], - "FeatherMap": [], - "FeatherMapPin": [], - "FeatherMaximize": [], - "FeatherMaximize2": [], - "FeatherMeh": [], - "FeatherMenu": [], - "FeatherMessageCircle": [], - "FeatherMessageSquare": [], - "FeatherMic": [], - "FeatherMicOff": [], - "FeatherMinimize": [], - "FeatherMinimize2": [], - "FeatherMinus": [], - "FeatherMinusCircle": [], - "FeatherMinusSquare": [], - "FeatherMonitor": [], - "FeatherMoon": [], - "FeatherMoreHorizontal": [], - "FeatherMoreVertical": [], - "FeatherMousePointer": [], - "FeatherMove": [], - "FeatherMusic": [], - "FeatherNavigation": [], - "FeatherNavigation2": [], - "FeatherOctagon": [], - "FeatherPackage": [], - "FeatherPaperclip": [], - "FeatherPause": [], - "FeatherPauseCircle": [], - "FeatherPenTool": [], - "FeatherPercent": [], - "FeatherPhone": [], - "FeatherPhoneCall": [], - "FeatherPhoneForwarded": [], - "FeatherPhoneIncoming": [], - "FeatherPhoneMissed": [], - "FeatherPhoneOff": [], - "FeatherPhoneOutgoing": [], - "FeatherPieChart": [], - "FeatherPlay": [], - "FeatherPlayCircle": [], - "FeatherPlus": [], - "FeatherPlusCircle": [], - "FeatherPlusSquare": [], - "FeatherPocket": [], - "FeatherPower": [], - "FeatherPrinter": [], - "FeatherRadio": [], - "FeatherRefreshCcw": [], - "FeatherRefreshCw": [], - "FeatherRepeat": [], - "FeatherRewind": [], - "FeatherRotateCcw": [], - "FeatherRotateCw": [], - "FeatherRss": [], - "FeatherSave": [], - "FeatherScissors": [], - "FeatherSearch": [], - "FeatherSend": [], - "FeatherServer": [], - "FeatherSettings": [], - "FeatherShare": [], - "FeatherShare2": [], - "FeatherShield": [], - "FeatherShieldOff": [], - "FeatherShoppingBag": [], - "FeatherShoppingCart": [], - "FeatherShuffle": [], - "FeatherSidebar": [], - "FeatherSkipBack": [], - "FeatherSkipForward": [], - "FeatherSlack": [], - "FeatherSlash": [], - "FeatherSliders": [], - "FeatherSmartphone": [], - "FeatherSmile": [], - "FeatherSpeaker": [], - "FeatherSquare": [], - "FeatherStar": [], - "FeatherStopCircle": [], - "FeatherSun": [], - "FeatherSunrise": [], - "FeatherSunset": [], - "FeatherTable": [], - "FeatherTablet": [], - "FeatherTag": [], - "FeatherTarget": [], - "FeatherTerminal": [], - "FeatherThermometer": [], - "FeatherThumbsDown": [], - "FeatherThumbsUp": [], - "FeatherToggleLeft": [], - "FeatherToggleRight": [], - "FeatherTool": [], - "FeatherTrash": [], - "FeatherTrash2": [], - "FeatherTrello": [], - "FeatherTrendingDown": [], - "FeatherTrendingUp": [], - "FeatherTriangle": [], - "FeatherTruck": [], - "FeatherTv": [], - "FeatherTwitch": [], - "FeatherTwitter": [], - "FeatherType": [], - "FeatherUmbrella": [], - "FeatherUnderline": [], - "FeatherUnlock": [], - "FeatherUpload": [], - "FeatherUploadCloud": [], - "FeatherUser": [], - "FeatherUserCheck": [], - "FeatherUserMinus": [], - "FeatherUserPlus": [], - "FeatherUserX": [], - "FeatherUsers": [], - "FeatherVideo": [], - "FeatherVideoOff": [], - "FeatherVoicemail": [], - "FeatherVolume": [], - "FeatherVolume1": [], - "FeatherVolume2": [], - "FeatherVolumeX": [], - "FeatherWatch": [], - "FeatherWifi": [], - "FeatherWifiOff": [], - "FeatherWind": [], - "FeatherX": [], - "FeatherXCircle": [], - "FeatherXOctagon": [], - "FeatherXSquare": [], - "FeatherYoutube": [], - "FeatherZap": [], - "FeatherZapOff": [], - "FeatherZoomIn": [], - "FeatherZoomOut": [], - "FontAwesomeRegularAddressBook": [], - "FontAwesomeRegularAddressCard": [], - "FontAwesomeRegularBell": [], - "FontAwesomeRegularBellSlash": [], - "FontAwesomeRegularBookmark": [], - "FontAwesomeRegularBuilding": [], - "FontAwesomeRegularCalendar": [], - "FontAwesomeRegularCalendarCheck": [], - "FontAwesomeRegularCalendarDays": [], - "FontAwesomeRegularCalendarMinus": [], - "FontAwesomeRegularCalendarPlus": [], - "FontAwesomeRegularCalendarXmark": [], - "FontAwesomeRegularChartBar": [], - "FontAwesomeRegularChessBishop": [], - "FontAwesomeRegularChessKing": [], - "FontAwesomeRegularChessKnight": [], - "FontAwesomeRegularChessPawn": [], - "FontAwesomeRegularChessQueen": [], - "FontAwesomeRegularChessRook": [], - "FontAwesomeRegularCircle": [], - "FontAwesomeRegularCircleCheck": [], - "FontAwesomeRegularCircleDot": [], - "FontAwesomeRegularCircleDown": [], - "FontAwesomeRegularCircleLeft": [], - "FontAwesomeRegularCirclePause": [], - "FontAwesomeRegularCirclePlay": [], - "FontAwesomeRegularCircleQuestion": [], - "FontAwesomeRegularCircleRight": [], - "FontAwesomeRegularCircleStop": [], - "FontAwesomeRegularCircleUp": [], - "FontAwesomeRegularCircleUser": [], - "FontAwesomeRegularCircleXmark": [], - "FontAwesomeRegularClipboard": [], - "FontAwesomeRegularClock": [], - "FontAwesomeRegularClone": [], - "FontAwesomeRegularClosedCaptioning": [], - "FontAwesomeRegularComment": [], - "FontAwesomeRegularCommentDots": [], - "FontAwesomeRegularComments": [], - "FontAwesomeRegularCompass": [], - "FontAwesomeRegularCopy": [], - "FontAwesomeRegularCopyright": [], - "FontAwesomeRegularCreditCard": [], - "FontAwesomeRegularEnvelope": [], - "FontAwesomeRegularEnvelopeOpen": [], - "FontAwesomeRegularEye": [], - "FontAwesomeRegularEyeSlash": [], - "FontAwesomeRegularFaceAngry": [], - "FontAwesomeRegularFaceDizzy": [], - "FontAwesomeRegularFaceFlushed": [], - "FontAwesomeRegularFaceFrown": [], - "FontAwesomeRegularFaceFrownOpen": [], - "FontAwesomeRegularFaceGrimace": [], - "FontAwesomeRegularFaceGrin": [], - "FontAwesomeRegularFaceGrinBeam": [], - "FontAwesomeRegularFaceGrinBeamSweat": [], - "FontAwesomeRegularFaceGrinHearts": [], - "FontAwesomeRegularFaceGrinSquint": [], - "FontAwesomeRegularFaceGrinSquintTears": [], - "FontAwesomeRegularFaceGrinStars": [], - "FontAwesomeRegularFaceGrinTears": [], - "FontAwesomeRegularFaceGrinTongue": [], - "FontAwesomeRegularFaceGrinTongueSquint": [], - "FontAwesomeRegularFaceGrinTongueWink": [], - "FontAwesomeRegularFaceGrinWide": [], - "FontAwesomeRegularFaceGrinWink": [], - "FontAwesomeRegularFaceKiss": [], - "FontAwesomeRegularFaceKissBeam": [], - "FontAwesomeRegularFaceKissWinkHeart": [], - "FontAwesomeRegularFaceLaugh": [], - "FontAwesomeRegularFaceLaughBeam": [], - "FontAwesomeRegularFaceLaughSquint": [], - "FontAwesomeRegularFaceLaughWink": [], - "FontAwesomeRegularFaceMeh": [], - "FontAwesomeRegularFaceMehBlank": [], - "FontAwesomeRegularFaceRollingEyes": [], - "FontAwesomeRegularFaceSadCry": [], - "FontAwesomeRegularFaceSadTear": [], - "FontAwesomeRegularFaceSmile": [], - "FontAwesomeRegularFaceSmileBeam": [], - "FontAwesomeRegularFaceSmileWink": [], - "FontAwesomeRegularFaceSurprise": [], - "FontAwesomeRegularFaceTired": [], - "FontAwesomeRegularFile": [], - "FontAwesomeRegularFileAudio": [], - "FontAwesomeRegularFileCode": [], - "FontAwesomeRegularFileExcel": [], - "FontAwesomeRegularFileImage": [], - "FontAwesomeRegularFileLines": [], - "FontAwesomeRegularFilePdf": [], - "FontAwesomeRegularFilePowerpoint": [], - "FontAwesomeRegularFileVideo": [], - "FontAwesomeRegularFileWord": [], - "FontAwesomeRegularFileZipper": [], - "FontAwesomeRegularFlag": [], - "FontAwesomeRegularFloppyDisk": [], - "FontAwesomeRegularFolder": [], - "FontAwesomeRegularFolderClosed": [], - "FontAwesomeRegularFolderOpen": [], - "FontAwesomeRegularFontAwesome": [], - "FontAwesomeRegularFutbol": [], - "FontAwesomeRegularGem": [], - "FontAwesomeRegularHand": [], - "FontAwesomeRegularHandBackFist": [], - "FontAwesomeRegularHandLizard": [], - "FontAwesomeRegularHandPeace": [], - "FontAwesomeRegularHandPointDown": [], - "FontAwesomeRegularHandPointLeft": [], - "FontAwesomeRegularHandPointRight": [], - "FontAwesomeRegularHandPointUp": [], - "FontAwesomeRegularHandPointer": [], - "FontAwesomeRegularHandScissors": [], - "FontAwesomeRegularHandSpock": [], - "FontAwesomeRegularHandshake": [], - "FontAwesomeRegularHardDrive": [], - "FontAwesomeRegularHeart": [], - "FontAwesomeRegularHospital": [], - "FontAwesomeRegularHourglass": [], - "FontAwesomeRegularIdBadge": [], - "FontAwesomeRegularIdCard": [], - "FontAwesomeRegularImage": [], - "FontAwesomeRegularImages": [], - "FontAwesomeRegularKeyboard": [], - "FontAwesomeRegularLemon": [], - "FontAwesomeRegularLifeRing": [], - "FontAwesomeRegularLightbulb": [], - "FontAwesomeRegularMap": [], - "FontAwesomeRegularMessage": [], - "FontAwesomeRegularMoneyBill1": [], - "FontAwesomeRegularMoon": [], - "FontAwesomeRegularNewspaper": [], - "FontAwesomeRegularNoteSticky": [], - "FontAwesomeRegularObjectGroup": [], - "FontAwesomeRegularObjectUngroup": [], - "FontAwesomeRegularPaperPlane": [], - "FontAwesomeRegularPaste": [], - "FontAwesomeRegularPenToSquare": [], - "FontAwesomeRegularRectangleList": [], - "FontAwesomeRegularRectangleXmark": [], - "FontAwesomeRegularRegistered": [], - "FontAwesomeRegularShareFromSquare": [], - "FontAwesomeRegularSnowflake": [], - "FontAwesomeRegularSquare": [], - "FontAwesomeRegularSquareCaretDown": [], - "FontAwesomeRegularSquareCaretLeft": [], - "FontAwesomeRegularSquareCaretRight": [], - "FontAwesomeRegularSquareCaretUp": [], - "FontAwesomeRegularSquareCheck": [], - "FontAwesomeRegularSquareFull": [], - "FontAwesomeRegularSquareMinus": [], - "FontAwesomeRegularSquarePlus": [], - "FontAwesomeRegularStar": [], - "FontAwesomeRegularStarHalf": [], - "FontAwesomeRegularStarHalfStroke": [], - "FontAwesomeRegularSun": [], - "FontAwesomeRegularThumbsDown": [], - "FontAwesomeRegularThumbsUp": [], - "FontAwesomeRegularTrashCan": [], - "FontAwesomeRegularUser": [], - "FontAwesomeRegularWindowMaximize": [], - "FontAwesomeRegularWindowMinimize": [], - "FontAwesomeRegularWindowRestore": [], - "FontAwesomeSolid0": [], - "FontAwesomeSolid1": [], - "FontAwesomeSolid2": [], - "FontAwesomeSolid3": [], - "FontAwesomeSolid4": [], - "FontAwesomeSolid5": [], - "FontAwesomeSolid6": [], - "FontAwesomeSolid7": [], - "FontAwesomeSolid8": [], - "FontAwesomeSolid9": [], - "FontAwesomeSolidA": [], - "FontAwesomeSolidAddressBook": [], - "FontAwesomeSolidAddressCard": [], - "FontAwesomeSolidAlignCenter": [], - "FontAwesomeSolidAlignJustify": [], - "FontAwesomeSolidAlignLeft": [], - "FontAwesomeSolidAlignRight": [], - "FontAwesomeSolidAnchor": [], - "FontAwesomeSolidAnchorCircleCheck": [], - "FontAwesomeSolidAnchorCircleExclamation": [], - "FontAwesomeSolidAnchorCircleXmark": [], - "FontAwesomeSolidAnchorLock": [], - "FontAwesomeSolidAngleDown": [], - "FontAwesomeSolidAngleLeft": [], - "FontAwesomeSolidAngleRight": [], - "FontAwesomeSolidAngleUp": [], - "FontAwesomeSolidAnglesDown": [], - "FontAwesomeSolidAnglesLeft": [], - "FontAwesomeSolidAnglesRight": [], - "FontAwesomeSolidAnglesUp": [], - "FontAwesomeSolidAnkh": [], - "FontAwesomeSolidAppleWhole": [], - "FontAwesomeSolidArchway": [], - "FontAwesomeSolidArrowDown": [], - "FontAwesomeSolidArrowDown19": [], - "FontAwesomeSolidArrowDown91": [], - "FontAwesomeSolidArrowDownAZ": [], - "FontAwesomeSolidArrowDownLong": [], - "FontAwesomeSolidArrowDownShortWide": [], - "FontAwesomeSolidArrowDownUpAcrossLine": [], - "FontAwesomeSolidArrowDownUpLock": [], - "FontAwesomeSolidArrowDownWideShort": [], - "FontAwesomeSolidArrowDownZA": [], - "FontAwesomeSolidArrowLeft": [], - "FontAwesomeSolidArrowLeftLong": [], - "FontAwesomeSolidArrowPointer": [], - "FontAwesomeSolidArrowRight": [], - "FontAwesomeSolidArrowRightArrowLeft": [], - "FontAwesomeSolidArrowRightFromBracket": [], - "FontAwesomeSolidArrowRightLong": [], - "FontAwesomeSolidArrowRightToBracket": [], - "FontAwesomeSolidArrowRightToCity": [], - "FontAwesomeSolidArrowRotateLeft": [], - "FontAwesomeSolidArrowRotateRight": [], - "FontAwesomeSolidArrowTrendDown": [], - "FontAwesomeSolidArrowTrendUp": [], - "FontAwesomeSolidArrowTurnDown": [], - "FontAwesomeSolidArrowTurnUp": [], - "FontAwesomeSolidArrowUp": [], - "FontAwesomeSolidArrowUp19": [], - "FontAwesomeSolidArrowUp91": [], - "FontAwesomeSolidArrowUpAZ": [], - "FontAwesomeSolidArrowUpFromBracket": [], - "FontAwesomeSolidArrowUpFromGroundWater": [], - "FontAwesomeSolidArrowUpFromWaterPump": [], - "FontAwesomeSolidArrowUpLong": [], - "FontAwesomeSolidArrowUpRightDots": [], - "FontAwesomeSolidArrowUpRightFromSquare": [], - "FontAwesomeSolidArrowUpShortWide": [], - "FontAwesomeSolidArrowUpWideShort": [], - "FontAwesomeSolidArrowUpZA": [], - "FontAwesomeSolidArrowsDownToLine": [], - "FontAwesomeSolidArrowsDownToPeople": [], - "FontAwesomeSolidArrowsLeftRight": [], - "FontAwesomeSolidArrowsLeftRightToLine": [], - "FontAwesomeSolidArrowsRotate": [], - "FontAwesomeSolidArrowsSpin": [], - "FontAwesomeSolidArrowsSplitUpAndLeft": [], - "FontAwesomeSolidArrowsToCircle": [], - "FontAwesomeSolidArrowsToDot": [], - "FontAwesomeSolidArrowsToEye": [], - "FontAwesomeSolidArrowsTurnRight": [], - "FontAwesomeSolidArrowsTurnToDots": [], - "FontAwesomeSolidArrowsUpDown": [], - "FontAwesomeSolidArrowsUpDownLeftRight": [], - "FontAwesomeSolidArrowsUpToLine": [], - "FontAwesomeSolidAsterisk": [], - "FontAwesomeSolidAt": [], - "FontAwesomeSolidAtom": [], - "FontAwesomeSolidAudioDescription": [], - "FontAwesomeSolidAustralSign": [], - "FontAwesomeSolidAward": [], - "FontAwesomeSolidB": [], - "FontAwesomeSolidBaby": [], - "FontAwesomeSolidBabyCarriage": [], - "FontAwesomeSolidBackward": [], - "FontAwesomeSolidBackwardFast": [], - "FontAwesomeSolidBackwardStep": [], - "FontAwesomeSolidBacon": [], - "FontAwesomeSolidBacteria": [], - "FontAwesomeSolidBacterium": [], - "FontAwesomeSolidBagShopping": [], - "FontAwesomeSolidBahai": [], - "FontAwesomeSolidBahtSign": [], - "FontAwesomeSolidBan": [], - "FontAwesomeSolidBanSmoking": [], - "FontAwesomeSolidBandage": [], - "FontAwesomeSolidBarcode": [], - "FontAwesomeSolidBars": [], - "FontAwesomeSolidBarsProgress": [], - "FontAwesomeSolidBarsStaggered": [], - "FontAwesomeSolidBaseball": [], - "FontAwesomeSolidBaseballBatBall": [], - "FontAwesomeSolidBasketShopping": [], - "FontAwesomeSolidBasketball": [], - "FontAwesomeSolidBath": [], - "FontAwesomeSolidBatteryEmpty": [], - "FontAwesomeSolidBatteryFull": [], - "FontAwesomeSolidBatteryHalf": [], - "FontAwesomeSolidBatteryQuarter": [], - "FontAwesomeSolidBatteryThreeQuarters": [], - "FontAwesomeSolidBed": [], - "FontAwesomeSolidBedPulse": [], - "FontAwesomeSolidBeerMugEmpty": [], - "FontAwesomeSolidBell": [], - "FontAwesomeSolidBellConcierge": [], - "FontAwesomeSolidBellSlash": [], - "FontAwesomeSolidBezierCurve": [], - "FontAwesomeSolidBicycle": [], - "FontAwesomeSolidBinoculars": [], - "FontAwesomeSolidBiohazard": [], - "FontAwesomeSolidBitcoinSign": [], - "FontAwesomeSolidBlender": [], - "FontAwesomeSolidBlenderPhone": [], - "FontAwesomeSolidBlog": [], - "FontAwesomeSolidBold": [], - "FontAwesomeSolidBolt": [], - "FontAwesomeSolidBoltLightning": [], - "FontAwesomeSolidBomb": [], - "FontAwesomeSolidBone": [], - "FontAwesomeSolidBong": [], - "FontAwesomeSolidBook": [], - "FontAwesomeSolidBookAtlas": [], - "FontAwesomeSolidBookBible": [], - "FontAwesomeSolidBookBookmark": [], - "FontAwesomeSolidBookJournalWhills": [], - "FontAwesomeSolidBookMedical": [], - "FontAwesomeSolidBookOpen": [], - "FontAwesomeSolidBookOpenReader": [], - "FontAwesomeSolidBookQuran": [], - "FontAwesomeSolidBookSkull": [], - "FontAwesomeSolidBookmark": [], - "FontAwesomeSolidBorderAll": [], - "FontAwesomeSolidBorderNone": [], - "FontAwesomeSolidBorderTopLeft": [], - "FontAwesomeSolidBoreHole": [], - "FontAwesomeSolidBottleDroplet": [], - "FontAwesomeSolidBottleWater": [], - "FontAwesomeSolidBowlFood": [], - "FontAwesomeSolidBowlRice": [], - "FontAwesomeSolidBowlingBall": [], - "FontAwesomeSolidBox": [], - "FontAwesomeSolidBoxArchive": [], - "FontAwesomeSolidBoxOpen": [], - "FontAwesomeSolidBoxTissue": [], - "FontAwesomeSolidBoxesPacking": [], - "FontAwesomeSolidBoxesStacked": [], - "FontAwesomeSolidBraille": [], - "FontAwesomeSolidBrain": [], - "FontAwesomeSolidBrazilianRealSign": [], - "FontAwesomeSolidBreadSlice": [], - "FontAwesomeSolidBridge": [], - "FontAwesomeSolidBridgeCircleCheck": [], - "FontAwesomeSolidBridgeCircleExclamation": [], - "FontAwesomeSolidBridgeCircleXmark": [], - "FontAwesomeSolidBridgeLock": [], - "FontAwesomeSolidBridgeWater": [], - "FontAwesomeSolidBriefcase": [], - "FontAwesomeSolidBriefcaseMedical": [], - "FontAwesomeSolidBroom": [], - "FontAwesomeSolidBroomBall": [], - "FontAwesomeSolidBrush": [], - "FontAwesomeSolidBucket": [], - "FontAwesomeSolidBug": [], - "FontAwesomeSolidBugSlash": [], - "FontAwesomeSolidBugs": [], - "FontAwesomeSolidBuilding": [], - "FontAwesomeSolidBuildingCircleArrowRight": [], - "FontAwesomeSolidBuildingCircleCheck": [], - "FontAwesomeSolidBuildingCircleExclamation": [], - "FontAwesomeSolidBuildingCircleXmark": [], - "FontAwesomeSolidBuildingColumns": [], - "FontAwesomeSolidBuildingFlag": [], - "FontAwesomeSolidBuildingLock": [], - "FontAwesomeSolidBuildingNgo": [], - "FontAwesomeSolidBuildingShield": [], - "FontAwesomeSolidBuildingUn": [], - "FontAwesomeSolidBuildingUser": [], - "FontAwesomeSolidBuildingWheat": [], - "FontAwesomeSolidBullhorn": [], - "FontAwesomeSolidBullseye": [], - "FontAwesomeSolidBurger": [], - "FontAwesomeSolidBurst": [], - "FontAwesomeSolidBus": [], - "FontAwesomeSolidBusSimple": [], - "FontAwesomeSolidBusinessTime": [], - "FontAwesomeSolidC": [], - "FontAwesomeSolidCakeCandles": [], - "FontAwesomeSolidCalculator": [], - "FontAwesomeSolidCalendar": [], - "FontAwesomeSolidCalendarCheck": [], - "FontAwesomeSolidCalendarDay": [], - "FontAwesomeSolidCalendarDays": [], - "FontAwesomeSolidCalendarMinus": [], - "FontAwesomeSolidCalendarPlus": [], - "FontAwesomeSolidCalendarWeek": [], - "FontAwesomeSolidCalendarXmark": [], - "FontAwesomeSolidCamera": [], - "FontAwesomeSolidCameraRetro": [], - "FontAwesomeSolidCameraRotate": [], - "FontAwesomeSolidCampground": [], - "FontAwesomeSolidCandyCane": [], - "FontAwesomeSolidCannabis": [], - "FontAwesomeSolidCapsules": [], - "FontAwesomeSolidCar": [], - "FontAwesomeSolidCarBattery": [], - "FontAwesomeSolidCarBurst": [], - "FontAwesomeSolidCarCrash": [], - "FontAwesomeSolidCarOn": [], - "FontAwesomeSolidCarRear": [], - "FontAwesomeSolidCarSide": [], - "FontAwesomeSolidCarTunnel": [], - "FontAwesomeSolidCaravan": [], - "FontAwesomeSolidCaretDown": [], - "FontAwesomeSolidCaretLeft": [], - "FontAwesomeSolidCaretRight": [], - "FontAwesomeSolidCaretUp": [], - "FontAwesomeSolidCarrot": [], - "FontAwesomeSolidCartArrowDown": [], - "FontAwesomeSolidCartFlatbed": [], - "FontAwesomeSolidCartFlatbedSuitcase": [], - "FontAwesomeSolidCartPlus": [], - "FontAwesomeSolidCartShopping": [], - "FontAwesomeSolidCashRegister": [], - "FontAwesomeSolidCat": [], - "FontAwesomeSolidCediSign": [], - "FontAwesomeSolidCentSign": [], - "FontAwesomeSolidCertificate": [], - "FontAwesomeSolidChair": [], - "FontAwesomeSolidChalkboard": [], - "FontAwesomeSolidChalkboardUser": [], - "FontAwesomeSolidChampagneGlasses": [], - "FontAwesomeSolidChargingStation": [], - "FontAwesomeSolidChartArea": [], - "FontAwesomeSolidChartBar": [], - "FontAwesomeSolidChartColumn": [], - "FontAwesomeSolidChartGantt": [], - "FontAwesomeSolidChartLine": [], - "FontAwesomeSolidChartPie": [], - "FontAwesomeSolidChartSimple": [], - "FontAwesomeSolidCheck": [], - "FontAwesomeSolidCheckDouble": [], - "FontAwesomeSolidCheckToSlot": [], - "FontAwesomeSolidCheese": [], - "FontAwesomeSolidChess": [], - "FontAwesomeSolidChessBishop": [], - "FontAwesomeSolidChessBoard": [], - "FontAwesomeSolidChessKing": [], - "FontAwesomeSolidChessKnight": [], - "FontAwesomeSolidChessPawn": [], - "FontAwesomeSolidChessQueen": [], - "FontAwesomeSolidChessRook": [], - "FontAwesomeSolidChevronDown": [], - "FontAwesomeSolidChevronLeft": [], - "FontAwesomeSolidChevronRight": [], - "FontAwesomeSolidChevronUp": [], - "FontAwesomeSolidChild": [], - "FontAwesomeSolidChildDress": [], - "FontAwesomeSolidChildReaching": [], - "FontAwesomeSolidChildRifle": [], - "FontAwesomeSolidChildren": [], - "FontAwesomeSolidChurch": [], - "FontAwesomeSolidCircle": [], - "FontAwesomeSolidCircleArrowDown": [], - "FontAwesomeSolidCircleArrowLeft": [], - "FontAwesomeSolidCircleArrowRight": [], - "FontAwesomeSolidCircleArrowUp": [], - "FontAwesomeSolidCircleCheck": [], - "FontAwesomeSolidCircleChevronDown": [], - "FontAwesomeSolidCircleChevronLeft": [], - "FontAwesomeSolidCircleChevronRight": [], - "FontAwesomeSolidCircleChevronUp": [], - "FontAwesomeSolidCircleDollarToSlot": [], - "FontAwesomeSolidCircleDot": [], - "FontAwesomeSolidCircleDown": [], - "FontAwesomeSolidCircleExclamation": [], - "FontAwesomeSolidCircleH": [], - "FontAwesomeSolidCircleHalfStroke": [], - "FontAwesomeSolidCircleInfo": [], - "FontAwesomeSolidCircleLeft": [], - "FontAwesomeSolidCircleMinus": [], - "FontAwesomeSolidCircleNodes": [], - "FontAwesomeSolidCircleNotch": [], - "FontAwesomeSolidCirclePause": [], - "FontAwesomeSolidCirclePlay": [], - "FontAwesomeSolidCirclePlus": [], - "FontAwesomeSolidCircleQuestion": [], - "FontAwesomeSolidCircleRadiation": [], - "FontAwesomeSolidCircleRight": [], - "FontAwesomeSolidCircleStop": [], - "FontAwesomeSolidCircleUp": [], - "FontAwesomeSolidCircleUser": [], - "FontAwesomeSolidCircleXmark": [], - "FontAwesomeSolidCity": [], - "FontAwesomeSolidClapperboard": [], - "FontAwesomeSolidClipboard": [], - "FontAwesomeSolidClipboardCheck": [], - "FontAwesomeSolidClipboardList": [], - "FontAwesomeSolidClipboardQuestion": [], - "FontAwesomeSolidClipboardUser": [], - "FontAwesomeSolidClock": [], - "FontAwesomeSolidClockRotateLeft": [], - "FontAwesomeSolidClone": [], - "FontAwesomeSolidClosedCaptioning": [], - "FontAwesomeSolidCloud": [], - "FontAwesomeSolidCloudArrowDown": [], - "FontAwesomeSolidCloudArrowUp": [], - "FontAwesomeSolidCloudBolt": [], - "FontAwesomeSolidCloudMeatball": [], - "FontAwesomeSolidCloudMoon": [], - "FontAwesomeSolidCloudMoonRain": [], - "FontAwesomeSolidCloudRain": [], - "FontAwesomeSolidCloudShowersHeavy": [], - "FontAwesomeSolidCloudShowersWater": [], - "FontAwesomeSolidCloudSun": [], - "FontAwesomeSolidCloudSunRain": [], - "FontAwesomeSolidClover": [], - "FontAwesomeSolidCode": [], - "FontAwesomeSolidCodeBranch": [], - "FontAwesomeSolidCodeCommit": [], - "FontAwesomeSolidCodeCompare": [], - "FontAwesomeSolidCodeFork": [], - "FontAwesomeSolidCodeMerge": [], - "FontAwesomeSolidCodePullRequest": [], - "FontAwesomeSolidCoins": [], - "FontAwesomeSolidColonSign": [], - "FontAwesomeSolidComment": [], - "FontAwesomeSolidCommentDollar": [], - "FontAwesomeSolidCommentDots": [], - "FontAwesomeSolidCommentMedical": [], - "FontAwesomeSolidCommentSlash": [], - "FontAwesomeSolidCommentSms": [], - "FontAwesomeSolidComments": [], - "FontAwesomeSolidCommentsDollar": [], - "FontAwesomeSolidCompactDisc": [], - "FontAwesomeSolidCompass": [], - "FontAwesomeSolidCompassDrafting": [], - "FontAwesomeSolidCompress": [], - "FontAwesomeSolidComputer": [], - "FontAwesomeSolidComputerMouse": [], - "FontAwesomeSolidCookie": [], - "FontAwesomeSolidCookieBite": [], - "FontAwesomeSolidCopy": [], - "FontAwesomeSolidCopyright": [], - "FontAwesomeSolidCouch": [], - "FontAwesomeSolidCow": [], - "FontAwesomeSolidCreditCard": [], - "FontAwesomeSolidCrop": [], - "FontAwesomeSolidCropSimple": [], - "FontAwesomeSolidCross": [], - "FontAwesomeSolidCrosshairs": [], - "FontAwesomeSolidCrow": [], - "FontAwesomeSolidCrown": [], - "FontAwesomeSolidCrutch": [], - "FontAwesomeSolidCruzeiroSign": [], - "FontAwesomeSolidCube": [], - "FontAwesomeSolidCubes": [], - "FontAwesomeSolidCubesStacked": [], - "FontAwesomeSolidD": [], - "FontAwesomeSolidDatabase": [], - "FontAwesomeSolidDeleteLeft": [], - "FontAwesomeSolidDemocrat": [], - "FontAwesomeSolidDesktop": [], - "FontAwesomeSolidDharmachakra": [], - "FontAwesomeSolidDiagramNext": [], - "FontAwesomeSolidDiagramPredecessor": [], - "FontAwesomeSolidDiagramProject": [], - "FontAwesomeSolidDiagramSuccessor": [], - "FontAwesomeSolidDiamond": [], - "FontAwesomeSolidDiamondTurnRight": [], - "FontAwesomeSolidDice": [], - "FontAwesomeSolidDiceD20": [], - "FontAwesomeSolidDiceD6": [], - "FontAwesomeSolidDiceFive": [], - "FontAwesomeSolidDiceFour": [], - "FontAwesomeSolidDiceOne": [], - "FontAwesomeSolidDiceSix": [], - "FontAwesomeSolidDiceThree": [], - "FontAwesomeSolidDiceTwo": [], - "FontAwesomeSolidDisease": [], - "FontAwesomeSolidDisplay": [], - "FontAwesomeSolidDivide": [], - "FontAwesomeSolidDna": [], - "FontAwesomeSolidDog": [], - "FontAwesomeSolidDollarSign": [], - "FontAwesomeSolidDolly": [], - "FontAwesomeSolidDongSign": [], - "FontAwesomeSolidDoorClosed": [], - "FontAwesomeSolidDoorOpen": [], - "FontAwesomeSolidDove": [], - "FontAwesomeSolidDownLeftAndUpRightToCenter": [], - "FontAwesomeSolidDownLong": [], - "FontAwesomeSolidDownload": [], - "FontAwesomeSolidDragon": [], - "FontAwesomeSolidDrawPolygon": [], - "FontAwesomeSolidDroplet": [], - "FontAwesomeSolidDropletSlash": [], - "FontAwesomeSolidDrum": [], - "FontAwesomeSolidDrumSteelpan": [], - "FontAwesomeSolidDrumstickBite": [], - "FontAwesomeSolidDumbbell": [], - "FontAwesomeSolidDumpster": [], - "FontAwesomeSolidDumpsterFire": [], - "FontAwesomeSolidDungeon": [], - "FontAwesomeSolidE": [], - "FontAwesomeSolidEarDeaf": [], - "FontAwesomeSolidEarListen": [], - "FontAwesomeSolidEarthAfrica": [], - "FontAwesomeSolidEarthAmericas": [], - "FontAwesomeSolidEarthAsia": [], - "FontAwesomeSolidEarthEurope": [], - "FontAwesomeSolidEarthOceania": [], - "FontAwesomeSolidEgg": [], - "FontAwesomeSolidEject": [], - "FontAwesomeSolidElevator": [], - "FontAwesomeSolidEllipsis": [], - "FontAwesomeSolidEllipsisVertical": [], - "FontAwesomeSolidEnvelope": [], - "FontAwesomeSolidEnvelopeCircleCheck": [], - "FontAwesomeSolidEnvelopeOpen": [], - "FontAwesomeSolidEnvelopeOpenText": [], - "FontAwesomeSolidEnvelopesBulk": [], - "FontAwesomeSolidEquals": [], - "FontAwesomeSolidEraser": [], - "FontAwesomeSolidEthernet": [], - "FontAwesomeSolidEuroSign": [], - "FontAwesomeSolidExclamation": [], - "FontAwesomeSolidExpand": [], - "FontAwesomeSolidExplosion": [], - "FontAwesomeSolidEye": [], - "FontAwesomeSolidEyeDropper": [], - "FontAwesomeSolidEyeLowVision": [], - "FontAwesomeSolidEyeSlash": [], - "FontAwesomeSolidF": [], - "FontAwesomeSolidFaceAngry": [], - "FontAwesomeSolidFaceDizzy": [], - "FontAwesomeSolidFaceFlushed": [], - "FontAwesomeSolidFaceFrown": [], - "FontAwesomeSolidFaceFrownOpen": [], - "FontAwesomeSolidFaceGrimace": [], - "FontAwesomeSolidFaceGrin": [], - "FontAwesomeSolidFaceGrinBeam": [], - "FontAwesomeSolidFaceGrinBeamSweat": [], - "FontAwesomeSolidFaceGrinHearts": [], - "FontAwesomeSolidFaceGrinSquint": [], - "FontAwesomeSolidFaceGrinSquintTears": [], - "FontAwesomeSolidFaceGrinStars": [], - "FontAwesomeSolidFaceGrinTears": [], - "FontAwesomeSolidFaceGrinTongue": [], - "FontAwesomeSolidFaceGrinTongueSquint": [], - "FontAwesomeSolidFaceGrinTongueWink": [], - "FontAwesomeSolidFaceGrinWide": [], - "FontAwesomeSolidFaceGrinWink": [], - "FontAwesomeSolidFaceKiss": [], - "FontAwesomeSolidFaceKissBeam": [], - "FontAwesomeSolidFaceKissWinkHeart": [], - "FontAwesomeSolidFaceLaugh": [], - "FontAwesomeSolidFaceLaughBeam": [], - "FontAwesomeSolidFaceLaughSquint": [], - "FontAwesomeSolidFaceLaughWink": [], - "FontAwesomeSolidFaceMeh": [], - "FontAwesomeSolidFaceMehBlank": [], - "FontAwesomeSolidFaceRollingEyes": [], - "FontAwesomeSolidFaceSadCry": [], - "FontAwesomeSolidFaceSadTear": [], - "FontAwesomeSolidFaceSmile": [], - "FontAwesomeSolidFaceSmileBeam": [], - "FontAwesomeSolidFaceSmileWink": [], - "FontAwesomeSolidFaceSurprise": [], - "FontAwesomeSolidFaceTired": [], - "FontAwesomeSolidFan": [], - "FontAwesomeSolidFaucet": [], - "FontAwesomeSolidFaucetDrip": [], - "FontAwesomeSolidFax": [], - "FontAwesomeSolidFeather": [], - "FontAwesomeSolidFeatherPointed": [], - "FontAwesomeSolidFerry": [], - "FontAwesomeSolidFile": [], - "FontAwesomeSolidFileArrowDown": [], - "FontAwesomeSolidFileArrowUp": [], - "FontAwesomeSolidFileAudio": [], - "FontAwesomeSolidFileCircleCheck": [], - "FontAwesomeSolidFileCircleExclamation": [], - "FontAwesomeSolidFileCircleMinus": [], - "FontAwesomeSolidFileCirclePlus": [], - "FontAwesomeSolidFileCircleQuestion": [], - "FontAwesomeSolidFileCircleXmark": [], - "FontAwesomeSolidFileCode": [], - "FontAwesomeSolidFileContract": [], - "FontAwesomeSolidFileCsv": [], - "FontAwesomeSolidFileExcel": [], - "FontAwesomeSolidFileExport": [], - "FontAwesomeSolidFileImage": [], - "FontAwesomeSolidFileImport": [], - "FontAwesomeSolidFileInvoice": [], - "FontAwesomeSolidFileInvoiceDollar": [], - "FontAwesomeSolidFileLines": [], - "FontAwesomeSolidFileMedical": [], - "FontAwesomeSolidFilePdf": [], - "FontAwesomeSolidFilePen": [], - "FontAwesomeSolidFilePowerpoint": [], - "FontAwesomeSolidFilePrescription": [], - "FontAwesomeSolidFileShield": [], - "FontAwesomeSolidFileSignature": [], - "FontAwesomeSolidFileVideo": [], - "FontAwesomeSolidFileWaveform": [], - "FontAwesomeSolidFileWord": [], - "FontAwesomeSolidFileZipper": [], - "FontAwesomeSolidFill": [], - "FontAwesomeSolidFillDrip": [], - "FontAwesomeSolidFilm": [], - "FontAwesomeSolidFilter": [], - "FontAwesomeSolidFilterCircleDollar": [], - "FontAwesomeSolidFilterCircleXmark": [], - "FontAwesomeSolidFingerprint": [], - "FontAwesomeSolidFire": [], - "FontAwesomeSolidFireBurner": [], - "FontAwesomeSolidFireExtinguisher": [], - "FontAwesomeSolidFireFlameCurved": [], - "FontAwesomeSolidFireFlameSimple": [], - "FontAwesomeSolidFish": [], - "FontAwesomeSolidFishFins": [], - "FontAwesomeSolidFlag": [], - "FontAwesomeSolidFlagCheckered": [], - "FontAwesomeSolidFlagUsa": [], - "FontAwesomeSolidFlask": [], - "FontAwesomeSolidFlaskVial": [], - "FontAwesomeSolidFloppyDisk": [], - "FontAwesomeSolidFlorinSign": [], - "FontAwesomeSolidFolder": [], - "FontAwesomeSolidFolderClosed": [], - "FontAwesomeSolidFolderMinus": [], - "FontAwesomeSolidFolderOpen": [], - "FontAwesomeSolidFolderPlus": [], - "FontAwesomeSolidFolderTree": [], - "FontAwesomeSolidFont": [], - "FontAwesomeSolidFontAwesome": [], - "FontAwesomeSolidFootball": [], - "FontAwesomeSolidForward": [], - "FontAwesomeSolidForwardFast": [], - "FontAwesomeSolidForwardStep": [], - "FontAwesomeSolidFrancSign": [], - "FontAwesomeSolidFrog": [], - "FontAwesomeSolidFutbol": [], - "FontAwesomeSolidG": [], - "FontAwesomeSolidGamepad": [], - "FontAwesomeSolidGasPump": [], - "FontAwesomeSolidGauge": [], - "FontAwesomeSolidGaugeHigh": [], - "FontAwesomeSolidGaugeSimple": [], - "FontAwesomeSolidGaugeSimpleHigh": [], - "FontAwesomeSolidGavel": [], - "FontAwesomeSolidGear": [], - "FontAwesomeSolidGears": [], - "FontAwesomeSolidGem": [], - "FontAwesomeSolidGenderless": [], - "FontAwesomeSolidGhost": [], - "FontAwesomeSolidGift": [], - "FontAwesomeSolidGifts": [], - "FontAwesomeSolidGlassWater": [], - "FontAwesomeSolidGlassWaterDroplet": [], - "FontAwesomeSolidGlasses": [], - "FontAwesomeSolidGlobe": [], - "FontAwesomeSolidGolfBallTee": [], - "FontAwesomeSolidGopuram": [], - "FontAwesomeSolidGraduationCap": [], - "FontAwesomeSolidGreaterThan": [], - "FontAwesomeSolidGreaterThanEqual": [], - "FontAwesomeSolidGrip": [], - "FontAwesomeSolidGripLines": [], - "FontAwesomeSolidGripLinesVertical": [], - "FontAwesomeSolidGripVertical": [], - "FontAwesomeSolidGroupArrowsRotate": [], - "FontAwesomeSolidGuaraniSign": [], - "FontAwesomeSolidGuitar": [], - "FontAwesomeSolidGun": [], - "FontAwesomeSolidH": [], - "FontAwesomeSolidHammer": [], - "FontAwesomeSolidHamsa": [], - "FontAwesomeSolidHand": [], - "FontAwesomeSolidHandBackFist": [], - "FontAwesomeSolidHandDots": [], - "FontAwesomeSolidHandFist": [], - "FontAwesomeSolidHandHolding": [], - "FontAwesomeSolidHandHoldingDollar": [], - "FontAwesomeSolidHandHoldingDroplet": [], - "FontAwesomeSolidHandHoldingHand": [], - "FontAwesomeSolidHandHoldingHeart": [], - "FontAwesomeSolidHandHoldingMedical": [], - "FontAwesomeSolidHandLizard": [], - "FontAwesomeSolidHandMiddleFinger": [], - "FontAwesomeSolidHandPeace": [], - "FontAwesomeSolidHandPointDown": [], - "FontAwesomeSolidHandPointLeft": [], - "FontAwesomeSolidHandPointRight": [], - "FontAwesomeSolidHandPointUp": [], - "FontAwesomeSolidHandPointer": [], - "FontAwesomeSolidHandScissors": [], - "FontAwesomeSolidHandSparkles": [], - "FontAwesomeSolidHandSpock": [], - "FontAwesomeSolidHandcuffs": [], - "FontAwesomeSolidHands": [], - "FontAwesomeSolidHandsAslInterpreting": [], - "FontAwesomeSolidHandsBound": [], - "FontAwesomeSolidHandsBubbles": [], - "FontAwesomeSolidHandsClapping": [], - "FontAwesomeSolidHandsHolding": [], - "FontAwesomeSolidHandsHoldingChild": [], - "FontAwesomeSolidHandsHoldingCircle": [], - "FontAwesomeSolidHandsPraying": [], - "FontAwesomeSolidHandshake": [], - "FontAwesomeSolidHandshakeAngle": [], - "FontAwesomeSolidHandshakeSimple": [], - "FontAwesomeSolidHandshakeSimpleSlash": [], - "FontAwesomeSolidHandshakeSlash": [], - "FontAwesomeSolidHanukiah": [], - "FontAwesomeSolidHardDrive": [], - "FontAwesomeSolidHashtag": [], - "FontAwesomeSolidHatCowboy": [], - "FontAwesomeSolidHatCowboySide": [], - "FontAwesomeSolidHatWizard": [], - "FontAwesomeSolidHeadSideCough": [], - "FontAwesomeSolidHeadSideCoughSlash": [], - "FontAwesomeSolidHeadSideMask": [], - "FontAwesomeSolidHeadSideVirus": [], - "FontAwesomeSolidHeading": [], - "FontAwesomeSolidHeadphones": [], - "FontAwesomeSolidHeadphonesSimple": [], - "FontAwesomeSolidHeadset": [], - "FontAwesomeSolidHeart": [], - "FontAwesomeSolidHeartCircleBolt": [], - "FontAwesomeSolidHeartCircleCheck": [], - "FontAwesomeSolidHeartCircleExclamation": [], - "FontAwesomeSolidHeartCircleMinus": [], - "FontAwesomeSolidHeartCirclePlus": [], - "FontAwesomeSolidHeartCircleXmark": [], - "FontAwesomeSolidHeartCrack": [], - "FontAwesomeSolidHeartPulse": [], - "FontAwesomeSolidHelicopter": [], - "FontAwesomeSolidHelicopterSymbol": [], - "FontAwesomeSolidHelmetSafety": [], - "FontAwesomeSolidHelmetUn": [], - "FontAwesomeSolidHighlighter": [], - "FontAwesomeSolidHillAvalanche": [], - "FontAwesomeSolidHillRockslide": [], - "FontAwesomeSolidHippo": [], - "FontAwesomeSolidHockeyPuck": [], - "FontAwesomeSolidHollyBerry": [], - "FontAwesomeSolidHorse": [], - "FontAwesomeSolidHorseHead": [], - "FontAwesomeSolidHospital": [], - "FontAwesomeSolidHospitalUser": [], - "FontAwesomeSolidHotTubPerson": [], - "FontAwesomeSolidHotdog": [], - "FontAwesomeSolidHotel": [], - "FontAwesomeSolidHourglass": [], - "FontAwesomeSolidHourglassEmpty": [], - "FontAwesomeSolidHourglassEnd": [], - "FontAwesomeSolidHourglassStart": [], - "FontAwesomeSolidHouse": [], - "FontAwesomeSolidHouseChimney": [], - "FontAwesomeSolidHouseChimneyCrack": [], - "FontAwesomeSolidHouseChimneyMedical": [], - "FontAwesomeSolidHouseChimneyUser": [], - "FontAwesomeSolidHouseChimneyWindow": [], - "FontAwesomeSolidHouseCircleCheck": [], - "FontAwesomeSolidHouseCircleExclamation": [], - "FontAwesomeSolidHouseCircleXmark": [], - "FontAwesomeSolidHouseCrack": [], - "FontAwesomeSolidHouseFire": [], - "FontAwesomeSolidHouseFlag": [], - "FontAwesomeSolidHouseFloodWater": [], - "FontAwesomeSolidHouseFloodWaterCircleArrowRight": [], - "FontAwesomeSolidHouseLaptop": [], - "FontAwesomeSolidHouseLock": [], - "FontAwesomeSolidHouseMedical": [], - "FontAwesomeSolidHouseMedicalCircleCheck": [], - "FontAwesomeSolidHouseMedicalCircleExclamation": [], - "FontAwesomeSolidHouseMedicalCircleXmark": [], - "FontAwesomeSolidHouseMedicalFlag": [], - "FontAwesomeSolidHouseSignal": [], - "FontAwesomeSolidHouseTsunami": [], - "FontAwesomeSolidHouseUser": [], - "FontAwesomeSolidHryvniaSign": [], - "FontAwesomeSolidHurricane": [], - "FontAwesomeSolidI": [], - "FontAwesomeSolidICursor": [], - "FontAwesomeSolidIceCream": [], - "FontAwesomeSolidIcicles": [], - "FontAwesomeSolidIcons": [], - "FontAwesomeSolidIdBadge": [], - "FontAwesomeSolidIdCard": [], - "FontAwesomeSolidIdCardClip": [], - "FontAwesomeSolidIgloo": [], - "FontAwesomeSolidImage": [], - "FontAwesomeSolidImagePortrait": [], - "FontAwesomeSolidImages": [], - "FontAwesomeSolidInbox": [], - "FontAwesomeSolidIndent": [], - "FontAwesomeSolidIndianRupeeSign": [], - "FontAwesomeSolidIndustry": [], - "FontAwesomeSolidInfinity": [], - "FontAwesomeSolidInfo": [], - "FontAwesomeSolidItalic": [], - "FontAwesomeSolidJ": [], - "FontAwesomeSolidJar": [], - "FontAwesomeSolidJarWheat": [], - "FontAwesomeSolidJedi": [], - "FontAwesomeSolidJetFighter": [], - "FontAwesomeSolidJetFighterUp": [], - "FontAwesomeSolidJoint": [], - "FontAwesomeSolidJugDetergent": [], - "FontAwesomeSolidK": [], - "FontAwesomeSolidKaaba": [], - "FontAwesomeSolidKey": [], - "FontAwesomeSolidKeyboard": [], - "FontAwesomeSolidKhanda": [], - "FontAwesomeSolidKipSign": [], - "FontAwesomeSolidKitMedical": [], - "FontAwesomeSolidKitchenSet": [], - "FontAwesomeSolidKiwiBird": [], - "FontAwesomeSolidL": [], - "FontAwesomeSolidLandMineOn": [], - "FontAwesomeSolidLandmark": [], - "FontAwesomeSolidLandmarkDome": [], - "FontAwesomeSolidLandmarkFlag": [], - "FontAwesomeSolidLanguage": [], - "FontAwesomeSolidLaptop": [], - "FontAwesomeSolidLaptopCode": [], - "FontAwesomeSolidLaptopFile": [], - "FontAwesomeSolidLaptopMedical": [], - "FontAwesomeSolidLariSign": [], - "FontAwesomeSolidLayerGroup": [], - "FontAwesomeSolidLeaf": [], - "FontAwesomeSolidLeftLong": [], - "FontAwesomeSolidLeftRight": [], - "FontAwesomeSolidLemon": [], - "FontAwesomeSolidLessThan": [], - "FontAwesomeSolidLessThanEqual": [], - "FontAwesomeSolidLifeRing": [], - "FontAwesomeSolidLightbulb": [], - "FontAwesomeSolidLinesLeaning": [], - "FontAwesomeSolidLink": [], - "FontAwesomeSolidLinkSlash": [], - "FontAwesomeSolidLiraSign": [], - "FontAwesomeSolidList": [], - "FontAwesomeSolidListCheck": [], - "FontAwesomeSolidListOl": [], - "FontAwesomeSolidListUl": [], - "FontAwesomeSolidLitecoinSign": [], - "FontAwesomeSolidLocationArrow": [], - "FontAwesomeSolidLocationCrosshairs": [], - "FontAwesomeSolidLocationDot": [], - "FontAwesomeSolidLocationPin": [], - "FontAwesomeSolidLocationPinLock": [], - "FontAwesomeSolidLock": [], - "FontAwesomeSolidLockOpen": [], - "FontAwesomeSolidLocust": [], - "FontAwesomeSolidLungs": [], - "FontAwesomeSolidLungsVirus": [], - "FontAwesomeSolidM": [], - "FontAwesomeSolidMagnet": [], - "FontAwesomeSolidMagnifyingGlass": [], - "FontAwesomeSolidMagnifyingGlassArrowRight": [], - "FontAwesomeSolidMagnifyingGlassChart": [], - "FontAwesomeSolidMagnifyingGlassDollar": [], - "FontAwesomeSolidMagnifyingGlassLocation": [], - "FontAwesomeSolidMagnifyingGlassMinus": [], - "FontAwesomeSolidMagnifyingGlassPlus": [], - "FontAwesomeSolidManatSign": [], - "FontAwesomeSolidMap": [], - "FontAwesomeSolidMapLocation": [], - "FontAwesomeSolidMapLocationDot": [], - "FontAwesomeSolidMapPin": [], - "FontAwesomeSolidMarker": [], - "FontAwesomeSolidMars": [], - "FontAwesomeSolidMarsAndVenus": [], - "FontAwesomeSolidMarsAndVenusBurst": [], - "FontAwesomeSolidMarsDouble": [], - "FontAwesomeSolidMarsStroke": [], - "FontAwesomeSolidMarsStrokeRight": [], - "FontAwesomeSolidMarsStrokeUp": [], - "FontAwesomeSolidMartiniGlass": [], - "FontAwesomeSolidMartiniGlassCitrus": [], - "FontAwesomeSolidMartiniGlassEmpty": [], - "FontAwesomeSolidMask": [], - "FontAwesomeSolidMaskFace": [], - "FontAwesomeSolidMaskVentilator": [], - "FontAwesomeSolidMasksTheater": [], - "FontAwesomeSolidMattressPillow": [], - "FontAwesomeSolidMaximize": [], - "FontAwesomeSolidMedal": [], - "FontAwesomeSolidMemory": [], - "FontAwesomeSolidMenorah": [], - "FontAwesomeSolidMercury": [], - "FontAwesomeSolidMessage": [], - "FontAwesomeSolidMeteor": [], - "FontAwesomeSolidMicrochip": [], - "FontAwesomeSolidMicrophone": [], - "FontAwesomeSolidMicrophoneLines": [], - "FontAwesomeSolidMicrophoneLinesSlash": [], - "FontAwesomeSolidMicrophoneSlash": [], - "FontAwesomeSolidMicroscope": [], - "FontAwesomeSolidMillSign": [], - "FontAwesomeSolidMinimize": [], - "FontAwesomeSolidMinus": [], - "FontAwesomeSolidMitten": [], - "FontAwesomeSolidMobile": [], - "FontAwesomeSolidMobileButton": [], - "FontAwesomeSolidMobileRetro": [], - "FontAwesomeSolidMobileScreen": [], - "FontAwesomeSolidMobileScreenButton": [], - "FontAwesomeSolidMoneyBill": [], - "FontAwesomeSolidMoneyBill1": [], - "FontAwesomeSolidMoneyBill1Wave": [], - "FontAwesomeSolidMoneyBillTransfer": [], - "FontAwesomeSolidMoneyBillTrendUp": [], - "FontAwesomeSolidMoneyBillWave": [], - "FontAwesomeSolidMoneyBillWheat": [], - "FontAwesomeSolidMoneyBills": [], - "FontAwesomeSolidMoneyCheck": [], - "FontAwesomeSolidMoneyCheckDollar": [], - "FontAwesomeSolidMonument": [], - "FontAwesomeSolidMoon": [], - "FontAwesomeSolidMortarPestle": [], - "FontAwesomeSolidMosque": [], - "FontAwesomeSolidMosquito": [], - "FontAwesomeSolidMosquitoNet": [], - "FontAwesomeSolidMotorcycle": [], - "FontAwesomeSolidMound": [], - "FontAwesomeSolidMountain": [], - "FontAwesomeSolidMountainCity": [], - "FontAwesomeSolidMountainSun": [], - "FontAwesomeSolidMugHot": [], - "FontAwesomeSolidMugSaucer": [], - "FontAwesomeSolidMusic": [], - "FontAwesomeSolidN": [], - "FontAwesomeSolidNairaSign": [], - "FontAwesomeSolidNetworkWired": [], - "FontAwesomeSolidNeuter": [], - "FontAwesomeSolidNewspaper": [], - "FontAwesomeSolidNotEqual": [], - "FontAwesomeSolidNoteSticky": [], - "FontAwesomeSolidNotesMedical": [], - "FontAwesomeSolidO": [], - "FontAwesomeSolidObjectGroup": [], - "FontAwesomeSolidObjectUngroup": [], - "FontAwesomeSolidOilCan": [], - "FontAwesomeSolidOilWell": [], - "FontAwesomeSolidOm": [], - "FontAwesomeSolidOtter": [], - "FontAwesomeSolidOutdent": [], - "FontAwesomeSolidP": [], - "FontAwesomeSolidPager": [], - "FontAwesomeSolidPaintRoller": [], - "FontAwesomeSolidPaintbrush": [], - "FontAwesomeSolidPalette": [], - "FontAwesomeSolidPallet": [], - "FontAwesomeSolidPanorama": [], - "FontAwesomeSolidPaperPlane": [], - "FontAwesomeSolidPaperclip": [], - "FontAwesomeSolidParachuteBox": [], - "FontAwesomeSolidParagraph": [], - "FontAwesomeSolidPassport": [], - "FontAwesomeSolidPaste": [], - "FontAwesomeSolidPause": [], - "FontAwesomeSolidPaw": [], - "FontAwesomeSolidPeace": [], - "FontAwesomeSolidPen": [], - "FontAwesomeSolidPenClip": [], - "FontAwesomeSolidPenFancy": [], - "FontAwesomeSolidPenNib": [], - "FontAwesomeSolidPenRuler": [], - "FontAwesomeSolidPenToSquare": [], - "FontAwesomeSolidPencil": [], - "FontAwesomeSolidPeopleArrowsLeftRight": [], - "FontAwesomeSolidPeopleCarryBox": [], - "FontAwesomeSolidPeopleGroup": [], - "FontAwesomeSolidPeopleLine": [], - "FontAwesomeSolidPeoplePulling": [], - "FontAwesomeSolidPeopleRobbery": [], - "FontAwesomeSolidPeopleRoof": [], - "FontAwesomeSolidPepperHot": [], - "FontAwesomeSolidPercent": [], - "FontAwesomeSolidPerson": [], - "FontAwesomeSolidPersonArrowDownToLine": [], - "FontAwesomeSolidPersonArrowUpFromLine": [], - "FontAwesomeSolidPersonBiking": [], - "FontAwesomeSolidPersonBooth": [], - "FontAwesomeSolidPersonBreastfeeding": [], - "FontAwesomeSolidPersonBurst": [], - "FontAwesomeSolidPersonCane": [], - "FontAwesomeSolidPersonChalkboard": [], - "FontAwesomeSolidPersonCircleCheck": [], - "FontAwesomeSolidPersonCircleExclamation": [], - "FontAwesomeSolidPersonCircleMinus": [], - "FontAwesomeSolidPersonCirclePlus": [], - "FontAwesomeSolidPersonCircleQuestion": [], - "FontAwesomeSolidPersonCircleXmark": [], - "FontAwesomeSolidPersonDigging": [], - "FontAwesomeSolidPersonDotsFromLine": [], - "FontAwesomeSolidPersonDress": [], - "FontAwesomeSolidPersonDressBurst": [], - "FontAwesomeSolidPersonDrowning": [], - "FontAwesomeSolidPersonFalling": [], - "FontAwesomeSolidPersonFallingBurst": [], - "FontAwesomeSolidPersonHalfDress": [], - "FontAwesomeSolidPersonHarassing": [], - "FontAwesomeSolidPersonHiking": [], - "FontAwesomeSolidPersonMilitaryPointing": [], - "FontAwesomeSolidPersonMilitaryRifle": [], - "FontAwesomeSolidPersonMilitaryToPerson": [], - "FontAwesomeSolidPersonPraying": [], - "FontAwesomeSolidPersonPregnant": [], - "FontAwesomeSolidPersonRays": [], - "FontAwesomeSolidPersonRifle": [], - "FontAwesomeSolidPersonRunning": [], - "FontAwesomeSolidPersonShelter": [], - "FontAwesomeSolidPersonSkating": [], - "FontAwesomeSolidPersonSkiing": [], - "FontAwesomeSolidPersonSkiingNordic": [], - "FontAwesomeSolidPersonSnowboarding": [], - "FontAwesomeSolidPersonSwimming": [], - "FontAwesomeSolidPersonThroughWindow": [], - "FontAwesomeSolidPersonWalking": [], - "FontAwesomeSolidPersonWalkingArrowLoopLeft": [], - "FontAwesomeSolidPersonWalkingArrowRight": [], - "FontAwesomeSolidPersonWalkingDashedLineArrowRight": [], - "FontAwesomeSolidPersonWalkingLuggage": [], - "FontAwesomeSolidPersonWalkingWithCane": [], - "FontAwesomeSolidPesetaSign": [], - "FontAwesomeSolidPesoSign": [], - "FontAwesomeSolidPhone": [], - "FontAwesomeSolidPhoneFlip": [], - "FontAwesomeSolidPhoneSlash": [], - "FontAwesomeSolidPhoneVolume": [], - "FontAwesomeSolidPhotoFilm": [], - "FontAwesomeSolidPiggyBank": [], - "FontAwesomeSolidPills": [], - "FontAwesomeSolidPizzaSlice": [], - "FontAwesomeSolidPlaceOfWorship": [], - "FontAwesomeSolidPlane": [], - "FontAwesomeSolidPlaneArrival": [], - "FontAwesomeSolidPlaneCircleCheck": [], - "FontAwesomeSolidPlaneCircleExclamation": [], - "FontAwesomeSolidPlaneCircleXmark": [], - "FontAwesomeSolidPlaneDeparture": [], - "FontAwesomeSolidPlaneLock": [], - "FontAwesomeSolidPlaneSlash": [], - "FontAwesomeSolidPlaneUp": [], - "FontAwesomeSolidPlantWilt": [], - "FontAwesomeSolidPlateWheat": [], - "FontAwesomeSolidPlay": [], - "FontAwesomeSolidPlug": [], - "FontAwesomeSolidPlugCircleBolt": [], - "FontAwesomeSolidPlugCircleCheck": [], - "FontAwesomeSolidPlugCircleExclamation": [], - "FontAwesomeSolidPlugCircleMinus": [], - "FontAwesomeSolidPlugCirclePlus": [], - "FontAwesomeSolidPlugCircleXmark": [], - "FontAwesomeSolidPlus": [], - "FontAwesomeSolidPlusMinus": [], - "FontAwesomeSolidPodcast": [], - "FontAwesomeSolidPoo": [], - "FontAwesomeSolidPooStorm": [], - "FontAwesomeSolidPoop": [], - "FontAwesomeSolidPowerOff": [], - "FontAwesomeSolidPrescription": [], - "FontAwesomeSolidPrescriptionBottle": [], - "FontAwesomeSolidPrescriptionBottleMedical": [], - "FontAwesomeSolidPrint": [], - "FontAwesomeSolidPumpMedical": [], - "FontAwesomeSolidPumpSoap": [], - "FontAwesomeSolidPuzzlePiece": [], - "FontAwesomeSolidQ": [], - "FontAwesomeSolidQrcode": [], - "FontAwesomeSolidQuestion": [], - "FontAwesomeSolidQuoteLeft": [], - "FontAwesomeSolidQuoteRight": [], - "FontAwesomeSolidR": [], - "FontAwesomeSolidRadiation": [], - "FontAwesomeSolidRadio": [], - "FontAwesomeSolidRainbow": [], - "FontAwesomeSolidRankingStar": [], - "FontAwesomeSolidReceipt": [], - "FontAwesomeSolidRecordVinyl": [], - "FontAwesomeSolidRectangleAd": [], - "FontAwesomeSolidRectangleList": [], - "FontAwesomeSolidRectangleXmark": [], - "FontAwesomeSolidRecycle": [], - "FontAwesomeSolidRegistered": [], - "FontAwesomeSolidRepeat": [], - "FontAwesomeSolidReply": [], - "FontAwesomeSolidReplyAll": [], - "FontAwesomeSolidRepublican": [], - "FontAwesomeSolidRestroom": [], - "FontAwesomeSolidRetweet": [], - "FontAwesomeSolidRibbon": [], - "FontAwesomeSolidRightFromBracket": [], - "FontAwesomeSolidRightLeft": [], - "FontAwesomeSolidRightLong": [], - "FontAwesomeSolidRightToBracket": [], - "FontAwesomeSolidRing": [], - "FontAwesomeSolidRoad": [], - "FontAwesomeSolidRoadBarrier": [], - "FontAwesomeSolidRoadBridge": [], - "FontAwesomeSolidRoadCircleCheck": [], - "FontAwesomeSolidRoadCircleExclamation": [], - "FontAwesomeSolidRoadCircleXmark": [], - "FontAwesomeSolidRoadLock": [], - "FontAwesomeSolidRoadSpikes": [], - "FontAwesomeSolidRobot": [], - "FontAwesomeSolidRocket": [], - "FontAwesomeSolidRotate": [], - "FontAwesomeSolidRotateLeft": [], - "FontAwesomeSolidRotateRight": [], - "FontAwesomeSolidRoute": [], - "FontAwesomeSolidRss": [], - "FontAwesomeSolidRubleSign": [], - "FontAwesomeSolidRug": [], - "FontAwesomeSolidRuler": [], - "FontAwesomeSolidRulerCombined": [], - "FontAwesomeSolidRulerHorizontal": [], - "FontAwesomeSolidRulerVertical": [], - "FontAwesomeSolidRupeeSign": [], - "FontAwesomeSolidRupiahSign": [], - "FontAwesomeSolidS": [], - "FontAwesomeSolidSackDollar": [], - "FontAwesomeSolidSackXmark": [], - "FontAwesomeSolidSailboat": [], - "FontAwesomeSolidSatellite": [], - "FontAwesomeSolidSatelliteDish": [], - "FontAwesomeSolidScaleBalanced": [], - "FontAwesomeSolidScaleUnbalanced": [], - "FontAwesomeSolidScaleUnbalancedFlip": [], - "FontAwesomeSolidSchool": [], - "FontAwesomeSolidSchoolCircleCheck": [], - "FontAwesomeSolidSchoolCircleExclamation": [], - "FontAwesomeSolidSchoolCircleXmark": [], - "FontAwesomeSolidSchoolFlag": [], - "FontAwesomeSolidSchoolLock": [], - "FontAwesomeSolidScissors": [], - "FontAwesomeSolidScrewdriver": [], - "FontAwesomeSolidScrewdriverWrench": [], - "FontAwesomeSolidScroll": [], - "FontAwesomeSolidScrollTorah": [], - "FontAwesomeSolidSdCard": [], - "FontAwesomeSolidSection": [], - "FontAwesomeSolidSeedling": [], - "FontAwesomeSolidServer": [], - "FontAwesomeSolidShapes": [], - "FontAwesomeSolidShare": [], - "FontAwesomeSolidShareFromSquare": [], - "FontAwesomeSolidShareNodes": [], - "FontAwesomeSolidSheetPlastic": [], - "FontAwesomeSolidShekelSign": [], - "FontAwesomeSolidShield": [], - "FontAwesomeSolidShieldBlank": [], - "FontAwesomeSolidShieldCat": [], - "FontAwesomeSolidShieldDog": [], - "FontAwesomeSolidShieldHalved": [], - "FontAwesomeSolidShieldHeart": [], - "FontAwesomeSolidShieldVirus": [], - "FontAwesomeSolidShip": [], - "FontAwesomeSolidShirt": [], - "FontAwesomeSolidShoePrints": [], - "FontAwesomeSolidShop": [], - "FontAwesomeSolidShopLock": [], - "FontAwesomeSolidShopSlash": [], - "FontAwesomeSolidShower": [], - "FontAwesomeSolidShrimp": [], - "FontAwesomeSolidShuffle": [], - "FontAwesomeSolidShuttleSpace": [], - "FontAwesomeSolidSignHanging": [], - "FontAwesomeSolidSignal": [], - "FontAwesomeSolidSignature": [], - "FontAwesomeSolidSignsPost": [], - "FontAwesomeSolidSimCard": [], - "FontAwesomeSolidSink": [], - "FontAwesomeSolidSitemap": [], - "FontAwesomeSolidSkull": [], - "FontAwesomeSolidSkullCrossbones": [], - "FontAwesomeSolidSlash": [], - "FontAwesomeSolidSleigh": [], - "FontAwesomeSolidSliders": [], - "FontAwesomeSolidSmog": [], - "FontAwesomeSolidSmoking": [], - "FontAwesomeSolidSnowflake": [], - "FontAwesomeSolidSnowman": [], - "FontAwesomeSolidSnowplow": [], - "FontAwesomeSolidSoap": [], - "FontAwesomeSolidSocks": [], - "FontAwesomeSolidSolarPanel": [], - "FontAwesomeSolidSort": [], - "FontAwesomeSolidSortDown": [], - "FontAwesomeSolidSortUp": [], - "FontAwesomeSolidSpa": [], - "FontAwesomeSolidSpaghettiMonsterFlying": [], - "FontAwesomeSolidSpellCheck": [], - "FontAwesomeSolidSpider": [], - "FontAwesomeSolidSpinner": [], - "FontAwesomeSolidSplotch": [], - "FontAwesomeSolidSpoon": [], - "FontAwesomeSolidSprayCan": [], - "FontAwesomeSolidSprayCanSparkles": [], - "FontAwesomeSolidSquare": [], - "FontAwesomeSolidSquareArrowUpRight": [], - "FontAwesomeSolidSquareCaretDown": [], - "FontAwesomeSolidSquareCaretLeft": [], - "FontAwesomeSolidSquareCaretRight": [], - "FontAwesomeSolidSquareCaretUp": [], - "FontAwesomeSolidSquareCheck": [], - "FontAwesomeSolidSquareEnvelope": [], - "FontAwesomeSolidSquareFull": [], - "FontAwesomeSolidSquareH": [], - "FontAwesomeSolidSquareMinus": [], - "FontAwesomeSolidSquareNfi": [], - "FontAwesomeSolidSquareParking": [], - "FontAwesomeSolidSquarePen": [], - "FontAwesomeSolidSquarePersonConfined": [], - "FontAwesomeSolidSquarePhone": [], - "FontAwesomeSolidSquarePhoneFlip": [], - "FontAwesomeSolidSquarePlus": [], - "FontAwesomeSolidSquarePollHorizontal": [], - "FontAwesomeSolidSquarePollVertical": [], - "FontAwesomeSolidSquareRootVariable": [], - "FontAwesomeSolidSquareRss": [], - "FontAwesomeSolidSquareShareNodes": [], - "FontAwesomeSolidSquareUpRight": [], - "FontAwesomeSolidSquareVirus": [], - "FontAwesomeSolidSquareXmark": [], - "FontAwesomeSolidStaffAesculapius": [], - "FontAwesomeSolidStairs": [], - "FontAwesomeSolidStamp": [], - "FontAwesomeSolidStar": [], - "FontAwesomeSolidStarAndCrescent": [], - "FontAwesomeSolidStarHalf": [], - "FontAwesomeSolidStarHalfStroke": [], - "FontAwesomeSolidStarOfDavid": [], - "FontAwesomeSolidStarOfLife": [], - "FontAwesomeSolidSterlingSign": [], - "FontAwesomeSolidStethoscope": [], - "FontAwesomeSolidStop": [], - "FontAwesomeSolidStopwatch": [], - "FontAwesomeSolidStopwatch20": [], - "FontAwesomeSolidStore": [], - "FontAwesomeSolidStoreSlash": [], - "FontAwesomeSolidStreetView": [], - "FontAwesomeSolidStrikethrough": [], - "FontAwesomeSolidStroopwafel": [], - "FontAwesomeSolidSubscript": [], - "FontAwesomeSolidSuitcase": [], - "FontAwesomeSolidSuitcaseMedical": [], - "FontAwesomeSolidSuitcaseRolling": [], - "FontAwesomeSolidSun": [], - "FontAwesomeSolidSunPlantWilt": [], - "FontAwesomeSolidSuperscript": [], - "FontAwesomeSolidSwatchbook": [], - "FontAwesomeSolidSynagogue": [], - "FontAwesomeSolidSyringe": [], - "FontAwesomeSolidT": [], - "FontAwesomeSolidTable": [], - "FontAwesomeSolidTableCells": [], - "FontAwesomeSolidTableCellsLarge": [], - "FontAwesomeSolidTableColumns": [], - "FontAwesomeSolidTableList": [], - "FontAwesomeSolidTableTennisPaddleBall": [], - "FontAwesomeSolidTablet": [], - "FontAwesomeSolidTabletButton": [], - "FontAwesomeSolidTabletScreenButton": [], - "FontAwesomeSolidTablets": [], - "FontAwesomeSolidTachographDigital": [], - "FontAwesomeSolidTag": [], - "FontAwesomeSolidTags": [], - "FontAwesomeSolidTape": [], - "FontAwesomeSolidTarp": [], - "FontAwesomeSolidTarpDroplet": [], - "FontAwesomeSolidTaxi": [], - "FontAwesomeSolidTeeth": [], - "FontAwesomeSolidTeethOpen": [], - "FontAwesomeSolidTemperatureArrowDown": [], - "FontAwesomeSolidTemperatureArrowUp": [], - "FontAwesomeSolidTemperatureEmpty": [], - "FontAwesomeSolidTemperatureFull": [], - "FontAwesomeSolidTemperatureHalf": [], - "FontAwesomeSolidTemperatureHigh": [], - "FontAwesomeSolidTemperatureLow": [], - "FontAwesomeSolidTemperatureQuarter": [], - "FontAwesomeSolidTemperatureThreeQuarters": [], - "FontAwesomeSolidTengeSign": [], - "FontAwesomeSolidTent": [], - "FontAwesomeSolidTentArrowDownToLine": [], - "FontAwesomeSolidTentArrowLeftRight": [], - "FontAwesomeSolidTentArrowTurnLeft": [], - "FontAwesomeSolidTentArrowsDown": [], - "FontAwesomeSolidTents": [], - "FontAwesomeSolidTerminal": [], - "FontAwesomeSolidTextHeight": [], - "FontAwesomeSolidTextSlash": [], - "FontAwesomeSolidTextWidth": [], - "FontAwesomeSolidThermometer": [], - "FontAwesomeSolidThumbsDown": [], - "FontAwesomeSolidThumbsUp": [], - "FontAwesomeSolidThumbtack": [], - "FontAwesomeSolidTicket": [], - "FontAwesomeSolidTicketSimple": [], - "FontAwesomeSolidTimeline": [], - "FontAwesomeSolidToggleOff": [], - "FontAwesomeSolidToggleOn": [], - "FontAwesomeSolidToilet": [], - "FontAwesomeSolidToiletPaper": [], - "FontAwesomeSolidToiletPaperSlash": [], - "FontAwesomeSolidToiletPortable": [], - "FontAwesomeSolidToiletsPortable": [], - "FontAwesomeSolidToolbox": [], - "FontAwesomeSolidTooth": [], - "FontAwesomeSolidToriiGate": [], - "FontAwesomeSolidTornado": [], - "FontAwesomeSolidTowerBroadcast": [], - "FontAwesomeSolidTowerCell": [], - "FontAwesomeSolidTowerObservation": [], - "FontAwesomeSolidTractor": [], - "FontAwesomeSolidTrademark": [], - "FontAwesomeSolidTrafficLight": [], - "FontAwesomeSolidTrailer": [], - "FontAwesomeSolidTrain": [], - "FontAwesomeSolidTrainSubway": [], - "FontAwesomeSolidTrainTram": [], - "FontAwesomeSolidTransgender": [], - "FontAwesomeSolidTrash": [], - "FontAwesomeSolidTrashArrowUp": [], - "FontAwesomeSolidTrashCan": [], - "FontAwesomeSolidTrashCanArrowUp": [], - "FontAwesomeSolidTree": [], - "FontAwesomeSolidTreeCity": [], - "FontAwesomeSolidTriangleExclamation": [], - "FontAwesomeSolidTrophy": [], - "FontAwesomeSolidTrowel": [], - "FontAwesomeSolidTrowelBricks": [], - "FontAwesomeSolidTruck": [], - "FontAwesomeSolidTruckArrowRight": [], - "FontAwesomeSolidTruckDroplet": [], - "FontAwesomeSolidTruckFast": [], - "FontAwesomeSolidTruckField": [], - "FontAwesomeSolidTruckFieldUn": [], - "FontAwesomeSolidTruckFront": [], - "FontAwesomeSolidTruckMedical": [], - "FontAwesomeSolidTruckMonster": [], - "FontAwesomeSolidTruckMoving": [], - "FontAwesomeSolidTruckPickup": [], - "FontAwesomeSolidTruckPlane": [], - "FontAwesomeSolidTruckRampBox": [], - "FontAwesomeSolidTty": [], - "FontAwesomeSolidTurkishLiraSign": [], - "FontAwesomeSolidTurnDown": [], - "FontAwesomeSolidTurnUp": [], - "FontAwesomeSolidTv": [], - "FontAwesomeSolidU": [], - "FontAwesomeSolidUmbrella": [], - "FontAwesomeSolidUmbrellaBeach": [], - "FontAwesomeSolidUnderline": [], - "FontAwesomeSolidUniversalAccess": [], - "FontAwesomeSolidUnlock": [], - "FontAwesomeSolidUnlockKeyhole": [], - "FontAwesomeSolidUpDown": [], - "FontAwesomeSolidUpDownLeftRight": [], - "FontAwesomeSolidUpLong": [], - "FontAwesomeSolidUpRightAndDownLeftFromCenter": [], - "FontAwesomeSolidUpRightFromSquare": [], - "FontAwesomeSolidUpload": [], - "FontAwesomeSolidUser": [], - "FontAwesomeSolidUserAstronaut": [], - "FontAwesomeSolidUserCheck": [], - "FontAwesomeSolidUserClock": [], - "FontAwesomeSolidUserDoctor": [], - "FontAwesomeSolidUserGear": [], - "FontAwesomeSolidUserGraduate": [], - "FontAwesomeSolidUserGroup": [], - "FontAwesomeSolidUserInjured": [], - "FontAwesomeSolidUserLarge": [], - "FontAwesomeSolidUserLargeSlash": [], - "FontAwesomeSolidUserLock": [], - "FontAwesomeSolidUserMinus": [], - "FontAwesomeSolidUserNinja": [], - "FontAwesomeSolidUserNurse": [], - "FontAwesomeSolidUserPen": [], - "FontAwesomeSolidUserPlus": [], - "FontAwesomeSolidUserSecret": [], - "FontAwesomeSolidUserShield": [], - "FontAwesomeSolidUserSlash": [], - "FontAwesomeSolidUserTag": [], - "FontAwesomeSolidUserTie": [], - "FontAwesomeSolidUserXmark": [], - "FontAwesomeSolidUsers": [], - "FontAwesomeSolidUsersBetweenLines": [], - "FontAwesomeSolidUsersGear": [], - "FontAwesomeSolidUsersLine": [], - "FontAwesomeSolidUsersRays": [], - "FontAwesomeSolidUsersRectangle": [], - "FontAwesomeSolidUsersSlash": [], - "FontAwesomeSolidUsersViewfinder": [], - "FontAwesomeSolidUtensils": [], - "FontAwesomeSolidV": [], - "FontAwesomeSolidVanShuttle": [], - "FontAwesomeSolidVault": [], - "FontAwesomeSolidVectorSquare": [], - "FontAwesomeSolidVenus": [], - "FontAwesomeSolidVenusDouble": [], - "FontAwesomeSolidVenusMars": [], - "FontAwesomeSolidVest": [], - "FontAwesomeSolidVestPatches": [], - "FontAwesomeSolidVial": [], - "FontAwesomeSolidVialCircleCheck": [], - "FontAwesomeSolidVialVirus": [], - "FontAwesomeSolidVials": [], - "FontAwesomeSolidVideo": [], - "FontAwesomeSolidVideoSlash": [], - "FontAwesomeSolidVihara": [], - "FontAwesomeSolidVirus": [], - "FontAwesomeSolidVirusCovid": [], - "FontAwesomeSolidVirusCovidSlash": [], - "FontAwesomeSolidVirusSlash": [], - "FontAwesomeSolidViruses": [], - "FontAwesomeSolidVoicemail": [], - "FontAwesomeSolidVolcano": [], - "FontAwesomeSolidVolleyball": [], - "FontAwesomeSolidVolumeHigh": [], - "FontAwesomeSolidVolumeLow": [], - "FontAwesomeSolidVolumeOff": [], - "FontAwesomeSolidVolumeXmark": [], - "FontAwesomeSolidVrCardboard": [], - "FontAwesomeSolidW": [], - "FontAwesomeSolidWalkieTalkie": [], - "FontAwesomeSolidWallet": [], - "FontAwesomeSolidWandMagic": [], - "FontAwesomeSolidWandMagicSparkles": [], - "FontAwesomeSolidWandSparkles": [], - "FontAwesomeSolidWarehouse": [], - "FontAwesomeSolidWater": [], - "FontAwesomeSolidWaterLadder": [], - "FontAwesomeSolidWaveSquare": [], - "FontAwesomeSolidWeightHanging": [], - "FontAwesomeSolidWeightScale": [], - "FontAwesomeSolidWheatAwn": [], - "FontAwesomeSolidWheatAwnCircleExclamation": [], - "FontAwesomeSolidWheelchair": [], - "FontAwesomeSolidWheelchairMove": [], - "FontAwesomeSolidWhiskeyGlass": [], - "FontAwesomeSolidWifi": [], - "FontAwesomeSolidWind": [], - "FontAwesomeSolidWindowMaximize": [], - "FontAwesomeSolidWindowMinimize": [], - "FontAwesomeSolidWindowRestore": [], - "FontAwesomeSolidWineBottle": [], - "FontAwesomeSolidWineGlass": [], - "FontAwesomeSolidWineGlassEmpty": [], - "FontAwesomeSolidWonSign": [], - "FontAwesomeSolidWorm": [], - "FontAwesomeSolidWrench": [], - "FontAwesomeSolidX": [], - "FontAwesomeSolidXRay": [], - "FontAwesomeSolidXmark": [], - "FontAwesomeSolidXmarksLines": [], - "FontAwesomeSolidY": [], - "FontAwesomeSolidYenSign": [], - "FontAwesomeSolidYinYang": [], - "FontAwesomeSolidZ": [], - "HeroiconsMiniSolidAcademicCap": [], - "HeroiconsMiniSolidAdjustmentsHorizontal": [], - "HeroiconsMiniSolidAdjustmentsVertical": [], - "HeroiconsMiniSolidArchiveBox": [], - "HeroiconsMiniSolidArchiveBoxArrowDown": [], - "HeroiconsMiniSolidArchiveBoxXMark": [], - "HeroiconsMiniSolidArrowDown": [], - "HeroiconsMiniSolidArrowDownCircle": [], - "HeroiconsMiniSolidArrowDownLeft": [], - "HeroiconsMiniSolidArrowDownOnSquare": [], - "HeroiconsMiniSolidArrowDownOnSquareStack": [], - "HeroiconsMiniSolidArrowDownRight": [], - "HeroiconsMiniSolidArrowDownTray": [], - "HeroiconsMiniSolidArrowLeft": [], - "HeroiconsMiniSolidArrowLeftCircle": [], - "HeroiconsMiniSolidArrowLeftOnRectangle": [], - "HeroiconsMiniSolidArrowLongDown": [], - "HeroiconsMiniSolidArrowLongLeft": [], - "HeroiconsMiniSolidArrowLongRight": [], - "HeroiconsMiniSolidArrowLongUp": [], - "HeroiconsMiniSolidArrowPath": [], - "HeroiconsMiniSolidArrowPathRoundedSquare": [], - "HeroiconsMiniSolidArrowRight": [], - "HeroiconsMiniSolidArrowRightCircle": [], - "HeroiconsMiniSolidArrowRightOnRectangle": [], - "HeroiconsMiniSolidArrowSmallDown": [], - "HeroiconsMiniSolidArrowSmallLeft": [], - "HeroiconsMiniSolidArrowSmallRight": [], - "HeroiconsMiniSolidArrowSmallUp": [], - "HeroiconsMiniSolidArrowTopRightOnSquare": [], - "HeroiconsMiniSolidArrowTrendingDown": [], - "HeroiconsMiniSolidArrowTrendingUp": [], - "HeroiconsMiniSolidArrowUp": [], - "HeroiconsMiniSolidArrowUpCircle": [], - "HeroiconsMiniSolidArrowUpLeft": [], - "HeroiconsMiniSolidArrowUpOnSquare": [], - "HeroiconsMiniSolidArrowUpOnSquareStack": [], - "HeroiconsMiniSolidArrowUpRight": [], - "HeroiconsMiniSolidArrowUpTray": [], - "HeroiconsMiniSolidArrowUturnDown": [], - "HeroiconsMiniSolidArrowUturnLeft": [], - "HeroiconsMiniSolidArrowUturnRight": [], - "HeroiconsMiniSolidArrowUturnUp": [], - "HeroiconsMiniSolidArrowsPointingIn": [], - "HeroiconsMiniSolidArrowsPointingOut": [], - "HeroiconsMiniSolidArrowsRightLeft": [], - "HeroiconsMiniSolidArrowsUpDown": [], - "HeroiconsMiniSolidAtSymbol": [], - "HeroiconsMiniSolidBackspace": [], - "HeroiconsMiniSolidBackward": [], - "HeroiconsMiniSolidBanknotes": [], - "HeroiconsMiniSolidBars2": [], - "HeroiconsMiniSolidBars3": [], - "HeroiconsMiniSolidBars3BottomLeft": [], - "HeroiconsMiniSolidBars3BottomRight": [], - "HeroiconsMiniSolidBars3CenterLeft": [], - "HeroiconsMiniSolidBars4": [], - "HeroiconsMiniSolidBarsArrowDown": [], - "HeroiconsMiniSolidBarsArrowUp": [], - "HeroiconsMiniSolidBattery0": [], - "HeroiconsMiniSolidBattery100": [], - "HeroiconsMiniSolidBattery50": [], - "HeroiconsMiniSolidBeaker": [], - "HeroiconsMiniSolidBell": [], - "HeroiconsMiniSolidBellAlert": [], - "HeroiconsMiniSolidBellSlash": [], - "HeroiconsMiniSolidBellSnooze": [], - "HeroiconsMiniSolidBolt": [], - "HeroiconsMiniSolidBoltSlash": [], - "HeroiconsMiniSolidBookOpen": [], - "HeroiconsMiniSolidBookmark": [], - "HeroiconsMiniSolidBookmarkSlash": [], - "HeroiconsMiniSolidBookmarkSquare": [], - "HeroiconsMiniSolidBriefcase": [], - "HeroiconsMiniSolidBugAnt": [], - "HeroiconsMiniSolidBuildingLibrary": [], - "HeroiconsMiniSolidBuildingOffice": [], - "HeroiconsMiniSolidBuildingOffice2": [], - "HeroiconsMiniSolidBuildingStorefront": [], - "HeroiconsMiniSolidCake": [], - "HeroiconsMiniSolidCalculator": [], - "HeroiconsMiniSolidCalendar": [], - "HeroiconsMiniSolidCalendarDays": [], - "HeroiconsMiniSolidCamera": [], - "HeroiconsMiniSolidChartBar": [], - "HeroiconsMiniSolidChartBarSquare": [], - "HeroiconsMiniSolidChartPie": [], - "HeroiconsMiniSolidChatBubbleBottomCenter": [], - "HeroiconsMiniSolidChatBubbleBottomCenterText": [], - "HeroiconsMiniSolidChatBubbleLeft": [], - "HeroiconsMiniSolidChatBubbleLeftEllipsis": [], - "HeroiconsMiniSolidChatBubbleLeftRight": [], - "HeroiconsMiniSolidChatBubbleOvalLeft": [], - "HeroiconsMiniSolidChatBubbleOvalLeftEllipsis": [], - "HeroiconsMiniSolidCheck": [], - "HeroiconsMiniSolidCheckBadge": [], - "HeroiconsMiniSolidCheckCircle": [], - "HeroiconsMiniSolidChevronDoubleDown": [], - "HeroiconsMiniSolidChevronDoubleLeft": [], - "HeroiconsMiniSolidChevronDoubleRight": [], - "HeroiconsMiniSolidChevronDoubleUp": [], - "HeroiconsMiniSolidChevronDown": [], - "HeroiconsMiniSolidChevronLeft": [], - "HeroiconsMiniSolidChevronRight": [], - "HeroiconsMiniSolidChevronUp": [], - "HeroiconsMiniSolidChevronUpDown": [], - "HeroiconsMiniSolidCircleStack": [], - "HeroiconsMiniSolidClipboard": [], - "HeroiconsMiniSolidClipboardDocument": [], - "HeroiconsMiniSolidClipboardDocumentCheck": [], - "HeroiconsMiniSolidClipboardDocumentList": [], - "HeroiconsMiniSolidClock": [], - "HeroiconsMiniSolidCloud": [], - "HeroiconsMiniSolidCloudArrowDown": [], - "HeroiconsMiniSolidCloudArrowUp": [], - "HeroiconsMiniSolidCodeBracket": [], - "HeroiconsMiniSolidCodeBracketSquare": [], - "HeroiconsMiniSolidCog": [], - "HeroiconsMiniSolidCog6Tooth": [], - "HeroiconsMiniSolidCog8Tooth": [], - "HeroiconsMiniSolidCommandLine": [], - "HeroiconsMiniSolidComputerDesktop": [], - "HeroiconsMiniSolidCpuChip": [], - "HeroiconsMiniSolidCreditCard": [], - "HeroiconsMiniSolidCube": [], - "HeroiconsMiniSolidCubeTransparent": [], - "HeroiconsMiniSolidCurrencyBangladeshi": [], - "HeroiconsMiniSolidCurrencyDollar": [], - "HeroiconsMiniSolidCurrencyEuro": [], - "HeroiconsMiniSolidCurrencyPound": [], - "HeroiconsMiniSolidCurrencyRupee": [], - "HeroiconsMiniSolidCurrencyYen": [], - "HeroiconsMiniSolidCursorArrowRays": [], - "HeroiconsMiniSolidCursorArrowRipple": [], - "HeroiconsMiniSolidDevicePhoneMobile": [], - "HeroiconsMiniSolidDeviceTablet": [], - "HeroiconsMiniSolidDocument": [], - "HeroiconsMiniSolidDocumentArrowDown": [], - "HeroiconsMiniSolidDocumentArrowUp": [], - "HeroiconsMiniSolidDocumentChartBar": [], - "HeroiconsMiniSolidDocumentCheck": [], - "HeroiconsMiniSolidDocumentDuplicate": [], - "HeroiconsMiniSolidDocumentMagnifyingGlass": [], - "HeroiconsMiniSolidDocumentMinus": [], - "HeroiconsMiniSolidDocumentPlus": [], - "HeroiconsMiniSolidDocumentText": [], - "HeroiconsMiniSolidEllipsisHorizontal": [], - "HeroiconsMiniSolidEllipsisHorizontalCircle": [], - "HeroiconsMiniSolidEllipsisVertical": [], - "HeroiconsMiniSolidEnvelope": [], - "HeroiconsMiniSolidEnvelopeOpen": [], - "HeroiconsMiniSolidExclamationCircle": [], - "HeroiconsMiniSolidExclamationTriangle": [], - "HeroiconsMiniSolidEye": [], - "HeroiconsMiniSolidEyeDropper": [], - "HeroiconsMiniSolidEyeSlash": [], - "HeroiconsMiniSolidFaceFrown": [], - "HeroiconsMiniSolidFaceSmile": [], - "HeroiconsMiniSolidFilm": [], - "HeroiconsMiniSolidFingerPrint": [], - "HeroiconsMiniSolidFire": [], - "HeroiconsMiniSolidFlag": [], - "HeroiconsMiniSolidFolder": [], - "HeroiconsMiniSolidFolderArrowDown": [], - "HeroiconsMiniSolidFolderMinus": [], - "HeroiconsMiniSolidFolderOpen": [], - "HeroiconsMiniSolidFolderPlus": [], - "HeroiconsMiniSolidForward": [], - "HeroiconsMiniSolidFunnel": [], - "HeroiconsMiniSolidGif": [], - "HeroiconsMiniSolidGift": [], - "HeroiconsMiniSolidGiftTop": [], - "HeroiconsMiniSolidGlobeAlt": [], - "HeroiconsMiniSolidGlobeAmericas": [], - "HeroiconsMiniSolidGlobeAsiaAustralia": [], - "HeroiconsMiniSolidGlobeEuropeAfrica": [], - "HeroiconsMiniSolidHandRaised": [], - "HeroiconsMiniSolidHandThumbDown": [], - "HeroiconsMiniSolidHandThumbUp": [], - "HeroiconsMiniSolidHashtag": [], - "HeroiconsMiniSolidHeart": [], - "HeroiconsMiniSolidHome": [], - "HeroiconsMiniSolidHomeModern": [], - "HeroiconsMiniSolidIdentification": [], - "HeroiconsMiniSolidInbox": [], - "HeroiconsMiniSolidInboxArrowDown": [], - "HeroiconsMiniSolidInboxStack": [], - "HeroiconsMiniSolidInformationCircle": [], - "HeroiconsMiniSolidKey": [], - "HeroiconsMiniSolidLanguage": [], - "HeroiconsMiniSolidLifebuoy": [], - "HeroiconsMiniSolidLightBulb": [], - "HeroiconsMiniSolidLink": [], - "HeroiconsMiniSolidListBullet": [], - "HeroiconsMiniSolidLockClosed": [], - "HeroiconsMiniSolidLockOpen": [], - "HeroiconsMiniSolidMagnifyingGlass": [], - "HeroiconsMiniSolidMagnifyingGlassCircle": [], - "HeroiconsMiniSolidMagnifyingGlassMinus": [], - "HeroiconsMiniSolidMagnifyingGlassPlus": [], - "HeroiconsMiniSolidMap": [], - "HeroiconsMiniSolidMapPin": [], - "HeroiconsMiniSolidMegaphone": [], - "HeroiconsMiniSolidMicrophone": [], - "HeroiconsMiniSolidMinus": [], - "HeroiconsMiniSolidMinusCircle": [], - "HeroiconsMiniSolidMinusSmall": [], - "HeroiconsMiniSolidMoon": [], - "HeroiconsMiniSolidMusicalNote": [], - "HeroiconsMiniSolidNewspaper": [], - "HeroiconsMiniSolidNoSymbol": [], - "HeroiconsMiniSolidPaintBrush": [], - "HeroiconsMiniSolidPaperAirplane": [], - "HeroiconsMiniSolidPaperClip": [], - "HeroiconsMiniSolidPause": [], - "HeroiconsMiniSolidPauseCircle": [], - "HeroiconsMiniSolidPencil": [], - "HeroiconsMiniSolidPencilSquare": [], - "HeroiconsMiniSolidPhone": [], - "HeroiconsMiniSolidPhoneArrowDownLeft": [], - "HeroiconsMiniSolidPhoneArrowUpRight": [], - "HeroiconsMiniSolidPhoneXMark": [], - "HeroiconsMiniSolidPhoto": [], - "HeroiconsMiniSolidPlay": [], - "HeroiconsMiniSolidPlayCircle": [], - "HeroiconsMiniSolidPlayPause": [], - "HeroiconsMiniSolidPlus": [], - "HeroiconsMiniSolidPlusCircle": [], - "HeroiconsMiniSolidPlusSmall": [], - "HeroiconsMiniSolidPower": [], - "HeroiconsMiniSolidPresentationChartBar": [], - "HeroiconsMiniSolidPresentationChartLine": [], - "HeroiconsMiniSolidPrinter": [], - "HeroiconsMiniSolidPuzzlePiece": [], - "HeroiconsMiniSolidQrCode": [], - "HeroiconsMiniSolidQuestionMarkCircle": [], - "HeroiconsMiniSolidQueueList": [], - "HeroiconsMiniSolidRadio": [], - "HeroiconsMiniSolidReceiptPercent": [], - "HeroiconsMiniSolidReceiptRefund": [], - "HeroiconsMiniSolidRectangleGroup": [], - "HeroiconsMiniSolidRectangleStack": [], - "HeroiconsMiniSolidRocketLaunch": [], - "HeroiconsMiniSolidRss": [], - "HeroiconsMiniSolidScale": [], - "HeroiconsMiniSolidScissors": [], - "HeroiconsMiniSolidServer": [], - "HeroiconsMiniSolidServerStack": [], - "HeroiconsMiniSolidShare": [], - "HeroiconsMiniSolidShieldCheck": [], - "HeroiconsMiniSolidShieldExclamation": [], - "HeroiconsMiniSolidShoppingBag": [], - "HeroiconsMiniSolidShoppingCart": [], - "HeroiconsMiniSolidSignal": [], - "HeroiconsMiniSolidSignalSlash": [], - "HeroiconsMiniSolidSparkles": [], - "HeroiconsMiniSolidSpeakerWave": [], - "HeroiconsMiniSolidSpeakerXMark": [], - "HeroiconsMiniSolidSquare2Stack": [], - "HeroiconsMiniSolidSquare3Stack3D": [], - "HeroiconsMiniSolidSquares2X2": [], - "HeroiconsMiniSolidSquaresPlus": [], - "HeroiconsMiniSolidStar": [], - "HeroiconsMiniSolidStop": [], - "HeroiconsMiniSolidStopCircle": [], - "HeroiconsMiniSolidSun": [], - "HeroiconsMiniSolidSwatch": [], - "HeroiconsMiniSolidTableCells": [], - "HeroiconsMiniSolidTag": [], - "HeroiconsMiniSolidTicket": [], - "HeroiconsMiniSolidTrash": [], - "HeroiconsMiniSolidTrophy": [], - "HeroiconsMiniSolidTruck": [], - "HeroiconsMiniSolidTv": [], - "HeroiconsMiniSolidUser": [], - "HeroiconsMiniSolidUserCircle": [], - "HeroiconsMiniSolidUserGroup": [], - "HeroiconsMiniSolidUserMinus": [], - "HeroiconsMiniSolidUserPlus": [], - "HeroiconsMiniSolidUsers": [], - "HeroiconsMiniSolidVariable": [], - "HeroiconsMiniSolidVideoCamera": [], - "HeroiconsMiniSolidVideoCameraSlash": [], - "HeroiconsMiniSolidViewColumns": [], - "HeroiconsMiniSolidViewfinderCircle": [], - "HeroiconsMiniSolidWallet": [], - "HeroiconsMiniSolidWifi": [], - "HeroiconsMiniSolidWindow": [], - "HeroiconsMiniSolidWrench": [], - "HeroiconsMiniSolidWrenchScrewdriver": [], - "HeroiconsMiniSolidXCircle": [], - "HeroiconsMiniSolidXMark": [], - "HeroiconsOutlineAcademicCap": [], - "HeroiconsOutlineAdjustmentsHorizontal": [], - "HeroiconsOutlineAdjustmentsVertical": [], - "HeroiconsOutlineArchiveBox": [], - "HeroiconsOutlineArchiveBoxArrowDown": [], - "HeroiconsOutlineArchiveBoxXMark": [], - "HeroiconsOutlineArrowDown": [], - "HeroiconsOutlineArrowDownCircle": [], - "HeroiconsOutlineArrowDownLeft": [], - "HeroiconsOutlineArrowDownOnSquare": [], - "HeroiconsOutlineArrowDownOnSquareStack": [], - "HeroiconsOutlineArrowDownRight": [], - "HeroiconsOutlineArrowDownTray": [], - "HeroiconsOutlineArrowLeft": [], - "HeroiconsOutlineArrowLeftCircle": [], - "HeroiconsOutlineArrowLeftOnRectangle": [], - "HeroiconsOutlineArrowLongDown": [], - "HeroiconsOutlineArrowLongLeft": [], - "HeroiconsOutlineArrowLongRight": [], - "HeroiconsOutlineArrowLongUp": [], - "HeroiconsOutlineArrowPath": [], - "HeroiconsOutlineArrowPathRoundedSquare": [], - "HeroiconsOutlineArrowRight": [], - "HeroiconsOutlineArrowRightCircle": [], - "HeroiconsOutlineArrowRightOnRectangle": [], - "HeroiconsOutlineArrowSmallDown": [], - "HeroiconsOutlineArrowSmallLeft": [], - "HeroiconsOutlineArrowSmallRight": [], - "HeroiconsOutlineArrowSmallUp": [], - "HeroiconsOutlineArrowTopRightOnSquare": [], - "HeroiconsOutlineArrowTrendingDown": [], - "HeroiconsOutlineArrowTrendingUp": [], - "HeroiconsOutlineArrowUp": [], - "HeroiconsOutlineArrowUpCircle": [], - "HeroiconsOutlineArrowUpLeft": [], - "HeroiconsOutlineArrowUpOnSquare": [], - "HeroiconsOutlineArrowUpOnSquareStack": [], - "HeroiconsOutlineArrowUpRight": [], - "HeroiconsOutlineArrowUpTray": [], - "HeroiconsOutlineArrowUturnDown": [], - "HeroiconsOutlineArrowUturnLeft": [], - "HeroiconsOutlineArrowUturnRight": [], - "HeroiconsOutlineArrowUturnUp": [], - "HeroiconsOutlineArrowsPointingIn": [], - "HeroiconsOutlineArrowsPointingOut": [], - "HeroiconsOutlineArrowsRightLeft": [], - "HeroiconsOutlineArrowsUpDown": [], - "HeroiconsOutlineAtSymbol": [], - "HeroiconsOutlineBackspace": [], - "HeroiconsOutlineBackward": [], - "HeroiconsOutlineBanknotes": [], - "HeroiconsOutlineBars2": [], - "HeroiconsOutlineBars3": [], - "HeroiconsOutlineBars3BottomLeft": [], - "HeroiconsOutlineBars3BottomRight": [], - "HeroiconsOutlineBars3CenterLeft": [], - "HeroiconsOutlineBars4": [], - "HeroiconsOutlineBarsArrowDown": [], - "HeroiconsOutlineBarsArrowUp": [], - "HeroiconsOutlineBattery0": [], - "HeroiconsOutlineBattery100": [], - "HeroiconsOutlineBattery50": [], - "HeroiconsOutlineBeaker": [], - "HeroiconsOutlineBell": [], - "HeroiconsOutlineBellAlert": [], - "HeroiconsOutlineBellSlash": [], - "HeroiconsOutlineBellSnooze": [], - "HeroiconsOutlineBolt": [], - "HeroiconsOutlineBoltSlash": [], - "HeroiconsOutlineBookOpen": [], - "HeroiconsOutlineBookmark": [], - "HeroiconsOutlineBookmarkSlash": [], - "HeroiconsOutlineBookmarkSquare": [], - "HeroiconsOutlineBriefcase": [], - "HeroiconsOutlineBugAnt": [], - "HeroiconsOutlineBuildingLibrary": [], - "HeroiconsOutlineBuildingOffice": [], - "HeroiconsOutlineBuildingOffice2": [], - "HeroiconsOutlineBuildingStorefront": [], - "HeroiconsOutlineCake": [], - "HeroiconsOutlineCalculator": [], - "HeroiconsOutlineCalendar": [], - "HeroiconsOutlineCalendarDays": [], - "HeroiconsOutlineCamera": [], - "HeroiconsOutlineChartBar": [], - "HeroiconsOutlineChartBarSquare": [], - "HeroiconsOutlineChartPie": [], - "HeroiconsOutlineChatBubbleBottomCenter": [], - "HeroiconsOutlineChatBubbleBottomCenterText": [], - "HeroiconsOutlineChatBubbleLeft": [], - "HeroiconsOutlineChatBubbleLeftEllipsis": [], - "HeroiconsOutlineChatBubbleLeftRight": [], - "HeroiconsOutlineChatBubbleOvalLeft": [], - "HeroiconsOutlineChatBubbleOvalLeftEllipsis": [], - "HeroiconsOutlineCheck": [], - "HeroiconsOutlineCheckBadge": [], - "HeroiconsOutlineCheckCircle": [], - "HeroiconsOutlineChevronDoubleDown": [], - "HeroiconsOutlineChevronDoubleLeft": [], - "HeroiconsOutlineChevronDoubleRight": [], - "HeroiconsOutlineChevronDoubleUp": [], - "HeroiconsOutlineChevronDown": [], - "HeroiconsOutlineChevronLeft": [], - "HeroiconsOutlineChevronRight": [], - "HeroiconsOutlineChevronUp": [], - "HeroiconsOutlineChevronUpDown": [], - "HeroiconsOutlineCircleStack": [], - "HeroiconsOutlineClipboard": [], - "HeroiconsOutlineClipboardDocument": [], - "HeroiconsOutlineClipboardDocumentCheck": [], - "HeroiconsOutlineClipboardDocumentList": [], - "HeroiconsOutlineClock": [], - "HeroiconsOutlineCloud": [], - "HeroiconsOutlineCloudArrowDown": [], - "HeroiconsOutlineCloudArrowUp": [], - "HeroiconsOutlineCodeBracket": [], - "HeroiconsOutlineCodeBracketSquare": [], - "HeroiconsOutlineCog": [], - "HeroiconsOutlineCog6Tooth": [], - "HeroiconsOutlineCog8Tooth": [], - "HeroiconsOutlineCommandLine": [], - "HeroiconsOutlineComputerDesktop": [], - "HeroiconsOutlineCpuChip": [], - "HeroiconsOutlineCreditCard": [], - "HeroiconsOutlineCube": [], - "HeroiconsOutlineCubeTransparent": [], - "HeroiconsOutlineCurrencyBangladeshi": [], - "HeroiconsOutlineCurrencyDollar": [], - "HeroiconsOutlineCurrencyEuro": [], - "HeroiconsOutlineCurrencyPound": [], - "HeroiconsOutlineCurrencyRupee": [], - "HeroiconsOutlineCurrencyYen": [], - "HeroiconsOutlineCursorArrowRays": [], - "HeroiconsOutlineCursorArrowRipple": [], - "HeroiconsOutlineDevicePhoneMobile": [], - "HeroiconsOutlineDeviceTablet": [], - "HeroiconsOutlineDocument": [], - "HeroiconsOutlineDocumentArrowDown": [], - "HeroiconsOutlineDocumentArrowUp": [], - "HeroiconsOutlineDocumentChartBar": [], - "HeroiconsOutlineDocumentCheck": [], - "HeroiconsOutlineDocumentDuplicate": [], - "HeroiconsOutlineDocumentMagnifyingGlass": [], - "HeroiconsOutlineDocumentMinus": [], - "HeroiconsOutlineDocumentPlus": [], - "HeroiconsOutlineDocumentText": [], - "HeroiconsOutlineEllipsisHorizontal": [], - "HeroiconsOutlineEllipsisHorizontalCircle": [], - "HeroiconsOutlineEllipsisVertical": [], - "HeroiconsOutlineEnvelope": [], - "HeroiconsOutlineEnvelopeOpen": [], - "HeroiconsOutlineExclamationCircle": [], - "HeroiconsOutlineExclamationTriangle": [], - "HeroiconsOutlineEye": [], - "HeroiconsOutlineEyeDropper": [], - "HeroiconsOutlineEyeSlash": [], - "HeroiconsOutlineFaceFrown": [], - "HeroiconsOutlineFaceSmile": [], - "HeroiconsOutlineFilm": [], - "HeroiconsOutlineFingerPrint": [], - "HeroiconsOutlineFire": [], - "HeroiconsOutlineFlag": [], - "HeroiconsOutlineFolder": [], - "HeroiconsOutlineFolderArrowDown": [], - "HeroiconsOutlineFolderMinus": [], - "HeroiconsOutlineFolderOpen": [], - "HeroiconsOutlineFolderPlus": [], - "HeroiconsOutlineForward": [], - "HeroiconsOutlineFunnel": [], - "HeroiconsOutlineGif": [], - "HeroiconsOutlineGift": [], - "HeroiconsOutlineGiftTop": [], - "HeroiconsOutlineGlobeAlt": [], - "HeroiconsOutlineGlobeAmericas": [], - "HeroiconsOutlineGlobeAsiaAustralia": [], - "HeroiconsOutlineGlobeEuropeAfrica": [], - "HeroiconsOutlineHandRaised": [], - "HeroiconsOutlineHandThumbDown": [], - "HeroiconsOutlineHandThumbUp": [], - "HeroiconsOutlineHashtag": [], - "HeroiconsOutlineHeart": [], - "HeroiconsOutlineHome": [], - "HeroiconsOutlineHomeModern": [], - "HeroiconsOutlineIdentification": [], - "HeroiconsOutlineInbox": [], - "HeroiconsOutlineInboxArrowDown": [], - "HeroiconsOutlineInboxStack": [], - "HeroiconsOutlineInformationCircle": [], - "HeroiconsOutlineKey": [], - "HeroiconsOutlineLanguage": [], - "HeroiconsOutlineLifebuoy": [], - "HeroiconsOutlineLightBulb": [], - "HeroiconsOutlineLink": [], - "HeroiconsOutlineListBullet": [], - "HeroiconsOutlineLockClosed": [], - "HeroiconsOutlineLockOpen": [], - "HeroiconsOutlineMagnifyingGlass": [], - "HeroiconsOutlineMagnifyingGlassCircle": [], - "HeroiconsOutlineMagnifyingGlassMinus": [], - "HeroiconsOutlineMagnifyingGlassPlus": [], - "HeroiconsOutlineMap": [], - "HeroiconsOutlineMapPin": [], - "HeroiconsOutlineMegaphone": [], - "HeroiconsOutlineMicrophone": [], - "HeroiconsOutlineMinus": [], - "HeroiconsOutlineMinusCircle": [], - "HeroiconsOutlineMinusSmall": [], - "HeroiconsOutlineMoon": [], - "HeroiconsOutlineMusicalNote": [], - "HeroiconsOutlineNewspaper": [], - "HeroiconsOutlineNoSymbol": [], - "HeroiconsOutlinePaintBrush": [], - "HeroiconsOutlinePaperAirplane": [], - "HeroiconsOutlinePaperClip": [], - "HeroiconsOutlinePause": [], - "HeroiconsOutlinePauseCircle": [], - "HeroiconsOutlinePencil": [], - "HeroiconsOutlinePencilSquare": [], - "HeroiconsOutlinePhone": [], - "HeroiconsOutlinePhoneArrowDownLeft": [], - "HeroiconsOutlinePhoneArrowUpRight": [], - "HeroiconsOutlinePhoneXMark": [], - "HeroiconsOutlinePhoto": [], - "HeroiconsOutlinePlay": [], - "HeroiconsOutlinePlayCircle": [], - "HeroiconsOutlinePlayPause": [], - "HeroiconsOutlinePlus": [], - "HeroiconsOutlinePlusCircle": [], - "HeroiconsOutlinePlusSmall": [], - "HeroiconsOutlinePower": [], - "HeroiconsOutlinePresentationChartBar": [], - "HeroiconsOutlinePresentationChartLine": [], - "HeroiconsOutlinePrinter": [], - "HeroiconsOutlinePuzzlePiece": [], - "HeroiconsOutlineQrCode": [], - "HeroiconsOutlineQuestionMarkCircle": [], - "HeroiconsOutlineQueueList": [], - "HeroiconsOutlineRadio": [], - "HeroiconsOutlineReceiptPercent": [], - "HeroiconsOutlineReceiptRefund": [], - "HeroiconsOutlineRectangleGroup": [], - "HeroiconsOutlineRectangleStack": [], - "HeroiconsOutlineRocketLaunch": [], - "HeroiconsOutlineRss": [], - "HeroiconsOutlineScale": [], - "HeroiconsOutlineScissors": [], - "HeroiconsOutlineServer": [], - "HeroiconsOutlineServerStack": [], - "HeroiconsOutlineShare": [], - "HeroiconsOutlineShieldCheck": [], - "HeroiconsOutlineShieldExclamation": [], - "HeroiconsOutlineShoppingBag": [], - "HeroiconsOutlineShoppingCart": [], - "HeroiconsOutlineSignal": [], - "HeroiconsOutlineSignalSlash": [], - "HeroiconsOutlineSparkles": [], - "HeroiconsOutlineSpeakerWave": [], - "HeroiconsOutlineSpeakerXMark": [], - "HeroiconsOutlineSquare2Stack": [], - "HeroiconsOutlineSquare3Stack3D": [], - "HeroiconsOutlineSquares2X2": [], - "HeroiconsOutlineSquaresPlus": [], - "HeroiconsOutlineStar": [], - "HeroiconsOutlineStop": [], - "HeroiconsOutlineStopCircle": [], - "HeroiconsOutlineSun": [], - "HeroiconsOutlineSwatch": [], - "HeroiconsOutlineTableCells": [], - "HeroiconsOutlineTag": [], - "HeroiconsOutlineTicket": [], - "HeroiconsOutlineTrash": [], - "HeroiconsOutlineTrophy": [], - "HeroiconsOutlineTruck": [], - "HeroiconsOutlineTv": [], - "HeroiconsOutlineUser": [], - "HeroiconsOutlineUserCircle": [], - "HeroiconsOutlineUserGroup": [], - "HeroiconsOutlineUserMinus": [], - "HeroiconsOutlineUserPlus": [], - "HeroiconsOutlineUsers": [], - "HeroiconsOutlineVariable": [], - "HeroiconsOutlineVideoCamera": [], - "HeroiconsOutlineVideoCameraSlash": [], - "HeroiconsOutlineViewColumns": [], - "HeroiconsOutlineViewfinderCircle": [], - "HeroiconsOutlineWallet": [], - "HeroiconsOutlineWifi": [], - "HeroiconsOutlineWindow": [], - "HeroiconsOutlineWrench": [], - "HeroiconsOutlineWrenchScrewdriver": [], - "HeroiconsOutlineXCircle": [], - "HeroiconsOutlineXMark": [], - "HeroiconsSolidAcademicCap": [], - "HeroiconsSolidAdjustmentsHorizontal": [], - "HeroiconsSolidAdjustmentsVertical": [], - "HeroiconsSolidArchiveBox": [], - "HeroiconsSolidArchiveBoxArrowDown": [], - "HeroiconsSolidArchiveBoxXMark": [], - "HeroiconsSolidArrowDown": [], - "HeroiconsSolidArrowDownCircle": [], - "HeroiconsSolidArrowDownLeft": [], - "HeroiconsSolidArrowDownOnSquare": [], - "HeroiconsSolidArrowDownOnSquareStack": [], - "HeroiconsSolidArrowDownRight": [], - "HeroiconsSolidArrowDownTray": [], - "HeroiconsSolidArrowLeft": [], - "HeroiconsSolidArrowLeftCircle": [], - "HeroiconsSolidArrowLeftOnRectangle": [], - "HeroiconsSolidArrowLongDown": [], - "HeroiconsSolidArrowLongLeft": [], - "HeroiconsSolidArrowLongRight": [], - "HeroiconsSolidArrowLongUp": [], - "HeroiconsSolidArrowPath": [], - "HeroiconsSolidArrowPathRoundedSquare": [], - "HeroiconsSolidArrowRight": [], - "HeroiconsSolidArrowRightCircle": [], - "HeroiconsSolidArrowRightOnRectangle": [], - "HeroiconsSolidArrowSmallDown": [], - "HeroiconsSolidArrowSmallLeft": [], - "HeroiconsSolidArrowSmallRight": [], - "HeroiconsSolidArrowSmallUp": [], - "HeroiconsSolidArrowTopRightOnSquare": [], - "HeroiconsSolidArrowTrendingDown": [], - "HeroiconsSolidArrowTrendingUp": [], - "HeroiconsSolidArrowUp": [], - "HeroiconsSolidArrowUpCircle": [], - "HeroiconsSolidArrowUpLeft": [], - "HeroiconsSolidArrowUpOnSquare": [], - "HeroiconsSolidArrowUpOnSquareStack": [], - "HeroiconsSolidArrowUpRight": [], - "HeroiconsSolidArrowUpTray": [], - "HeroiconsSolidArrowUturnDown": [], - "HeroiconsSolidArrowUturnLeft": [], - "HeroiconsSolidArrowUturnRight": [], - "HeroiconsSolidArrowUturnUp": [], - "HeroiconsSolidArrowsPointingIn": [], - "HeroiconsSolidArrowsPointingOut": [], - "HeroiconsSolidArrowsRightLeft": [], - "HeroiconsSolidArrowsUpDown": [], - "HeroiconsSolidAtSymbol": [], - "HeroiconsSolidBackspace": [], - "HeroiconsSolidBackward": [], - "HeroiconsSolidBanknotes": [], - "HeroiconsSolidBars2": [], - "HeroiconsSolidBars3": [], - "HeroiconsSolidBars3BottomLeft": [], - "HeroiconsSolidBars3BottomRight": [], - "HeroiconsSolidBars3CenterLeft": [], - "HeroiconsSolidBars4": [], - "HeroiconsSolidBarsArrowDown": [], - "HeroiconsSolidBarsArrowUp": [], - "HeroiconsSolidBattery0": [], - "HeroiconsSolidBattery100": [], - "HeroiconsSolidBattery50": [], - "HeroiconsSolidBeaker": [], - "HeroiconsSolidBell": [], - "HeroiconsSolidBellAlert": [], - "HeroiconsSolidBellSlash": [], - "HeroiconsSolidBellSnooze": [], - "HeroiconsSolidBolt": [], - "HeroiconsSolidBoltSlash": [], - "HeroiconsSolidBookOpen": [], - "HeroiconsSolidBookmark": [], - "HeroiconsSolidBookmarkSlash": [], - "HeroiconsSolidBookmarkSquare": [], - "HeroiconsSolidBriefcase": [], - "HeroiconsSolidBugAnt": [], - "HeroiconsSolidBuildingLibrary": [], - "HeroiconsSolidBuildingOffice": [], - "HeroiconsSolidBuildingOffice2": [], - "HeroiconsSolidBuildingStorefront": [], - "HeroiconsSolidCake": [], - "HeroiconsSolidCalculator": [], - "HeroiconsSolidCalendar": [], - "HeroiconsSolidCalendarDays": [], - "HeroiconsSolidCamera": [], - "HeroiconsSolidChartBar": [], - "HeroiconsSolidChartBarSquare": [], - "HeroiconsSolidChartPie": [], - "HeroiconsSolidChatBubbleBottomCenter": [], - "HeroiconsSolidChatBubbleBottomCenterText": [], - "HeroiconsSolidChatBubbleLeft": [], - "HeroiconsSolidChatBubbleLeftEllipsis": [], - "HeroiconsSolidChatBubbleLeftRight": [], - "HeroiconsSolidChatBubbleOvalLeft": [], - "HeroiconsSolidChatBubbleOvalLeftEllipsis": [], - "HeroiconsSolidCheck": [], - "HeroiconsSolidCheckBadge": [], - "HeroiconsSolidCheckCircle": [], - "HeroiconsSolidChevronDoubleDown": [], - "HeroiconsSolidChevronDoubleLeft": [], - "HeroiconsSolidChevronDoubleRight": [], - "HeroiconsSolidChevronDoubleUp": [], - "HeroiconsSolidChevronDown": [], - "HeroiconsSolidChevronLeft": [], - "HeroiconsSolidChevronRight": [], - "HeroiconsSolidChevronUp": [], - "HeroiconsSolidChevronUpDown": [], - "HeroiconsSolidCircleStack": [], - "HeroiconsSolidClipboard": [], - "HeroiconsSolidClipboardDocument": [], - "HeroiconsSolidClipboardDocumentCheck": [], - "HeroiconsSolidClipboardDocumentList": [], - "HeroiconsSolidClock": [], - "HeroiconsSolidCloud": [], - "HeroiconsSolidCloudArrowDown": [], - "HeroiconsSolidCloudArrowUp": [], - "HeroiconsSolidCodeBracket": [], - "HeroiconsSolidCodeBracketSquare": [], - "HeroiconsSolidCog": [], - "HeroiconsSolidCog6Tooth": [], - "HeroiconsSolidCog8Tooth": [], - "HeroiconsSolidCommandLine": [], - "HeroiconsSolidComputerDesktop": [], - "HeroiconsSolidCpuChip": [], - "HeroiconsSolidCreditCard": [], - "HeroiconsSolidCube": [], - "HeroiconsSolidCubeTransparent": [], - "HeroiconsSolidCurrencyBangladeshi": [], - "HeroiconsSolidCurrencyDollar": [], - "HeroiconsSolidCurrencyEuro": [], - "HeroiconsSolidCurrencyPound": [], - "HeroiconsSolidCurrencyRupee": [], - "HeroiconsSolidCurrencyYen": [], - "HeroiconsSolidCursorArrowRays": [], - "HeroiconsSolidCursorArrowRipple": [], - "HeroiconsSolidDevicePhoneMobile": [], - "HeroiconsSolidDeviceTablet": [], - "HeroiconsSolidDocument": [], - "HeroiconsSolidDocumentArrowDown": [], - "HeroiconsSolidDocumentArrowUp": [], - "HeroiconsSolidDocumentChartBar": [], - "HeroiconsSolidDocumentCheck": [], - "HeroiconsSolidDocumentDuplicate": [], - "HeroiconsSolidDocumentMagnifyingGlass": [], - "HeroiconsSolidDocumentMinus": [], - "HeroiconsSolidDocumentPlus": [], - "HeroiconsSolidDocumentText": [], - "HeroiconsSolidEllipsisHorizontal": [], - "HeroiconsSolidEllipsisHorizontalCircle": [], - "HeroiconsSolidEllipsisVertical": [], - "HeroiconsSolidEnvelope": [], - "HeroiconsSolidEnvelopeOpen": [], - "HeroiconsSolidExclamationCircle": [], - "HeroiconsSolidExclamationTriangle": [], - "HeroiconsSolidEye": [], - "HeroiconsSolidEyeDropper": [], - "HeroiconsSolidEyeSlash": [], - "HeroiconsSolidFaceFrown": [], - "HeroiconsSolidFaceSmile": [], - "HeroiconsSolidFilm": [], - "HeroiconsSolidFingerPrint": [], - "HeroiconsSolidFire": [], - "HeroiconsSolidFlag": [], - "HeroiconsSolidFolder": [], - "HeroiconsSolidFolderArrowDown": [], - "HeroiconsSolidFolderMinus": [], - "HeroiconsSolidFolderOpen": [], - "HeroiconsSolidFolderPlus": [], - "HeroiconsSolidForward": [], - "HeroiconsSolidFunnel": [], - "HeroiconsSolidGif": [], - "HeroiconsSolidGift": [], - "HeroiconsSolidGiftTop": [], - "HeroiconsSolidGlobeAlt": [], - "HeroiconsSolidGlobeAmericas": [], - "HeroiconsSolidGlobeAsiaAustralia": [], - "HeroiconsSolidGlobeEuropeAfrica": [], - "HeroiconsSolidHandRaised": [], - "HeroiconsSolidHandThumbDown": [], - "HeroiconsSolidHandThumbUp": [], - "HeroiconsSolidHashtag": [], - "HeroiconsSolidHeart": [], - "HeroiconsSolidHome": [], - "HeroiconsSolidHomeModern": [], - "HeroiconsSolidIdentification": [], - "HeroiconsSolidInbox": [], - "HeroiconsSolidInboxArrowDown": [], - "HeroiconsSolidInboxStack": [], - "HeroiconsSolidInformationCircle": [], - "HeroiconsSolidKey": [], - "HeroiconsSolidLanguage": [], - "HeroiconsSolidLifebuoy": [], - "HeroiconsSolidLightBulb": [], - "HeroiconsSolidLink": [], - "HeroiconsSolidListBullet": [], - "HeroiconsSolidLockClosed": [], - "HeroiconsSolidLockOpen": [], - "HeroiconsSolidMagnifyingGlass": [], - "HeroiconsSolidMagnifyingGlassCircle": [], - "HeroiconsSolidMagnifyingGlassMinus": [], - "HeroiconsSolidMagnifyingGlassPlus": [], - "HeroiconsSolidMap": [], - "HeroiconsSolidMapPin": [], - "HeroiconsSolidMegaphone": [], - "HeroiconsSolidMicrophone": [], - "HeroiconsSolidMinus": [], - "HeroiconsSolidMinusCircle": [], - "HeroiconsSolidMinusSmall": [], - "HeroiconsSolidMoon": [], - "HeroiconsSolidMusicalNote": [], - "HeroiconsSolidNewspaper": [], - "HeroiconsSolidNoSymbol": [], - "HeroiconsSolidPaintBrush": [], - "HeroiconsSolidPaperAirplane": [], - "HeroiconsSolidPaperClip": [], - "HeroiconsSolidPause": [], - "HeroiconsSolidPauseCircle": [], - "HeroiconsSolidPencil": [], - "HeroiconsSolidPencilSquare": [], - "HeroiconsSolidPhone": [], - "HeroiconsSolidPhoneArrowDownLeft": [], - "HeroiconsSolidPhoneArrowUpRight": [], - "HeroiconsSolidPhoneXMark": [], - "HeroiconsSolidPhoto": [], - "HeroiconsSolidPlay": [], - "HeroiconsSolidPlayCircle": [], - "HeroiconsSolidPlayPause": [], - "HeroiconsSolidPlus": [], - "HeroiconsSolidPlusCircle": [], - "HeroiconsSolidPlusSmall": [], - "HeroiconsSolidPower": [], - "HeroiconsSolidPresentationChartBar": [], - "HeroiconsSolidPresentationChartLine": [], - "HeroiconsSolidPrinter": [], - "HeroiconsSolidPuzzlePiece": [], - "HeroiconsSolidQrCode": [], - "HeroiconsSolidQuestionMarkCircle": [], - "HeroiconsSolidQueueList": [], - "HeroiconsSolidRadio": [], - "HeroiconsSolidReceiptPercent": [], - "HeroiconsSolidReceiptRefund": [], - "HeroiconsSolidRectangleGroup": [], - "HeroiconsSolidRectangleStack": [], - "HeroiconsSolidRocketLaunch": [], - "HeroiconsSolidRss": [], - "HeroiconsSolidScale": [], - "HeroiconsSolidScissors": [], - "HeroiconsSolidServer": [], - "HeroiconsSolidServerStack": [], - "HeroiconsSolidShare": [], - "HeroiconsSolidShieldCheck": [], - "HeroiconsSolidShieldExclamation": [], - "HeroiconsSolidShoppingBag": [], - "HeroiconsSolidShoppingCart": [], - "HeroiconsSolidSignal": [], - "HeroiconsSolidSignalSlash": [], - "HeroiconsSolidSparkles": [], - "HeroiconsSolidSpeakerWave": [], - "HeroiconsSolidSpeakerXMark": [], - "HeroiconsSolidSquare2Stack": [], - "HeroiconsSolidSquare3Stack3D": [], - "HeroiconsSolidSquares2X2": [], - "HeroiconsSolidSquaresPlus": [], - "HeroiconsSolidStar": [], - "HeroiconsSolidStop": [], - "HeroiconsSolidStopCircle": [], - "HeroiconsSolidSun": [], - "HeroiconsSolidSwatch": [], - "HeroiconsSolidTableCells": [], - "HeroiconsSolidTag": [], - "HeroiconsSolidTicket": [], - "HeroiconsSolidTrash": [], - "HeroiconsSolidTrophy": [], - "HeroiconsSolidTruck": [], - "HeroiconsSolidTv": [], - "HeroiconsSolidUser": [], - "HeroiconsSolidUserCircle": [], - "HeroiconsSolidUserGroup": [], - "HeroiconsSolidUserMinus": [], - "HeroiconsSolidUserPlus": [], - "HeroiconsSolidUsers": [], - "HeroiconsSolidVariable": [], - "HeroiconsSolidVideoCamera": [], - "HeroiconsSolidVideoCameraSlash": [], - "HeroiconsSolidViewColumns": [], - "HeroiconsSolidViewfinderCircle": [], - "HeroiconsSolidWallet": [], - "HeroiconsSolidWifi": [], - "HeroiconsSolidWindow": [], - "HeroiconsSolidWrench": [], - "HeroiconsSolidWrenchScrewdriver": [], - "HeroiconsSolidXCircle": [], - "HeroiconsSolidXMark": [], - "LipisFlagIcons1X1Ac": [], - "LipisFlagIcons1X1Ad": [], - "LipisFlagIcons1X1Ae": [], - "LipisFlagIcons1X1Af": [], - "LipisFlagIcons1X1Ag": [], - "LipisFlagIcons1X1Ai": [], - "LipisFlagIcons1X1Al": [], - "LipisFlagIcons1X1Am": [], - "LipisFlagIcons1X1Ao": [], - "LipisFlagIcons1X1Aq": [], - "LipisFlagIcons1X1Ar": [], - "LipisFlagIcons1X1As": [], - "LipisFlagIcons1X1At": [], - "LipisFlagIcons1X1Au": [], - "LipisFlagIcons1X1Aw": [], - "LipisFlagIcons1X1Ax": [], - "LipisFlagIcons1X1Az": [], - "LipisFlagIcons1X1Ba": [], - "LipisFlagIcons1X1Bb": [], - "LipisFlagIcons1X1Bd": [], - "LipisFlagIcons1X1Be": [], - "LipisFlagIcons1X1Bf": [], - "LipisFlagIcons1X1Bg": [], - "LipisFlagIcons1X1Bh": [], - "LipisFlagIcons1X1Bi": [], - "LipisFlagIcons1X1Bj": [], - "LipisFlagIcons1X1Bl": [], - "LipisFlagIcons1X1Bm": [], - "LipisFlagIcons1X1Bn": [], - "LipisFlagIcons1X1Bo": [], - "LipisFlagIcons1X1Bq": [], - "LipisFlagIcons1X1Br": [], - "LipisFlagIcons1X1Bs": [], - "LipisFlagIcons1X1Bt": [], - "LipisFlagIcons1X1Bv": [], - "LipisFlagIcons1X1Bw": [], - "LipisFlagIcons1X1By": [], - "LipisFlagIcons1X1Bz": [], - "LipisFlagIcons1X1Ca": [], - "LipisFlagIcons1X1Cc": [], - "LipisFlagIcons1X1Cd": [], - "LipisFlagIcons1X1Cefta": [], - "LipisFlagIcons1X1Cf": [], - "LipisFlagIcons1X1Cg": [], - "LipisFlagIcons1X1Ch": [], - "LipisFlagIcons1X1Ci": [], - "LipisFlagIcons1X1Ck": [], - "LipisFlagIcons1X1Cl": [], - "LipisFlagIcons1X1Cm": [], - "LipisFlagIcons1X1Cn": [], - "LipisFlagIcons1X1Co": [], - "LipisFlagIcons1X1Cp": [], - "LipisFlagIcons1X1Cr": [], - "LipisFlagIcons1X1Cu": [], - "LipisFlagIcons1X1Cv": [], - "LipisFlagIcons1X1Cw": [], - "LipisFlagIcons1X1Cx": [], - "LipisFlagIcons1X1Cy": [], - "LipisFlagIcons1X1Cz": [], - "LipisFlagIcons1X1De": [], - "LipisFlagIcons1X1Dg": [], - "LipisFlagIcons1X1Dj": [], - "LipisFlagIcons1X1Dk": [], - "LipisFlagIcons1X1Dm": [], - "LipisFlagIcons1X1Do": [], - "LipisFlagIcons1X1Dz": [], - "LipisFlagIcons1X1Ea": [], - "LipisFlagIcons1X1Ec": [], - "LipisFlagIcons1X1Ee": [], - "LipisFlagIcons1X1Eg": [], - "LipisFlagIcons1X1Eh": [], - "LipisFlagIcons1X1Er": [], - "LipisFlagIcons1X1Es": [], - "LipisFlagIcons1X1EsCt": [], - "LipisFlagIcons1X1EsGa": [], - "LipisFlagIcons1X1Et": [], - "LipisFlagIcons1X1Eu": [], - "LipisFlagIcons1X1Fi": [], - "LipisFlagIcons1X1Fj": [], - "LipisFlagIcons1X1Fk": [], - "LipisFlagIcons1X1Fm": [], - "LipisFlagIcons1X1Fo": [], - "LipisFlagIcons1X1Fr": [], - "LipisFlagIcons1X1Ga": [], - "LipisFlagIcons1X1Gb": [], - "LipisFlagIcons1X1GbEng": [], - "LipisFlagIcons1X1GbNir": [], - "LipisFlagIcons1X1GbSct": [], - "LipisFlagIcons1X1GbWls": [], - "LipisFlagIcons1X1Gd": [], - "LipisFlagIcons1X1Ge": [], - "LipisFlagIcons1X1Gf": [], - "LipisFlagIcons1X1Gg": [], - "LipisFlagIcons1X1Gh": [], - "LipisFlagIcons1X1Gi": [], - "LipisFlagIcons1X1Gl": [], - "LipisFlagIcons1X1Gm": [], - "LipisFlagIcons1X1Gn": [], - "LipisFlagIcons1X1Gp": [], - "LipisFlagIcons1X1Gq": [], - "LipisFlagIcons1X1Gr": [], - "LipisFlagIcons1X1Gs": [], - "LipisFlagIcons1X1Gt": [], - "LipisFlagIcons1X1Gu": [], - "LipisFlagIcons1X1Gw": [], - "LipisFlagIcons1X1Gy": [], - "LipisFlagIcons1X1Hk": [], - "LipisFlagIcons1X1Hm": [], - "LipisFlagIcons1X1Hn": [], - "LipisFlagIcons1X1Hr": [], - "LipisFlagIcons1X1Ht": [], - "LipisFlagIcons1X1Hu": [], - "LipisFlagIcons1X1Ic": [], - "LipisFlagIcons1X1Id": [], - "LipisFlagIcons1X1Ie": [], - "LipisFlagIcons1X1Il": [], - "LipisFlagIcons1X1Im": [], - "LipisFlagIcons1X1In": [], - "LipisFlagIcons1X1Io": [], - "LipisFlagIcons1X1Iq": [], - "LipisFlagIcons1X1Ir": [], - "LipisFlagIcons1X1Is": [], - "LipisFlagIcons1X1It": [], - "LipisFlagIcons1X1Je": [], - "LipisFlagIcons1X1Jm": [], - "LipisFlagIcons1X1Jo": [], - "LipisFlagIcons1X1Jp": [], - "LipisFlagIcons1X1Ke": [], - "LipisFlagIcons1X1Kg": [], - "LipisFlagIcons1X1Kh": [], - "LipisFlagIcons1X1Ki": [], - "LipisFlagIcons1X1Km": [], - "LipisFlagIcons1X1Kn": [], - "LipisFlagIcons1X1Kp": [], - "LipisFlagIcons1X1Kr": [], - "LipisFlagIcons1X1Kw": [], - "LipisFlagIcons1X1Ky": [], - "LipisFlagIcons1X1Kz": [], - "LipisFlagIcons1X1La": [], - "LipisFlagIcons1X1Lb": [], - "LipisFlagIcons1X1Lc": [], - "LipisFlagIcons1X1Li": [], - "LipisFlagIcons1X1Lk": [], - "LipisFlagIcons1X1Lr": [], - "LipisFlagIcons1X1Ls": [], - "LipisFlagIcons1X1Lt": [], - "LipisFlagIcons1X1Lu": [], - "LipisFlagIcons1X1Lv": [], - "LipisFlagIcons1X1Ly": [], - "LipisFlagIcons1X1Ma": [], - "LipisFlagIcons1X1Mc": [], - "LipisFlagIcons1X1Md": [], - "LipisFlagIcons1X1Me": [], - "LipisFlagIcons1X1Mf": [], - "LipisFlagIcons1X1Mg": [], - "LipisFlagIcons1X1Mh": [], - "LipisFlagIcons1X1Mk": [], - "LipisFlagIcons1X1Ml": [], - "LipisFlagIcons1X1Mm": [], - "LipisFlagIcons1X1Mn": [], - "LipisFlagIcons1X1Mo": [], - "LipisFlagIcons1X1Mp": [], - "LipisFlagIcons1X1Mq": [], - "LipisFlagIcons1X1Mr": [], - "LipisFlagIcons1X1Ms": [], - "LipisFlagIcons1X1Mt": [], - "LipisFlagIcons1X1Mu": [], - "LipisFlagIcons1X1Mv": [], - "LipisFlagIcons1X1Mw": [], - "LipisFlagIcons1X1Mx": [], - "LipisFlagIcons1X1My": [], - "LipisFlagIcons1X1Mz": [], - "LipisFlagIcons1X1Na": [], - "LipisFlagIcons1X1Nc": [], - "LipisFlagIcons1X1Ne": [], - "LipisFlagIcons1X1Nf": [], - "LipisFlagIcons1X1Ng": [], - "LipisFlagIcons1X1Ni": [], - "LipisFlagIcons1X1Nl": [], - "LipisFlagIcons1X1No": [], - "LipisFlagIcons1X1Np": [], - "LipisFlagIcons1X1Nr": [], - "LipisFlagIcons1X1Nu": [], - "LipisFlagIcons1X1Nz": [], - "LipisFlagIcons1X1Om": [], - "LipisFlagIcons1X1Pa": [], - "LipisFlagIcons1X1Pe": [], - "LipisFlagIcons1X1Pf": [], - "LipisFlagIcons1X1Pg": [], - "LipisFlagIcons1X1Ph": [], - "LipisFlagIcons1X1Pk": [], - "LipisFlagIcons1X1Pl": [], - "LipisFlagIcons1X1Pm": [], - "LipisFlagIcons1X1Pn": [], - "LipisFlagIcons1X1Pr": [], - "LipisFlagIcons1X1Ps": [], - "LipisFlagIcons1X1Pt": [], - "LipisFlagIcons1X1Pw": [], - "LipisFlagIcons1X1Py": [], - "LipisFlagIcons1X1Qa": [], - "LipisFlagIcons1X1Re": [], - "LipisFlagIcons1X1Ro": [], - "LipisFlagIcons1X1Rs": [], - "LipisFlagIcons1X1Ru": [], - "LipisFlagIcons1X1Rw": [], - "LipisFlagIcons1X1Sa": [], - "LipisFlagIcons1X1Sb": [], - "LipisFlagIcons1X1Sc": [], - "LipisFlagIcons1X1Sd": [], - "LipisFlagIcons1X1Se": [], - "LipisFlagIcons1X1Sg": [], - "LipisFlagIcons1X1Sh": [], - "LipisFlagIcons1X1Si": [], - "LipisFlagIcons1X1Sj": [], - "LipisFlagIcons1X1Sk": [], - "LipisFlagIcons1X1Sl": [], - "LipisFlagIcons1X1Sm": [], - "LipisFlagIcons1X1Sn": [], - "LipisFlagIcons1X1So": [], - "LipisFlagIcons1X1Sr": [], - "LipisFlagIcons1X1Ss": [], - "LipisFlagIcons1X1St": [], - "LipisFlagIcons1X1Sv": [], - "LipisFlagIcons1X1Sx": [], - "LipisFlagIcons1X1Sy": [], - "LipisFlagIcons1X1Sz": [], - "LipisFlagIcons1X1Ta": [], - "LipisFlagIcons1X1Tc": [], - "LipisFlagIcons1X1Td": [], - "LipisFlagIcons1X1Tf": [], - "LipisFlagIcons1X1Tg": [], - "LipisFlagIcons1X1Th": [], - "LipisFlagIcons1X1Tj": [], - "LipisFlagIcons1X1Tk": [], - "LipisFlagIcons1X1Tl": [], - "LipisFlagIcons1X1Tm": [], - "LipisFlagIcons1X1Tn": [], - "LipisFlagIcons1X1To": [], - "LipisFlagIcons1X1Tr": [], - "LipisFlagIcons1X1Tt": [], - "LipisFlagIcons1X1Tv": [], - "LipisFlagIcons1X1Tw": [], - "LipisFlagIcons1X1Tz": [], - "LipisFlagIcons1X1Ua": [], - "LipisFlagIcons1X1Ug": [], - "LipisFlagIcons1X1Um": [], - "LipisFlagIcons1X1Un": [], - "LipisFlagIcons1X1Us": [], - "LipisFlagIcons1X1Uy": [], - "LipisFlagIcons1X1Uz": [], - "LipisFlagIcons1X1Va": [], - "LipisFlagIcons1X1Vc": [], - "LipisFlagIcons1X1Ve": [], - "LipisFlagIcons1X1Vg": [], - "LipisFlagIcons1X1Vi": [], - "LipisFlagIcons1X1Vn": [], - "LipisFlagIcons1X1Vu": [], - "LipisFlagIcons1X1Wf": [], - "LipisFlagIcons1X1Ws": [], - "LipisFlagIcons1X1Xk": [], - "LipisFlagIcons1X1Xx": [], - "LipisFlagIcons1X1Ye": [], - "LipisFlagIcons1X1Yt": [], - "LipisFlagIcons1X1Za": [], - "LipisFlagIcons1X1Zm": [], - "LipisFlagIcons1X1Zw": [], - "LipisFlagIcons4X3Ac": [], - "LipisFlagIcons4X3Ad": [], - "LipisFlagIcons4X3Ae": [], - "LipisFlagIcons4X3Af": [], - "LipisFlagIcons4X3Ag": [], - "LipisFlagIcons4X3Ai": [], - "LipisFlagIcons4X3Al": [], - "LipisFlagIcons4X3Am": [], - "LipisFlagIcons4X3Ao": [], - "LipisFlagIcons4X3Aq": [], - "LipisFlagIcons4X3Ar": [], - "LipisFlagIcons4X3As": [], - "LipisFlagIcons4X3At": [], - "LipisFlagIcons4X3Au": [], - "LipisFlagIcons4X3Aw": [], - "LipisFlagIcons4X3Ax": [], - "LipisFlagIcons4X3Az": [], - "LipisFlagIcons4X3Ba": [], - "LipisFlagIcons4X3Bb": [], - "LipisFlagIcons4X3Bd": [], - "LipisFlagIcons4X3Be": [], - "LipisFlagIcons4X3Bf": [], - "LipisFlagIcons4X3Bg": [], - "LipisFlagIcons4X3Bh": [], - "LipisFlagIcons4X3Bi": [], - "LipisFlagIcons4X3Bj": [], - "LipisFlagIcons4X3Bl": [], - "LipisFlagIcons4X3Bm": [], - "LipisFlagIcons4X3Bn": [], - "LipisFlagIcons4X3Bo": [], - "LipisFlagIcons4X3Bq": [], - "LipisFlagIcons4X3Br": [], - "LipisFlagIcons4X3Bs": [], - "LipisFlagIcons4X3Bt": [], - "LipisFlagIcons4X3Bv": [], - "LipisFlagIcons4X3Bw": [], - "LipisFlagIcons4X3By": [], - "LipisFlagIcons4X3Bz": [], - "LipisFlagIcons4X3Ca": [], - "LipisFlagIcons4X3Cc": [], - "LipisFlagIcons4X3Cd": [], - "LipisFlagIcons4X3Cefta": [], - "LipisFlagIcons4X3Cf": [], - "LipisFlagIcons4X3Cg": [], - "LipisFlagIcons4X3Ch": [], - "LipisFlagIcons4X3Ci": [], - "LipisFlagIcons4X3Ck": [], - "LipisFlagIcons4X3Cl": [], - "LipisFlagIcons4X3Cm": [], - "LipisFlagIcons4X3Cn": [], - "LipisFlagIcons4X3Co": [], - "LipisFlagIcons4X3Cp": [], - "LipisFlagIcons4X3Cr": [], - "LipisFlagIcons4X3Cu": [], - "LipisFlagIcons4X3Cv": [], - "LipisFlagIcons4X3Cw": [], - "LipisFlagIcons4X3Cx": [], - "LipisFlagIcons4X3Cy": [], - "LipisFlagIcons4X3Cz": [], - "LipisFlagIcons4X3De": [], - "LipisFlagIcons4X3Dg": [], - "LipisFlagIcons4X3Dj": [], - "LipisFlagIcons4X3Dk": [], - "LipisFlagIcons4X3Dm": [], - "LipisFlagIcons4X3Do": [], - "LipisFlagIcons4X3Dz": [], - "LipisFlagIcons4X3Ea": [], - "LipisFlagIcons4X3Ec": [], - "LipisFlagIcons4X3Ee": [], - "LipisFlagIcons4X3Eg": [], - "LipisFlagIcons4X3Eh": [], - "LipisFlagIcons4X3Er": [], - "LipisFlagIcons4X3Es": [], - "LipisFlagIcons4X3EsCt": [], - "LipisFlagIcons4X3EsGa": [], - "LipisFlagIcons4X3Et": [], - "LipisFlagIcons4X3Eu": [], - "LipisFlagIcons4X3Fi": [], - "LipisFlagIcons4X3Fj": [], - "LipisFlagIcons4X3Fk": [], - "LipisFlagIcons4X3Fm": [], - "LipisFlagIcons4X3Fo": [], - "LipisFlagIcons4X3Fr": [], - "LipisFlagIcons4X3Ga": [], - "LipisFlagIcons4X3Gb": [], - "LipisFlagIcons4X3GbEng": [], - "LipisFlagIcons4X3GbNir": [], - "LipisFlagIcons4X3GbSct": [], - "LipisFlagIcons4X3GbWls": [], - "LipisFlagIcons4X3Gd": [], - "LipisFlagIcons4X3Ge": [], - "LipisFlagIcons4X3Gf": [], - "LipisFlagIcons4X3Gg": [], - "LipisFlagIcons4X3Gh": [], - "LipisFlagIcons4X3Gi": [], - "LipisFlagIcons4X3Gl": [], - "LipisFlagIcons4X3Gm": [], - "LipisFlagIcons4X3Gn": [], - "LipisFlagIcons4X3Gp": [], - "LipisFlagIcons4X3Gq": [], - "LipisFlagIcons4X3Gr": [], - "LipisFlagIcons4X3Gs": [], - "LipisFlagIcons4X3Gt": [], - "LipisFlagIcons4X3Gu": [], - "LipisFlagIcons4X3Gw": [], - "LipisFlagIcons4X3Gy": [], - "LipisFlagIcons4X3Hk": [], - "LipisFlagIcons4X3Hm": [], - "LipisFlagIcons4X3Hn": [], - "LipisFlagIcons4X3Hr": [], - "LipisFlagIcons4X3Ht": [], - "LipisFlagIcons4X3Hu": [], - "LipisFlagIcons4X3Ic": [], - "LipisFlagIcons4X3Id": [], - "LipisFlagIcons4X3Ie": [], - "LipisFlagIcons4X3Il": [], - "LipisFlagIcons4X3Im": [], - "LipisFlagIcons4X3In": [], - "LipisFlagIcons4X3Io": [], - "LipisFlagIcons4X3Iq": [], - "LipisFlagIcons4X3Ir": [], - "LipisFlagIcons4X3Is": [], - "LipisFlagIcons4X3It": [], - "LipisFlagIcons4X3Je": [], - "LipisFlagIcons4X3Jm": [], - "LipisFlagIcons4X3Jo": [], - "LipisFlagIcons4X3Jp": [], - "LipisFlagIcons4X3Ke": [], - "LipisFlagIcons4X3Kg": [], - "LipisFlagIcons4X3Kh": [], - "LipisFlagIcons4X3Ki": [], - "LipisFlagIcons4X3Km": [], - "LipisFlagIcons4X3Kn": [], - "LipisFlagIcons4X3Kp": [], - "LipisFlagIcons4X3Kr": [], - "LipisFlagIcons4X3Kw": [], - "LipisFlagIcons4X3Ky": [], - "LipisFlagIcons4X3Kz": [], - "LipisFlagIcons4X3La": [], - "LipisFlagIcons4X3Lb": [], - "LipisFlagIcons4X3Lc": [], - "LipisFlagIcons4X3Li": [], - "LipisFlagIcons4X3Lk": [], - "LipisFlagIcons4X3Lr": [], - "LipisFlagIcons4X3Ls": [], - "LipisFlagIcons4X3Lt": [], - "LipisFlagIcons4X3Lu": [], - "LipisFlagIcons4X3Lv": [], - "LipisFlagIcons4X3Ly": [], - "LipisFlagIcons4X3Ma": [], - "LipisFlagIcons4X3Mc": [], - "LipisFlagIcons4X3Md": [], - "LipisFlagIcons4X3Me": [], - "LipisFlagIcons4X3Mf": [], - "LipisFlagIcons4X3Mg": [], - "LipisFlagIcons4X3Mh": [], - "LipisFlagIcons4X3Mk": [], - "LipisFlagIcons4X3Ml": [], - "LipisFlagIcons4X3Mm": [], - "LipisFlagIcons4X3Mn": [], - "LipisFlagIcons4X3Mo": [], - "LipisFlagIcons4X3Mp": [], - "LipisFlagIcons4X3Mq": [], - "LipisFlagIcons4X3Mr": [], - "LipisFlagIcons4X3Ms": [], - "LipisFlagIcons4X3Mt": [], - "LipisFlagIcons4X3Mu": [], - "LipisFlagIcons4X3Mv": [], - "LipisFlagIcons4X3Mw": [], - "LipisFlagIcons4X3Mx": [], - "LipisFlagIcons4X3My": [], - "LipisFlagIcons4X3Mz": [], - "LipisFlagIcons4X3Na": [], - "LipisFlagIcons4X3Nc": [], - "LipisFlagIcons4X3Ne": [], - "LipisFlagIcons4X3Nf": [], - "LipisFlagIcons4X3Ng": [], - "LipisFlagIcons4X3Ni": [], - "LipisFlagIcons4X3Nl": [], - "LipisFlagIcons4X3No": [], - "LipisFlagIcons4X3Np": [], - "LipisFlagIcons4X3Nr": [], - "LipisFlagIcons4X3Nu": [], - "LipisFlagIcons4X3Nz": [], - "LipisFlagIcons4X3Om": [], - "LipisFlagIcons4X3Pa": [], - "LipisFlagIcons4X3Pe": [], - "LipisFlagIcons4X3Pf": [], - "LipisFlagIcons4X3Pg": [], - "LipisFlagIcons4X3Ph": [], - "LipisFlagIcons4X3Pk": [], - "LipisFlagIcons4X3Pl": [], - "LipisFlagIcons4X3Pm": [], - "LipisFlagIcons4X3Pn": [], - "LipisFlagIcons4X3Pr": [], - "LipisFlagIcons4X3Ps": [], - "LipisFlagIcons4X3Pt": [], - "LipisFlagIcons4X3Pw": [], - "LipisFlagIcons4X3Py": [], - "LipisFlagIcons4X3Qa": [], - "LipisFlagIcons4X3Re": [], - "LipisFlagIcons4X3Ro": [], - "LipisFlagIcons4X3Rs": [], - "LipisFlagIcons4X3Ru": [], - "LipisFlagIcons4X3Rw": [], - "LipisFlagIcons4X3Sa": [], - "LipisFlagIcons4X3Sb": [], - "LipisFlagIcons4X3Sc": [], - "LipisFlagIcons4X3Sd": [], - "LipisFlagIcons4X3Se": [], - "LipisFlagIcons4X3Sg": [], - "LipisFlagIcons4X3Sh": [], - "LipisFlagIcons4X3Si": [], - "LipisFlagIcons4X3Sj": [], - "LipisFlagIcons4X3Sk": [], - "LipisFlagIcons4X3Sl": [], - "LipisFlagIcons4X3Sm": [], - "LipisFlagIcons4X3Sn": [], - "LipisFlagIcons4X3So": [], - "LipisFlagIcons4X3Sr": [], - "LipisFlagIcons4X3Ss": [], - "LipisFlagIcons4X3St": [], - "LipisFlagIcons4X3Sv": [], - "LipisFlagIcons4X3Sx": [], - "LipisFlagIcons4X3Sy": [], - "LipisFlagIcons4X3Sz": [], - "LipisFlagIcons4X3Ta": [], - "LipisFlagIcons4X3Tc": [], - "LipisFlagIcons4X3Td": [], - "LipisFlagIcons4X3Tf": [], - "LipisFlagIcons4X3Tg": [], - "LipisFlagIcons4X3Th": [], - "LipisFlagIcons4X3Tj": [], - "LipisFlagIcons4X3Tk": [], - "LipisFlagIcons4X3Tl": [], - "LipisFlagIcons4X3Tm": [], - "LipisFlagIcons4X3Tn": [], - "LipisFlagIcons4X3To": [], - "LipisFlagIcons4X3Tr": [], - "LipisFlagIcons4X3Tt": [], - "LipisFlagIcons4X3Tv": [], - "LipisFlagIcons4X3Tw": [], - "LipisFlagIcons4X3Tz": [], - "LipisFlagIcons4X3Ua": [], - "LipisFlagIcons4X3Ug": [], - "LipisFlagIcons4X3Um": [], - "LipisFlagIcons4X3Un": [], - "LipisFlagIcons4X3Us": [], - "LipisFlagIcons4X3Uy": [], - "LipisFlagIcons4X3Uz": [], - "LipisFlagIcons4X3Va": [], - "LipisFlagIcons4X3Vc": [], - "LipisFlagIcons4X3Ve": [], - "LipisFlagIcons4X3Vg": [], - "LipisFlagIcons4X3Vi": [], - "LipisFlagIcons4X3Vn": [], - "LipisFlagIcons4X3Vu": [], - "LipisFlagIcons4X3Wf": [], - "LipisFlagIcons4X3Ws": [], - "LipisFlagIcons4X3Xk": [], - "LipisFlagIcons4X3Xx": [], - "LipisFlagIcons4X3Ye": [], - "LipisFlagIcons4X3Yt": [], - "LipisFlagIcons4X3Za": [], - "LipisFlagIcons4X3Zm": [], - "LipisFlagIcons4X3Zw": [], - "LucideAccessibility": [], - "LucideActivity": [], - "LucideAirVent": [], - "LucideAirplay": [], - "LucideAlarmCheck": [], - "LucideAlarmClock": [], - "LucideAlarmClockOff": [], - "LucideAlarmMinus": [], - "LucideAlarmPlus": [], - "LucideAlbum": [], - "LucideAlertCircle": [], - "LucideAlertOctagon": [], - "LucideAlertTriangle": [], - "LucideAlignCenter": [], - "LucideAlignCenterHorizontal": [], - "LucideAlignCenterVertical": [], - "LucideAlignEndHorizontal": [], - "LucideAlignEndVertical": [], - "LucideAlignHorizontalDistributeCenter": [], - "LucideAlignHorizontalDistributeEnd": [], - "LucideAlignHorizontalDistributeStart": [], - "LucideAlignHorizontalJustifyCenter": [], - "LucideAlignHorizontalJustifyEnd": [], - "LucideAlignHorizontalJustifyStart": [], - "LucideAlignHorizontalSpaceAround": [], - "LucideAlignHorizontalSpaceBetween": [], - "LucideAlignJustify": [], - "LucideAlignLeft": [], - "LucideAlignRight": [], - "LucideAlignStartHorizontal": [], - "LucideAlignStartVertical": [], - "LucideAlignVerticalDistributeCenter": [], - "LucideAlignVerticalDistributeEnd": [], - "LucideAlignVerticalDistributeStart": [], - "LucideAlignVerticalJustifyCenter": [], - "LucideAlignVerticalJustifyEnd": [], - "LucideAlignVerticalJustifyStart": [], - "LucideAlignVerticalSpaceAround": [], - "LucideAlignVerticalSpaceBetween": [], - "LucideAnchor": [], - "LucideAngry": [], - "LucideAnnoyed": [], - "LucideAperture": [], - "LucideApple": [], - "LucideArchive": [], - "LucideArchiveRestore": [], - "LucideArmchair": [], - "LucideArrowBigDown": [], - "LucideArrowBigLeft": [], - "LucideArrowBigRight": [], - "LucideArrowBigUp": [], - "LucideArrowDown": [], - "LucideArrowDownCircle": [], - "LucideArrowDownLeft": [], - "LucideArrowDownRight": [], - "LucideArrowLeft": [], - "LucideArrowLeftCircle": [], - "LucideArrowLeftRight": [], - "LucideArrowRight": [], - "LucideArrowRightCircle": [], - "LucideArrowUp": [], - "LucideArrowUpCircle": [], - "LucideArrowUpDown": [], - "LucideArrowUpLeft": [], - "LucideArrowUpRight": [], - "LucideAsterisk": [], - "LucideAtSign": [], - "LucideAward": [], - "LucideAxe": [], - "LucideAxis3D": [], - "LucideBaby": [], - "LucideBackpack": [], - "LucideBaggageClaim": [], - "LucideBanana": [], - "LucideBanknote": [], - "LucideBarChart": [], - "LucideBarChart2": [], - "LucideBarChart3": [], - "LucideBarChart4": [], - "LucideBarChartHorizontal": [], - "LucideBaseline": [], - "LucideBath": [], - "LucideBattery": [], - "LucideBatteryCharging": [], - "LucideBatteryFull": [], - "LucideBatteryLow": [], - "LucideBatteryMedium": [], - "LucideBeaker": [], - "LucideBed": [], - "LucideBedDouble": [], - "LucideBedSingle": [], - "LucideBeer": [], - "LucideBell": [], - "LucideBellMinus": [], - "LucideBellOff": [], - "LucideBellPlus": [], - "LucideBellRing": [], - "LucideBike": [], - "LucideBinary": [], - "LucideBitcoin": [], - "LucideBluetooth": [], - "LucideBluetoothConnected": [], - "LucideBluetoothOff": [], - "LucideBluetoothSearching": [], - "LucideBold": [], - "LucideBomb": [], - "LucideBone": [], - "LucideBook": [], - "LucideBookOpen": [], - "LucideBookOpenCheck": [], - "LucideBookmark": [], - "LucideBookmarkMinus": [], - "LucideBookmarkPlus": [], - "LucideBot": [], - "LucideBox": [], - "LucideBoxSelect": [], - "LucideBoxes": [], - "LucideBriefcase": [], - "LucideBrush": [], - "LucideBug": [], - "LucideBuilding": [], - "LucideBuilding2": [], - "LucideBus": [], - "LucideCake": [], - "LucideCalculator": [], - "LucideCalendar": [], - "LucideCalendarCheck": [], - "LucideCalendarCheck2": [], - "LucideCalendarClock": [], - "LucideCalendarDays": [], - "LucideCalendarHeart": [], - "LucideCalendarMinus": [], - "LucideCalendarOff": [], - "LucideCalendarPlus": [], - "LucideCalendarRange": [], - "LucideCalendarSearch": [], - "LucideCalendarX": [], - "LucideCalendarX2": [], - "LucideCamera": [], - "LucideCameraOff": [], - "LucideCar": [], - "LucideCarrot": [], - "LucideCast": [], - "LucideCheck": [], - "LucideCheckCircle": [], - "LucideCheckCircle2": [], - "LucideCheckSquare": [], - "LucideChefHat": [], - "LucideCherry": [], - "LucideChevronDown": [], - "LucideChevronFirst": [], - "LucideChevronLast": [], - "LucideChevronLeft": [], - "LucideChevronRight": [], - "LucideChevronUp": [], - "LucideChevronsDown": [], - "LucideChevronsDownUp": [], - "LucideChevronsLeft": [], - "LucideChevronsLeftRight": [], - "LucideChevronsRight": [], - "LucideChevronsRightLeft": [], - "LucideChevronsUp": [], - "LucideChevronsUpDown": [], - "LucideChrome": [], - "LucideCigarette": [], - "LucideCigaretteOff": [], - "LucideCircle": [], - "LucideCircleDot": [], - "LucideCircleEllipsis": [], - "LucideCircleSlashed": [], - "LucideCitrus": [], - "LucideClapperboard": [], - "LucideClipboard": [], - "LucideClipboardCheck": [], - "LucideClipboardCopy": [], - "LucideClipboardEdit": [], - "LucideClipboardList": [], - "LucideClipboardSignature": [], - "LucideClipboardType": [], - "LucideClipboardX": [], - "LucideClock": [], - "LucideClock1": [], - "LucideClock10": [], - "LucideClock11": [], - "LucideClock12": [], - "LucideClock2": [], - "LucideClock3": [], - "LucideClock4": [], - "LucideClock5": [], - "LucideClock6": [], - "LucideClock7": [], - "LucideClock8": [], - "LucideClock9": [], - "LucideCloud": [], - "LucideCloudCog": [], - "LucideCloudDrizzle": [], - "LucideCloudFog": [], - "LucideCloudHail": [], - "LucideCloudLightning": [], - "LucideCloudMoon": [], - "LucideCloudMoonRain": [], - "LucideCloudOff": [], - "LucideCloudRain": [], - "LucideCloudRainWind": [], - "LucideCloudSnow": [], - "LucideCloudSun": [], - "LucideCloudSunRain": [], - "LucideCloudy": [], - "LucideClover": [], - "LucideCode": [], - "LucideCode2": [], - "LucideCodepen": [], - "LucideCodesandbox": [], - "LucideCoffee": [], - "LucideCog": [], - "LucideCoins": [], - "LucideColumns": [], - "LucideCommand": [], - "LucideCompass": [], - "LucideComponent": [], - "LucideConciergeBell": [], - "LucideContact": [], - "LucideContrast": [], - "LucideCookie": [], - "LucideCopy": [], - "LucideCopyleft": [], - "LucideCopyright": [], - "LucideCornerDownLeft": [], - "LucideCornerDownRight": [], - "LucideCornerLeftDown": [], - "LucideCornerLeftUp": [], - "LucideCornerRightDown": [], - "LucideCornerRightUp": [], - "LucideCornerUpLeft": [], - "LucideCornerUpRight": [], - "LucideCpu": [], - "LucideCreditCard": [], - "LucideCroissant": [], - "LucideCrop": [], - "LucideCross": [], - "LucideCrosshair": [], - "LucideCrown": [], - "LucideCupSoda": [], - "LucideCurlyBraces": [], - "LucideCurrency": [], - "LucideDatabase": [], - "LucideDelete": [], - "LucideDiamond": [], - "LucideDice1": [], - "LucideDice2": [], - "LucideDice3": [], - "LucideDice4": [], - "LucideDice5": [], - "LucideDice6": [], - "LucideDices": [], - "LucideDiff": [], - "LucideDisc": [], - "LucideDivide": [], - "LucideDivideCircle": [], - "LucideDivideSquare": [], - "LucideDollarSign": [], - "LucideDownload": [], - "LucideDownloadCloud": [], - "LucideDribbble": [], - "LucideDroplet": [], - "LucideDroplets": [], - "LucideDrumstick": [], - "LucideEar": [], - "LucideEarOff": [], - "LucideEdit": [], - "LucideEdit2": [], - "LucideEdit3": [], - "LucideEgg": [], - "LucideEggFried": [], - "LucideEqual": [], - "LucideEqualNot": [], - "LucideEraser": [], - "LucideEuro": [], - "LucideExpand": [], - "LucideExternalLink": [], - "LucideEye": [], - "LucideEyeOff": [], - "LucideFacebook": [], - "LucideFactory": [], - "LucideFan": [], - "LucideFastForward": [], - "LucideFeather": [], - "LucideFigma": [], - "LucideFile": [], - "LucideFileArchive": [], - "LucideFileAudio": [], - "LucideFileAudio2": [], - "LucideFileAxis3D": [], - "LucideFileBadge": [], - "LucideFileBadge2": [], - "LucideFileBarChart": [], - "LucideFileBarChart2": [], - "LucideFileBox": [], - "LucideFileCheck": [], - "LucideFileCheck2": [], - "LucideFileClock": [], - "LucideFileCode": [], - "LucideFileCog": [], - "LucideFileCog2": [], - "LucideFileDiff": [], - "LucideFileDigit": [], - "LucideFileDown": [], - "LucideFileEdit": [], - "LucideFileHeart": [], - "LucideFileImage": [], - "LucideFileInput": [], - "LucideFileJson": [], - "LucideFileJson2": [], - "LucideFileKey": [], - "LucideFileKey2": [], - "LucideFileLineChart": [], - "LucideFileLock": [], - "LucideFileLock2": [], - "LucideFileMinus": [], - "LucideFileMinus2": [], - "LucideFileOutput": [], - "LucideFilePieChart": [], - "LucideFilePlus": [], - "LucideFilePlus2": [], - "LucideFileQuestion": [], - "LucideFileScan": [], - "LucideFileSearch": [], - "LucideFileSearch2": [], - "LucideFileSignature": [], - "LucideFileSpreadsheet": [], - "LucideFileSymlink": [], - "LucideFileTerminal": [], - "LucideFileText": [], - "LucideFileType": [], - "LucideFileType2": [], - "LucideFileUp": [], - "LucideFileVideo": [], - "LucideFileVideo2": [], - "LucideFileVolume": [], - "LucideFileVolume2": [], - "LucideFileWarning": [], - "LucideFileX": [], - "LucideFileX2": [], - "LucideFiles": [], - "LucideFilm": [], - "LucideFilter": [], - "LucideFingerprint": [], - "LucideFlag": [], - "LucideFlagOff": [], - "LucideFlagTriangleLeft": [], - "LucideFlagTriangleRight": [], - "LucideFlame": [], - "LucideFlashlight": [], - "LucideFlashlightOff": [], - "LucideFlaskConical": [], - "LucideFlaskRound": [], - "LucideFlipHorizontal": [], - "LucideFlipHorizontal2": [], - "LucideFlipVertical": [], - "LucideFlipVertical2": [], - "LucideFlower": [], - "LucideFlower2": [], - "LucideFocus": [], - "LucideFolder": [], - "LucideFolderArchive": [], - "LucideFolderCheck": [], - "LucideFolderClock": [], - "LucideFolderClosed": [], - "LucideFolderCog": [], - "LucideFolderCog2": [], - "LucideFolderDown": [], - "LucideFolderEdit": [], - "LucideFolderHeart": [], - "LucideFolderInput": [], - "LucideFolderKey": [], - "LucideFolderLock": [], - "LucideFolderMinus": [], - "LucideFolderOpen": [], - "LucideFolderOutput": [], - "LucideFolderPlus": [], - "LucideFolderSearch": [], - "LucideFolderSearch2": [], - "LucideFolderSymlink": [], - "LucideFolderTree": [], - "LucideFolderUp": [], - "LucideFolderX": [], - "LucideFolders": [], - "LucideFormInput": [], - "LucideForward": [], - "LucideFrame": [], - "LucideFramer": [], - "LucideFrown": [], - "LucideFuel": [], - "LucideFunctionSquare": [], - "LucideGamepad": [], - "LucideGamepad2": [], - "LucideGauge": [], - "LucideGavel": [], - "LucideGem": [], - "LucideGhost": [], - "LucideGift": [], - "LucideGitBranch": [], - "LucideGitBranchPlus": [], - "LucideGitCommit": [], - "LucideGitCompare": [], - "LucideGitFork": [], - "LucideGitMerge": [], - "LucideGitPullRequest": [], - "LucideGitPullRequestClosed": [], - "LucideGitPullRequestDraft": [], - "LucideGithub": [], - "LucideGitlab": [], - "LucideGlassWater": [], - "LucideGlasses": [], - "LucideGlobe": [], - "LucideGlobe2": [], - "LucideGrab": [], - "LucideGraduationCap": [], - "LucideGrape": [], - "LucideGrid": [], - "LucideGripHorizontal": [], - "LucideGripVertical": [], - "LucideHammer": [], - "LucideHand": [], - "LucideHandMetal": [], - "LucideHardDrive": [], - "LucideHardHat": [], - "LucideHash": [], - "LucideHaze": [], - "LucideHeadphones": [], - "LucideHeart": [], - "LucideHeartCrack": [], - "LucideHeartHandshake": [], - "LucideHeartOff": [], - "LucideHeartPulse": [], - "LucideHelpCircle": [], - "LucideHexagon": [], - "LucideHighlighter": [], - "LucideHistory": [], - "LucideHome": [], - "LucideHourglass": [], - "LucideIceCream": [], - "LucideImage": [], - "LucideImageMinus": [], - "LucideImageOff": [], - "LucideImagePlus": [], - "LucideImport": [], - "LucideInbox": [], - "LucideIndent": [], - "LucideIndianRupee": [], - "LucideInfinity": [], - "LucideInfo": [], - "LucideInspect": [], - "LucideInstagram": [], - "LucideItalic": [], - "LucideJapaneseYen": [], - "LucideJoystick": [], - "LucideKey": [], - "LucideKeyboard": [], - "LucideLamp": [], - "LucideLampCeiling": [], - "LucideLampDesk": [], - "LucideLampFloor": [], - "LucideLampWallDown": [], - "LucideLampWallUp": [], - "LucideLandmark": [], - "LucideLanguages": [], - "LucideLaptop": [], - "LucideLaptop2": [], - "LucideLasso": [], - "LucideLassoSelect": [], - "LucideLaugh": [], - "LucideLayers": [], - "LucideLayout": [], - "LucideLayoutDashboard": [], - "LucideLayoutGrid": [], - "LucideLayoutList": [], - "LucideLayoutTemplate": [], - "LucideLeaf": [], - "LucideLibrary": [], - "LucideLifeBuoy": [], - "LucideLightbulb": [], - "LucideLightbulbOff": [], - "LucideLineChart": [], - "LucideLink": [], - "LucideLink2": [], - "LucideLink2Off": [], - "LucideLinkedin": [], - "LucideList": [], - "LucideListChecks": [], - "LucideListEnd": [], - "LucideListMinus": [], - "LucideListMusic": [], - "LucideListOrdered": [], - "LucideListPlus": [], - "LucideListStart": [], - "LucideListVideo": [], - "LucideListX": [], - "LucideLoader": [], - "LucideLoader2": [], - "LucideLocate": [], - "LucideLocateFixed": [], - "LucideLocateOff": [], - "LucideLock": [], - "LucideLogIn": [], - "LucideLogOut": [], - "LucideLuggage": [], - "LucideMagnet": [], - "LucideMail": [], - "LucideMailCheck": [], - "LucideMailMinus": [], - "LucideMailOpen": [], - "LucideMailPlus": [], - "LucideMailQuestion": [], - "LucideMailSearch": [], - "LucideMailWarning": [], - "LucideMailX": [], - "LucideMails": [], - "LucideMap": [], - "LucideMapPin": [], - "LucideMapPinOff": [], - "LucideMartini": [], - "LucideMaximize": [], - "LucideMaximize2": [], - "LucideMedal": [], - "LucideMegaphone": [], - "LucideMegaphoneOff": [], - "LucideMeh": [], - "LucideMenu": [], - "LucideMessageCircle": [], - "LucideMessageSquare": [], - "LucideMic": [], - "LucideMic2": [], - "LucideMicOff": [], - "LucideMicroscope": [], - "LucideMicrowave": [], - "LucideMilestone": [], - "LucideMinimize": [], - "LucideMinimize2": [], - "LucideMinus": [], - "LucideMinusCircle": [], - "LucideMinusSquare": [], - "LucideMonitor": [], - "LucideMonitorOff": [], - "LucideMonitorSpeaker": [], - "LucideMoon": [], - "LucideMoreHorizontal": [], - "LucideMoreVertical": [], - "LucideMountain": [], - "LucideMountainSnow": [], - "LucideMouse": [], - "LucideMousePointer": [], - "LucideMousePointer2": [], - "LucideMousePointerClick": [], - "LucideMove": [], - "LucideMove3D": [], - "LucideMoveDiagonal": [], - "LucideMoveDiagonal2": [], - "LucideMoveHorizontal": [], - "LucideMoveVertical": [], - "LucideMusic": [], - "LucideMusic2": [], - "LucideMusic3": [], - "LucideMusic4": [], - "LucideNavigation": [], - "LucideNavigation2": [], - "LucideNavigation2Off": [], - "LucideNavigationOff": [], - "LucideNetwork": [], - "LucideNewspaper": [], - "LucideOctagon": [], - "LucideOption": [], - "LucideOutdent": [], - "LucidePackage": [], - "LucidePackage2": [], - "LucidePackageCheck": [], - "LucidePackageMinus": [], - "LucidePackageOpen": [], - "LucidePackagePlus": [], - "LucidePackageSearch": [], - "LucidePackageX": [], - "LucidePaintBucket": [], - "LucidePaintbrush": [], - "LucidePaintbrush2": [], - "LucidePalette": [], - "LucidePalmtree": [], - "LucidePaperclip": [], - "LucidePartyPopper": [], - "LucidePause": [], - "LucidePauseCircle": [], - "LucidePauseOctagon": [], - "LucidePenTool": [], - "LucidePencil": [], - "LucidePercent": [], - "LucidePersonStanding": [], - "LucidePhone": [], - "LucidePhoneCall": [], - "LucidePhoneForwarded": [], - "LucidePhoneIncoming": [], - "LucidePhoneMissed": [], - "LucidePhoneOff": [], - "LucidePhoneOutgoing": [], - "LucidePieChart": [], - "LucidePiggyBank": [], - "LucidePin": [], - "LucidePinOff": [], - "LucidePipette": [], - "LucidePizza": [], - "LucidePlane": [], - "LucidePlay": [], - "LucidePlayCircle": [], - "LucidePlug": [], - "LucidePlug2": [], - "LucidePlugZap": [], - "LucidePlus": [], - "LucidePlusCircle": [], - "LucidePlusSquare": [], - "LucidePocket": [], - "LucidePodcast": [], - "LucidePointer": [], - "LucidePoundSterling": [], - "LucidePower": [], - "LucidePowerOff": [], - "LucidePrinter": [], - "LucidePuzzle": [], - "LucideQrCode": [], - "LucideQuote": [], - "LucideRadio": [], - "LucideRadioReceiver": [], - "LucideRectangleHorizontal": [], - "LucideRectangleVertical": [], - "LucideRecycle": [], - "LucideRedo": [], - "LucideRedo2": [], - "LucideRefreshCcw": [], - "LucideRefreshCw": [], - "LucideRefrigerator": [], - "LucideRegex": [], - "LucideRepeat": [], - "LucideRepeat1": [], - "LucideReply": [], - "LucideReplyAll": [], - "LucideRewind": [], - "LucideRocket": [], - "LucideRockingChair": [], - "LucideRotate3D": [], - "LucideRotateCcw": [], - "LucideRotateCw": [], - "LucideRss": [], - "LucideRuler": [], - "LucideRussianRuble": [], - "LucideSailboat": [], - "LucideSave": [], - "LucideScale": [], - "LucideScale3D": [], - "LucideScaling": [], - "LucideScan": [], - "LucideScanFace": [], - "LucideScanLine": [], - "LucideScissors": [], - "LucideScreenShare": [], - "LucideScreenShareOff": [], - "LucideScroll": [], - "LucideSearch": [], - "LucideSend": [], - "LucideSeparatorHorizontal": [], - "LucideSeparatorVertical": [], - "LucideServer": [], - "LucideServerCog": [], - "LucideServerCrash": [], - "LucideServerOff": [], - "LucideSettings": [], - "LucideSettings2": [], - "LucideShare": [], - "LucideShare2": [], - "LucideSheet": [], - "LucideShield": [], - "LucideShieldAlert": [], - "LucideShieldCheck": [], - "LucideShieldClose": [], - "LucideShieldOff": [], - "LucideShirt": [], - "LucideShoppingBag": [], - "LucideShoppingCart": [], - "LucideShovel": [], - "LucideShowerHead": [], - "LucideShrink": [], - "LucideShrub": [], - "LucideShuffle": [], - "LucideSidebar": [], - "LucideSidebarClose": [], - "LucideSidebarOpen": [], - "LucideSigma": [], - "LucideSignal": [], - "LucideSignalHigh": [], - "LucideSignalLow": [], - "LucideSignalMedium": [], - "LucideSignalZero": [], - "LucideSiren": [], - "LucideSkipBack": [], - "LucideSkipForward": [], - "LucideSkull": [], - "LucideSlack": [], - "LucideSlash": [], - "LucideSlice": [], - "LucideSliders": [], - "LucideSlidersHorizontal": [], - "LucideSmartphone": [], - "LucideSmartphoneCharging": [], - "LucideSmile": [], - "LucideSmilePlus": [], - "LucideSnowflake": [], - "LucideSofa": [], - "LucideSortAsc": [], - "LucideSortDesc": [], - "LucideSpeaker": [], - "LucideSprout": [], - "LucideSquare": [], - "LucideStar": [], - "LucideStarHalf": [], - "LucideStarOff": [], - "LucideStethoscope": [], - "LucideSticker": [], - "LucideStickyNote": [], - "LucideStopCircle": [], - "LucideStretchHorizontal": [], - "LucideStretchVertical": [], - "LucideStrikethrough": [], - "LucideSubscript": [], - "LucideSun": [], - "LucideSunDim": [], - "LucideSunMedium": [], - "LucideSunMoon": [], - "LucideSunSnow": [], - "LucideSunrise": [], - "LucideSunset": [], - "LucideSuperscript": [], - "LucideSwissFranc": [], - "LucideSwitchCamera": [], - "LucideSword": [], - "LucideSwords": [], - "LucideSyringe": [], - "LucideTable": [], - "LucideTable2": [], - "LucideTablet": [], - "LucideTag": [], - "LucideTags": [], - "LucideTarget": [], - "LucideTent": [], - "LucideTerminal": [], - "LucideTerminalSquare": [], - "LucideTextCursor": [], - "LucideTextCursorInput": [], - "LucideThermometer": [], - "LucideThermometerSnowflake": [], - "LucideThermometerSun": [], - "LucideThumbsDown": [], - "LucideThumbsUp": [], - "LucideTicket": [], - "LucideTimer": [], - "LucideTimerOff": [], - "LucideTimerReset": [], - "LucideToggleLeft": [], - "LucideToggleRight": [], - "LucideTornado": [], - "LucideToyBrick": [], - "LucideTrain": [], - "LucideTrash": [], - "LucideTrash2": [], - "LucideTreeDeciduous": [], - "LucideTreePine": [], - "LucideTrees": [], - "LucideTrello": [], - "LucideTrendingDown": [], - "LucideTrendingUp": [], - "LucideTriangle": [], - "LucideTrophy": [], - "LucideTruck": [], - "LucideTv": [], - "LucideTv2": [], - "LucideTwitch": [], - "LucideTwitter": [], - "LucideType": [], - "LucideUmbrella": [], - "LucideUnderline": [], - "LucideUndo": [], - "LucideUndo2": [], - "LucideUnlink": [], - "LucideUnlink2": [], - "LucideUnlock": [], - "LucideUpload": [], - "LucideUploadCloud": [], - "LucideUsb": [], - "LucideUser": [], - "LucideUserCheck": [], - "LucideUserCog": [], - "LucideUserMinus": [], - "LucideUserPlus": [], - "LucideUserX": [], - "LucideUsers": [], - "LucideUtensils": [], - "LucideUtensilsCrossed": [], - "LucideVenetianMask": [], - "LucideVerified": [], - "LucideVibrate": [], - "LucideVibrateOff": [], - "LucideVideo": [], - "LucideVideoOff": [], - "LucideView": [], - "LucideVoicemail": [], - "LucideVolume": [], - "LucideVolume1": [], - "LucideVolume2": [], - "LucideVolumeX": [], - "LucideWallet": [], - "LucideWand": [], - "LucideWand2": [], - "LucideWatch": [], - "LucideWaves": [], - "LucideWebcam": [], - "LucideWebhook": [], - "LucideWifi": [], - "LucideWifiOff": [], - "LucideWind": [], - "LucideWine": [], - "LucideWrapText": [], - "LucideWrench": [], - "LucideX": [], - "LucideXCircle": [], - "LucideXOctagon": [], - "LucideXSquare": [], - "LucideYoutube": [], - "LucideZap": [], - "LucideZapOff": [], - "LucideZoomIn": [], - "LucideZoomOut": [], - "OcticonsAccessibility16": [], - "OcticonsAlert16": [], - "OcticonsAlert24": [], - "OcticonsAlertFill12": [], - "OcticonsApps16": [], - "OcticonsArchive16": [], - "OcticonsArchive24": [], - "OcticonsArrowBoth16": [], - "OcticonsArrowBoth24": [], - "OcticonsArrowDown16": [], - "OcticonsArrowDown24": [], - "OcticonsArrowDownLeft24": [], - "OcticonsArrowDownRight24": [], - "OcticonsArrowLeft16": [], - "OcticonsArrowLeft24": [], - "OcticonsArrowRight16": [], - "OcticonsArrowRight24": [], - "OcticonsArrowSwitch16": [], - "OcticonsArrowSwitch24": [], - "OcticonsArrowUp16": [], - "OcticonsArrowUp24": [], - "OcticonsArrowUpLeft24": [], - "OcticonsArrowUpRight24": [], - "OcticonsBeaker16": [], - "OcticonsBeaker24": [], - "OcticonsBell16": [], - "OcticonsBell24": [], - "OcticonsBellFill16": [], - "OcticonsBellFill24": [], - "OcticonsBellSlash16": [], - "OcticonsBellSlash24": [], - "OcticonsBlocked16": [], - "OcticonsBlocked24": [], - "OcticonsBold16": [], - "OcticonsBold24": [], - "OcticonsBook16": [], - "OcticonsBook24": [], - "OcticonsBookmark16": [], - "OcticonsBookmark24": [], - "OcticonsBookmarkFill24": [], - "OcticonsBookmarkSlash16": [], - "OcticonsBookmarkSlash24": [], - "OcticonsBookmarkSlashFill24": [], - "OcticonsBriefcase16": [], - "OcticonsBriefcase24": [], - "OcticonsBroadcast16": [], - "OcticonsBroadcast24": [], - "OcticonsBrowser16": [], - "OcticonsBrowser24": [], - "OcticonsBug16": [], - "OcticonsBug24": [], - "OcticonsCalendar16": [], - "OcticonsCalendar24": [], - "OcticonsCheck16": [], - "OcticonsCheck24": [], - "OcticonsCheckCircle16": [], - "OcticonsCheckCircle24": [], - "OcticonsCheckCircleFill12": [], - "OcticonsCheckCircleFill16": [], - "OcticonsCheckCircleFill24": [], - "OcticonsChecklist16": [], - "OcticonsChecklist24": [], - "OcticonsChevronDown16": [], - "OcticonsChevronDown24": [], - "OcticonsChevronLeft16": [], - "OcticonsChevronLeft24": [], - "OcticonsChevronRight16": [], - "OcticonsChevronRight24": [], - "OcticonsChevronUp16": [], - "OcticonsChevronUp24": [], - "OcticonsCircle16": [], - "OcticonsCircle24": [], - "OcticonsCircleSlash16": [], - "OcticonsCircleSlash24": [], - "OcticonsClock16": [], - "OcticonsClock24": [], - "OcticonsCloud16": [], - "OcticonsCloud24": [], - "OcticonsCloudOffline16": [], - "OcticonsCloudOffline24": [], - "OcticonsCode16": [], - "OcticonsCode24": [], - "OcticonsCodeOfConduct16": [], - "OcticonsCodeOfConduct24": [], - "OcticonsCodeReview16": [], - "OcticonsCodeReview24": [], - "OcticonsCodeSquare16": [], - "OcticonsCodeSquare24": [], - "OcticonsCodescan16": [], - "OcticonsCodescan24": [], - "OcticonsCodescanCheckmark16": [], - "OcticonsCodescanCheckmark24": [], - "OcticonsCodespaces16": [], - "OcticonsCodespaces24": [], - "OcticonsColumns16": [], - "OcticonsColumns24": [], - "OcticonsComment16": [], - "OcticonsComment24": [], - "OcticonsCommentDiscussion16": [], - "OcticonsCommentDiscussion24": [], - "OcticonsCommit24": [], - "OcticonsContainer16": [], - "OcticonsContainer24": [], - "OcticonsCopy16": [], - "OcticonsCopy24": [], - "OcticonsCpu16": [], - "OcticonsCpu24": [], - "OcticonsCreditCard16": [], - "OcticonsCreditCard24": [], - "OcticonsCrossReference16": [], - "OcticonsCrossReference24": [], - "OcticonsDash16": [], - "OcticonsDash24": [], - "OcticonsDatabase16": [], - "OcticonsDatabase24": [], - "OcticonsDependabot16": [], - "OcticonsDependabot24": [], - "OcticonsDesktopDownload16": [], - "OcticonsDesktopDownload24": [], - "OcticonsDeviceCamera16": [], - "OcticonsDeviceCameraVideo16": [], - "OcticonsDeviceCameraVideo24": [], - "OcticonsDeviceDesktop16": [], - "OcticonsDeviceDesktop24": [], - "OcticonsDeviceMobile16": [], - "OcticonsDeviceMobile24": [], - "OcticonsDiamond16": [], - "OcticonsDiamond24": [], - "OcticonsDiff16": [], - "OcticonsDiff24": [], - "OcticonsDiffAdded16": [], - "OcticonsDiffIgnored16": [], - "OcticonsDiffModified16": [], - "OcticonsDiffRemoved16": [], - "OcticonsDiffRenamed16": [], - "OcticonsDot16": [], - "OcticonsDot24": [], - "OcticonsDotFill16": [], - "OcticonsDotFill24": [], - "OcticonsDownload16": [], - "OcticonsDownload24": [], - "OcticonsDuplicate16": [], - "OcticonsDuplicate24": [], - "OcticonsEllipsis16": [], - "OcticonsEye16": [], - "OcticonsEye24": [], - "OcticonsEyeClosed16": [], - "OcticonsEyeClosed24": [], - "OcticonsFeedDiscussion16": [], - "OcticonsFeedForked16": [], - "OcticonsFeedHeart16": [], - "OcticonsFeedMerged16": [], - "OcticonsFeedPerson16": [], - "OcticonsFeedRepo16": [], - "OcticonsFeedRocket16": [], - "OcticonsFeedStar16": [], - "OcticonsFeedTag16": [], - "OcticonsFeedTrophy16": [], - "OcticonsFile16": [], - "OcticonsFile24": [], - "OcticonsFileBadge16": [], - "OcticonsFileBinary16": [], - "OcticonsFileBinary24": [], - "OcticonsFileCode16": [], - "OcticonsFileCode24": [], - "OcticonsFileDiff16": [], - "OcticonsFileDiff24": [], - "OcticonsFileDirectory16": [], - "OcticonsFileDirectory24": [], - "OcticonsFileDirectoryFill16": [], - "OcticonsFileDirectoryFill24": [], - "OcticonsFileDirectoryOpenFill16": [], - "OcticonsFileMedia24": [], - "OcticonsFileSubmodule16": [], - "OcticonsFileSubmodule24": [], - "OcticonsFileSymlinkFile16": [], - "OcticonsFileSymlinkFile24": [], - "OcticonsFileZip16": [], - "OcticonsFileZip24": [], - "OcticonsFilter16": [], - "OcticonsFilter24": [], - "OcticonsFlame16": [], - "OcticonsFlame24": [], - "OcticonsFold16": [], - "OcticonsFold24": [], - "OcticonsFoldDown16": [], - "OcticonsFoldDown24": [], - "OcticonsFoldUp16": [], - "OcticonsFoldUp24": [], - "OcticonsGear16": [], - "OcticonsGear24": [], - "OcticonsGift16": [], - "OcticonsGift24": [], - "OcticonsGitBranch16": [], - "OcticonsGitBranch24": [], - "OcticonsGitCommit16": [], - "OcticonsGitCommit24": [], - "OcticonsGitCompare16": [], - "OcticonsGitCompare24": [], - "OcticonsGitMerge16": [], - "OcticonsGitMerge24": [], - "OcticonsGitPullRequest16": [], - "OcticonsGitPullRequest24": [], - "OcticonsGitPullRequestClosed16": [], - "OcticonsGitPullRequestClosed24": [], - "OcticonsGitPullRequestDraft16": [], - "OcticonsGitPullRequestDraft24": [], - "OcticonsGlobe16": [], - "OcticonsGlobe24": [], - "OcticonsGrabber16": [], - "OcticonsGrabber24": [], - "OcticonsGraph16": [], - "OcticonsGraph24": [], - "OcticonsHash16": [], - "OcticonsHash24": [], - "OcticonsHeading16": [], - "OcticonsHeading24": [], - "OcticonsHeart16": [], - "OcticonsHeart24": [], - "OcticonsHeartFill16": [], - "OcticonsHeartFill24": [], - "OcticonsHistory16": [], - "OcticonsHistory24": [], - "OcticonsHome16": [], - "OcticonsHome24": [], - "OcticonsHomeFill24": [], - "OcticonsHorizontalRule16": [], - "OcticonsHorizontalRule24": [], - "OcticonsHourglass16": [], - "OcticonsHourglass24": [], - "OcticonsHubot16": [], - "OcticonsHubot24": [], - "OcticonsIdBadge16": [], - "OcticonsImage16": [], - "OcticonsImage24": [], - "OcticonsInbox16": [], - "OcticonsInbox24": [], - "OcticonsInfinity16": [], - "OcticonsInfinity24": [], - "OcticonsInfo16": [], - "OcticonsInfo24": [], - "OcticonsIssueClosed16": [], - "OcticonsIssueClosed24": [], - "OcticonsIssueDraft16": [], - "OcticonsIssueDraft24": [], - "OcticonsIssueOpened16": [], - "OcticonsIssueOpened24": [], - "OcticonsIssueReopened16": [], - "OcticonsIssueReopened24": [], - "OcticonsItalic16": [], - "OcticonsItalic24": [], - "OcticonsIterations16": [], - "OcticonsIterations24": [], - "OcticonsKebabHorizontal16": [], - "OcticonsKebabHorizontal24": [], - "OcticonsKey16": [], - "OcticonsKey24": [], - "OcticonsKeyAsterisk16": [], - "OcticonsLaw16": [], - "OcticonsLaw24": [], - "OcticonsLightBulb16": [], - "OcticonsLightBulb24": [], - "OcticonsLink16": [], - "OcticonsLink24": [], - "OcticonsLinkExternal16": [], - "OcticonsLinkExternal24": [], - "OcticonsListOrdered16": [], - "OcticonsListOrdered24": [], - "OcticonsListUnordered16": [], - "OcticonsListUnordered24": [], - "OcticonsLocation16": [], - "OcticonsLocation24": [], - "OcticonsLock16": [], - "OcticonsLock24": [], - "OcticonsLog16": [], - "OcticonsLogoGist16": [], - "OcticonsLogoGithub16": [], - "OcticonsMail16": [], - "OcticonsMail24": [], - "OcticonsMarkGithub16": [], - "OcticonsMarkdown16": [], - "OcticonsMegaphone16": [], - "OcticonsMegaphone24": [], - "OcticonsMention16": [], - "OcticonsMention24": [], - "OcticonsMeter16": [], - "OcticonsMilestone16": [], - "OcticonsMilestone24": [], - "OcticonsMirror16": [], - "OcticonsMirror24": [], - "OcticonsMoon16": [], - "OcticonsMoon24": [], - "OcticonsMortarBoard16": [], - "OcticonsMortarBoard24": [], - "OcticonsMultiSelect16": [], - "OcticonsMultiSelect24": [], - "OcticonsMute16": [], - "OcticonsMute24": [], - "OcticonsNoEntry16": [], - "OcticonsNoEntry24": [], - "OcticonsNoEntryFill12": [], - "OcticonsNorthStar16": [], - "OcticonsNorthStar24": [], - "OcticonsNote16": [], - "OcticonsNote24": [], - "OcticonsNumber16": [], - "OcticonsNumber24": [], - "OcticonsOrganization16": [], - "OcticonsOrganization24": [], - "OcticonsPackage16": [], - "OcticonsPackage24": [], - "OcticonsPackageDependencies16": [], - "OcticonsPackageDependencies24": [], - "OcticonsPackageDependents16": [], - "OcticonsPackageDependents24": [], - "OcticonsPaintbrush16": [], - "OcticonsPaperAirplane16": [], - "OcticonsPaperAirplane24": [], - "OcticonsPaste16": [], - "OcticonsPaste24": [], - "OcticonsPencil16": [], - "OcticonsPencil24": [], - "OcticonsPeople16": [], - "OcticonsPeople24": [], - "OcticonsPerson16": [], - "OcticonsPerson24": [], - "OcticonsPersonAdd16": [], - "OcticonsPersonAdd24": [], - "OcticonsPersonFill16": [], - "OcticonsPersonFill24": [], - "OcticonsPin16": [], - "OcticonsPin24": [], - "OcticonsPlay16": [], - "OcticonsPlay24": [], - "OcticonsPlug16": [], - "OcticonsPlug24": [], - "OcticonsPlus16": [], - "OcticonsPlus24": [], - "OcticonsPlusCircle16": [], - "OcticonsPlusCircle24": [], - "OcticonsProject16": [], - "OcticonsProject24": [], - "OcticonsPulse16": [], - "OcticonsPulse24": [], - "OcticonsQuestion16": [], - "OcticonsQuestion24": [], - "OcticonsQuote16": [], - "OcticonsQuote24": [], - "OcticonsReply16": [], - "OcticonsReply24": [], - "OcticonsRepo16": [], - "OcticonsRepo24": [], - "OcticonsRepoClone16": [], - "OcticonsRepoDeleted16": [], - "OcticonsRepoForked16": [], - "OcticonsRepoForked24": [], - "OcticonsRepoLocked16": [], - "OcticonsRepoPull16": [], - "OcticonsRepoPush16": [], - "OcticonsRepoPush24": [], - "OcticonsRepoTemplate16": [], - "OcticonsRepoTemplate24": [], - "OcticonsReport16": [], - "OcticonsReport24": [], - "OcticonsRocket16": [], - "OcticonsRocket24": [], - "OcticonsRows16": [], - "OcticonsRows24": [], - "OcticonsRss16": [], - "OcticonsRss24": [], - "OcticonsRuby16": [], - "OcticonsRuby24": [], - "OcticonsScreenFull16": [], - "OcticonsScreenFull24": [], - "OcticonsScreenNormal16": [], - "OcticonsScreenNormal24": [], - "OcticonsSearch16": [], - "OcticonsSearch24": [], - "OcticonsServer16": [], - "OcticonsServer24": [], - "OcticonsShare16": [], - "OcticonsShare24": [], - "OcticonsShareAndroid16": [], - "OcticonsShareAndroid24": [], - "OcticonsShield16": [], - "OcticonsShield24": [], - "OcticonsShieldCheck16": [], - "OcticonsShieldCheck24": [], - "OcticonsShieldLock16": [], - "OcticonsShieldLock24": [], - "OcticonsShieldX16": [], - "OcticonsShieldX24": [], - "OcticonsSidebarCollapse16": [], - "OcticonsSidebarCollapse24": [], - "OcticonsSidebarExpand16": [], - "OcticonsSidebarExpand24": [], - "OcticonsSignIn16": [], - "OcticonsSignIn24": [], - "OcticonsSignOut16": [], - "OcticonsSignOut24": [], - "OcticonsSingleSelect16": [], - "OcticonsSingleSelect24": [], - "OcticonsSkip16": [], - "OcticonsSkip24": [], - "OcticonsSmiley16": [], - "OcticonsSmiley24": [], - "OcticonsSortAsc16": [], - "OcticonsSortAsc24": [], - "OcticonsSortDesc16": [], - "OcticonsSortDesc24": [], - "OcticonsSquare16": [], - "OcticonsSquare24": [], - "OcticonsSquareFill16": [], - "OcticonsSquareFill24": [], - "OcticonsSquirrel16": [], - "OcticonsSquirrel24": [], - "OcticonsStack16": [], - "OcticonsStack24": [], - "OcticonsStar16": [], - "OcticonsStar24": [], - "OcticonsStarFill16": [], - "OcticonsStarFill24": [], - "OcticonsStop16": [], - "OcticonsStop24": [], - "OcticonsStopwatch16": [], - "OcticonsStopwatch24": [], - "OcticonsStrikethrough16": [], - "OcticonsStrikethrough24": [], - "OcticonsSun16": [], - "OcticonsSun24": [], - "OcticonsSync16": [], - "OcticonsSync24": [], - "OcticonsTab24": [], - "OcticonsTabExternal16": [], - "OcticonsTable16": [], - "OcticonsTable24": [], - "OcticonsTag16": [], - "OcticonsTag24": [], - "OcticonsTasklist16": [], - "OcticonsTasklist24": [], - "OcticonsTelescope16": [], - "OcticonsTelescope24": [], - "OcticonsTelescopeFill16": [], - "OcticonsTelescopeFill24": [], - "OcticonsTerminal16": [], - "OcticonsTerminal24": [], - "OcticonsThreeBars16": [], - "OcticonsThumbsdown16": [], - "OcticonsThumbsdown24": [], - "OcticonsThumbsup16": [], - "OcticonsThumbsup24": [], - "OcticonsTools16": [], - "OcticonsTools24": [], - "OcticonsTrash16": [], - "OcticonsTrash24": [], - "OcticonsTriangleDown16": [], - "OcticonsTriangleDown24": [], - "OcticonsTriangleLeft16": [], - "OcticonsTriangleLeft24": [], - "OcticonsTriangleRight16": [], - "OcticonsTriangleRight24": [], - "OcticonsTriangleUp16": [], - "OcticonsTriangleUp24": [], - "OcticonsTrophy16": [], - "OcticonsTrophy24": [], - "OcticonsTypography16": [], - "OcticonsTypography24": [], - "OcticonsUnfold16": [], - "OcticonsUnfold24": [], - "OcticonsUnlock16": [], - "OcticonsUnlock24": [], - "OcticonsUnmute16": [], - "OcticonsUnmute24": [], - "OcticonsUnverified16": [], - "OcticonsUnverified24": [], - "OcticonsUpload16": [], - "OcticonsUpload24": [], - "OcticonsVerified16": [], - "OcticonsVerified24": [], - "OcticonsVersions16": [], - "OcticonsVersions24": [], - "OcticonsVideo16": [], - "OcticonsVideo24": [], - "OcticonsWebhook16": [], - "OcticonsWorkflow16": [], - "OcticonsWorkflow24": [], - "OcticonsX16": [], - "OcticonsX24": [], - "OcticonsXCircle16": [], - "OcticonsXCircle24": [], - "OcticonsXCircleFill12": [], - "OcticonsXCircleFill16": [], - "OcticonsXCircleFill24": [], - "OcticonsZap16": [], - "OcticonsZap24": [], - "SimpleIcons1001Tracklists": [], - "SimpleIcons1Password": [], - "SimpleIcons3M": [], - "SimpleIcons42": [], - "SimpleIcons4Chan": [], - "SimpleIcons4D": [], - "SimpleIcons500Px": [], - "SimpleIconsAbbott": [], - "SimpleIconsAbbrobotstudio": [], - "SimpleIconsAbbvie": [], - "SimpleIconsAbletonlive": [], - "SimpleIconsAboutdotme": [], - "SimpleIconsAbstract": [], - "SimpleIconsAcademia": [], - "SimpleIconsAccenture": [], - "SimpleIconsAcclaim": [], - "SimpleIconsAccusoft": [], - "SimpleIconsAcer": [], - "SimpleIconsAcm": [], - "SimpleIconsActigraph": [], - "SimpleIconsActivision": [], - "SimpleIconsAdafruit": [], - "SimpleIconsAdblock": [], - "SimpleIconsAdblockplus": [], - "SimpleIconsAddthis": [], - "SimpleIconsAdguard": [], - "SimpleIconsAdidas": [], - "SimpleIconsAdminer": [], - "SimpleIconsAdobe": [], - "SimpleIconsAdobeacrobatreader": [], - "SimpleIconsAdobeaftereffects": [], - "SimpleIconsAdobeaudition": [], - "SimpleIconsAdobecreativecloud": [], - "SimpleIconsAdobedreamweaver": [], - "SimpleIconsAdobefonts": [], - "SimpleIconsAdobeillustrator": [], - "SimpleIconsAdobeindesign": [], - "SimpleIconsAdobelightroom": [], - "SimpleIconsAdobelightroomclassic": [], - "SimpleIconsAdobephotoshop": [], - "SimpleIconsAdobepremierepro": [], - "SimpleIconsAdobexd": [], - "SimpleIconsAdonisjs": [], - "SimpleIconsAdp": [], - "SimpleIconsAdyen": [], - "SimpleIconsAerlingus": [], - "SimpleIconsAeroflot": [], - "SimpleIconsAeromexico": [], - "SimpleIconsAerospike": [], - "SimpleIconsAew": [], - "SimpleIconsAffinity": [], - "SimpleIconsAffinitydesigner": [], - "SimpleIconsAffinityphoto": [], - "SimpleIconsAffinitypublisher": [], - "SimpleIconsAframe": [], - "SimpleIconsAgora": [], - "SimpleIconsAib": [], - "SimpleIconsAidungeon": [], - "SimpleIconsAiohttp": [], - "SimpleIconsAiqfome": [], - "SimpleIconsAirasia": [], - "SimpleIconsAirbnb": [], - "SimpleIconsAirbus": [], - "SimpleIconsAirbyte": [], - "SimpleIconsAircall": [], - "SimpleIconsAircanada": [], - "SimpleIconsAirchina": [], - "SimpleIconsAirfrance": [], - "SimpleIconsAirplayaudio": [], - "SimpleIconsAirplayvideo": [], - "SimpleIconsAirtable": [], - "SimpleIconsAjv": [], - "SimpleIconsAkamai": [], - "SimpleIconsAlacritty": [], - "SimpleIconsAlbertheijn": [], - "SimpleIconsAlchemy": [], - "SimpleIconsAldinord": [], - "SimpleIconsAldisud": [], - "SimpleIconsAlfaromeo": [], - "SimpleIconsAlfred": [], - "SimpleIconsAlgolia": [], - "SimpleIconsAlgorand": [], - "SimpleIconsAlibabacloud": [], - "SimpleIconsAlibabadotcom": [], - "SimpleIconsAliexpress": [], - "SimpleIconsAlipay": [], - "SimpleIconsAlitalia": [], - "SimpleIconsAllegro": [], - "SimpleIconsAlliedmodders": [], - "SimpleIconsAllocine": [], - "SimpleIconsAlltrails": [], - "SimpleIconsAlpinedotjs": [], - "SimpleIconsAlpinelinux": [], - "SimpleIconsAltiumdesigner": [], - "SimpleIconsAlwaysdata": [], - "SimpleIconsAmazon": [], - "SimpleIconsAmazonalexa": [], - "SimpleIconsAmazonapigateway": [], - "SimpleIconsAmazonaws": [], - "SimpleIconsAmazoncloudwatch": [], - "SimpleIconsAmazondynamodb": [], - "SimpleIconsAmazonec2": [], - "SimpleIconsAmazonecs": [], - "SimpleIconsAmazoneks": [], - "SimpleIconsAmazonfiretv": [], - "SimpleIconsAmazongames": [], - "SimpleIconsAmazonlumberyard": [], - "SimpleIconsAmazonpay": [], - "SimpleIconsAmazonprime": [], - "SimpleIconsAmazonrds": [], - "SimpleIconsAmazons3": [], - "SimpleIconsAmazonsqs": [], - "SimpleIconsAmd": [], - "SimpleIconsAmericanairlines": [], - "SimpleIconsAmericanexpress": [], - "SimpleIconsAmg": [], - "SimpleIconsAmp": [], - "SimpleIconsAmul": [], - "SimpleIconsAna": [], - "SimpleIconsAnaconda": [], - "SimpleIconsAnalogue": [], - "SimpleIconsAnchor": [], - "SimpleIconsAndela": [], - "SimpleIconsAndroid": [], - "SimpleIconsAndroidauto": [], - "SimpleIconsAndroidstudio": [], - "SimpleIconsAngellist": [], - "SimpleIconsAngular": [], - "SimpleIconsAngularjs": [], - "SimpleIconsAngularuniversal": [], - "SimpleIconsAnilist": [], - "SimpleIconsAnsible": [], - "SimpleIconsAnswer": [], - "SimpleIconsAnsys": [], - "SimpleIconsAnta": [], - "SimpleIconsAntdesign": [], - "SimpleIconsAntena3": [], - "SimpleIconsAnydesk": [], - "SimpleIconsAol": [], - "SimpleIconsApache": [], - "SimpleIconsApacheairflow": [], - "SimpleIconsApacheant": [], - "SimpleIconsApachecassandra": [], - "SimpleIconsApachecloudstack": [], - "SimpleIconsApachecordova": [], - "SimpleIconsApachecouchdb": [], - "SimpleIconsApachedruid": [], - "SimpleIconsApacheecharts": [], - "SimpleIconsApacheflink": [], - "SimpleIconsApachegroovy": [], - "SimpleIconsApachehadoop": [], - "SimpleIconsApachehive": [], - "SimpleIconsApachejmeter": [], - "SimpleIconsApachekafka": [], - "SimpleIconsApachekylin": [], - "SimpleIconsApachemaven": [], - "SimpleIconsApachenetbeanside": [], - "SimpleIconsApacheopenoffice": [], - "SimpleIconsApachepulsar": [], - "SimpleIconsApacherocketmq": [], - "SimpleIconsApachesolr": [], - "SimpleIconsApachespark": [], - "SimpleIconsApachetomcat": [], - "SimpleIconsAparat": [], - "SimpleIconsApollographql": [], - "SimpleIconsApostrophe": [], - "SimpleIconsAppian": [], - "SimpleIconsApple": [], - "SimpleIconsApplearcade": [], - "SimpleIconsApplemusic": [], - "SimpleIconsApplenews": [], - "SimpleIconsApplepay": [], - "SimpleIconsApplepodcasts": [], - "SimpleIconsAppletv": [], - "SimpleIconsAppsignal": [], - "SimpleIconsAppstore": [], - "SimpleIconsAppveyor": [], - "SimpleIconsAppwrite": [], - "SimpleIconsAqua": [], - "SimpleIconsAral": [], - "SimpleIconsArangodb": [], - "SimpleIconsArchicad": [], - "SimpleIconsArchiveofourown": [], - "SimpleIconsArchlinux": [], - "SimpleIconsArdour": [], - "SimpleIconsArduino": [], - "SimpleIconsArgo": [], - "SimpleIconsArgos": [], - "SimpleIconsArkecosystem": [], - "SimpleIconsArlo": [], - "SimpleIconsArm": [], - "SimpleIconsArtifacthub": [], - "SimpleIconsArtixlinux": [], - "SimpleIconsArtstation": [], - "SimpleIconsArxiv": [], - "SimpleIconsAsana": [], - "SimpleIconsAsciidoctor": [], - "SimpleIconsAsciinema": [], - "SimpleIconsAsda": [], - "SimpleIconsAseprite": [], - "SimpleIconsAskfm": [], - "SimpleIconsAskubuntu": [], - "SimpleIconsAssemblyscript": [], - "SimpleIconsAstonmartin": [], - "SimpleIconsAstro": [], - "SimpleIconsAsus": [], - "SimpleIconsAtandt": [], - "SimpleIconsAtari": [], - "SimpleIconsAtlassian": [], - "SimpleIconsAtom": [], - "SimpleIconsAuchan": [], - "SimpleIconsAudacity": [], - "SimpleIconsAudi": [], - "SimpleIconsAudible": [], - "SimpleIconsAudioboom": [], - "SimpleIconsAudiomack": [], - "SimpleIconsAudiotechnica": [], - "SimpleIconsAurelia": [], - "SimpleIconsAuth0": [], - "SimpleIconsAuthy": [], - "SimpleIconsAutodesk": [], - "SimpleIconsAutohotkey": [], - "SimpleIconsAutomattic": [], - "SimpleIconsAutoprefixer": [], - "SimpleIconsAvajs": [], - "SimpleIconsAvast": [], - "SimpleIconsAwesomelists": [], - "SimpleIconsAwesomewm": [], - "SimpleIconsAwsamplify": [], - "SimpleIconsAwsfargate": [], - "SimpleIconsAwslambda": [], - "SimpleIconsAxios": [], - "SimpleIconsAzureartifacts": [], - "SimpleIconsAzuredataexplorer": [], - "SimpleIconsAzuredevops": [], - "SimpleIconsAzurefunctions": [], - "SimpleIconsAzurepipelines": [], - "SimpleIconsBabel": [], - "SimpleIconsBackblaze": [], - "SimpleIconsBackbonedotjs": [], - "SimpleIconsBackendless": [], - "SimpleIconsBackstage": [], - "SimpleIconsBadgr": [], - "SimpleIconsBadoo": [], - "SimpleIconsBaidu": [], - "SimpleIconsBamboo": [], - "SimpleIconsBandcamp": [], - "SimpleIconsBandlab": [], - "SimpleIconsBandrautomation": [], - "SimpleIconsBandsintown": [], - "SimpleIconsBankofamerica": [], - "SimpleIconsBarclays": [], - "SimpleIconsBaremetrics": [], - "SimpleIconsBasecamp": [], - "SimpleIconsBastyon": [], - "SimpleIconsBata": [], - "SimpleIconsBathasu": [], - "SimpleIconsBattledotnet": [], - "SimpleIconsBbc": [], - "SimpleIconsBbciplayer": [], - "SimpleIconsBeatport": [], - "SimpleIconsBeats": [], - "SimpleIconsBeatsbydre": [], - "SimpleIconsBehance": [], - "SimpleIconsBeijingsubway": [], - "SimpleIconsBem": [], - "SimpleIconsBentley": [], - "SimpleIconsBetfair": [], - "SimpleIconsBigbasket": [], - "SimpleIconsBigbluebutton": [], - "SimpleIconsBigcartel": [], - "SimpleIconsBigcommerce": [], - "SimpleIconsBilibili": [], - "SimpleIconsBillboard": [], - "SimpleIconsBim": [], - "SimpleIconsBinance": [], - "SimpleIconsBiolink": [], - "SimpleIconsBit": [], - "SimpleIconsBitbucket": [], - "SimpleIconsBitcoin": [], - "SimpleIconsBitcoincash": [], - "SimpleIconsBitcoinsv": [], - "SimpleIconsBitdefender": [], - "SimpleIconsBitly": [], - "SimpleIconsBitrise": [], - "SimpleIconsBitwarden": [], - "SimpleIconsBitwig": [], - "SimpleIconsBlackberry": [], - "SimpleIconsBlazemeter": [], - "SimpleIconsBlazor": [], - "SimpleIconsBlender": [], - "SimpleIconsBlockchaindotcom": [], - "SimpleIconsBlogger": [], - "SimpleIconsBloglovin": [], - "SimpleIconsBlueprint": [], - "SimpleIconsBluetooth": [], - "SimpleIconsBmcsoftware": [], - "SimpleIconsBmw": [], - "SimpleIconsBoardgamegeek": [], - "SimpleIconsBoehringeringelheim": [], - "SimpleIconsBoeing": [], - "SimpleIconsBookalope": [], - "SimpleIconsBookbub": [], - "SimpleIconsBookmeter": [], - "SimpleIconsBookmyshow": [], - "SimpleIconsBookstack": [], - "SimpleIconsBoost": [], - "SimpleIconsBoots": [], - "SimpleIconsBootstrap": [], - "SimpleIconsBorgbackup": [], - "SimpleIconsBosch": [], - "SimpleIconsBose": [], - "SimpleIconsBoulanger": [], - "SimpleIconsBower": [], - "SimpleIconsBox": [], - "SimpleIconsBoxysvg": [], - "SimpleIconsBrandfolder": [], - "SimpleIconsBrave": [], - "SimpleIconsBreaker": [], - "SimpleIconsBritishairways": [], - "SimpleIconsBroadcom": [], - "SimpleIconsBt": [], - "SimpleIconsBuddy": [], - "SimpleIconsBudibase": [], - "SimpleIconsBuefy": [], - "SimpleIconsBuffer": [], - "SimpleIconsBugatti": [], - "SimpleIconsBugcrowd": [], - "SimpleIconsBugsnag": [], - "SimpleIconsBuildkite": [], - "SimpleIconsBukalapak": [], - "SimpleIconsBulma": [], - "SimpleIconsBun": [], - "SimpleIconsBunq": [], - "SimpleIconsBurgerking": [], - "SimpleIconsBurton": [], - "SimpleIconsBuymeacoffee": [], - "SimpleIconsBuzzfeed": [], - "SimpleIconsBvg": [], - "SimpleIconsByjus": [], - "SimpleIconsByte": [], - "SimpleIconsBytedance": [], - "SimpleIconsC": [], - "SimpleIconsCachet": [], - "SimpleIconsCafepress": [], - "SimpleIconsCaffeine": [], - "SimpleIconsCairographics": [], - "SimpleIconsCairometro": [], - "SimpleIconsCakephp": [], - "SimpleIconsCampaignmonitor": [], - "SimpleIconsCanonical": [], - "SimpleIconsCanva": [], - "SimpleIconsCapacitor": [], - "SimpleIconsCarrefour": [], - "SimpleIconsCarthrottle": [], - "SimpleIconsCarto": [], - "SimpleIconsCashapp": [], - "SimpleIconsCastbox": [], - "SimpleIconsCastorama": [], - "SimpleIconsCastro": [], - "SimpleIconsCaterpillar": [], - "SimpleIconsCbs": [], - "SimpleIconsCdprojekt": [], - "SimpleIconsCelery": [], - "SimpleIconsCentos": [], - "SimpleIconsCeph": [], - "SimpleIconsCesium": [], - "SimpleIconsChai": [], - "SimpleIconsChainguard": [], - "SimpleIconsChainlink": [], - "SimpleIconsChakraui": [], - "SimpleIconsChartdotjs": [], - "SimpleIconsChartmogul": [], - "SimpleIconsChase": [], - "SimpleIconsChatbot": [], - "SimpleIconsCheckio": [], - "SimpleIconsCheckmarx": [], - "SimpleIconsChef": [], - "SimpleIconsChemex": [], - "SimpleIconsChevrolet": [], - "SimpleIconsChinaeasternairlines": [], - "SimpleIconsChinasouthernairlines": [], - "SimpleIconsChocolatey": [], - "SimpleIconsChromecast": [], - "SimpleIconsChrysler": [], - "SimpleIconsChupachups": [], - "SimpleIconsCilium": [], - "SimpleIconsCinema4D": [], - "SimpleIconsCircle": [], - "SimpleIconsCircleci": [], - "SimpleIconsCirrusci": [], - "SimpleIconsCisco": [], - "SimpleIconsCitrix": [], - "SimpleIconsCitroen": [], - "SimpleIconsCivicrm": [], - "SimpleIconsCivo": [], - "SimpleIconsCkeditor4": [], - "SimpleIconsClaris": [], - "SimpleIconsClickhouse": [], - "SimpleIconsClickup": [], - "SimpleIconsClion": [], - "SimpleIconsCliqz": [], - "SimpleIconsClockify": [], - "SimpleIconsClojure": [], - "SimpleIconsCloud66": [], - "SimpleIconsCloudbees": [], - "SimpleIconsCloudcannon": [], - "SimpleIconsCloudera": [], - "SimpleIconsCloudflare": [], - "SimpleIconsCloudflarepages": [], - "SimpleIconsCloudfoundry": [], - "SimpleIconsCloudsmith": [], - "SimpleIconsCloudways": [], - "SimpleIconsClubhouse": [], - "SimpleIconsClyp": [], - "SimpleIconsCmake": [], - "SimpleIconsCncf": [], - "SimpleIconsCnn": [], - "SimpleIconsCockpit": [], - "SimpleIconsCockroachlabs": [], - "SimpleIconsCocoapods": [], - "SimpleIconsCocos": [], - "SimpleIconsCoda": [], - "SimpleIconsCodacy": [], - "SimpleIconsCodeberg": [], - "SimpleIconsCodecademy": [], - "SimpleIconsCodeceptjs": [], - "SimpleIconsCodechef": [], - "SimpleIconsCodeclimate": [], - "SimpleIconsCodecov": [], - "SimpleIconsCodefactor": [], - "SimpleIconsCodeforces": [], - "SimpleIconsCodeigniter": [], - "SimpleIconsCodemagic": [], - "SimpleIconsCodemirror": [], - "SimpleIconsCodenewbie": [], - "SimpleIconsCodepen": [], - "SimpleIconsCodeproject": [], - "SimpleIconsCodereview": [], - "SimpleIconsCodersrank": [], - "SimpleIconsCoderwall": [], - "SimpleIconsCodesandbox": [], - "SimpleIconsCodeship": [], - "SimpleIconsCodewars": [], - "SimpleIconsCodingame": [], - "SimpleIconsCodingninjas": [], - "SimpleIconsCodio": [], - "SimpleIconsCoffeescript": [], - "SimpleIconsCognizant": [], - "SimpleIconsCoil": [], - "SimpleIconsCoinbase": [], - "SimpleIconsCoinmarketcap": [], - "SimpleIconsCommerzbank": [], - "SimpleIconsCommitlint": [], - "SimpleIconsCommodore": [], - "SimpleIconsCommonworkflowlanguage": [], - "SimpleIconsComposer": [], - "SimpleIconsComsol": [], - "SimpleIconsConan": [], - "SimpleIconsConcourse": [], - "SimpleIconsCondaforge": [], - "SimpleIconsConekta": [], - "SimpleIconsConfluence": [], - "SimpleIconsConstruct3": [], - "SimpleIconsConsul": [], - "SimpleIconsContactlesspayment": [], - "SimpleIconsContainerd": [], - "SimpleIconsContentful": [], - "SimpleIconsConventionalcommits": [], - "SimpleIconsConvertio": [], - "SimpleIconsCookiecutter": [], - "SimpleIconsCoop": [], - "SimpleIconsCora": [], - "SimpleIconsCoronaengine": [], - "SimpleIconsCoronarenderer": [], - "SimpleIconsCorsair": [], - "SimpleIconsCouchbase": [], - "SimpleIconsCounterstrike": [], - "SimpleIconsCountingworkspro": [], - "SimpleIconsCoursera": [], - "SimpleIconsCoveralls": [], - "SimpleIconsCpanel": [], - "SimpleIconsCplusplus": [], - "SimpleIconsCraftcms": [], - "SimpleIconsCratedb": [], - "SimpleIconsCrayon": [], - "SimpleIconsCreatereactapp": [], - "SimpleIconsCreativecommons": [], - "SimpleIconsCreativetechnology": [], - "SimpleIconsCredly": [], - "SimpleIconsCrehana": [], - "SimpleIconsCriticalrole": [], - "SimpleIconsCrowdin": [], - "SimpleIconsCrowdsource": [], - "SimpleIconsCrunchbase": [], - "SimpleIconsCrunchyroll": [], - "SimpleIconsCryengine": [], - "SimpleIconsCrystal": [], - "SimpleIconsCsharp": [], - "SimpleIconsCss3": [], - "SimpleIconsCssmodules": [], - "SimpleIconsCsswizardry": [], - "SimpleIconsCts": [], - "SimpleIconsCucumber": [], - "SimpleIconsCultura": [], - "SimpleIconsCurl": [], - "SimpleIconsCurseforge": [], - "SimpleIconsCycling74": [], - "SimpleIconsCypress": [], - "SimpleIconsCytoscapedotjs": [], - "SimpleIconsD": [], - "SimpleIconsD3Dotjs": [], - "SimpleIconsDacia": [], - "SimpleIconsDaf": [], - "SimpleIconsDailymotion": [], - "SimpleIconsDaimler": [], - "SimpleIconsDaisyui": [], - "SimpleIconsDapr": [], - "SimpleIconsDarkreader": [], - "SimpleIconsDart": [], - "SimpleIconsDarty": [], - "SimpleIconsDaserste": [], - "SimpleIconsDash": [], - "SimpleIconsDashlane": [], - "SimpleIconsDask": [], - "SimpleIconsDassaultsystemes": [], - "SimpleIconsDatabricks": [], - "SimpleIconsDatacamp": [], - "SimpleIconsDatadog": [], - "SimpleIconsDatadotai": [], - "SimpleIconsDatagrip": [], - "SimpleIconsDataiku": [], - "SimpleIconsDatastax": [], - "SimpleIconsDataverse": [], - "SimpleIconsDatocms": [], - "SimpleIconsDatto": [], - "SimpleIconsDazn": [], - "SimpleIconsDblp": [], - "SimpleIconsDbt": [], - "SimpleIconsDcentertainment": [], - "SimpleIconsDebian": [], - "SimpleIconsDedge": [], - "SimpleIconsDeepin": [], - "SimpleIconsDeepnote": [], - "SimpleIconsDeezer": [], - "SimpleIconsDelicious": [], - "SimpleIconsDeliveroo": [], - "SimpleIconsDell": [], - "SimpleIconsDelonghi": [], - "SimpleIconsDelphi": [], - "SimpleIconsDelta": [], - "SimpleIconsDeno": [], - "SimpleIconsDependabot": [], - "SimpleIconsDerspiegel": [], - "SimpleIconsDesignernews": [], - "SimpleIconsDeutschebahn": [], - "SimpleIconsDeutschebank": [], - "SimpleIconsDevdotto": [], - "SimpleIconsDevexpress": [], - "SimpleIconsDeviantart": [], - "SimpleIconsDevpost": [], - "SimpleIconsDevrant": [], - "SimpleIconsDgraph": [], - "SimpleIconsDhl": [], - "SimpleIconsDiagramsdotnet": [], - "SimpleIconsDialogflow": [], - "SimpleIconsDiaspora": [], - "SimpleIconsDigg": [], - "SimpleIconsDigikeyelectronics": [], - "SimpleIconsDigitalocean": [], - "SimpleIconsDior": [], - "SimpleIconsDirectus": [], - "SimpleIconsDiscogs": [], - "SimpleIconsDiscord": [], - "SimpleIconsDiscourse": [], - "SimpleIconsDiscover": [], - "SimpleIconsDisqus": [], - "SimpleIconsDisroot": [], - "SimpleIconsDjango": [], - "SimpleIconsDlib": [], - "SimpleIconsDlna": [], - "SimpleIconsDm": [], - "SimpleIconsDocker": [], - "SimpleIconsDocsdotrs": [], - "SimpleIconsDocusign": [], - "SimpleIconsDogecoin": [], - "SimpleIconsDolby": [], - "SimpleIconsDoordash": [], - "SimpleIconsDotenv": [], - "SimpleIconsDotnet": [], - "SimpleIconsDouban": [], - "SimpleIconsDoubanread": [], - "SimpleIconsDovecot": [], - "SimpleIconsDpd": [], - "SimpleIconsDragonframe": [], - "SimpleIconsDraugiemdotlv": [], - "SimpleIconsDribbble": [], - "SimpleIconsDrone": [], - "SimpleIconsDrooble": [], - "SimpleIconsDropbox": [], - "SimpleIconsDrupal": [], - "SimpleIconsDsautomobiles": [], - "SimpleIconsDtube": [], - "SimpleIconsDucati": [], - "SimpleIconsDuckdb": [], - "SimpleIconsDuckduckgo": [], - "SimpleIconsDungeonsanddragons": [], - "SimpleIconsDunked": [], - "SimpleIconsDuolingo": [], - "SimpleIconsDvc": [], - "SimpleIconsDwavesystems": [], - "SimpleIconsDwm": [], - "SimpleIconsDynamics365": [], - "SimpleIconsDynatrace": [], - "SimpleIconsE": [], - "SimpleIconsE3": [], - "SimpleIconsEa": [], - "SimpleIconsEagle": [], - "SimpleIconsEasyjet": [], - "SimpleIconsEbay": [], - "SimpleIconsEclipseche": [], - "SimpleIconsEclipseide": [], - "SimpleIconsEclipsejetty": [], - "SimpleIconsEclipsemosquitto": [], - "SimpleIconsEclipsevertdotx": [], - "SimpleIconsEdeka": [], - "SimpleIconsEditorconfig": [], - "SimpleIconsEdotleclerc": [], - "SimpleIconsEdx": [], - "SimpleIconsEgghead": [], - "SimpleIconsEgnyte": [], - "SimpleIconsEightsleep": [], - "SimpleIconsElastic": [], - "SimpleIconsElasticcloud": [], - "SimpleIconsElasticsearch": [], - "SimpleIconsElasticstack": [], - "SimpleIconsElectron": [], - "SimpleIconsElectronbuilder": [], - "SimpleIconsElectronfiddle": [], - "SimpleIconsElement": [], - "SimpleIconsElementary": [], - "SimpleIconsElementor": [], - "SimpleIconsEleventy": [], - "SimpleIconsElgato": [], - "SimpleIconsElixir": [], - "SimpleIconsEljueves": [], - "SimpleIconsEllo": [], - "SimpleIconsElm": [], - "SimpleIconsElsevier": [], - "SimpleIconsEmbarcadero": [], - "SimpleIconsEmberdotjs": [], - "SimpleIconsEmby": [], - "SimpleIconsEmirates": [], - "SimpleIconsEmlakjet": [], - "SimpleIconsEmpirekred": [], - "SimpleIconsEngadget": [], - "SimpleIconsEnpass": [], - "SimpleIconsEnterprisedb": [], - "SimpleIconsEnvato": [], - "SimpleIconsEnvoyproxy": [], - "SimpleIconsEpel": [], - "SimpleIconsEpicgames": [], - "SimpleIconsEpson": [], - "SimpleIconsEquinixmetal": [], - "SimpleIconsErlang": [], - "SimpleIconsEsbuild": [], - "SimpleIconsEsea": [], - "SimpleIconsEslgaming": [], - "SimpleIconsEslint": [], - "SimpleIconsEsphome": [], - "SimpleIconsEspressif": [], - "SimpleIconsEtcd": [], - "SimpleIconsEthereum": [], - "SimpleIconsEthiopianairlines": [], - "SimpleIconsEtihadairways": [], - "SimpleIconsEtsy": [], - "SimpleIconsEventbrite": [], - "SimpleIconsEventstore": [], - "SimpleIconsEvernote": [], - "SimpleIconsExercism": [], - "SimpleIconsExordo": [], - "SimpleIconsExoscale": [], - "SimpleIconsExpensify": [], - "SimpleIconsExpertsexchange": [], - "SimpleIconsExpo": [], - "SimpleIconsExpress": [], - "SimpleIconsExpressvpn": [], - "SimpleIconsEyeem": [], - "SimpleIconsF1": [], - "SimpleIconsF5": [], - "SimpleIconsFacebook": [], - "SimpleIconsFacebookgaming": [], - "SimpleIconsFacebooklive": [], - "SimpleIconsFaceit": [], - "SimpleIconsFacepunch": [], - "SimpleIconsFalcon": [], - "SimpleIconsFampay": [], - "SimpleIconsFandango": [], - "SimpleIconsFandom": [], - "SimpleIconsFanfou": [], - "SimpleIconsFantom": [], - "SimpleIconsFarfetch": [], - "SimpleIconsFastapi": [], - "SimpleIconsFastify": [], - "SimpleIconsFastlane": [], - "SimpleIconsFastly": [], - "SimpleIconsFathom": [], - "SimpleIconsFauna": [], - "SimpleIconsFavro": [], - "SimpleIconsFdroid": [], - "SimpleIconsFeathub": [], - "SimpleIconsFedex": [], - "SimpleIconsFedora": [], - "SimpleIconsFeedly": [], - "SimpleIconsFerrari": [], - "SimpleIconsFerrarinv": [], - "SimpleIconsFfmpeg": [], - "SimpleIconsFiat": [], - "SimpleIconsFidoalliance": [], - "SimpleIconsFifa": [], - "SimpleIconsFig": [], - "SimpleIconsFigma": [], - "SimpleIconsFigshare": [], - "SimpleIconsFila": [], - "SimpleIconsFiles": [], - "SimpleIconsFilezilla": [], - "SimpleIconsFing": [], - "SimpleIconsFirebase": [], - "SimpleIconsFirefox": [], - "SimpleIconsFirefoxbrowser": [], - "SimpleIconsFireship": [], - "SimpleIconsFirewalla": [], - "SimpleIconsFirst": [], - "SimpleIconsFitbit": [], - "SimpleIconsFite": [], - "SimpleIconsFivem": [], - "SimpleIconsFiverr": [], - "SimpleIconsFlask": [], - "SimpleIconsFlat": [], - "SimpleIconsFlathub": [], - "SimpleIconsFlatpak": [], - "SimpleIconsFlattr": [], - "SimpleIconsFlickr": [], - "SimpleIconsFlipboard": [], - "SimpleIconsFlipkart": [], - "SimpleIconsFloatplane": [], - "SimpleIconsFlood": [], - "SimpleIconsFluentbit": [], - "SimpleIconsFluentd": [], - "SimpleIconsFlutter": [], - "SimpleIconsFluxus": [], - "SimpleIconsFlyway": [], - "SimpleIconsFmod": [], - "SimpleIconsFnac": [], - "SimpleIconsFolium": [], - "SimpleIconsFonoma": [], - "SimpleIconsFontawesome": [], - "SimpleIconsFontbase": [], - "SimpleIconsFontforge": [], - "SimpleIconsFoodpanda": [], - "SimpleIconsFord": [], - "SimpleIconsForestry": [], - "SimpleIconsFormstack": [], - "SimpleIconsFortinet": [], - "SimpleIconsFortran": [], - "SimpleIconsFossa": [], - "SimpleIconsFossilscm": [], - "SimpleIconsFoursquare": [], - "SimpleIconsFoursquarecityguide": [], - "SimpleIconsFox": [], - "SimpleIconsFoxtel": [], - "SimpleIconsFozzy": [], - "SimpleIconsFramer": [], - "SimpleIconsFramework7": [], - "SimpleIconsFranprix": [], - "SimpleIconsFraunhofergesellschaft": [], - "SimpleIconsFreebsd": [], - "SimpleIconsFreecodecamp": [], - "SimpleIconsFreedesktopdotorg": [], - "SimpleIconsFreelancer": [], - "SimpleIconsFreenas": [], - "SimpleIconsFrontendmentor": [], - "SimpleIconsFsecure": [], - "SimpleIconsFugacloud": [], - "SimpleIconsFujifilm": [], - "SimpleIconsFujitsu": [], - "SimpleIconsFunimation": [], - "SimpleIconsFuraffinity": [], - "SimpleIconsFurrynetwork": [], - "SimpleIconsFuturelearn": [], - "SimpleIconsG2": [], - "SimpleIconsG2A": [], - "SimpleIconsGameandwatch": [], - "SimpleIconsGamedeveloper": [], - "SimpleIconsGamejolt": [], - "SimpleIconsGarmin": [], - "SimpleIconsGatling": [], - "SimpleIconsGatsby": [], - "SimpleIconsGeant": [], - "SimpleIconsGeeksforgeeks": [], - "SimpleIconsGeneralelectric": [], - "SimpleIconsGeneralmotors": [], - "SimpleIconsGenius": [], - "SimpleIconsGentoo": [], - "SimpleIconsGeocaching": [], - "SimpleIconsGerrit": [], - "SimpleIconsGhost": [], - "SimpleIconsGhostery": [], - "SimpleIconsGimp": [], - "SimpleIconsGiphy": [], - "SimpleIconsGit": [], - "SimpleIconsGitbook": [], - "SimpleIconsGitea": [], - "SimpleIconsGitee": [], - "SimpleIconsGitextensions": [], - "SimpleIconsGithub": [], - "SimpleIconsGithubactions": [], - "SimpleIconsGithubpages": [], - "SimpleIconsGithubsponsors": [], - "SimpleIconsGitignoredotio": [], - "SimpleIconsGitkraken": [], - "SimpleIconsGitlab": [], - "SimpleIconsGitlfs": [], - "SimpleIconsGitpod": [], - "SimpleIconsGitter": [], - "SimpleIconsGlassdoor": [], - "SimpleIconsGlitch": [], - "SimpleIconsGlobus": [], - "SimpleIconsGmail": [], - "SimpleIconsGnome": [], - "SimpleIconsGnometerminal": [], - "SimpleIconsGnu": [], - "SimpleIconsGnubash": [], - "SimpleIconsGnuemacs": [], - "SimpleIconsGnuicecat": [], - "SimpleIconsGnuprivacyguard": [], - "SimpleIconsGnusocial": [], - "SimpleIconsGo": [], - "SimpleIconsGocd": [], - "SimpleIconsGodaddy": [], - "SimpleIconsGodotengine": [], - "SimpleIconsGofundme": [], - "SimpleIconsGogdotcom": [], - "SimpleIconsGoland": [], - "SimpleIconsGoldenline": [], - "SimpleIconsGoodreads": [], - "SimpleIconsGoogle": [], - "SimpleIconsGoogleadmob": [], - "SimpleIconsGoogleads": [], - "SimpleIconsGoogleadsense": [], - "SimpleIconsGoogleanalytics": [], - "SimpleIconsGoogleassistant": [], - "SimpleIconsGooglecalendar": [], - "SimpleIconsGooglecardboard": [], - "SimpleIconsGooglechat": [], - "SimpleIconsGooglechrome": [], - "SimpleIconsGoogleclassroom": [], - "SimpleIconsGooglecloud": [], - "SimpleIconsGooglecolab": [], - "SimpleIconsGoogledomains": [], - "SimpleIconsGoogledrive": [], - "SimpleIconsGoogleearth": [], - "SimpleIconsGooglefit": [], - "SimpleIconsGooglefonts": [], - "SimpleIconsGooglehangouts": [], - "SimpleIconsGooglehome": [], - "SimpleIconsGooglekeep": [], - "SimpleIconsGooglelens": [], - "SimpleIconsGooglemaps": [], - "SimpleIconsGooglemarketingplatform": [], - "SimpleIconsGooglemeet": [], - "SimpleIconsGooglemessages": [], - "SimpleIconsGooglemybusiness": [], - "SimpleIconsGooglenearby": [], - "SimpleIconsGooglenews": [], - "SimpleIconsGoogleoptimize": [], - "SimpleIconsGooglepay": [], - "SimpleIconsGooglephotos": [], - "SimpleIconsGoogleplay": [], - "SimpleIconsGooglepodcasts": [], - "SimpleIconsGooglescholar": [], - "SimpleIconsGooglesearchconsole": [], - "SimpleIconsGooglesheets": [], - "SimpleIconsGooglestreetview": [], - "SimpleIconsGoogletagmanager": [], - "SimpleIconsGoogletranslate": [], - "SimpleIconsGotomeeting": [], - "SimpleIconsGrab": [], - "SimpleIconsGradle": [], - "SimpleIconsGrafana": [], - "SimpleIconsGrammarly": [], - "SimpleIconsGrandfrais": [], - "SimpleIconsGraphql": [], - "SimpleIconsGrav": [], - "SimpleIconsGravatar": [], - "SimpleIconsGraylog": [], - "SimpleIconsGreenhouse": [], - "SimpleIconsGreensock": [], - "SimpleIconsGriddotai": [], - "SimpleIconsGridsome": [], - "SimpleIconsGroupme": [], - "SimpleIconsGroupon": [], - "SimpleIconsGrubhub": [], - "SimpleIconsGrunt": [], - "SimpleIconsGsk": [], - "SimpleIconsGtk": [], - "SimpleIconsGuangzhoumetro": [], - "SimpleIconsGuilded": [], - "SimpleIconsGulp": [], - "SimpleIconsGumroad": [], - "SimpleIconsGumtree": [], - "SimpleIconsGunicorn": [], - "SimpleIconsGurobi": [], - "SimpleIconsGutenberg": [], - "SimpleIconsHabr": [], - "SimpleIconsHackaday": [], - "SimpleIconsHackclub": [], - "SimpleIconsHackerearth": [], - "SimpleIconsHackernoon": [], - "SimpleIconsHackerone": [], - "SimpleIconsHackerrank": [], - "SimpleIconsHackster": [], - "SimpleIconsHackthebox": [], - "SimpleIconsHandlebarsdotjs": [], - "SimpleIconsHandshake": [], - "SimpleIconsHandshakeProtocol": [], - "SimpleIconsHappycow": [], - "SimpleIconsHarbor": [], - "SimpleIconsHarmonyos": [], - "SimpleIconsHashnode": [], - "SimpleIconsHaskell": [], - "SimpleIconsHasura": [], - "SimpleIconsHatenabookmark": [], - "SimpleIconsHaveibeenpwned": [], - "SimpleIconsHaxe": [], - "SimpleIconsHbo": [], - "SimpleIconsHcl": [], - "SimpleIconsHeadlessui": [], - "SimpleIconsHeadspace": [], - "SimpleIconsHedera": [], - "SimpleIconsHellofresh": [], - "SimpleIconsHellyhansen": [], - "SimpleIconsHelm": [], - "SimpleIconsHelpdesk": [], - "SimpleIconsHelpscout": [], - "SimpleIconsHere": [], - "SimpleIconsHeroku": [], - "SimpleIconsHetzner": [], - "SimpleIconsHexo": [], - "SimpleIconsHey": [], - "SimpleIconsHibernate": [], - "SimpleIconsHibob": [], - "SimpleIconsHilton": [], - "SimpleIconsHitachi": [], - "SimpleIconsHive": [], - "SimpleIconsHiveBlockchain": [], - "SimpleIconsHomeadvisor": [], - "SimpleIconsHomeassistant": [], - "SimpleIconsHomeassistantcommunitystore": [], - "SimpleIconsHomebrew": [], - "SimpleIconsHomebridge": [], - "SimpleIconsHomify": [], - "SimpleIconsHonda": [], - "SimpleIconsHoney": [], - "SimpleIconsHootsuite": [], - "SimpleIconsHoppscotch": [], - "SimpleIconsHotelsdotcom": [], - "SimpleIconsHotjar": [], - "SimpleIconsHoudini": [], - "SimpleIconsHouzz": [], - "SimpleIconsHp": [], - "SimpleIconsHtml5": [], - "SimpleIconsHtmlacademy": [], - "SimpleIconsHttpie": [], - "SimpleIconsHuawei": [], - "SimpleIconsHubspot": [], - "SimpleIconsHugo": [], - "SimpleIconsHulu": [], - "SimpleIconsHumblebundle": [], - "SimpleIconsHungryjacks": [], - "SimpleIconsHurriyetemlak": [], - "SimpleIconsHusqvarna": [], - "SimpleIconsHyper": [], - "SimpleIconsHyperledger": [], - "SimpleIconsHypothesis": [], - "SimpleIconsHyundai": [], - "SimpleIconsI18Next": [], - "SimpleIconsIata": [], - "SimpleIconsIbeacon": [], - "SimpleIconsIbm": [], - "SimpleIconsIbmcloud": [], - "SimpleIconsIbmwatson": [], - "SimpleIconsIced": [], - "SimpleIconsIceland": [], - "SimpleIconsIcinga": [], - "SimpleIconsIcloud": [], - "SimpleIconsIcomoon": [], - "SimpleIconsIcon": [], - "SimpleIconsIconfinder": [], - "SimpleIconsIconify": [], - "SimpleIconsIconjar": [], - "SimpleIconsIcons8": [], - "SimpleIconsIcq": [], - "SimpleIconsIeee": [], - "SimpleIconsIfixit": [], - "SimpleIconsIfood": [], - "SimpleIconsIfttt": [], - "SimpleIconsIheartradio": [], - "SimpleIconsIkea": [], - "SimpleIconsIledefrancemobilites": [], - "SimpleIconsImagej": [], - "SimpleIconsImdb": [], - "SimpleIconsImgur": [], - "SimpleIconsImmer": [], - "SimpleIconsImou": [], - "SimpleIconsIndeed": [], - "SimpleIconsInfiniti": [], - "SimpleIconsInfluxdb": [], - "SimpleIconsInformatica": [], - "SimpleIconsInfosys": [], - "SimpleIconsInfracost": [], - "SimpleIconsIngress": [], - "SimpleIconsInkdrop": [], - "SimpleIconsInkscape": [], - "SimpleIconsInsomnia": [], - "SimpleIconsInstacart": [], - "SimpleIconsInstagram": [], - "SimpleIconsInstapaper": [], - "SimpleIconsInstatus": [], - "SimpleIconsInstructables": [], - "SimpleIconsInstructure": [], - "SimpleIconsIntegromat": [], - "SimpleIconsIntel": [], - "SimpleIconsIntellijidea": [], - "SimpleIconsInteractiondesignfoundation": [], - "SimpleIconsInteractjs": [], - "SimpleIconsIntercom": [], - "SimpleIconsIntermarche": [], - "SimpleIconsInternetarchive": [], - "SimpleIconsInternetexplorer": [], - "SimpleIconsIntigriti": [], - "SimpleIconsInvision": [], - "SimpleIconsInvoiceninja": [], - "SimpleIconsIobroker": [], - "SimpleIconsIonic": [], - "SimpleIconsIonos": [], - "SimpleIconsIos": [], - "SimpleIconsIota": [], - "SimpleIconsIpfs": [], - "SimpleIconsIssuu": [], - "SimpleIconsIstio": [], - "SimpleIconsItchdotio": [], - "SimpleIconsIterm2": [], - "SimpleIconsItunes": [], - "SimpleIconsItvx": [], - "SimpleIconsIveco": [], - "SimpleIconsJabber": [], - "SimpleIconsJaguar": [], - "SimpleIconsJamboard": [], - "SimpleIconsJameson": [], - "SimpleIconsJamstack": [], - "SimpleIconsJasmine": [], - "SimpleIconsJavascript": [], - "SimpleIconsJbl": [], - "SimpleIconsJcb": [], - "SimpleIconsJeep": [], - "SimpleIconsJekyll": [], - "SimpleIconsJellyfin": [], - "SimpleIconsJenkins": [], - "SimpleIconsJenkinsx": [], - "SimpleIconsJest": [], - "SimpleIconsJet": [], - "SimpleIconsJetbrains": [], - "SimpleIconsJetpackcompose": [], - "SimpleIconsJfrog": [], - "SimpleIconsJfrogbintray": [], - "SimpleIconsJinja": [], - "SimpleIconsJira": [], - "SimpleIconsJirasoftware": [], - "SimpleIconsJitsi": [], - "SimpleIconsJohndeere": [], - "SimpleIconsJoomla": [], - "SimpleIconsJoplin": [], - "SimpleIconsJordan": [], - "SimpleIconsJpeg": [], - "SimpleIconsJquery": [], - "SimpleIconsJrgroup": [], - "SimpleIconsJsdelivr": [], - "SimpleIconsJsfiddle": [], - "SimpleIconsJson": [], - "SimpleIconsJsonwebtokens": [], - "SimpleIconsJss": [], - "SimpleIconsJuke": [], - "SimpleIconsJulia": [], - "SimpleIconsJunipernetworks": [], - "SimpleIconsJunit5": [], - "SimpleIconsJupyter": [], - "SimpleIconsJusteat": [], - "SimpleIconsJustgiving": [], - "SimpleIconsK3S": [], - "SimpleIconsK6": [], - "SimpleIconsKaggle": [], - "SimpleIconsKahoot": [], - "SimpleIconsKaios": [], - "SimpleIconsKakao": [], - "SimpleIconsKakaotalk": [], - "SimpleIconsKalilinux": [], - "SimpleIconsKaniko": [], - "SimpleIconsKarlsruherverkehrsverbund": [], - "SimpleIconsKasasmart": [], - "SimpleIconsKashflow": [], - "SimpleIconsKaspersky": [], - "SimpleIconsKatacoda": [], - "SimpleIconsKatana": [], - "SimpleIconsKaufland": [], - "SimpleIconsKde": [], - "SimpleIconsKdenlive": [], - "SimpleIconsKeepachangelog": [], - "SimpleIconsKeepassxc": [], - "SimpleIconsKentico": [], - "SimpleIconsKeras": [], - "SimpleIconsKeybase": [], - "SimpleIconsKeycdn": [], - "SimpleIconsKeystone": [], - "SimpleIconsKfc": [], - "SimpleIconsKhanacademy": [], - "SimpleIconsKhronosgroup": [], - "SimpleIconsKia": [], - "SimpleIconsKibana": [], - "SimpleIconsKicad": [], - "SimpleIconsKickstarter": [], - "SimpleIconsKik": [], - "SimpleIconsKingstontechnology": [], - "SimpleIconsKinopoisk": [], - "SimpleIconsKirby": [], - "SimpleIconsKitsu": [], - "SimpleIconsKlarna": [], - "SimpleIconsKlm": [], - "SimpleIconsKlook": [], - "SimpleIconsKnative": [], - "SimpleIconsKnowledgebase": [], - "SimpleIconsKnown": [], - "SimpleIconsKoa": [], - "SimpleIconsKoc": [], - "SimpleIconsKodi": [], - "SimpleIconsKofax": [], - "SimpleIconsKofi": [], - "SimpleIconsKomoot": [], - "SimpleIconsKonami": [], - "SimpleIconsKong": [], - "SimpleIconsKongregate": [], - "SimpleIconsKonva": [], - "SimpleIconsKotlin": [], - "SimpleIconsKoyeb": [], - "SimpleIconsKrita": [], - "SimpleIconsKtm": [], - "SimpleIconsKuaishou": [], - "SimpleIconsKubernetes": [], - "SimpleIconsKubuntu": [], - "SimpleIconsKuma": [], - "SimpleIconsKuula": [], - "SimpleIconsKyocera": [], - "SimpleIconsLabview": [], - "SimpleIconsLada": [], - "SimpleIconsLamborghini": [], - "SimpleIconsLandrover": [], - "SimpleIconsLapce": [], - "SimpleIconsLaragon": [], - "SimpleIconsLaravel": [], - "SimpleIconsLaravelhorizon": [], - "SimpleIconsLaravelnova": [], - "SimpleIconsLastdotfm": [], - "SimpleIconsLastpass": [], - "SimpleIconsLatex": [], - "SimpleIconsLaunchpad": [], - "SimpleIconsLazarus": [], - "SimpleIconsLbry": [], - "SimpleIconsLeaderprice": [], - "SimpleIconsLeaflet": [], - "SimpleIconsLeanpub": [], - "SimpleIconsLeetcode": [], - "SimpleIconsLegacygames": [], - "SimpleIconsLemmy": [], - "SimpleIconsLenovo": [], - "SimpleIconsLens": [], - "SimpleIconsLerna": [], - "SimpleIconsLeroymerlin": [], - "SimpleIconsLess": [], - "SimpleIconsLetsencrypt": [], - "SimpleIconsLetterboxd": [], - "SimpleIconsLevelsdotfyi": [], - "SimpleIconsLg": [], - "SimpleIconsLgtm": [], - "SimpleIconsLiberapay": [], - "SimpleIconsLibrariesdotio": [], - "SimpleIconsLibrarything": [], - "SimpleIconsLibreoffice": [], - "SimpleIconsLibuv": [], - "SimpleIconsLichess": [], - "SimpleIconsLidl": [], - "SimpleIconsLifx": [], - "SimpleIconsLighthouse": [], - "SimpleIconsLine": [], - "SimpleIconsLineageos": [], - "SimpleIconsLinear": [], - "SimpleIconsLinkedin": [], - "SimpleIconsLinkerd": [], - "SimpleIconsLinkfire": [], - "SimpleIconsLinktree": [], - "SimpleIconsLinode": [], - "SimpleIconsLinux": [], - "SimpleIconsLinuxcontainers": [], - "SimpleIconsLinuxfoundation": [], - "SimpleIconsLinuxmint": [], - "SimpleIconsLionair": [], - "SimpleIconsLiquibase": [], - "SimpleIconsLit": [], - "SimpleIconsLitecoin": [], - "SimpleIconsLitiengine": [], - "SimpleIconsLivechat": [], - "SimpleIconsLivejournal": [], - "SimpleIconsLivewire": [], - "SimpleIconsLlvm": [], - "SimpleIconsLmms": [], - "SimpleIconsLodash": [], - "SimpleIconsLogitech": [], - "SimpleIconsLogmein": [], - "SimpleIconsLogstash": [], - "SimpleIconsLooker": [], - "SimpleIconsLoom": [], - "SimpleIconsLoop": [], - "SimpleIconsLoopback": [], - "SimpleIconsLospec": [], - "SimpleIconsLotpolishairlines": [], - "SimpleIconsLua": [], - "SimpleIconsLubuntu": [], - "SimpleIconsLudwig": [], - "SimpleIconsLufthansa": [], - "SimpleIconsLumen": [], - "SimpleIconsLunacy": [], - "SimpleIconsLydia": [], - "SimpleIconsLyft": [], - "SimpleIconsMaas": [], - "SimpleIconsMacos": [], - "SimpleIconsMacpaw": [], - "SimpleIconsMacys": [], - "SimpleIconsMagasinsu": [], - "SimpleIconsMagento": [], - "SimpleIconsMagisk": [], - "SimpleIconsMailchimp": [], - "SimpleIconsMaildotru": [], - "SimpleIconsMailgun": [], - "SimpleIconsMajorleaguehacking": [], - "SimpleIconsMakerbot": [], - "SimpleIconsMamp": [], - "SimpleIconsMan": [], - "SimpleIconsManageiq": [], - "SimpleIconsManjaro": [], - "SimpleIconsMapbox": [], - "SimpleIconsMariadb": [], - "SimpleIconsMariadbfoundation": [], - "SimpleIconsMarkdown": [], - "SimpleIconsMarketo": [], - "SimpleIconsMarko": [], - "SimpleIconsMarriott": [], - "SimpleIconsMaserati": [], - "SimpleIconsMastercard": [], - "SimpleIconsMastercomfig": [], - "SimpleIconsMastodon": [], - "SimpleIconsMaterialdesign": [], - "SimpleIconsMaterialdesignicons": [], - "SimpleIconsMatomo": [], - "SimpleIconsMatrix": [], - "SimpleIconsMatterdotjs": [], - "SimpleIconsMattermost": [], - "SimpleIconsMatternet": [], - "SimpleIconsMax": [], - "SimpleIconsMaxplanckgesellschaft": [], - "SimpleIconsMaytag": [], - "SimpleIconsMazda": [], - "SimpleIconsMcafee": [], - "SimpleIconsMcdonalds": [], - "SimpleIconsMclaren": [], - "SimpleIconsMdbook": [], - "SimpleIconsMdnwebdocs": [], - "SimpleIconsMdx": [], - "SimpleIconsMediafire": [], - "SimpleIconsMediamarkt": [], - "SimpleIconsMediatek": [], - "SimpleIconsMediatemple": [], - "SimpleIconsMedium": [], - "SimpleIconsMeetup": [], - "SimpleIconsMega": [], - "SimpleIconsMendeley": [], - "SimpleIconsMercadopago": [], - "SimpleIconsMercedes": [], - "SimpleIconsMerck": [], - "SimpleIconsMercurial": [], - "SimpleIconsMessenger": [], - "SimpleIconsMeta": [], - "SimpleIconsMetabase": [], - "SimpleIconsMetafilter": [], - "SimpleIconsMeteor": [], - "SimpleIconsMetro": [], - "SimpleIconsMetrodelaciudaddemexico": [], - "SimpleIconsMetrodemadrid": [], - "SimpleIconsMetrodeparis": [], - "SimpleIconsMewe": [], - "SimpleIconsMicrobit": [], - "SimpleIconsMicrodotblog": [], - "SimpleIconsMicrogenetics": [], - "SimpleIconsMicropython": [], - "SimpleIconsMicrosoft": [], - "SimpleIconsMicrosoftacademic": [], - "SimpleIconsMicrosoftaccess": [], - "SimpleIconsMicrosoftazure": [], - "SimpleIconsMicrosoftbing": [], - "SimpleIconsMicrosoftedge": [], - "SimpleIconsMicrosoftexcel": [], - "SimpleIconsMicrosoftexchange": [], - "SimpleIconsMicrosoftoffice": [], - "SimpleIconsMicrosoftonedrive": [], - "SimpleIconsMicrosoftonenote": [], - "SimpleIconsMicrosoftoutlook": [], - "SimpleIconsMicrosoftpowerpoint": [], - "SimpleIconsMicrosoftsharepoint": [], - "SimpleIconsMicrosoftsqlserver": [], - "SimpleIconsMicrosoftteams": [], - "SimpleIconsMicrosofttranslator": [], - "SimpleIconsMicrosoftvisio": [], - "SimpleIconsMicrosoftword": [], - "SimpleIconsMicrostrategy": [], - "SimpleIconsMidi": [], - "SimpleIconsMinds": [], - "SimpleIconsMinecraft": [], - "SimpleIconsMinetest": [], - "SimpleIconsMini": [], - "SimpleIconsMinutemailer": [], - "SimpleIconsMiro": [], - "SimpleIconsMitsubishi": [], - "SimpleIconsMix": [], - "SimpleIconsMixcloud": [], - "SimpleIconsMlb": [], - "SimpleIconsMlflow": [], - "SimpleIconsMobx": [], - "SimpleIconsMobxstatetree": [], - "SimpleIconsMocha": [], - "SimpleIconsModin": [], - "SimpleIconsModrinth": [], - "SimpleIconsModx": [], - "SimpleIconsMojangstudios": [], - "SimpleIconsMoleculer": [], - "SimpleIconsMomenteo": [], - "SimpleIconsMonero": [], - "SimpleIconsMoneygram": [], - "SimpleIconsMongodb": [], - "SimpleIconsMonica": [], - "SimpleIconsMonkeytie": [], - "SimpleIconsMonogames": [], - "SimpleIconsMonoprix": [], - "SimpleIconsMonster": [], - "SimpleIconsMonzo": [], - "SimpleIconsMoo": [], - "SimpleIconsMoonrepo": [], - "SimpleIconsMorrisons": [], - "SimpleIconsMoscowmetro": [], - "SimpleIconsMotorola": [], - "SimpleIconsMozilla": [], - "SimpleIconsMqtt": [], - "SimpleIconsMsi": [], - "SimpleIconsMsibusiness": [], - "SimpleIconsMta": [], - "SimpleIconsMtr": [], - "SimpleIconsMui": [], - "SimpleIconsMulesoft": [], - "SimpleIconsMuller": [], - "SimpleIconsMumble": [], - "SimpleIconsMusescore": [], - "SimpleIconsMusicbrainz": [], - "SimpleIconsMxlinux": [], - "SimpleIconsMyanimelist": [], - "SimpleIconsMyob": [], - "SimpleIconsMyspace": [], - "SimpleIconsMysql": [], - "SimpleIconsN26": [], - "SimpleIconsNamebase": [], - "SimpleIconsNamecheap": [], - "SimpleIconsNano": [], - "SimpleIconsNasa": [], - "SimpleIconsNationalgrid": [], - "SimpleIconsNativescript": [], - "SimpleIconsNaver": [], - "SimpleIconsNba": [], - "SimpleIconsNbb": [], - "SimpleIconsNdr": [], - "SimpleIconsNec": [], - "SimpleIconsNeo4J": [], - "SimpleIconsNeovim": [], - "SimpleIconsNestjs": [], - "SimpleIconsNetapp": [], - "SimpleIconsNetbsd": [], - "SimpleIconsNetflix": [], - "SimpleIconsNetlify": [], - "SimpleIconsNette": [], - "SimpleIconsNetto": [], - "SimpleIconsNeutralinojs": [], - "SimpleIconsNewbalance": [], - "SimpleIconsNewjapanprowrestling": [], - "SimpleIconsNewrelic": [], - "SimpleIconsNewyorktimes": [], - "SimpleIconsNextbilliondotai": [], - "SimpleIconsNextcloud": [], - "SimpleIconsNextdoor": [], - "SimpleIconsNextdotjs": [], - "SimpleIconsNfc": [], - "SimpleIconsNginx": [], - "SimpleIconsNgrok": [], - "SimpleIconsNiconico": [], - "SimpleIconsNike": [], - "SimpleIconsNim": [], - "SimpleIconsNintendo": [], - "SimpleIconsNintendo3Ds": [], - "SimpleIconsNintendogamecube": [], - "SimpleIconsNintendonetwork": [], - "SimpleIconsNintendoswitch": [], - "SimpleIconsNissan": [], - "SimpleIconsNixos": [], - "SimpleIconsNodedotjs": [], - "SimpleIconsNodemon": [], - "SimpleIconsNodered": [], - "SimpleIconsNokia": [], - "SimpleIconsNorco": [], - "SimpleIconsNordvpn": [], - "SimpleIconsNorwegian": [], - "SimpleIconsNotepadplusplus": [], - "SimpleIconsNotion": [], - "SimpleIconsNotist": [], - "SimpleIconsNounproject": [], - "SimpleIconsNovu": [], - "SimpleIconsNow": [], - "SimpleIconsNpm": [], - "SimpleIconsNrwl": [], - "SimpleIconsNubank": [], - "SimpleIconsNucleo": [], - "SimpleIconsNuget": [], - "SimpleIconsNuke": [], - "SimpleIconsNumba": [], - "SimpleIconsNumpy": [], - "SimpleIconsNunjucks": [], - "SimpleIconsNutanix": [], - "SimpleIconsNuxtdotjs": [], - "SimpleIconsNvidia": [], - "SimpleIconsNx": [], - "SimpleIconsNzxt": [], - "SimpleIconsObservable": [], - "SimpleIconsObsidian": [], - "SimpleIconsObsstudio": [], - "SimpleIconsOcaml": [], - "SimpleIconsOctanerender": [], - "SimpleIconsOctave": [], - "SimpleIconsOctoprint": [], - "SimpleIconsOctopusdeploy": [], - "SimpleIconsOculus": [], - "SimpleIconsOdnoklassniki": [], - "SimpleIconsOdysee": [], - "SimpleIconsOhdear": [], - "SimpleIconsOkcupid": [], - "SimpleIconsOkta": [], - "SimpleIconsOneplus": [], - "SimpleIconsOnlyfans": [], - "SimpleIconsOnlyoffice": [], - "SimpleIconsOnnx": [], - "SimpleIconsOnstar": [], - "SimpleIconsOpel": [], - "SimpleIconsOpenaccess": [], - "SimpleIconsOpenai": [], - "SimpleIconsOpenaigym": [], - "SimpleIconsOpenapiinitiative": [], - "SimpleIconsOpenbadges": [], - "SimpleIconsOpenbsd": [], - "SimpleIconsOpenbugbounty": [], - "SimpleIconsOpencollective": [], - "SimpleIconsOpencontainersinitiative": [], - "SimpleIconsOpencv": [], - "SimpleIconsOpenfaas": [], - "SimpleIconsOpengl": [], - "SimpleIconsOpenid": [], - "SimpleIconsOpenjdk": [], - "SimpleIconsOpenlayers": [], - "SimpleIconsOpenmined": [], - "SimpleIconsOpennebula": [], - "SimpleIconsOpenproject": [], - "SimpleIconsOpensea": [], - "SimpleIconsOpensearch": [], - "SimpleIconsOpensourceinitiative": [], - "SimpleIconsOpenssl": [], - "SimpleIconsOpenstack": [], - "SimpleIconsOpenstreetmap": [], - "SimpleIconsOpensuse": [], - "SimpleIconsOpentelemetry": [], - "SimpleIconsOpenverse": [], - "SimpleIconsOpenvpn": [], - "SimpleIconsOpenwrt": [], - "SimpleIconsOpenzeppelin": [], - "SimpleIconsOpenzfs": [], - "SimpleIconsOpera": [], - "SimpleIconsOpnsense": [], - "SimpleIconsOpsgenie": [], - "SimpleIconsOpslevel": [], - "SimpleIconsOracle": [], - "SimpleIconsOrcid": [], - "SimpleIconsOreilly": [], - "SimpleIconsOrg": [], - "SimpleIconsOrigin": [], - "SimpleIconsOsano": [], - "SimpleIconsOshkosh": [], - "SimpleIconsOsmc": [], - "SimpleIconsOsu": [], - "SimpleIconsOtto": [], - "SimpleIconsOvercast": [], - "SimpleIconsOverleaf": [], - "SimpleIconsOvh": [], - "SimpleIconsOwasp": [], - "SimpleIconsOxygen": [], - "SimpleIconsOyo": [], - "SimpleIconsP5Dotjs": [], - "SimpleIconsPackagist": [], - "SimpleIconsPacker": [], - "SimpleIconsPaddypower": [], - "SimpleIconsPagekit": [], - "SimpleIconsPagerduty": [], - "SimpleIconsPagespeedinsights": [], - "SimpleIconsPagseguro": [], - "SimpleIconsPalantir": [], - "SimpleIconsPaloaltosoftware": [], - "SimpleIconsPandas": [], - "SimpleIconsPandora": [], - "SimpleIconsPantheon": [], - "SimpleIconsPaperspace": [], - "SimpleIconsParitysubstrate": [], - "SimpleIconsParsedotly": [], - "SimpleIconsPassport": [], - "SimpleIconsPastebin": [], - "SimpleIconsPatreon": [], - "SimpleIconsPayoneer": [], - "SimpleIconsPaypal": [], - "SimpleIconsPaytm": [], - "SimpleIconsPcgamingwiki": [], - "SimpleIconsPeakdesign": [], - "SimpleIconsPeertube": [], - "SimpleIconsPegasusairlines": [], - "SimpleIconsPelican": [], - "SimpleIconsPeloton": [], - "SimpleIconsPenny": [], - "SimpleIconsPenpot": [], - "SimpleIconsPepsi": [], - "SimpleIconsPercy": [], - "SimpleIconsPerforce": [], - "SimpleIconsPerl": [], - "SimpleIconsPersistent": [], - "SimpleIconsPersonio": [], - "SimpleIconsPetsathome": [], - "SimpleIconsPeugeot": [], - "SimpleIconsPexels": [], - "SimpleIconsPfsense": [], - "SimpleIconsPhabricator": [], - "SimpleIconsPhilipshue": [], - "SimpleIconsPhonepe": [], - "SimpleIconsPhotobucket": [], - "SimpleIconsPhotocrowd": [], - "SimpleIconsPhotopea": [], - "SimpleIconsPhp": [], - "SimpleIconsPhpmyadmin": [], - "SimpleIconsPhpstorm": [], - "SimpleIconsPicardsurgeles": [], - "SimpleIconsPicartodottv": [], - "SimpleIconsPicnic": [], - "SimpleIconsPicpay": [], - "SimpleIconsPihole": [], - "SimpleIconsPimcore": [], - "SimpleIconsPinboard": [], - "SimpleIconsPingdom": [], - "SimpleIconsPinterest": [], - "SimpleIconsPioneerdj": [], - "SimpleIconsPivotaltracker": [], - "SimpleIconsPiwigo": [], - "SimpleIconsPix": [], - "SimpleIconsPixabay": [], - "SimpleIconsPixiv": [], - "SimpleIconsPkgsrc": [], - "SimpleIconsPlanet": [], - "SimpleIconsPlanetscale": [], - "SimpleIconsPlangrid": [], - "SimpleIconsPlatformdotsh": [], - "SimpleIconsPlatzi": [], - "SimpleIconsPlausibleanalytics": [], - "SimpleIconsPlaycanvas": [], - "SimpleIconsPlayerdotme": [], - "SimpleIconsPlayerfm": [], - "SimpleIconsPlaystation": [], - "SimpleIconsPlaystation2": [], - "SimpleIconsPlaystation3": [], - "SimpleIconsPlaystation4": [], - "SimpleIconsPlaystation5": [], - "SimpleIconsPlaystationvita": [], - "SimpleIconsPlaywright": [], - "SimpleIconsPleroma": [], - "SimpleIconsPlesk": [], - "SimpleIconsPlex": [], - "SimpleIconsPlotly": [], - "SimpleIconsPluralsight": [], - "SimpleIconsPlurk": [], - "SimpleIconsPluscodes": [], - "SimpleIconsPm2": [], - "SimpleIconsPnpm": [], - "SimpleIconsPocket": [], - "SimpleIconsPocketbase": [], - "SimpleIconsPocketcasts": [], - "SimpleIconsPodcastaddict": [], - "SimpleIconsPodman": [], - "SimpleIconsPoetry": [], - "SimpleIconsPointy": [], - "SimpleIconsPokemon": [], - "SimpleIconsPolars": [], - "SimpleIconsPolkadot": [], - "SimpleIconsPoly": [], - "SimpleIconsPolymerproject": [], - "SimpleIconsPolywork": [], - "SimpleIconsPopos": [], - "SimpleIconsPorsche": [], - "SimpleIconsPortainer": [], - "SimpleIconsPostcss": [], - "SimpleIconsPostgresql": [], - "SimpleIconsPostman": [], - "SimpleIconsPostmates": [], - "SimpleIconsPowerapps": [], - "SimpleIconsPowerautomate": [], - "SimpleIconsPowerbi": [], - "SimpleIconsPowerfx": [], - "SimpleIconsPowerpages": [], - "SimpleIconsPowers": [], - "SimpleIconsPowershell": [], - "SimpleIconsPowervirtualagents": [], - "SimpleIconsPrdotco": [], - "SimpleIconsPreact": [], - "SimpleIconsPrecommit": [], - "SimpleIconsPremierleague": [], - "SimpleIconsPrestashop": [], - "SimpleIconsPresto": [], - "SimpleIconsPrettier": [], - "SimpleIconsPrevention": [], - "SimpleIconsPrezi": [], - "SimpleIconsPrime": [], - "SimpleIconsPrimevideo": [], - "SimpleIconsPrisma": [], - "SimpleIconsPrismic": [], - "SimpleIconsPrivateinternetaccess": [], - "SimpleIconsProbot": [], - "SimpleIconsProcessingfoundation": [], - "SimpleIconsProcesswire": [], - "SimpleIconsProducthunt": [], - "SimpleIconsProgate": [], - "SimpleIconsProgress": [], - "SimpleIconsPrometheus": [], - "SimpleIconsProsieben": [], - "SimpleIconsProtocolsdotio": [], - "SimpleIconsProtodotio": [], - "SimpleIconsProtondb": [], - "SimpleIconsProtonmail": [], - "SimpleIconsProtonvpn": [], - "SimpleIconsProtools": [], - "SimpleIconsProtractor": [], - "SimpleIconsProxmox": [], - "SimpleIconsPubg": [], - "SimpleIconsPublons": [], - "SimpleIconsPubmed": [], - "SimpleIconsPug": [], - "SimpleIconsPulumi": [], - "SimpleIconsPuma": [], - "SimpleIconsPuppet": [], - "SimpleIconsPuppeteer": [], - "SimpleIconsPurescript": [], - "SimpleIconsPurgecss": [], - "SimpleIconsPurism": [], - "SimpleIconsPusher": [], - "SimpleIconsPwa": [], - "SimpleIconsPycharm": [], - "SimpleIconsPyg": [], - "SimpleIconsPypi": [], - "SimpleIconsPypy": [], - "SimpleIconsPyscaffold": [], - "SimpleIconsPysyft": [], - "SimpleIconsPytest": [], - "SimpleIconsPython": [], - "SimpleIconsPytorch": [], - "SimpleIconsPytorchlightning": [], - "SimpleIconsPyup": [], - "SimpleIconsQantas": [], - "SimpleIconsQatarairways": [], - "SimpleIconsQemu": [], - "SimpleIconsQgis": [], - "SimpleIconsQi": [], - "SimpleIconsQiita": [], - "SimpleIconsQiskit": [], - "SimpleIconsQiwi": [], - "SimpleIconsQmk": [], - "SimpleIconsQt": [], - "SimpleIconsQualcomm": [], - "SimpleIconsQualtrics": [], - "SimpleIconsQualys": [], - "SimpleIconsQuantcast": [], - "SimpleIconsQuantconnect": [], - "SimpleIconsQuarkus": [], - "SimpleIconsQuasar": [], - "SimpleIconsQubesos": [], - "SimpleIconsQuest": [], - "SimpleIconsQuickbooks": [], - "SimpleIconsQuicklook": [], - "SimpleIconsQuicktime": [], - "SimpleIconsQuip": [], - "SimpleIconsQuora": [], - "SimpleIconsQwiklabs": [], - "SimpleIconsQzone": [], - "SimpleIconsR": [], - "SimpleIconsR3": [], - "SimpleIconsRabbitmq": [], - "SimpleIconsRacket": [], - "SimpleIconsRadar": [], - "SimpleIconsRadiopublic": [], - "SimpleIconsRailway": [], - "SimpleIconsRainmeter": [], - "SimpleIconsRakuten": [], - "SimpleIconsRam": [], - "SimpleIconsRancher": [], - "SimpleIconsRarible": [], - "SimpleIconsRasa": [], - "SimpleIconsRaspberrypi": [], - "SimpleIconsRavelry": [], - "SimpleIconsRay": [], - "SimpleIconsRazer": [], - "SimpleIconsRazorpay": [], - "SimpleIconsReact": [], - "SimpleIconsReacthookform": [], - "SimpleIconsReactivex": [], - "SimpleIconsReactos": [], - "SimpleIconsReactquery": [], - "SimpleIconsReactrouter": [], - "SimpleIconsReacttable": [], - "SimpleIconsReadme": [], - "SimpleIconsReadthedocs": [], - "SimpleIconsRealm": [], - "SimpleIconsReason": [], - "SimpleIconsReasonstudios": [], - "SimpleIconsRed": [], - "SimpleIconsRedbubble": [], - "SimpleIconsReddit": [], - "SimpleIconsRedhat": [], - "SimpleIconsRedhatopenshift": [], - "SimpleIconsRedis": [], - "SimpleIconsRedmine": [], - "SimpleIconsRedox": [], - "SimpleIconsRedux": [], - "SimpleIconsReduxsaga": [], - "SimpleIconsRedwoodjs": [], - "SimpleIconsReebok": [], - "SimpleIconsRelay": [], - "SimpleIconsRelianceindustrieslimited": [], - "SimpleIconsRemix": [], - "SimpleIconsRenault": [], - "SimpleIconsRender": [], - "SimpleIconsRenovatebot": [], - "SimpleIconsRenpy": [], - "SimpleIconsRenren": [], - "SimpleIconsReplit": [], - "SimpleIconsRepublicofgamers": [], - "SimpleIconsRescript": [], - "SimpleIconsRescuetime": [], - "SimpleIconsResearchgate": [], - "SimpleIconsResharper": [], - "SimpleIconsResurrectionremixos": [], - "SimpleIconsRetroarch": [], - "SimpleIconsRetropie": [], - "SimpleIconsRevealdotjs": [], - "SimpleIconsReverbnation": [], - "SimpleIconsRevoltdotchat": [], - "SimpleIconsRevolut": [], - "SimpleIconsRevue": [], - "SimpleIconsRewe": [], - "SimpleIconsRezgo": [], - "SimpleIconsRhinoceros": [], - "SimpleIconsRider": [], - "SimpleIconsRimacautomobili": [], - "SimpleIconsRing": [], - "SimpleIconsRiotgames": [], - "SimpleIconsRipple": [], - "SimpleIconsRiseup": [], - "SimpleIconsRoamresearch": [], - "SimpleIconsRoblox": [], - "SimpleIconsRobotframework": [], - "SimpleIconsRocketdotchat": [], - "SimpleIconsRocksdb": [], - "SimpleIconsRockylinux": [], - "SimpleIconsRoku": [], - "SimpleIconsRollsroyce": [], - "SimpleIconsRollupdotjs": [], - "SimpleIconsRome": [], - "SimpleIconsRoots": [], - "SimpleIconsRootsbedrock": [], - "SimpleIconsRootssage": [], - "SimpleIconsRos": [], - "SimpleIconsRossmann": [], - "SimpleIconsRotaryinternational": [], - "SimpleIconsRottentomatoes": [], - "SimpleIconsRoundcube": [], - "SimpleIconsRsocket": [], - "SimpleIconsRss": [], - "SimpleIconsRstudio": [], - "SimpleIconsRte": [], - "SimpleIconsRtl": [], - "SimpleIconsRtlzwei": [], - "SimpleIconsRubocop": [], - "SimpleIconsRuby": [], - "SimpleIconsRubygems": [], - "SimpleIconsRubyonrails": [], - "SimpleIconsRubysinatra": [], - "SimpleIconsRunkeeper": [], - "SimpleIconsRunkit": [], - "SimpleIconsRust": [], - "SimpleIconsRxdb": [], - "SimpleIconsRyanair": [], - "SimpleIconsS7Airlines": [], - "SimpleIconsSabanci": [], - "SimpleIconsSafari": [], - "SimpleIconsSahibinden": [], - "SimpleIconsSailfishos": [], - "SimpleIconsSalesforce": [], - "SimpleIconsSaltproject": [], - "SimpleIconsSamsung": [], - "SimpleIconsSamsungpay": [], - "SimpleIconsSandisk": [], - "SimpleIconsSanfranciscomunicipalrailway": [], - "SimpleIconsSaopaulometro": [], - "SimpleIconsSap": [], - "SimpleIconsSass": [], - "SimpleIconsSat1": [], - "SimpleIconsSaturn": [], - "SimpleIconsSaucelabs": [], - "SimpleIconsScala": [], - "SimpleIconsScaleway": [], - "SimpleIconsScania": [], - "SimpleIconsSchneiderelectric": [], - "SimpleIconsScikitlearn": [], - "SimpleIconsScipy": [], - "SimpleIconsScopus": [], - "SimpleIconsScpfoundation": [], - "SimpleIconsScratch": [], - "SimpleIconsScreencastify": [], - "SimpleIconsScribd": [], - "SimpleIconsScrimba": [], - "SimpleIconsScrollreveal": [], - "SimpleIconsScrumalliance": [], - "SimpleIconsScrutinizerci": [], - "SimpleIconsSeagate": [], - "SimpleIconsSeat": [], - "SimpleIconsSecurityscorecard": [], - "SimpleIconsSefaria": [], - "SimpleIconsSega": [], - "SimpleIconsSelenium": [], - "SimpleIconsSellfy": [], - "SimpleIconsSemanticrelease": [], - "SimpleIconsSemanticscholar": [], - "SimpleIconsSemanticuireact": [], - "SimpleIconsSemanticweb": [], - "SimpleIconsSemaphoreci": [], - "SimpleIconsSemver": [], - "SimpleIconsSencha": [], - "SimpleIconsSendinblue": [], - "SimpleIconsSennheiser": [], - "SimpleIconsSensu": [], - "SimpleIconsSentry": [], - "SimpleIconsSepa": [], - "SimpleIconsSequelize": [], - "SimpleIconsServerfault": [], - "SimpleIconsServerless": [], - "SimpleIconsSessionize": [], - "SimpleIconsSetapp": [], - "SimpleIconsSfml": [], - "SimpleIconsShadow": [], - "SimpleIconsShanghaimetro": [], - "SimpleIconsSharp": [], - "SimpleIconsShazam": [], - "SimpleIconsShell": [], - "SimpleIconsShelly": [], - "SimpleIconsShenzhenmetro": [], - "SimpleIconsShieldsdotio": [], - "SimpleIconsShikimori": [], - "SimpleIconsShopee": [], - "SimpleIconsShopify": [], - "SimpleIconsShopware": [], - "SimpleIconsShotcut": [], - "SimpleIconsShowpad": [], - "SimpleIconsShowtime": [], - "SimpleIconsShutterstock": [], - "SimpleIconsSiemens": [], - "SimpleIconsSignal": [], - "SimpleIconsSimilarweb": [], - "SimpleIconsSimkl": [], - "SimpleIconsSimpleanalytics": [], - "SimpleIconsSimpleicons": [], - "SimpleIconsSimplenote": [], - "SimpleIconsSinaweibo": [], - "SimpleIconsSinglestore": [], - "SimpleIconsSitepoint": [], - "SimpleIconsSketch": [], - "SimpleIconsSketchfab": [], - "SimpleIconsSketchup": [], - "SimpleIconsSkillshare": [], - "SimpleIconsSkoda": [], - "SimpleIconsSky": [], - "SimpleIconsSkynet": [], - "SimpleIconsSkypack": [], - "SimpleIconsSkype": [], - "SimpleIconsSkypeforbusiness": [], - "SimpleIconsSlack": [], - "SimpleIconsSlackware": [], - "SimpleIconsSlashdot": [], - "SimpleIconsSlickpic": [], - "SimpleIconsSlides": [], - "SimpleIconsSlideshare": [], - "SimpleIconsSmart": [], - "SimpleIconsSmartthings": [], - "SimpleIconsSmashdotgg": [], - "SimpleIconsSmashingmagazine": [], - "SimpleIconsSmrt": [], - "SimpleIconsSmugmug": [], - "SimpleIconsSnapchat": [], - "SimpleIconsSnapcraft": [], - "SimpleIconsSncf": [], - "SimpleIconsSnowflake": [], - "SimpleIconsSnowpack": [], - "SimpleIconsSnyk": [], - "SimpleIconsSocialblade": [], - "SimpleIconsSociety6": [], - "SimpleIconsSocketdotio": [], - "SimpleIconsSogou": [], - "SimpleIconsSolid": [], - "SimpleIconsSolidity": [], - "SimpleIconsSololearn": [], - "SimpleIconsSolus": [], - "SimpleIconsSonar": [], - "SimpleIconsSonarcloud": [], - "SimpleIconsSonarlint": [], - "SimpleIconsSonarqube": [], - "SimpleIconsSonarsource": [], - "SimpleIconsSongkick": [], - "SimpleIconsSongoda": [], - "SimpleIconsSonicwall": [], - "SimpleIconsSonos": [], - "SimpleIconsSony": [], - "SimpleIconsSoundcharts": [], - "SimpleIconsSoundcloud": [], - "SimpleIconsSourceengine": [], - "SimpleIconsSourceforge": [], - "SimpleIconsSourcegraph": [], - "SimpleIconsSourcetree": [], - "SimpleIconsSouthwestairlines": [], - "SimpleIconsSpacemacs": [], - "SimpleIconsSpacex": [], - "SimpleIconsSpacy": [], - "SimpleIconsSparkar": [], - "SimpleIconsSparkasse": [], - "SimpleIconsSparkfun": [], - "SimpleIconsSparkpost": [], - "SimpleIconsSpdx": [], - "SimpleIconsSpeakerdeck": [], - "SimpleIconsSpectrum": [], - "SimpleIconsSpeedtest": [], - "SimpleIconsSpinnaker": [], - "SimpleIconsSpinrilla": [], - "SimpleIconsSplunk": [], - "SimpleIconsSpond": [], - "SimpleIconsSpotify": [], - "SimpleIconsSpotlight": [], - "SimpleIconsSpreadshirt": [], - "SimpleIconsSpreaker": [], - "SimpleIconsSpring": [], - "SimpleIconsSpringCreators": [], - "SimpleIconsSpringboot": [], - "SimpleIconsSpringsecurity": [], - "SimpleIconsSpyderide": [], - "SimpleIconsSqlite": [], - "SimpleIconsSquare": [], - "SimpleIconsSquareenix": [], - "SimpleIconsSquarespace": [], - "SimpleIconsSsrn": [], - "SimpleIconsStackbit": [], - "SimpleIconsStackblitz": [], - "SimpleIconsStackedit": [], - "SimpleIconsStackexchange": [], - "SimpleIconsStackoverflow": [], - "SimpleIconsStackpath": [], - "SimpleIconsStackshare": [], - "SimpleIconsStadia": [], - "SimpleIconsStaffbase": [], - "SimpleIconsStandardjs": [], - "SimpleIconsStarbucks": [], - "SimpleIconsStardock": [], - "SimpleIconsStarlingbank": [], - "SimpleIconsStarship": [], - "SimpleIconsStartrek": [], - "SimpleIconsStarz": [], - "SimpleIconsStatamic": [], - "SimpleIconsStatuspage": [], - "SimpleIconsStatuspal": [], - "SimpleIconsSteam": [], - "SimpleIconsSteamdb": [], - "SimpleIconsSteamdeck": [], - "SimpleIconsSteamworks": [], - "SimpleIconsSteelseries": [], - "SimpleIconsSteem": [], - "SimpleIconsSteemit": [], - "SimpleIconsSteinberg": [], - "SimpleIconsStellar": [], - "SimpleIconsStencyl": [], - "SimpleIconsStimulus": [], - "SimpleIconsStitcher": [], - "SimpleIconsStmicroelectronics": [], - "SimpleIconsStopstalk": [], - "SimpleIconsStoryblok": [], - "SimpleIconsStorybook": [], - "SimpleIconsStrapi": [], - "SimpleIconsStrava": [], - "SimpleIconsStreamlit": [], - "SimpleIconsStripe": [], - "SimpleIconsStrongswan": [], - "SimpleIconsStubhub": [], - "SimpleIconsStyledcomponents": [], - "SimpleIconsStylelint": [], - "SimpleIconsStyleshare": [], - "SimpleIconsStylus": [], - "SimpleIconsSubaru": [], - "SimpleIconsSublimetext": [], - "SimpleIconsSubstack": [], - "SimpleIconsSubversion": [], - "SimpleIconsSuckless": [], - "SimpleIconsSumologic": [], - "SimpleIconsSupabase": [], - "SimpleIconsSupermicro": [], - "SimpleIconsSuperuser": [], - "SimpleIconsSurrealdb": [], - "SimpleIconsSurveymonkey": [], - "SimpleIconsSuse": [], - "SimpleIconsSuzuki": [], - "SimpleIconsSvelte": [], - "SimpleIconsSvg": [], - "SimpleIconsSvgo": [], - "SimpleIconsSwagger": [], - "SimpleIconsSwarm": [], - "SimpleIconsSwc": [], - "SimpleIconsSwift": [], - "SimpleIconsSwiggy": [], - "SimpleIconsSwiper": [], - "SimpleIconsSymantec": [], - "SimpleIconsSymfony": [], - "SimpleIconsSymphony": [], - "SimpleIconsSympy": [], - "SimpleIconsSynology": [], - "SimpleIconsSystem76": [], - "SimpleIconsTableau": [], - "SimpleIconsTablecheck": [], - "SimpleIconsTacobell": [], - "SimpleIconsTado": [], - "SimpleIconsTaichigraphics": [], - "SimpleIconsTaichilang": [], - "SimpleIconsTails": [], - "SimpleIconsTailwindcss": [], - "SimpleIconsTalend": [], - "SimpleIconsTalenthouse": [], - "SimpleIconsTamiya": [], - "SimpleIconsTampermonkey": [], - "SimpleIconsTaobao": [], - "SimpleIconsTapas": [], - "SimpleIconsTarget": [], - "SimpleIconsTask": [], - "SimpleIconsTasmota": [], - "SimpleIconsTata": [], - "SimpleIconsTauri": [], - "SimpleIconsTaxbuzz": [], - "SimpleIconsTeamcity": [], - "SimpleIconsTeamspeak": [], - "SimpleIconsTeamviewer": [], - "SimpleIconsTed": [], - "SimpleIconsTeespring": [], - "SimpleIconsTekton": [], - "SimpleIconsTele5": [], - "SimpleIconsTelegram": [], - "SimpleIconsTelegraph": [], - "SimpleIconsTemporal": [], - "SimpleIconsTencentqq": [], - "SimpleIconsTensorflow": [], - "SimpleIconsTeradata": [], - "SimpleIconsTeratail": [], - "SimpleIconsTerraform": [], - "SimpleIconsTesco": [], - "SimpleIconsTesla": [], - "SimpleIconsTestcafe": [], - "SimpleIconsTestin": [], - "SimpleIconsTestinglibrary": [], - "SimpleIconsTether": [], - "SimpleIconsTextpattern": [], - "SimpleIconsTga": [], - "SimpleIconsThealgorithms": [], - "SimpleIconsTheconversation": [], - "SimpleIconsTheirishtimes": [], - "SimpleIconsThemighty": [], - "SimpleIconsThemodelsresource": [], - "SimpleIconsThemoviedatabase": [], - "SimpleIconsThenorthface": [], - "SimpleIconsTheregister": [], - "SimpleIconsThesoundsresource": [], - "SimpleIconsThespritersresource": [], - "SimpleIconsThewashingtonpost": [], - "SimpleIconsThingiverse": [], - "SimpleIconsThinkpad": [], - "SimpleIconsThreadless": [], - "SimpleIconsThreedotjs": [], - "SimpleIconsThreema": [], - "SimpleIconsThumbtack": [], - "SimpleIconsThunderbird": [], - "SimpleIconsThymeleaf": [], - "SimpleIconsTicketmaster": [], - "SimpleIconsTidal": [], - "SimpleIconsTide": [], - "SimpleIconsTidyverse": [], - "SimpleIconsTietoevry": [], - "SimpleIconsTiktok": [], - "SimpleIconsTile": [], - "SimpleIconsTimescale": [], - "SimpleIconsTinder": [], - "SimpleIconsTinyletter": [], - "SimpleIconsTistory": [], - "SimpleIconsTmobile": [], - "SimpleIconsTmux": [], - "SimpleIconsTnt": [], - "SimpleIconsTodoist": [], - "SimpleIconsToggl": [], - "SimpleIconsTokyometro": [], - "SimpleIconsToml": [], - "SimpleIconsTomorrowland": [], - "SimpleIconsTopcoder": [], - "SimpleIconsToptal": [], - "SimpleIconsTorbrowser": [], - "SimpleIconsTorproject": [], - "SimpleIconsToshiba": [], - "SimpleIconsToyota": [], - "SimpleIconsTplink": [], - "SimpleIconsTqdm": [], - "SimpleIconsTraefikmesh": [], - "SimpleIconsTraefikproxy": [], - "SimpleIconsTrainerroad": [], - "SimpleIconsTrakt": [], - "SimpleIconsTransportforireland": [], - "SimpleIconsTransportforlondon": [], - "SimpleIconsTravisci": [], - "SimpleIconsTreehouse": [], - "SimpleIconsTrello": [], - "SimpleIconsTrendmicro": [], - "SimpleIconsTreyarch": [], - "SimpleIconsTriller": [], - "SimpleIconsTrino": [], - "SimpleIconsTripadvisor": [], - "SimpleIconsTripdotcom": [], - "SimpleIconsTrove": [], - "SimpleIconsTrpc": [], - "SimpleIconsTruenas": [], - "SimpleIconsTrulia": [], - "SimpleIconsTrustedshops": [], - "SimpleIconsTrustpilot": [], - "SimpleIconsTryhackme": [], - "SimpleIconsTryitonline": [], - "SimpleIconsTsnode": [], - "SimpleIconsTubi": [], - "SimpleIconsTui": [], - "SimpleIconsTumblr": [], - "SimpleIconsTunein": [], - "SimpleIconsTurborepo": [], - "SimpleIconsTurbosquid": [], - "SimpleIconsTurkishairlines": [], - "SimpleIconsTutanota": [], - "SimpleIconsTvtime": [], - "SimpleIconsTwilio": [], - "SimpleIconsTwitch": [], - "SimpleIconsTwitter": [], - "SimpleIconsTwoo": [], - "SimpleIconsTypeform": [], - "SimpleIconsTypescript": [], - "SimpleIconsTypo3": [], - "SimpleIconsUber": [], - "SimpleIconsUbereats": [], - "SimpleIconsUbiquiti": [], - "SimpleIconsUbisoft": [], - "SimpleIconsUblockorigin": [], - "SimpleIconsUbuntu": [], - "SimpleIconsUdacity": [], - "SimpleIconsUdemy": [], - "SimpleIconsUfc": [], - "SimpleIconsUikit": [], - "SimpleIconsUlule": [], - "SimpleIconsUmbraco": [], - "SimpleIconsUnacademy": [], - "SimpleIconsUnderarmour": [], - "SimpleIconsUnderscoredotjs": [], - "SimpleIconsUndertale": [], - "SimpleIconsUnicode": [], - "SimpleIconsUnilever": [], - "SimpleIconsUnitedairlines": [], - "SimpleIconsUnity": [], - "SimpleIconsUnlicense": [], - "SimpleIconsUnocss": [], - "SimpleIconsUnraid": [], - "SimpleIconsUnrealengine": [], - "SimpleIconsUnsplash": [], - "SimpleIconsUntangle": [], - "SimpleIconsUntappd": [], - "SimpleIconsUpcloud": [], - "SimpleIconsUplabs": [], - "SimpleIconsUploaded": [], - "SimpleIconsUps": [], - "SimpleIconsUpstash": [], - "SimpleIconsUptimekuma": [], - "SimpleIconsUptobox": [], - "SimpleIconsUpwork": [], - "SimpleIconsUsps": [], - "SimpleIconsV": [], - "SimpleIconsV2Ex": [], - "SimpleIconsV8": [], - "SimpleIconsVaadin": [], - "SimpleIconsVagrant": [], - "SimpleIconsVala": [], - "SimpleIconsValorant": [], - "SimpleIconsValve": [], - "SimpleIconsVapor": [], - "SimpleIconsVault": [], - "SimpleIconsVauxhall": [], - "SimpleIconsVbulletin": [], - "SimpleIconsVectorlogozone": [], - "SimpleIconsVectorworks": [], - "SimpleIconsVeeam": [], - "SimpleIconsVeepee": [], - "SimpleIconsVelog": [], - "SimpleIconsVenmo": [], - "SimpleIconsVercel": [], - "SimpleIconsVerdaccio": [], - "SimpleIconsVeritas": [], - "SimpleIconsVerizon": [], - "SimpleIconsVexxhost": [], - "SimpleIconsVfairs": [], - "SimpleIconsViadeo": [], - "SimpleIconsViber": [], - "SimpleIconsVim": [], - "SimpleIconsVimeo": [], - "SimpleIconsVimeolivestream": [], - "SimpleIconsVirgin": [], - "SimpleIconsVirginmedia": [], - "SimpleIconsVirtualbox": [], - "SimpleIconsVirustotal": [], - "SimpleIconsVisa": [], - "SimpleIconsVisualstudio": [], - "SimpleIconsVisualstudiocode": [], - "SimpleIconsVite": [], - "SimpleIconsVitess": [], - "SimpleIconsVitest": [], - "SimpleIconsVivaldi": [], - "SimpleIconsVivino": [], - "SimpleIconsVk": [], - "SimpleIconsVlcmediaplayer": [], - "SimpleIconsVmware": [], - "SimpleIconsVodafone": [], - "SimpleIconsVolkswagen": [], - "SimpleIconsVolvo": [], - "SimpleIconsVonage": [], - "SimpleIconsVowpalwabbit": [], - "SimpleIconsVox": [], - "SimpleIconsVsco": [], - "SimpleIconsVscodium": [], - "SimpleIconsVtex": [], - "SimpleIconsVuedotjs": [], - "SimpleIconsVuetify": [], - "SimpleIconsVulkan": [], - "SimpleIconsVultr": [], - "SimpleIconsW3C": [], - "SimpleIconsWacom": [], - "SimpleIconsWagtail": [], - "SimpleIconsWails": [], - "SimpleIconsWakatime": [], - "SimpleIconsWalkman": [], - "SimpleIconsWallabag": [], - "SimpleIconsWalmart": [], - "SimpleIconsWantedly": [], - "SimpleIconsWappalyzer": [], - "SimpleIconsWarnerbros": [], - "SimpleIconsWarp": [], - "SimpleIconsWasmcloud": [], - "SimpleIconsWasmer": [], - "SimpleIconsWattpad": [], - "SimpleIconsWayland": [], - "SimpleIconsWaze": [], - "SimpleIconsWearos": [], - "SimpleIconsWeasyl": [], - "SimpleIconsWeb3Dotjs": [], - "SimpleIconsWebassembly": [], - "SimpleIconsWebauthn": [], - "SimpleIconsWebcomponentsdotorg": [], - "SimpleIconsWebdriverio": [], - "SimpleIconsWebflow": [], - "SimpleIconsWebgl": [], - "SimpleIconsWebhint": [], - "SimpleIconsWeblate": [], - "SimpleIconsWebmin": [], - "SimpleIconsWebmoney": [], - "SimpleIconsWebpack": [], - "SimpleIconsWebrtc": [], - "SimpleIconsWebstorm": [], - "SimpleIconsWebtoon": [], - "SimpleIconsWechat": [], - "SimpleIconsWegame": [], - "SimpleIconsWeightsandbiases": [], - "SimpleIconsWelcometothejungle": [], - "SimpleIconsWemo": [], - "SimpleIconsWesterndigital": [], - "SimpleIconsWetransfer": [], - "SimpleIconsWhatsapp": [], - "SimpleIconsWheniwork": [], - "SimpleIconsWhitesource": [], - "SimpleIconsWii": [], - "SimpleIconsWiiu": [], - "SimpleIconsWikidata": [], - "SimpleIconsWikidotjs": [], - "SimpleIconsWikimediacommons": [], - "SimpleIconsWikipedia": [], - "SimpleIconsWikiquote": [], - "SimpleIconsWikivoyage": [], - "SimpleIconsWinamp": [], - "SimpleIconsWindicss": [], - "SimpleIconsWindows": [], - "SimpleIconsWindows11": [], - "SimpleIconsWindows95": [], - "SimpleIconsWindowsterminal": [], - "SimpleIconsWindowsxp": [], - "SimpleIconsWinmate": [], - "SimpleIconsWipro": [], - "SimpleIconsWire": [], - "SimpleIconsWireguard": [], - "SimpleIconsWireshark": [], - "SimpleIconsWise": [], - "SimpleIconsWish": [], - "SimpleIconsWistia": [], - "SimpleIconsWix": [], - "SimpleIconsWizzair": [], - "SimpleIconsWolfram": [], - "SimpleIconsWolframlanguage": [], - "SimpleIconsWolframmathematica": [], - "SimpleIconsWoo": [], - "SimpleIconsWoocommerce": [], - "SimpleIconsWordpress": [], - "SimpleIconsWorkplace": [], - "SimpleIconsWorldhealthorganization": [], - "SimpleIconsWpengine": [], - "SimpleIconsWpexplorer": [], - "SimpleIconsWprocket": [], - "SimpleIconsWritedotas": [], - "SimpleIconsWwe": [], - "SimpleIconsWwise": [], - "SimpleIconsXamarin": [], - "SimpleIconsXaml": [], - "SimpleIconsXampp": [], - "SimpleIconsXbox": [], - "SimpleIconsXcode": [], - "SimpleIconsXdadevelopers": [], - "SimpleIconsXdotorg": [], - "SimpleIconsXero": [], - "SimpleIconsXfce": [], - "SimpleIconsXiaomi": [], - "SimpleIconsXilinx": [], - "SimpleIconsXing": [], - "SimpleIconsXmpp": [], - "SimpleIconsXo": [], - "SimpleIconsXrp": [], - "SimpleIconsXsplit": [], - "SimpleIconsXstate": [], - "SimpleIconsYahoo": [], - "SimpleIconsYale": [], - "SimpleIconsYamahacorporation": [], - "SimpleIconsYamahamotorcorporation": [], - "SimpleIconsYammer": [], - "SimpleIconsYarn": [], - "SimpleIconsYcombinator": [], - "SimpleIconsYelp": [], - "SimpleIconsYoast": [], - "SimpleIconsYolo": [], - "SimpleIconsYourtraveldottv": [], - "SimpleIconsYoutube": [], - "SimpleIconsYoutubegaming": [], - "SimpleIconsYoutubemusic": [], - "SimpleIconsYoutubestudio": [], - "SimpleIconsYoutubetv": [], - "SimpleIconsYubico": [], - "SimpleIconsZabka": [], - "SimpleIconsZalando": [], - "SimpleIconsZalo": [], - "SimpleIconsZapier": [], - "SimpleIconsZara": [], - "SimpleIconsZazzle": [], - "SimpleIconsZcash": [], - "SimpleIconsZdf": [], - "SimpleIconsZebratechnologies": [], - "SimpleIconsZelle": [], - "SimpleIconsZend": [], - "SimpleIconsZendesk": [], - "SimpleIconsZendframework": [], - "SimpleIconsZenn": [], - "SimpleIconsZenodo": [], - "SimpleIconsZerodha": [], - "SimpleIconsZeromq": [], - "SimpleIconsZerply": [], - "SimpleIconsZettlr": [], - "SimpleIconsZhihu": [], - "SimpleIconsZig": [], - "SimpleIconsZigbee": [], - "SimpleIconsZillow": [], - "SimpleIconsZincsearch": [], - "SimpleIconsZingat": [], - "SimpleIconsZoho": [], - "SimpleIconsZoiper": [], - "SimpleIconsZomato": [], - "SimpleIconsZoom": [], - "SimpleIconsZorin": [], - "SimpleIconsZotero": [], - "SimpleIconsZulip": [], - "SimpleIconsZwave": [], - "SimpleIconsZyte": [], - "base64": [ - "dep:base64" - ], - "bootstrap": [ - "Bootstrap0CircleFill", - "Bootstrap0Circle", - "Bootstrap0SquareFill", - "Bootstrap0Square", - "Bootstrap1CircleFill", - "Bootstrap1Circle", - "Bootstrap1SquareFill", - "Bootstrap1Square", - "Bootstrap123", - "Bootstrap2CircleFill", - "Bootstrap2Circle", - "Bootstrap2SquareFill", - "Bootstrap2Square", - "Bootstrap3CircleFill", - "Bootstrap3Circle", - "Bootstrap3SquareFill", - "Bootstrap3Square", - "Bootstrap4CircleFill", - "Bootstrap4Circle", - "Bootstrap4SquareFill", - "Bootstrap4Square", - "Bootstrap5CircleFill", - "Bootstrap5Circle", - "Bootstrap5SquareFill", - "Bootstrap5Square", - "Bootstrap6CircleFill", - "Bootstrap6Circle", - "Bootstrap6SquareFill", - "Bootstrap6Square", - "Bootstrap7CircleFill", - "Bootstrap7Circle", - "Bootstrap7SquareFill", - "Bootstrap7Square", - "Bootstrap8CircleFill", - "Bootstrap8Circle", - "Bootstrap8SquareFill", - "Bootstrap8Square", - "Bootstrap9CircleFill", - "Bootstrap9Circle", - "Bootstrap9SquareFill", - "Bootstrap9Square", - "BootstrapActivity", - "BootstrapAirplaneEnginesFill", - "BootstrapAirplaneEngines", - "BootstrapAirplaneFill", - "BootstrapAirplane", - "BootstrapAlarmFill", - "BootstrapAlarm", - "BootstrapAlexa", - "BootstrapAlignBottom", - "BootstrapAlignCenter", - "BootstrapAlignEnd", - "BootstrapAlignMiddle", - "BootstrapAlignStart", - "BootstrapAlignTop", - "BootstrapAlipay", - "BootstrapAlt", - "BootstrapAmd", - "BootstrapAndroid", - "BootstrapAndroid2", - "BootstrapAppIndicator", - "BootstrapApp", - "BootstrapApple", - "BootstrapArchiveFill", - "BootstrapArchive", - "BootstrapArrow90DegDown", - "BootstrapArrow90DegLeft", - "BootstrapArrow90DegRight", - "BootstrapArrow90DegUp", - "BootstrapArrowBarDown", - "BootstrapArrowBarLeft", - "BootstrapArrowBarRight", - "BootstrapArrowBarUp", - "BootstrapArrowClockwise", - "BootstrapArrowCounterclockwise", - "BootstrapArrowDownCircleFill", - "BootstrapArrowDownCircle", - "BootstrapArrowDownLeftCircleFill", - "BootstrapArrowDownLeftCircle", - "BootstrapArrowDownLeftSquareFill", - "BootstrapArrowDownLeftSquare", - "BootstrapArrowDownLeft", - "BootstrapArrowDownRightCircleFill", - "BootstrapArrowDownRightCircle", - "BootstrapArrowDownRightSquareFill", - "BootstrapArrowDownRightSquare", - "BootstrapArrowDownRight", - "BootstrapArrowDownShort", - "BootstrapArrowDownSquareFill", - "BootstrapArrowDownSquare", - "BootstrapArrowDownUp", - "BootstrapArrowDown", - "BootstrapArrowLeftCircleFill", - "BootstrapArrowLeftCircle", - "BootstrapArrowLeftRight", - "BootstrapArrowLeftShort", - "BootstrapArrowLeftSquareFill", - "BootstrapArrowLeftSquare", - "BootstrapArrowLeft", - "BootstrapArrowRepeat", - "BootstrapArrowReturnLeft", - "BootstrapArrowReturnRight", - "BootstrapArrowRightCircleFill", - "BootstrapArrowRightCircle", - "BootstrapArrowRightShort", - "BootstrapArrowRightSquareFill", - "BootstrapArrowRightSquare", - "BootstrapArrowRight", - "BootstrapArrowThroughHeartFill", - "BootstrapArrowThroughHeart", - "BootstrapArrowUpCircleFill", - "BootstrapArrowUpCircle", - "BootstrapArrowUpLeftCircleFill", - "BootstrapArrowUpLeftCircle", - "BootstrapArrowUpLeftSquareFill", - "BootstrapArrowUpLeftSquare", - "BootstrapArrowUpLeft", - "BootstrapArrowUpRightCircleFill", - "BootstrapArrowUpRightCircle", - "BootstrapArrowUpRightSquareFill", - "BootstrapArrowUpRightSquare", - "BootstrapArrowUpRight", - "BootstrapArrowUpShort", - "BootstrapArrowUpSquareFill", - "BootstrapArrowUpSquare", - "BootstrapArrowUp", - "BootstrapArrowsAngleContract", - "BootstrapArrowsAngleExpand", - "BootstrapArrowsCollapse", - "BootstrapArrowsExpand", - "BootstrapArrowsFullscreen", - "BootstrapArrowsMove", - "BootstrapAspectRatioFill", - "BootstrapAspectRatio", - "BootstrapAsterisk", - "BootstrapAt", - "BootstrapAwardFill", - "BootstrapAward", - "BootstrapBack", - "BootstrapBackspaceFill", - "BootstrapBackspaceReverseFill", - "BootstrapBackspaceReverse", - "BootstrapBackspace", - "BootstrapBadge3DFill", - "BootstrapBadge3D", - "BootstrapBadge4KFill", - "BootstrapBadge4K", - "BootstrapBadge8KFill", - "BootstrapBadge8K", - "BootstrapBadgeAdFill", - "BootstrapBadgeAd", - "BootstrapBadgeArFill", - "BootstrapBadgeAr", - "BootstrapBadgeCcFill", - "BootstrapBadgeCc", - "BootstrapBadgeHdFill", - "BootstrapBadgeHd", - "BootstrapBadgeSdFill", - "BootstrapBadgeSd", - "BootstrapBadgeTmFill", - "BootstrapBadgeTm", - "BootstrapBadgeVoFill", - "BootstrapBadgeVo", - "BootstrapBadgeVrFill", - "BootstrapBadgeVr", - "BootstrapBadgeWcFill", - "BootstrapBadgeWc", - "BootstrapBagCheckFill", - "BootstrapBagCheck", - "BootstrapBagDashFill", - "BootstrapBagDash", - "BootstrapBagFill", - "BootstrapBagHeartFill", - "BootstrapBagHeart", - "BootstrapBagPlusFill", - "BootstrapBagPlus", - "BootstrapBagXFill", - "BootstrapBagX", - "BootstrapBag", - "BootstrapBalloonFill", - "BootstrapBalloonHeartFill", - "BootstrapBalloonHeart", - "BootstrapBalloon", - "BootstrapBandaidFill", - "BootstrapBandaid", - "BootstrapBank", - "BootstrapBank2", - "BootstrapBarChartFill", - "BootstrapBarChartLineFill", - "BootstrapBarChartLine", - "BootstrapBarChartSteps", - "BootstrapBarChart", - "BootstrapBasketFill", - "BootstrapBasket", - "BootstrapBasket2Fill", - "BootstrapBasket2", - "BootstrapBasket3Fill", - "BootstrapBasket3", - "BootstrapBatteryCharging", - "BootstrapBatteryFull", - "BootstrapBatteryHalf", - "BootstrapBattery", - "BootstrapBehance", - "BootstrapBellFill", - "BootstrapBellSlashFill", - "BootstrapBellSlash", - "BootstrapBell", - "BootstrapBezier", - "BootstrapBezier2", - "BootstrapBicycle", - "BootstrapBinocularsFill", - "BootstrapBinoculars", - "BootstrapBlockquoteLeft", - "BootstrapBlockquoteRight", - "BootstrapBluetooth", - "BootstrapBodyText", - "BootstrapBookFill", - "BootstrapBookHalf", - "BootstrapBook", - "BootstrapBookmarkCheckFill", - "BootstrapBookmarkCheck", - "BootstrapBookmarkDashFill", - "BootstrapBookmarkDash", - "BootstrapBookmarkFill", - "BootstrapBookmarkHeartFill", - "BootstrapBookmarkHeart", - "BootstrapBookmarkPlusFill", - "BootstrapBookmarkPlus", - "BootstrapBookmarkStarFill", - "BootstrapBookmarkStar", - "BootstrapBookmarkXFill", - "BootstrapBookmarkX", - "BootstrapBookmark", - "BootstrapBookmarksFill", - "BootstrapBookmarks", - "BootstrapBookshelf", - "BootstrapBoomboxFill", - "BootstrapBoombox", - "BootstrapBootstrapFill", - "BootstrapBootstrapReboot", - "BootstrapBootstrap", - "BootstrapBorderAll", - "BootstrapBorderBottom", - "BootstrapBorderCenter", - "BootstrapBorderInner", - "BootstrapBorderLeft", - "BootstrapBorderMiddle", - "BootstrapBorderOuter", - "BootstrapBorderRight", - "BootstrapBorderStyle", - "BootstrapBorderTop", - "BootstrapBorderWidth", - "BootstrapBorder", - "BootstrapBoundingBoxCircles", - "BootstrapBoundingBox", - "BootstrapBoxArrowDownLeft", - "BootstrapBoxArrowDownRight", - "BootstrapBoxArrowDown", - "BootstrapBoxArrowInDownLeft", - "BootstrapBoxArrowInDownRight", - "BootstrapBoxArrowInDown", - "BootstrapBoxArrowInLeft", - "BootstrapBoxArrowInRight", - "BootstrapBoxArrowInUpLeft", - "BootstrapBoxArrowInUpRight", - "BootstrapBoxArrowInUp", - "BootstrapBoxArrowLeft", - "BootstrapBoxArrowRight", - "BootstrapBoxArrowUpLeft", - "BootstrapBoxArrowUpRight", - "BootstrapBoxArrowUp", - "BootstrapBoxFill", - "BootstrapBoxSeamFill", - "BootstrapBoxSeam", - "BootstrapBox", - "BootstrapBox2Fill", - "BootstrapBox2HeartFill", - "BootstrapBox2Heart", - "BootstrapBox2", - "BootstrapBoxes", - "BootstrapBracesAsterisk", - "BootstrapBraces", - "BootstrapBricks", - "BootstrapBriefcaseFill", - "BootstrapBriefcase", - "BootstrapBrightnessAltHighFill", - "BootstrapBrightnessAltHigh", - "BootstrapBrightnessAltLowFill", - "BootstrapBrightnessAltLow", - "BootstrapBrightnessHighFill", - "BootstrapBrightnessHigh", - "BootstrapBrightnessLowFill", - "BootstrapBrightnessLow", - "BootstrapBroadcastPin", - "BootstrapBroadcast", - "BootstrapBrowserChrome", - "BootstrapBrowserEdge", - "BootstrapBrowserFirefox", - "BootstrapBrowserSafari", - "BootstrapBrushFill", - "BootstrapBrush", - "BootstrapBucketFill", - "BootstrapBucket", - "BootstrapBugFill", - "BootstrapBug", - "BootstrapBuildingAdd", - "BootstrapBuildingCheck", - "BootstrapBuildingDash", - "BootstrapBuildingDown", - "BootstrapBuildingExclamation", - "BootstrapBuildingFillAdd", - "BootstrapBuildingFillCheck", - "BootstrapBuildingFillDash", - "BootstrapBuildingFillDown", - "BootstrapBuildingFillExclamation", - "BootstrapBuildingFillGear", - "BootstrapBuildingFillLock", - "BootstrapBuildingFillSlash", - "BootstrapBuildingFillUp", - "BootstrapBuildingFillX", - "BootstrapBuildingFill", - "BootstrapBuildingGear", - "BootstrapBuildingLock", - "BootstrapBuildingSlash", - "BootstrapBuildingUp", - "BootstrapBuildingX", - "BootstrapBuilding", - "BootstrapBuildingsFill", - "BootstrapBuildings", - "BootstrapBullseye", - "BootstrapBusFrontFill", - "BootstrapBusFront", - "BootstrapCCircleFill", - "BootstrapCCircle", - "BootstrapCSquareFill", - "BootstrapCSquare", - "BootstrapCalculatorFill", - "BootstrapCalculator", - "BootstrapCalendarCheckFill", - "BootstrapCalendarCheck", - "BootstrapCalendarDateFill", - "BootstrapCalendarDate", - "BootstrapCalendarDayFill", - "BootstrapCalendarDay", - "BootstrapCalendarEventFill", - "BootstrapCalendarEvent", - "BootstrapCalendarFill", - "BootstrapCalendarHeartFill", - "BootstrapCalendarHeart", - "BootstrapCalendarMinusFill", - "BootstrapCalendarMinus", - "BootstrapCalendarMonthFill", - "BootstrapCalendarMonth", - "BootstrapCalendarPlusFill", - "BootstrapCalendarPlus", - "BootstrapCalendarRangeFill", - "BootstrapCalendarRange", - "BootstrapCalendarWeekFill", - "BootstrapCalendarWeek", - "BootstrapCalendarXFill", - "BootstrapCalendarX", - "BootstrapCalendar", - "BootstrapCalendar2CheckFill", - "BootstrapCalendar2Check", - "BootstrapCalendar2DateFill", - "BootstrapCalendar2Date", - "BootstrapCalendar2DayFill", - "BootstrapCalendar2Day", - "BootstrapCalendar2EventFill", - "BootstrapCalendar2Event", - "BootstrapCalendar2Fill", - "BootstrapCalendar2HeartFill", - "BootstrapCalendar2Heart", - "BootstrapCalendar2MinusFill", - "BootstrapCalendar2Minus", - "BootstrapCalendar2MonthFill", - "BootstrapCalendar2Month", - "BootstrapCalendar2PlusFill", - "BootstrapCalendar2Plus", - "BootstrapCalendar2RangeFill", - "BootstrapCalendar2Range", - "BootstrapCalendar2WeekFill", - "BootstrapCalendar2Week", - "BootstrapCalendar2XFill", - "BootstrapCalendar2X", - "BootstrapCalendar2", - "BootstrapCalendar3EventFill", - "BootstrapCalendar3Event", - "BootstrapCalendar3Fill", - "BootstrapCalendar3RangeFill", - "BootstrapCalendar3Range", - "BootstrapCalendar3WeekFill", - "BootstrapCalendar3Week", - "BootstrapCalendar3", - "BootstrapCalendar4Event", - "BootstrapCalendar4Range", - "BootstrapCalendar4Week", - "BootstrapCalendar4", - "BootstrapCameraFill", - "BootstrapCameraReelsFill", - "BootstrapCameraReels", - "BootstrapCameraVideoFill", - "BootstrapCameraVideoOffFill", - "BootstrapCameraVideoOff", - "BootstrapCameraVideo", - "BootstrapCamera", - "BootstrapCamera2", - "BootstrapCapslockFill", - "BootstrapCapslock", - "BootstrapCapsulePill", - "BootstrapCapsule", - "BootstrapCarFrontFill", - "BootstrapCarFront", - "BootstrapCardChecklist", - "BootstrapCardHeading", - "BootstrapCardImage", - "BootstrapCardList", - "BootstrapCardText", - "BootstrapCaretDownFill", - "BootstrapCaretDownSquareFill", - "BootstrapCaretDownSquare", - "BootstrapCaretDown", - "BootstrapCaretLeftFill", - "BootstrapCaretLeftSquareFill", - "BootstrapCaretLeftSquare", - "BootstrapCaretLeft", - "BootstrapCaretRightFill", - "BootstrapCaretRightSquareFill", - "BootstrapCaretRightSquare", - "BootstrapCaretRight", - "BootstrapCaretUpFill", - "BootstrapCaretUpSquareFill", - "BootstrapCaretUpSquare", - "BootstrapCaretUp", - "BootstrapCartCheckFill", - "BootstrapCartCheck", - "BootstrapCartDashFill", - "BootstrapCartDash", - "BootstrapCartFill", - "BootstrapCartPlusFill", - "BootstrapCartPlus", - "BootstrapCartXFill", - "BootstrapCartX", - "BootstrapCart", - "BootstrapCart2", - "BootstrapCart3", - "BootstrapCart4", - "BootstrapCashCoin", - "BootstrapCashStack", - "BootstrapCash", - "BootstrapCassetteFill", - "BootstrapCassette", - "BootstrapCast", - "BootstrapCcCircleFill", - "BootstrapCcCircle", - "BootstrapCcSquareFill", - "BootstrapCcSquare", - "BootstrapChatDotsFill", - "BootstrapChatDots", - "BootstrapChatFill", - "BootstrapChatHeartFill", - "BootstrapChatHeart", - "BootstrapChatLeftDotsFill", - "BootstrapChatLeftDots", - "BootstrapChatLeftFill", - "BootstrapChatLeftHeartFill", - "BootstrapChatLeftHeart", - "BootstrapChatLeftQuoteFill", - "BootstrapChatLeftQuote", - "BootstrapChatLeftTextFill", - "BootstrapChatLeftText", - "BootstrapChatLeft", - "BootstrapChatQuoteFill", - "BootstrapChatQuote", - "BootstrapChatRightDotsFill", - "BootstrapChatRightDots", - "BootstrapChatRightFill", - "BootstrapChatRightHeartFill", - "BootstrapChatRightHeart", - "BootstrapChatRightQuoteFill", - "BootstrapChatRightQuote", - "BootstrapChatRightTextFill", - "BootstrapChatRightText", - "BootstrapChatRight", - "BootstrapChatSquareDotsFill", - "BootstrapChatSquareDots", - "BootstrapChatSquareFill", - "BootstrapChatSquareHeartFill", - "BootstrapChatSquareHeart", - "BootstrapChatSquareQuoteFill", - "BootstrapChatSquareQuote", - "BootstrapChatSquareTextFill", - "BootstrapChatSquareText", - "BootstrapChatSquare", - "BootstrapChatTextFill", - "BootstrapChatText", - "BootstrapChat", - "BootstrapCheckAll", - "BootstrapCheckCircleFill", - "BootstrapCheckCircle", - "BootstrapCheckLg", - "BootstrapCheckSquareFill", - "BootstrapCheckSquare", - "BootstrapCheck", - "BootstrapCheck2All", - "BootstrapCheck2Circle", - "BootstrapCheck2Square", - "BootstrapCheck2", - "BootstrapChevronBarContract", - "BootstrapChevronBarDown", - "BootstrapChevronBarExpand", - "BootstrapChevronBarLeft", - "BootstrapChevronBarRight", - "BootstrapChevronBarUp", - "BootstrapChevronCompactDown", - "BootstrapChevronCompactLeft", - "BootstrapChevronCompactRight", - "BootstrapChevronCompactUp", - "BootstrapChevronContract", - "BootstrapChevronDoubleDown", - "BootstrapChevronDoubleLeft", - "BootstrapChevronDoubleRight", - "BootstrapChevronDoubleUp", - "BootstrapChevronDown", - "BootstrapChevronExpand", - "BootstrapChevronLeft", - "BootstrapChevronRight", - "BootstrapChevronUp", - "BootstrapCircleFill", - "BootstrapCircleHalf", - "BootstrapCircleSquare", - "BootstrapCircle", - "BootstrapClipboardCheckFill", - "BootstrapClipboardCheck", - "BootstrapClipboardDataFill", - "BootstrapClipboardData", - "BootstrapClipboardFill", - "BootstrapClipboardHeartFill", - "BootstrapClipboardHeart", - "BootstrapClipboardMinusFill", - "BootstrapClipboardMinus", - "BootstrapClipboardPlusFill", - "BootstrapClipboardPlus", - "BootstrapClipboardPulse", - "BootstrapClipboardXFill", - "BootstrapClipboardX", - "BootstrapClipboard", - "BootstrapClipboard2CheckFill", - "BootstrapClipboard2Check", - "BootstrapClipboard2DataFill", - "BootstrapClipboard2Data", - "BootstrapClipboard2Fill", - "BootstrapClipboard2HeartFill", - "BootstrapClipboard2Heart", - "BootstrapClipboard2MinusFill", - "BootstrapClipboard2Minus", - "BootstrapClipboard2PlusFill", - "BootstrapClipboard2Plus", - "BootstrapClipboard2PulseFill", - "BootstrapClipboard2Pulse", - "BootstrapClipboard2XFill", - "BootstrapClipboard2X", - "BootstrapClipboard2", - "BootstrapClockFill", - "BootstrapClockHistory", - "BootstrapClock", - "BootstrapCloudArrowDownFill", - "BootstrapCloudArrowDown", - "BootstrapCloudArrowUpFill", - "BootstrapCloudArrowUp", - "BootstrapCloudCheckFill", - "BootstrapCloudCheck", - "BootstrapCloudDownloadFill", - "BootstrapCloudDownload", - "BootstrapCloudDrizzleFill", - "BootstrapCloudDrizzle", - "BootstrapCloudFill", - "BootstrapCloudFogFill", - "BootstrapCloudFog", - "BootstrapCloudFog2Fill", - "BootstrapCloudFog2", - "BootstrapCloudHailFill", - "BootstrapCloudHail", - "BootstrapCloudHazeFill", - "BootstrapCloudHaze", - "BootstrapCloudHaze2Fill", - "BootstrapCloudHaze2", - "BootstrapCloudLightningFill", - "BootstrapCloudLightningRainFill", - "BootstrapCloudLightningRain", - "BootstrapCloudLightning", - "BootstrapCloudMinusFill", - "BootstrapCloudMinus", - "BootstrapCloudMoonFill", - "BootstrapCloudMoon", - "BootstrapCloudPlusFill", - "BootstrapCloudPlus", - "BootstrapCloudRainFill", - "BootstrapCloudRainHeavyFill", - "BootstrapCloudRainHeavy", - "BootstrapCloudRain", - "BootstrapCloudSlashFill", - "BootstrapCloudSlash", - "BootstrapCloudSleetFill", - "BootstrapCloudSleet", - "BootstrapCloudSnowFill", - "BootstrapCloudSnow", - "BootstrapCloudSunFill", - "BootstrapCloudSun", - "BootstrapCloudUploadFill", - "BootstrapCloudUpload", - "BootstrapCloud", - "BootstrapCloudsFill", - "BootstrapClouds", - "BootstrapCloudyFill", - "BootstrapCloudy", - "BootstrapCodeSlash", - "BootstrapCodeSquare", - "BootstrapCode", - "BootstrapCoin", - "BootstrapCollectionFill", - "BootstrapCollectionPlayFill", - "BootstrapCollectionPlay", - "BootstrapCollection", - "BootstrapColumnsGap", - "BootstrapColumns", - "BootstrapCommand", - "BootstrapCompassFill", - "BootstrapCompass", - "BootstrapConeStriped", - "BootstrapCone", - "BootstrapController", - "BootstrapCpuFill", - "BootstrapCpu", - "BootstrapCreditCard2BackFill", - "BootstrapCreditCard2Back", - "BootstrapCreditCard2FrontFill", - "BootstrapCreditCard2Front", - "BootstrapCreditCardFill", - "BootstrapCreditCard", - "BootstrapCrop", - "BootstrapCupFill", - "BootstrapCupHotFill", - "BootstrapCupHot", - "BootstrapCupStraw", - "BootstrapCup", - "BootstrapCurrencyBitcoin", - "BootstrapCurrencyDollar", - "BootstrapCurrencyEuro", - "BootstrapCurrencyExchange", - "BootstrapCurrencyPound", - "BootstrapCurrencyRupee", - "BootstrapCurrencyYen", - "BootstrapCursorFill", - "BootstrapCursorText", - "BootstrapCursor", - "BootstrapDashCircleDotted", - "BootstrapDashCircleFill", - "BootstrapDashCircle", - "BootstrapDashLg", - "BootstrapDashSquareDotted", - "BootstrapDashSquareFill", - "BootstrapDashSquare", - "BootstrapDash", - "BootstrapDatabaseAdd", - "BootstrapDatabaseCheck", - "BootstrapDatabaseDash", - "BootstrapDatabaseDown", - "BootstrapDatabaseExclamation", - "BootstrapDatabaseFillAdd", - "BootstrapDatabaseFillCheck", - "BootstrapDatabaseFillDash", - "BootstrapDatabaseFillDown", - "BootstrapDatabaseFillExclamation", - "BootstrapDatabaseFillGear", - "BootstrapDatabaseFillLock", - "BootstrapDatabaseFillSlash", - "BootstrapDatabaseFillUp", - "BootstrapDatabaseFillX", - "BootstrapDatabaseFill", - "BootstrapDatabaseGear", - "BootstrapDatabaseLock", - "BootstrapDatabaseSlash", - "BootstrapDatabaseUp", - "BootstrapDatabaseX", - "BootstrapDatabase", - "BootstrapDeviceHddFill", - "BootstrapDeviceHdd", - "BootstrapDeviceSsdFill", - "BootstrapDeviceSsd", - "BootstrapDiagram2Fill", - "BootstrapDiagram2", - "BootstrapDiagram3Fill", - "BootstrapDiagram3", - "BootstrapDiamondFill", - "BootstrapDiamondHalf", - "BootstrapDiamond", - "BootstrapDice1Fill", - "BootstrapDice1", - "BootstrapDice2Fill", - "BootstrapDice2", - "BootstrapDice3Fill", - "BootstrapDice3", - "BootstrapDice4Fill", - "BootstrapDice4", - "BootstrapDice5Fill", - "BootstrapDice5", - "BootstrapDice6Fill", - "BootstrapDice6", - "BootstrapDiscFill", - "BootstrapDisc", - "BootstrapDiscord", - "BootstrapDisplayFill", - "BootstrapDisplay", - "BootstrapDisplayportFill", - "BootstrapDisplayport", - "BootstrapDistributeHorizontal", - "BootstrapDistributeVertical", - "BootstrapDoorClosedFill", - "BootstrapDoorClosed", - "BootstrapDoorOpenFill", - "BootstrapDoorOpen", - "BootstrapDot", - "BootstrapDownload", - "BootstrapDpadFill", - "BootstrapDpad", - "BootstrapDribbble", - "BootstrapDropbox", - "BootstrapDropletFill", - "BootstrapDropletHalf", - "BootstrapDroplet", - "BootstrapEarFill", - "BootstrapEar", - "BootstrapEarbuds", - "BootstrapEaselFill", - "BootstrapEasel", - "BootstrapEasel2Fill", - "BootstrapEasel2", - "BootstrapEasel3Fill", - "BootstrapEasel3", - "BootstrapEggFill", - "BootstrapEggFried", - "BootstrapEgg", - "BootstrapEjectFill", - "BootstrapEject", - "BootstrapEmojiAngryFill", - "BootstrapEmojiAngry", - "BootstrapEmojiDizzyFill", - "BootstrapEmojiDizzy", - "BootstrapEmojiExpressionlessFill", - "BootstrapEmojiExpressionless", - "BootstrapEmojiFrownFill", - "BootstrapEmojiFrown", - "BootstrapEmojiHeartEyesFill", - "BootstrapEmojiHeartEyes", - "BootstrapEmojiKissFill", - "BootstrapEmojiKiss", - "BootstrapEmojiLaughingFill", - "BootstrapEmojiLaughing", - "BootstrapEmojiNeutralFill", - "BootstrapEmojiNeutral", - "BootstrapEmojiSmileFill", - "BootstrapEmojiSmileUpsideDownFill", - "BootstrapEmojiSmileUpsideDown", - "BootstrapEmojiSmile", - "BootstrapEmojiSunglassesFill", - "BootstrapEmojiSunglasses", - "BootstrapEmojiWinkFill", - "BootstrapEmojiWink", - "BootstrapEnvelopeAtFill", - "BootstrapEnvelopeAt", - "BootstrapEnvelopeCheckFill", - "BootstrapEnvelopeCheck", - "BootstrapEnvelopeDashFill", - "BootstrapEnvelopeDash", - "BootstrapEnvelopeExclamationFill", - "BootstrapEnvelopeExclamation", - "BootstrapEnvelopeFill", - "BootstrapEnvelopeHeartFill", - "BootstrapEnvelopeHeart", - "BootstrapEnvelopeOpenFill", - "BootstrapEnvelopeOpenHeartFill", - "BootstrapEnvelopeOpenHeart", - "BootstrapEnvelopeOpen", - "BootstrapEnvelopePaperFill", - "BootstrapEnvelopePaperHeartFill", - "BootstrapEnvelopePaperHeart", - "BootstrapEnvelopePaper", - "BootstrapEnvelopePlusFill", - "BootstrapEnvelopePlus", - "BootstrapEnvelopeSlashFill", - "BootstrapEnvelopeSlash", - "BootstrapEnvelopeXFill", - "BootstrapEnvelopeX", - "BootstrapEnvelope", - "BootstrapEraserFill", - "BootstrapEraser", - "BootstrapEscape", - "BootstrapEthernet", - "BootstrapEvFrontFill", - "BootstrapEvFront", - "BootstrapEvStationFill", - "BootstrapEvStation", - "BootstrapExclamationCircleFill", - "BootstrapExclamationCircle", - "BootstrapExclamationDiamondFill", - "BootstrapExclamationDiamond", - "BootstrapExclamationLg", - "BootstrapExclamationOctagonFill", - "BootstrapExclamationOctagon", - "BootstrapExclamationSquareFill", - "BootstrapExclamationSquare", - "BootstrapExclamationTriangleFill", - "BootstrapExclamationTriangle", - "BootstrapExclamation", - "BootstrapExclude", - "BootstrapExplicitFill", - "BootstrapExplicit", - "BootstrapEyeFill", - "BootstrapEyeSlashFill", - "BootstrapEyeSlash", - "BootstrapEye", - "BootstrapEyedropper", - "BootstrapEyeglasses", - "BootstrapFacebook", - "BootstrapFan", - "BootstrapFastForwardBtnFill", - "BootstrapFastForwardBtn", - "BootstrapFastForwardCircleFill", - "BootstrapFastForwardCircle", - "BootstrapFastForwardFill", - "BootstrapFastForward", - "BootstrapFileArrowDownFill", - "BootstrapFileArrowDown", - "BootstrapFileArrowUpFill", - "BootstrapFileArrowUp", - "BootstrapFileBarGraphFill", - "BootstrapFileBarGraph", - "BootstrapFileBinaryFill", - "BootstrapFileBinary", - "BootstrapFileBreakFill", - "BootstrapFileBreak", - "BootstrapFileCheckFill", - "BootstrapFileCheck", - "BootstrapFileCodeFill", - "BootstrapFileCode", - "BootstrapFileDiffFill", - "BootstrapFileDiff", - "BootstrapFileEarmarkArrowDownFill", - "BootstrapFileEarmarkArrowDown", - "BootstrapFileEarmarkArrowUpFill", - "BootstrapFileEarmarkArrowUp", - "BootstrapFileEarmarkBarGraphFill", - "BootstrapFileEarmarkBarGraph", - "BootstrapFileEarmarkBinaryFill", - "BootstrapFileEarmarkBinary", - "BootstrapFileEarmarkBreakFill", - "BootstrapFileEarmarkBreak", - "BootstrapFileEarmarkCheckFill", - "BootstrapFileEarmarkCheck", - "BootstrapFileEarmarkCodeFill", - "BootstrapFileEarmarkCode", - "BootstrapFileEarmarkDiffFill", - "BootstrapFileEarmarkDiff", - "BootstrapFileEarmarkEaselFill", - "BootstrapFileEarmarkEasel", - "BootstrapFileEarmarkExcelFill", - "BootstrapFileEarmarkExcel", - "BootstrapFileEarmarkFill", - "BootstrapFileEarmarkFontFill", - "BootstrapFileEarmarkFont", - "BootstrapFileEarmarkImageFill", - "BootstrapFileEarmarkImage", - "BootstrapFileEarmarkLockFill", - "BootstrapFileEarmarkLock", - "BootstrapFileEarmarkLock2Fill", - "BootstrapFileEarmarkLock2", - "BootstrapFileEarmarkMedicalFill", - "BootstrapFileEarmarkMedical", - "BootstrapFileEarmarkMinusFill", - "BootstrapFileEarmarkMinus", - "BootstrapFileEarmarkMusicFill", - "BootstrapFileEarmarkMusic", - "BootstrapFileEarmarkPdfFill", - "BootstrapFileEarmarkPdf", - "BootstrapFileEarmarkPersonFill", - "BootstrapFileEarmarkPerson", - "BootstrapFileEarmarkPlayFill", - "BootstrapFileEarmarkPlay", - "BootstrapFileEarmarkPlusFill", - "BootstrapFileEarmarkPlus", - "BootstrapFileEarmarkPostFill", - "BootstrapFileEarmarkPost", - "BootstrapFileEarmarkPptFill", - "BootstrapFileEarmarkPpt", - "BootstrapFileEarmarkRichtextFill", - "BootstrapFileEarmarkRichtext", - "BootstrapFileEarmarkRuledFill", - "BootstrapFileEarmarkRuled", - "BootstrapFileEarmarkSlidesFill", - "BootstrapFileEarmarkSlides", - "BootstrapFileEarmarkSpreadsheetFill", - "BootstrapFileEarmarkSpreadsheet", - "BootstrapFileEarmarkTextFill", - "BootstrapFileEarmarkText", - "BootstrapFileEarmarkWordFill", - "BootstrapFileEarmarkWord", - "BootstrapFileEarmarkXFill", - "BootstrapFileEarmarkX", - "BootstrapFileEarmarkZipFill", - "BootstrapFileEarmarkZip", - "BootstrapFileEarmark", - "BootstrapFileEaselFill", - "BootstrapFileEasel", - "BootstrapFileExcelFill", - "BootstrapFileExcel", - "BootstrapFileFill", - "BootstrapFileFontFill", - "BootstrapFileFont", - "BootstrapFileImageFill", - "BootstrapFileImage", - "BootstrapFileLockFill", - "BootstrapFileLock", - "BootstrapFileLock2Fill", - "BootstrapFileLock2", - "BootstrapFileMedicalFill", - "BootstrapFileMedical", - "BootstrapFileMinusFill", - "BootstrapFileMinus", - "BootstrapFileMusicFill", - "BootstrapFileMusic", - "BootstrapFilePdfFill", - "BootstrapFilePdf", - "BootstrapFilePersonFill", - "BootstrapFilePerson", - "BootstrapFilePlayFill", - "BootstrapFilePlay", - "BootstrapFilePlusFill", - "BootstrapFilePlus", - "BootstrapFilePostFill", - "BootstrapFilePost", - "BootstrapFilePptFill", - "BootstrapFilePpt", - "BootstrapFileRichtextFill", - "BootstrapFileRichtext", - "BootstrapFileRuledFill", - "BootstrapFileRuled", - "BootstrapFileSlidesFill", - "BootstrapFileSlides", - "BootstrapFileSpreadsheetFill", - "BootstrapFileSpreadsheet", - "BootstrapFileTextFill", - "BootstrapFileText", - "BootstrapFileWordFill", - "BootstrapFileWord", - "BootstrapFileXFill", - "BootstrapFileX", - "BootstrapFileZipFill", - "BootstrapFileZip", - "BootstrapFile", - "BootstrapFilesAlt", - "BootstrapFiles", - "BootstrapFiletypeAac", - "BootstrapFiletypeAi", - "BootstrapFiletypeBmp", - "BootstrapFiletypeCs", - "BootstrapFiletypeCss", - "BootstrapFiletypeCsv", - "BootstrapFiletypeDoc", - "BootstrapFiletypeDocx", - "BootstrapFiletypeExe", - "BootstrapFiletypeGif", - "BootstrapFiletypeHeic", - "BootstrapFiletypeHtml", - "BootstrapFiletypeJava", - "BootstrapFiletypeJpg", - "BootstrapFiletypeJs", - "BootstrapFiletypeJson", - "BootstrapFiletypeJsx", - "BootstrapFiletypeKey", - "BootstrapFiletypeM4P", - "BootstrapFiletypeMd", - "BootstrapFiletypeMdx", - "BootstrapFiletypeMov", - "BootstrapFiletypeMp3", - "BootstrapFiletypeMp4", - "BootstrapFiletypeOtf", - "BootstrapFiletypePdf", - "BootstrapFiletypePhp", - "BootstrapFiletypePng", - "BootstrapFiletypePpt", - "BootstrapFiletypePptx", - "BootstrapFiletypePsd", - "BootstrapFiletypePy", - "BootstrapFiletypeRaw", - "BootstrapFiletypeRb", - "BootstrapFiletypeSass", - "BootstrapFiletypeScss", - "BootstrapFiletypeSh", - "BootstrapFiletypeSql", - "BootstrapFiletypeSvg", - "BootstrapFiletypeTiff", - "BootstrapFiletypeTsx", - "BootstrapFiletypeTtf", - "BootstrapFiletypeTxt", - "BootstrapFiletypeWav", - "BootstrapFiletypeWoff", - "BootstrapFiletypeXls", - "BootstrapFiletypeXlsx", - "BootstrapFiletypeXml", - "BootstrapFiletypeYml", - "BootstrapFilm", - "BootstrapFilterCircleFill", - "BootstrapFilterCircle", - "BootstrapFilterLeft", - "BootstrapFilterRight", - "BootstrapFilterSquareFill", - "BootstrapFilterSquare", - "BootstrapFilter", - "BootstrapFingerprint", - "BootstrapFire", - "BootstrapFlagFill", - "BootstrapFlag", - "BootstrapFlower1", - "BootstrapFlower2", - "BootstrapFlower3", - "BootstrapFolderCheck", - "BootstrapFolderFill", - "BootstrapFolderMinus", - "BootstrapFolderPlus", - "BootstrapFolderSymlinkFill", - "BootstrapFolderSymlink", - "BootstrapFolderX", - "BootstrapFolder", - "BootstrapFolder2Open", - "BootstrapFolder2", - "BootstrapFonts", - "BootstrapForwardFill", - "BootstrapForward", - "BootstrapFront", - "BootstrapFuelPumpDieselFill", - "BootstrapFuelPumpDiesel", - "BootstrapFuelPumpFill", - "BootstrapFuelPump", - "BootstrapFullscreenExit", - "BootstrapFullscreen", - "BootstrapFunnelFill", - "BootstrapFunnel", - "BootstrapGearFill", - "BootstrapGearWideConnected", - "BootstrapGearWide", - "BootstrapGear", - "BootstrapGem", - "BootstrapGenderAmbiguous", - "BootstrapGenderFemale", - "BootstrapGenderMale", - "BootstrapGenderTrans", - "BootstrapGeoAltFill", - "BootstrapGeoAlt", - "BootstrapGeoFill", - "BootstrapGeo", - "BootstrapGiftFill", - "BootstrapGift", - "BootstrapGit", - "BootstrapGithub", - "BootstrapGlobeAmericas", - "BootstrapGlobeAsiaAustralia", - "BootstrapGlobeCentralSouthAsia", - "BootstrapGlobeEuropeAfrica", - "BootstrapGlobe", - "BootstrapGlobe2", - "BootstrapGooglePlay", - "BootstrapGoogle", - "BootstrapGpuCard", - "BootstrapGraphDownArrow", - "BootstrapGraphDown", - "BootstrapGraphUpArrow", - "BootstrapGraphUp", - "BootstrapGrid1X2Fill", - "BootstrapGrid1X2", - "BootstrapGrid3X2GapFill", - "BootstrapGrid3X2Gap", - "BootstrapGrid3X2", - "BootstrapGrid3X3GapFill", - "BootstrapGrid3X3Gap", - "BootstrapGrid3X3", - "BootstrapGridFill", - "BootstrapGrid", - "BootstrapGripHorizontal", - "BootstrapGripVertical", - "BootstrapHCircleFill", - "BootstrapHCircle", - "BootstrapHSquareFill", - "BootstrapHSquare", - "BootstrapHammer", - "BootstrapHandIndexFill", - "BootstrapHandIndexThumbFill", - "BootstrapHandIndexThumb", - "BootstrapHandIndex", - "BootstrapHandThumbsDownFill", - "BootstrapHandThumbsDown", - "BootstrapHandThumbsUpFill", - "BootstrapHandThumbsUp", - "BootstrapHandbagFill", - "BootstrapHandbag", - "BootstrapHash", - "BootstrapHddFill", - "BootstrapHddNetworkFill", - "BootstrapHddNetwork", - "BootstrapHddRackFill", - "BootstrapHddRack", - "BootstrapHddStackFill", - "BootstrapHddStack", - "BootstrapHdd", - "BootstrapHdmiFill", - "BootstrapHdmi", - "BootstrapHeadphones", - "BootstrapHeadsetVr", - "BootstrapHeadset", - "BootstrapHeartArrow", - "BootstrapHeartFill", - "BootstrapHeartHalf", - "BootstrapHeartPulseFill", - "BootstrapHeartPulse", - "BootstrapHeart", - "BootstrapHeartbreakFill", - "BootstrapHeartbreak", - "BootstrapHearts", - "BootstrapHeptagonFill", - "BootstrapHeptagonHalf", - "BootstrapHeptagon", - "BootstrapHexagonFill", - "BootstrapHexagonHalf", - "BootstrapHexagon", - "BootstrapHospitalFill", - "BootstrapHospital", - "BootstrapHourglassBottom", - "BootstrapHourglassSplit", - "BootstrapHourglassTop", - "BootstrapHourglass", - "BootstrapHouseAddFill", - "BootstrapHouseAdd", - "BootstrapHouseCheckFill", - "BootstrapHouseCheck", - "BootstrapHouseDashFill", - "BootstrapHouseDash", - "BootstrapHouseDoorFill", - "BootstrapHouseDoor", - "BootstrapHouseDownFill", - "BootstrapHouseDown", - "BootstrapHouseExclamationFill", - "BootstrapHouseExclamation", - "BootstrapHouseFill", - "BootstrapHouseGearFill", - "BootstrapHouseGear", - "BootstrapHouseHeartFill", - "BootstrapHouseHeart", - "BootstrapHouseLockFill", - "BootstrapHouseLock", - "BootstrapHouseSlashFill", - "BootstrapHouseSlash", - "BootstrapHouseUpFill", - "BootstrapHouseUp", - "BootstrapHouseXFill", - "BootstrapHouseX", - "BootstrapHouse", - "BootstrapHousesFill", - "BootstrapHouses", - "BootstrapHr", - "BootstrapHurricane", - "BootstrapHypnotize", - "BootstrapImageAlt", - "BootstrapImageFill", - "BootstrapImage", - "BootstrapImages", - "BootstrapInboxFill", - "BootstrapInbox", - "BootstrapInboxesFill", - "BootstrapInboxes", - "BootstrapIncognito", - "BootstrapIndent", - "BootstrapInfinity", - "BootstrapInfoCircleFill", - "BootstrapInfoCircle", - "BootstrapInfoLg", - "BootstrapInfoSquareFill", - "BootstrapInfoSquare", - "BootstrapInfo", - "BootstrapInputCursorText", - "BootstrapInputCursor", - "BootstrapInstagram", - "BootstrapIntersect", - "BootstrapJournalAlbum", - "BootstrapJournalArrowDown", - "BootstrapJournalArrowUp", - "BootstrapJournalBookmarkFill", - "BootstrapJournalBookmark", - "BootstrapJournalCheck", - "BootstrapJournalCode", - "BootstrapJournalMedical", - "BootstrapJournalMinus", - "BootstrapJournalPlus", - "BootstrapJournalRichtext", - "BootstrapJournalText", - "BootstrapJournalX", - "BootstrapJournal", - "BootstrapJournals", - "BootstrapJoystick", - "BootstrapJustifyLeft", - "BootstrapJustifyRight", - "BootstrapJustify", - "BootstrapKanbanFill", - "BootstrapKanban", - "BootstrapKeyFill", - "BootstrapKey", - "BootstrapKeyboardFill", - "BootstrapKeyboard", - "BootstrapLadder", - "BootstrapLampFill", - "BootstrapLamp", - "BootstrapLaptopFill", - "BootstrapLaptop", - "BootstrapLayerBackward", - "BootstrapLayerForward", - "BootstrapLayersFill", - "BootstrapLayersHalf", - "BootstrapLayers", - "BootstrapLayoutSidebarInsetReverse", - "BootstrapLayoutSidebarInset", - "BootstrapLayoutSidebarReverse", - "BootstrapLayoutSidebar", - "BootstrapLayoutSplit", - "BootstrapLayoutTextSidebarReverse", - "BootstrapLayoutTextSidebar", - "BootstrapLayoutTextWindowReverse", - "BootstrapLayoutTextWindow", - "BootstrapLayoutThreeColumns", - "BootstrapLayoutWtf", - "BootstrapLifePreserver", - "BootstrapLightbulbFill", - "BootstrapLightbulbOffFill", - "BootstrapLightbulbOff", - "BootstrapLightbulb", - "BootstrapLightningChargeFill", - "BootstrapLightningCharge", - "BootstrapLightningFill", - "BootstrapLightning", - "BootstrapLine", - "BootstrapLink45Deg", - "BootstrapLink", - "BootstrapLinkedin", - "BootstrapListCheck", - "BootstrapListColumnsReverse", - "BootstrapListColumns", - "BootstrapListNested", - "BootstrapListOl", - "BootstrapListStars", - "BootstrapListTask", - "BootstrapListUl", - "BootstrapList", - "BootstrapLockFill", - "BootstrapLock", - "BootstrapLungsFill", - "BootstrapLungs", - "BootstrapMagic", - "BootstrapMagnetFill", - "BootstrapMagnet", - "BootstrapMailbox", - "BootstrapMailbox2", - "BootstrapMapFill", - "BootstrapMap", - "BootstrapMarkdownFill", - "BootstrapMarkdown", - "BootstrapMask", - "BootstrapMastodon", - "BootstrapMedium", - "BootstrapMegaphoneFill", - "BootstrapMegaphone", - "BootstrapMemory", - "BootstrapMenuAppFill", - "BootstrapMenuApp", - "BootstrapMenuButtonFill", - "BootstrapMenuButtonWideFill", - "BootstrapMenuButtonWide", - "BootstrapMenuButton", - "BootstrapMenuDown", - "BootstrapMenuUp", - "BootstrapMessenger", - "BootstrapMeta", - "BootstrapMicFill", - "BootstrapMicMuteFill", - "BootstrapMicMute", - "BootstrapMic", - "BootstrapMicrosoftTeams", - "BootstrapMicrosoft", - "BootstrapMinecartLoaded", - "BootstrapMinecart", - "BootstrapModemFill", - "BootstrapModem", - "BootstrapMoisture", - "BootstrapMoonFill", - "BootstrapMoonStarsFill", - "BootstrapMoonStars", - "BootstrapMoon", - "BootstrapMortarboardFill", - "BootstrapMortarboard", - "BootstrapMotherboardFill", - "BootstrapMotherboard", - "BootstrapMouseFill", - "BootstrapMouse", - "BootstrapMouse2Fill", - "BootstrapMouse2", - "BootstrapMouse3Fill", - "BootstrapMouse3", - "BootstrapMusicNoteBeamed", - "BootstrapMusicNoteList", - "BootstrapMusicNote", - "BootstrapMusicPlayerFill", - "BootstrapMusicPlayer", - "BootstrapNewspaper", - "BootstrapNintendoSwitch", - "BootstrapNodeMinusFill", - "BootstrapNodeMinus", - "BootstrapNodePlusFill", - "BootstrapNodePlus", - "BootstrapNutFill", - "BootstrapNut", - "BootstrapNvidia", - "BootstrapOctagonFill", - "BootstrapOctagonHalf", - "BootstrapOctagon", - "BootstrapOpticalAudioFill", - "BootstrapOpticalAudio", - "BootstrapOption", - "BootstrapOutlet", - "BootstrapPCircleFill", - "BootstrapPCircle", - "BootstrapPSquareFill", - "BootstrapPSquare", - "BootstrapPaintBucket", - "BootstrapPaletteFill", - "BootstrapPalette", - "BootstrapPalette2", - "BootstrapPaperclip", - "BootstrapParagraph", - "BootstrapPassFill", - "BootstrapPass", - "BootstrapPatchCheckFill", - "BootstrapPatchCheck", - "BootstrapPatchExclamationFill", - "BootstrapPatchExclamation", - "BootstrapPatchMinusFill", - "BootstrapPatchMinus", - "BootstrapPatchPlusFill", - "BootstrapPatchPlus", - "BootstrapPatchQuestionFill", - "BootstrapPatchQuestion", - "BootstrapPauseBtnFill", - "BootstrapPauseBtn", - "BootstrapPauseCircleFill", - "BootstrapPauseCircle", - "BootstrapPauseFill", - "BootstrapPause", - "BootstrapPaypal", - "BootstrapPcDisplayHorizontal", - "BootstrapPcDisplay", - "BootstrapPcHorizontal", - "BootstrapPc", - "BootstrapPciCard", - "BootstrapPeaceFill", - "BootstrapPeace", - "BootstrapPenFill", - "BootstrapPen", - "BootstrapPencilFill", - "BootstrapPencilSquare", - "BootstrapPencil", - "BootstrapPentagonFill", - "BootstrapPentagonHalf", - "BootstrapPentagon", - "BootstrapPeopleFill", - "BootstrapPeople", - "BootstrapPercent", - "BootstrapPersonAdd", - "BootstrapPersonBadgeFill", - "BootstrapPersonBadge", - "BootstrapPersonBoundingBox", - "BootstrapPersonCheckFill", - "BootstrapPersonCheck", - "BootstrapPersonCircle", - "BootstrapPersonDashFill", - "BootstrapPersonDash", - "BootstrapPersonDown", - "BootstrapPersonExclamation", - "BootstrapPersonFillAdd", - "BootstrapPersonFillCheck", - "BootstrapPersonFillDash", - "BootstrapPersonFillDown", - "BootstrapPersonFillExclamation", - "BootstrapPersonFillGear", - "BootstrapPersonFillLock", - "BootstrapPersonFillSlash", - "BootstrapPersonFillUp", - "BootstrapPersonFillX", - "BootstrapPersonFill", - "BootstrapPersonGear", - "BootstrapPersonHeart", - "BootstrapPersonHearts", - "BootstrapPersonLinesFill", - "BootstrapPersonLock", - "BootstrapPersonPlusFill", - "BootstrapPersonPlus", - "BootstrapPersonRolodex", - "BootstrapPersonSlash", - "BootstrapPersonSquare", - "BootstrapPersonUp", - "BootstrapPersonVcardFill", - "BootstrapPersonVcard", - "BootstrapPersonVideo", - "BootstrapPersonVideo2", - "BootstrapPersonVideo3", - "BootstrapPersonWorkspace", - "BootstrapPersonXFill", - "BootstrapPersonX", - "BootstrapPerson", - "BootstrapPhoneFill", - "BootstrapPhoneFlip", - "BootstrapPhoneLandscapeFill", - "BootstrapPhoneLandscape", - "BootstrapPhoneVibrateFill", - "BootstrapPhoneVibrate", - "BootstrapPhone", - "BootstrapPieChartFill", - "BootstrapPieChart", - "BootstrapPiggyBankFill", - "BootstrapPiggyBank", - "BootstrapPinAngleFill", - "BootstrapPinAngle", - "BootstrapPinFill", - "BootstrapPinMapFill", - "BootstrapPinMap", - "BootstrapPin", - "BootstrapPinterest", - "BootstrapPipFill", - "BootstrapPip", - "BootstrapPlayBtnFill", - "BootstrapPlayBtn", - "BootstrapPlayCircleFill", - "BootstrapPlayCircle", - "BootstrapPlayFill", - "BootstrapPlay", - "BootstrapPlaystation", - "BootstrapPlugFill", - "BootstrapPlug", - "BootstrapPlugin", - "BootstrapPlusCircleDotted", - "BootstrapPlusCircleFill", - "BootstrapPlusCircle", - "BootstrapPlusLg", - "BootstrapPlusSlashMinus", - "BootstrapPlusSquareDotted", - "BootstrapPlusSquareFill", - "BootstrapPlusSquare", - "BootstrapPlus", - "BootstrapPostageFill", - "BootstrapPostageHeartFill", - "BootstrapPostageHeart", - "BootstrapPostage", - "BootstrapPostcardFill", - "BootstrapPostcardHeartFill", - "BootstrapPostcardHeart", - "BootstrapPostcard", - "BootstrapPower", - "BootstrapPrescription", - "BootstrapPrescription2", - "BootstrapPrinterFill", - "BootstrapPrinter", - "BootstrapProjectorFill", - "BootstrapProjector", - "BootstrapPuzzleFill", - "BootstrapPuzzle", - "BootstrapQrCodeScan", - "BootstrapQrCode", - "BootstrapQuestionCircleFill", - "BootstrapQuestionCircle", - "BootstrapQuestionDiamondFill", - "BootstrapQuestionDiamond", - "BootstrapQuestionLg", - "BootstrapQuestionOctagonFill", - "BootstrapQuestionOctagon", - "BootstrapQuestionSquareFill", - "BootstrapQuestionSquare", - "BootstrapQuestion", - "BootstrapQuora", - "BootstrapQuote", - "BootstrapRCircleFill", - "BootstrapRCircle", - "BootstrapRSquareFill", - "BootstrapRSquare", - "BootstrapRadioactive", - "BootstrapRainbow", - "BootstrapReceiptCutoff", - "BootstrapReceipt", - "BootstrapReception0", - "BootstrapReception1", - "BootstrapReception2", - "BootstrapReception3", - "BootstrapReception4", - "BootstrapRecordBtnFill", - "BootstrapRecordBtn", - "BootstrapRecordCircleFill", - "BootstrapRecordCircle", - "BootstrapRecordFill", - "BootstrapRecord", - "BootstrapRecord2Fill", - "BootstrapRecord2", - "BootstrapRecycle", - "BootstrapReddit", - "BootstrapRegex", - "BootstrapRepeat1", - "BootstrapRepeat", - "BootstrapReplyAllFill", - "BootstrapReplyAll", - "BootstrapReplyFill", - "BootstrapReply", - "BootstrapRewindBtnFill", - "BootstrapRewindBtn", - "BootstrapRewindCircleFill", - "BootstrapRewindCircle", - "BootstrapRewindFill", - "BootstrapRewind", - "BootstrapRobot", - "BootstrapRocketFill", - "BootstrapRocketTakeoffFill", - "BootstrapRocketTakeoff", - "BootstrapRocket", - "BootstrapRouterFill", - "BootstrapRouter", - "BootstrapRssFill", - "BootstrapRss", - "BootstrapRulers", - "BootstrapSafeFill", - "BootstrapSafe", - "BootstrapSafe2Fill", - "BootstrapSafe2", - "BootstrapSaveFill", - "BootstrapSave", - "BootstrapSave2Fill", - "BootstrapSave2", - "BootstrapScissors", - "BootstrapScooter", - "BootstrapScrewdriver", - "BootstrapSdCardFill", - "BootstrapSdCard", - "BootstrapSearchHeartFill", - "BootstrapSearchHeart", - "BootstrapSearch", - "BootstrapSegmentedNav", - "BootstrapSendCheckFill", - "BootstrapSendCheck", - "BootstrapSendDashFill", - "BootstrapSendDash", - "BootstrapSendExclamationFill", - "BootstrapSendExclamation", - "BootstrapSendFill", - "BootstrapSendPlusFill", - "BootstrapSendPlus", - "BootstrapSendSlashFill", - "BootstrapSendSlash", - "BootstrapSendXFill", - "BootstrapSendX", - "BootstrapSend", - "BootstrapServer", - "BootstrapShareFill", - "BootstrapShare", - "BootstrapShieldCheck", - "BootstrapShieldExclamation", - "BootstrapShieldFillCheck", - "BootstrapShieldFillExclamation", - "BootstrapShieldFillMinus", - "BootstrapShieldFillPlus", - "BootstrapShieldFillX", - "BootstrapShieldFill", - "BootstrapShieldLockFill", - "BootstrapShieldLock", - "BootstrapShieldMinus", - "BootstrapShieldPlus", - "BootstrapShieldShaded", - "BootstrapShieldSlashFill", - "BootstrapShieldSlash", - "BootstrapShieldX", - "BootstrapShield", - "BootstrapShiftFill", - "BootstrapShift", - "BootstrapShopWindow", - "BootstrapShop", - "BootstrapShuffle", - "BootstrapSignDeadEndFill", - "BootstrapSignDeadEnd", - "BootstrapSignDoNotEnterFill", - "BootstrapSignDoNotEnter", - "BootstrapSignIntersectionFill", - "BootstrapSignIntersectionSideFill", - "BootstrapSignIntersectionSide", - "BootstrapSignIntersectionTFill", - "BootstrapSignIntersectionT", - "BootstrapSignIntersectionYFill", - "BootstrapSignIntersectionY", - "BootstrapSignIntersection", - "BootstrapSignMergeLeftFill", - "BootstrapSignMergeLeft", - "BootstrapSignMergeRightFill", - "BootstrapSignMergeRight", - "BootstrapSignNoLeftTurnFill", - "BootstrapSignNoLeftTurn", - "BootstrapSignNoParkingFill", - "BootstrapSignNoParking", - "BootstrapSignNoRightTurnFill", - "BootstrapSignNoRightTurn", - "BootstrapSignRailroadFill", - "BootstrapSignRailroad", - "BootstrapSignStopFill", - "BootstrapSignStopLightsFill", - "BootstrapSignStopLights", - "BootstrapSignStop", - "BootstrapSignTurnLeftFill", - "BootstrapSignTurnLeft", - "BootstrapSignTurnRightFill", - "BootstrapSignTurnRight", - "BootstrapSignTurnSlightLeftFill", - "BootstrapSignTurnSlightLeft", - "BootstrapSignTurnSlightRightFill", - "BootstrapSignTurnSlightRight", - "BootstrapSignYieldFill", - "BootstrapSignYield", - "BootstrapSignal", - "BootstrapSignpost2Fill", - "BootstrapSignpost2", - "BootstrapSignpostFill", - "BootstrapSignpostSplitFill", - "BootstrapSignpostSplit", - "BootstrapSignpost", - "BootstrapSimFill", - "BootstrapSim", - "BootstrapSinaWeibo", - "BootstrapSkipBackwardBtnFill", - "BootstrapSkipBackwardBtn", - "BootstrapSkipBackwardCircleFill", - "BootstrapSkipBackwardCircle", - "BootstrapSkipBackwardFill", - "BootstrapSkipBackward", - "BootstrapSkipEndBtnFill", - "BootstrapSkipEndBtn", - "BootstrapSkipEndCircleFill", - "BootstrapSkipEndCircle", - "BootstrapSkipEndFill", - "BootstrapSkipEnd", - "BootstrapSkipForwardBtnFill", - "BootstrapSkipForwardBtn", - "BootstrapSkipForwardCircleFill", - "BootstrapSkipForwardCircle", - "BootstrapSkipForwardFill", - "BootstrapSkipForward", - "BootstrapSkipStartBtnFill", - "BootstrapSkipStartBtn", - "BootstrapSkipStartCircleFill", - "BootstrapSkipStartCircle", - "BootstrapSkipStartFill", - "BootstrapSkipStart", - "BootstrapSkype", - "BootstrapSlack", - "BootstrapSlashCircleFill", - "BootstrapSlashCircle", - "BootstrapSlashLg", - "BootstrapSlashSquareFill", - "BootstrapSlashSquare", - "BootstrapSlash", - "BootstrapSliders", - "BootstrapSliders2Vertical", - "BootstrapSliders2", - "BootstrapSmartwatch", - "BootstrapSnapchat", - "BootstrapSnow", - "BootstrapSnow2", - "BootstrapSnow3", - "BootstrapSortAlphaDownAlt", - "BootstrapSortAlphaDown", - "BootstrapSortAlphaUpAlt", - "BootstrapSortAlphaUp", - "BootstrapSortDownAlt", - "BootstrapSortDown", - "BootstrapSortNumericDownAlt", - "BootstrapSortNumericDown", - "BootstrapSortNumericUpAlt", - "BootstrapSortNumericUp", - "BootstrapSortUpAlt", - "BootstrapSortUp", - "BootstrapSoundwave", - "BootstrapSpeakerFill", - "BootstrapSpeaker", - "BootstrapSpeedometer", - "BootstrapSpeedometer2", - "BootstrapSpellcheck", - "BootstrapSpotify", - "BootstrapSquareFill", - "BootstrapSquareHalf", - "BootstrapSquare", - "BootstrapStackOverflow", - "BootstrapStack", - "BootstrapStarFill", - "BootstrapStarHalf", - "BootstrapStar", - "BootstrapStars", - "BootstrapSteam", - "BootstrapStickiesFill", - "BootstrapStickies", - "BootstrapStickyFill", - "BootstrapSticky", - "BootstrapStopBtnFill", - "BootstrapStopBtn", - "BootstrapStopCircleFill", - "BootstrapStopCircle", - "BootstrapStopFill", - "BootstrapStop", - "BootstrapStoplightsFill", - "BootstrapStoplights", - "BootstrapStopwatchFill", - "BootstrapStopwatch", - "BootstrapStrava", - "BootstrapStripe", - "BootstrapSubscript", - "BootstrapSubtract", - "BootstrapSuitClubFill", - "BootstrapSuitClub", - "BootstrapSuitDiamondFill", - "BootstrapSuitDiamond", - "BootstrapSuitHeartFill", - "BootstrapSuitHeart", - "BootstrapSuitSpadeFill", - "BootstrapSuitSpade", - "BootstrapSunFill", - "BootstrapSun", - "BootstrapSunglasses", - "BootstrapSunriseFill", - "BootstrapSunrise", - "BootstrapSunsetFill", - "BootstrapSunset", - "BootstrapSuperscript", - "BootstrapSymmetryHorizontal", - "BootstrapSymmetryVertical", - "BootstrapTable", - "BootstrapTabletFill", - "BootstrapTabletLandscapeFill", - "BootstrapTabletLandscape", - "BootstrapTablet", - "BootstrapTagFill", - "BootstrapTag", - "BootstrapTagsFill", - "BootstrapTags", - "BootstrapTaxiFrontFill", - "BootstrapTaxiFront", - "BootstrapTelegram", - "BootstrapTelephoneFill", - "BootstrapTelephoneForwardFill", - "BootstrapTelephoneForward", - "BootstrapTelephoneInboundFill", - "BootstrapTelephoneInbound", - "BootstrapTelephoneMinusFill", - "BootstrapTelephoneMinus", - "BootstrapTelephoneOutboundFill", - "BootstrapTelephoneOutbound", - "BootstrapTelephonePlusFill", - "BootstrapTelephonePlus", - "BootstrapTelephoneXFill", - "BootstrapTelephoneX", - "BootstrapTelephone", - "BootstrapTencentQq", - "BootstrapTerminalDash", - "BootstrapTerminalFill", - "BootstrapTerminalPlus", - "BootstrapTerminalSplit", - "BootstrapTerminalX", - "BootstrapTerminal", - "BootstrapTextCenter", - "BootstrapTextIndentLeft", - "BootstrapTextIndentRight", - "BootstrapTextLeft", - "BootstrapTextParagraph", - "BootstrapTextRight", - "BootstrapTextWrap", - "BootstrapTextareaResize", - "BootstrapTextareaT", - "BootstrapTextarea", - "BootstrapThermometerHalf", - "BootstrapThermometerHigh", - "BootstrapThermometerLow", - "BootstrapThermometerSnow", - "BootstrapThermometerSun", - "BootstrapThermometer", - "BootstrapThreeDotsVertical", - "BootstrapThreeDots", - "BootstrapThunderboltFill", - "BootstrapThunderbolt", - "BootstrapTicketDetailedFill", - "BootstrapTicketDetailed", - "BootstrapTicketFill", - "BootstrapTicketPerforatedFill", - "BootstrapTicketPerforated", - "BootstrapTicket", - "BootstrapTiktok", - "BootstrapToggleOff", - "BootstrapToggleOn", - "BootstrapToggle2Off", - "BootstrapToggle2On", - "BootstrapToggles", - "BootstrapToggles2", - "BootstrapTools", - "BootstrapTornado", - "BootstrapTrainFreightFrontFill", - "BootstrapTrainFreightFront", - "BootstrapTrainFrontFill", - "BootstrapTrainFront", - "BootstrapTrainLightrailFrontFill", - "BootstrapTrainLightrailFront", - "BootstrapTranslate", - "BootstrapTrashFill", - "BootstrapTrash", - "BootstrapTrash2Fill", - "BootstrapTrash2", - "BootstrapTrash3Fill", - "BootstrapTrash3", - "BootstrapTreeFill", - "BootstrapTree", - "BootstrapTrello", - "BootstrapTriangleFill", - "BootstrapTriangleHalf", - "BootstrapTriangle", - "BootstrapTrophyFill", - "BootstrapTrophy", - "BootstrapTropicalStorm", - "BootstrapTruckFlatbed", - "BootstrapTruckFrontFill", - "BootstrapTruckFront", - "BootstrapTruck", - "BootstrapTsunami", - "BootstrapTvFill", - "BootstrapTv", - "BootstrapTwitch", - "BootstrapTwitter", - "BootstrapTypeBold", - "BootstrapTypeH1", - "BootstrapTypeH2", - "BootstrapTypeH3", - "BootstrapTypeItalic", - "BootstrapTypeStrikethrough", - "BootstrapTypeUnderline", - "BootstrapType", - "BootstrapUbuntu", - "BootstrapUiChecksGrid", - "BootstrapUiChecks", - "BootstrapUiRadiosGrid", - "BootstrapUiRadios", - "BootstrapUmbrellaFill", - "BootstrapUmbrella", - "BootstrapUnindent", - "BootstrapUnion", - "BootstrapUnity", - "BootstrapUniversalAccessCircle", - "BootstrapUniversalAccess", - "BootstrapUnlockFill", - "BootstrapUnlock", - "BootstrapUpcScan", - "BootstrapUpc", - "BootstrapUpload", - "BootstrapUsbCFill", - "BootstrapUsbC", - "BootstrapUsbDriveFill", - "BootstrapUsbDrive", - "BootstrapUsbFill", - "BootstrapUsbMicroFill", - "BootstrapUsbMicro", - "BootstrapUsbMiniFill", - "BootstrapUsbMini", - "BootstrapUsbPlugFill", - "BootstrapUsbPlug", - "BootstrapUsbSymbol", - "BootstrapUsb", - "BootstrapValentine", - "BootstrapValentine2", - "BootstrapVectorPen", - "BootstrapViewList", - "BootstrapViewStacked", - "BootstrapVimeo", - "BootstrapVinylFill", - "BootstrapVinyl", - "BootstrapVirus", - "BootstrapVirus2", - "BootstrapVoicemail", - "BootstrapVolumeDownFill", - "BootstrapVolumeDown", - "BootstrapVolumeMuteFill", - "BootstrapVolumeMute", - "BootstrapVolumeOffFill", - "BootstrapVolumeOff", - "BootstrapVolumeUpFill", - "BootstrapVolumeUp", - "BootstrapVr", - "BootstrapWalletFill", - "BootstrapWallet", - "BootstrapWallet2", - "BootstrapWatch", - "BootstrapWater", - "BootstrapWebcamFill", - "BootstrapWebcam", - "BootstrapWechat", - "BootstrapWhatsapp", - "BootstrapWifi1", - "BootstrapWifi2", - "BootstrapWifiOff", - "BootstrapWifi", - "BootstrapWikipedia", - "BootstrapWind", - "BootstrapWindowDash", - "BootstrapWindowDesktop", - "BootstrapWindowDock", - "BootstrapWindowFullscreen", - "BootstrapWindowPlus", - "BootstrapWindowSidebar", - "BootstrapWindowSplit", - "BootstrapWindowStack", - "BootstrapWindowX", - "BootstrapWindow", - "BootstrapWindows", - "BootstrapWordpress", - "BootstrapWrenchAdjustableCircleFill", - "BootstrapWrenchAdjustableCircle", - "BootstrapWrenchAdjustable", - "BootstrapWrench", - "BootstrapXCircleFill", - "BootstrapXCircle", - "BootstrapXDiamondFill", - "BootstrapXDiamond", - "BootstrapXLg", - "BootstrapXOctagonFill", - "BootstrapXOctagon", - "BootstrapXSquareFill", - "BootstrapXSquare", - "BootstrapX", - "BootstrapXbox", - "BootstrapYelp", - "BootstrapYinYang", - "BootstrapYoutube", - "BootstrapZoomIn", - "BootstrapZoomOut" - ], - "convert_case": [ - "dep:convert_case" - ], - "data_uri": [], - "default": [ - "data_uri" - ], - "enum-iterator": [ - "dep:enum-iterator" - ], - "extra": [ - "ExtraGooglePlay" - ], - "feather": [ - "FeatherActivity", - "FeatherAirplay", - "FeatherAlertCircle", - "FeatherAlertOctagon", - "FeatherAlertTriangle", - "FeatherAlignCenter", - "FeatherAlignJustify", - "FeatherAlignLeft", - "FeatherAlignRight", - "FeatherAnchor", - "FeatherAperture", - "FeatherArchive", - "FeatherArrowDownCircle", - "FeatherArrowDownLeft", - "FeatherArrowDownRight", - "FeatherArrowDown", - "FeatherArrowLeftCircle", - "FeatherArrowLeft", - "FeatherArrowRightCircle", - "FeatherArrowRight", - "FeatherArrowUpCircle", - "FeatherArrowUpLeft", - "FeatherArrowUpRight", - "FeatherArrowUp", - "FeatherAtSign", - "FeatherAward", - "FeatherBarChart2", - "FeatherBarChart", - "FeatherBatteryCharging", - "FeatherBattery", - "FeatherBellOff", - "FeatherBell", - "FeatherBluetooth", - "FeatherBold", - "FeatherBookOpen", - "FeatherBook", - "FeatherBookmark", - "FeatherBox", - "FeatherBriefcase", - "FeatherCalendar", - "FeatherCameraOff", - "FeatherCamera", - "FeatherCast", - "FeatherCheckCircle", - "FeatherCheckSquare", - "FeatherCheck", - "FeatherChevronDown", - "FeatherChevronLeft", - "FeatherChevronRight", - "FeatherChevronUp", - "FeatherChevronsDown", - "FeatherChevronsLeft", - "FeatherChevronsRight", - "FeatherChevronsUp", - "FeatherChrome", - "FeatherCircle", - "FeatherClipboard", - "FeatherClock", - "FeatherCloudDrizzle", - "FeatherCloudLightning", - "FeatherCloudOff", - "FeatherCloudRain", - "FeatherCloudSnow", - "FeatherCloud", - "FeatherCode", - "FeatherCodepen", - "FeatherCodesandbox", - "FeatherCoffee", - "FeatherColumns", - "FeatherCommand", - "FeatherCompass", - "FeatherCopy", - "FeatherCornerDownLeft", - "FeatherCornerDownRight", - "FeatherCornerLeftDown", - "FeatherCornerLeftUp", - "FeatherCornerRightDown", - "FeatherCornerRightUp", - "FeatherCornerUpLeft", - "FeatherCornerUpRight", - "FeatherCpu", - "FeatherCreditCard", - "FeatherCrop", - "FeatherCrosshair", - "FeatherDatabase", - "FeatherDelete", - "FeatherDisc", - "FeatherDivideCircle", - "FeatherDivideSquare", - "FeatherDivide", - "FeatherDollarSign", - "FeatherDownloadCloud", - "FeatherDownload", - "FeatherDribbble", - "FeatherDroplet", - "FeatherEdit2", - "FeatherEdit3", - "FeatherEdit", - "FeatherExternalLink", - "FeatherEyeOff", - "FeatherEye", - "FeatherFacebook", - "FeatherFastForward", - "FeatherFeather", - "FeatherFigma", - "FeatherFileMinus", - "FeatherFilePlus", - "FeatherFileText", - "FeatherFile", - "FeatherFilm", - "FeatherFilter", - "FeatherFlag", - "FeatherFolderMinus", - "FeatherFolderPlus", - "FeatherFolder", - "FeatherFramer", - "FeatherFrown", - "FeatherGift", - "FeatherGitBranch", - "FeatherGitCommit", - "FeatherGitMerge", - "FeatherGitPullRequest", - "FeatherGithub", - "FeatherGitlab", - "FeatherGlobe", - "FeatherGrid", - "FeatherHardDrive", - "FeatherHash", - "FeatherHeadphones", - "FeatherHeart", - "FeatherHelpCircle", - "FeatherHexagon", - "FeatherHome", - "FeatherImage", - "FeatherInbox", - "FeatherInfo", - "FeatherInstagram", - "FeatherItalic", - "FeatherKey", - "FeatherLayers", - "FeatherLayout", - "FeatherLifeBuoy", - "FeatherLink2", - "FeatherLink", - "FeatherLinkedin", - "FeatherList", - "FeatherLoader", - "FeatherLock", - "FeatherLogIn", - "FeatherLogOut", - "FeatherMail", - "FeatherMapPin", - "FeatherMap", - "FeatherMaximize2", - "FeatherMaximize", - "FeatherMeh", - "FeatherMenu", - "FeatherMessageCircle", - "FeatherMessageSquare", - "FeatherMicOff", - "FeatherMic", - "FeatherMinimize2", - "FeatherMinimize", - "FeatherMinusCircle", - "FeatherMinusSquare", - "FeatherMinus", - "FeatherMonitor", - "FeatherMoon", - "FeatherMoreHorizontal", - "FeatherMoreVertical", - "FeatherMousePointer", - "FeatherMove", - "FeatherMusic", - "FeatherNavigation2", - "FeatherNavigation", - "FeatherOctagon", - "FeatherPackage", - "FeatherPaperclip", - "FeatherPauseCircle", - "FeatherPause", - "FeatherPenTool", - "FeatherPercent", - "FeatherPhoneCall", - "FeatherPhoneForwarded", - "FeatherPhoneIncoming", - "FeatherPhoneMissed", - "FeatherPhoneOff", - "FeatherPhoneOutgoing", - "FeatherPhone", - "FeatherPieChart", - "FeatherPlayCircle", - "FeatherPlay", - "FeatherPlusCircle", - "FeatherPlusSquare", - "FeatherPlus", - "FeatherPocket", - "FeatherPower", - "FeatherPrinter", - "FeatherRadio", - "FeatherRefreshCcw", - "FeatherRefreshCw", - "FeatherRepeat", - "FeatherRewind", - "FeatherRotateCcw", - "FeatherRotateCw", - "FeatherRss", - "FeatherSave", - "FeatherScissors", - "FeatherSearch", - "FeatherSend", - "FeatherServer", - "FeatherSettings", - "FeatherShare2", - "FeatherShare", - "FeatherShieldOff", - "FeatherShield", - "FeatherShoppingBag", - "FeatherShoppingCart", - "FeatherShuffle", - "FeatherSidebar", - "FeatherSkipBack", - "FeatherSkipForward", - "FeatherSlack", - "FeatherSlash", - "FeatherSliders", - "FeatherSmartphone", - "FeatherSmile", - "FeatherSpeaker", - "FeatherSquare", - "FeatherStar", - "FeatherStopCircle", - "FeatherSun", - "FeatherSunrise", - "FeatherSunset", - "FeatherTable", - "FeatherTablet", - "FeatherTag", - "FeatherTarget", - "FeatherTerminal", - "FeatherThermometer", - "FeatherThumbsDown", - "FeatherThumbsUp", - "FeatherToggleLeft", - "FeatherToggleRight", - "FeatherTool", - "FeatherTrash2", - "FeatherTrash", - "FeatherTrello", - "FeatherTrendingDown", - "FeatherTrendingUp", - "FeatherTriangle", - "FeatherTruck", - "FeatherTv", - "FeatherTwitch", - "FeatherTwitter", - "FeatherType", - "FeatherUmbrella", - "FeatherUnderline", - "FeatherUnlock", - "FeatherUploadCloud", - "FeatherUpload", - "FeatherUserCheck", - "FeatherUserMinus", - "FeatherUserPlus", - "FeatherUserX", - "FeatherUser", - "FeatherUsers", - "FeatherVideoOff", - "FeatherVideo", - "FeatherVoicemail", - "FeatherVolume1", - "FeatherVolume2", - "FeatherVolumeX", - "FeatherVolume", - "FeatherWatch", - "FeatherWifiOff", - "FeatherWifi", - "FeatherWind", - "FeatherXCircle", - "FeatherXOctagon", - "FeatherXSquare", - "FeatherX", - "FeatherYoutube", - "FeatherZapOff", - "FeatherZap", - "FeatherZoomIn", - "FeatherZoomOut" - ], - "font_awesome_regular": [ - "FontAwesomeRegularAddressBook", - "FontAwesomeRegularAddressCard", - "FontAwesomeRegularBellSlash", - "FontAwesomeRegularBell", - "FontAwesomeRegularBookmark", - "FontAwesomeRegularBuilding", - "FontAwesomeRegularCalendarCheck", - "FontAwesomeRegularCalendarDays", - "FontAwesomeRegularCalendarMinus", - "FontAwesomeRegularCalendarPlus", - "FontAwesomeRegularCalendarXmark", - "FontAwesomeRegularCalendar", - "FontAwesomeRegularChartBar", - "FontAwesomeRegularChessBishop", - "FontAwesomeRegularChessKing", - "FontAwesomeRegularChessKnight", - "FontAwesomeRegularChessPawn", - "FontAwesomeRegularChessQueen", - "FontAwesomeRegularChessRook", - "FontAwesomeRegularCircleCheck", - "FontAwesomeRegularCircleDot", - "FontAwesomeRegularCircleDown", - "FontAwesomeRegularCircleLeft", - "FontAwesomeRegularCirclePause", - "FontAwesomeRegularCirclePlay", - "FontAwesomeRegularCircleQuestion", - "FontAwesomeRegularCircleRight", - "FontAwesomeRegularCircleStop", - "FontAwesomeRegularCircleUp", - "FontAwesomeRegularCircleUser", - "FontAwesomeRegularCircleXmark", - "FontAwesomeRegularCircle", - "FontAwesomeRegularClipboard", - "FontAwesomeRegularClock", - "FontAwesomeRegularClone", - "FontAwesomeRegularClosedCaptioning", - "FontAwesomeRegularCommentDots", - "FontAwesomeRegularComment", - "FontAwesomeRegularComments", - "FontAwesomeRegularCompass", - "FontAwesomeRegularCopy", - "FontAwesomeRegularCopyright", - "FontAwesomeRegularCreditCard", - "FontAwesomeRegularEnvelopeOpen", - "FontAwesomeRegularEnvelope", - "FontAwesomeRegularEyeSlash", - "FontAwesomeRegularEye", - "FontAwesomeRegularFaceAngry", - "FontAwesomeRegularFaceDizzy", - "FontAwesomeRegularFaceFlushed", - "FontAwesomeRegularFaceFrownOpen", - "FontAwesomeRegularFaceFrown", - "FontAwesomeRegularFaceGrimace", - "FontAwesomeRegularFaceGrinBeamSweat", - "FontAwesomeRegularFaceGrinBeam", - "FontAwesomeRegularFaceGrinHearts", - "FontAwesomeRegularFaceGrinSquintTears", - "FontAwesomeRegularFaceGrinSquint", - "FontAwesomeRegularFaceGrinStars", - "FontAwesomeRegularFaceGrinTears", - "FontAwesomeRegularFaceGrinTongueSquint", - "FontAwesomeRegularFaceGrinTongueWink", - "FontAwesomeRegularFaceGrinTongue", - "FontAwesomeRegularFaceGrinWide", - "FontAwesomeRegularFaceGrinWink", - "FontAwesomeRegularFaceGrin", - "FontAwesomeRegularFaceKissBeam", - "FontAwesomeRegularFaceKissWinkHeart", - "FontAwesomeRegularFaceKiss", - "FontAwesomeRegularFaceLaughBeam", - "FontAwesomeRegularFaceLaughSquint", - "FontAwesomeRegularFaceLaughWink", - "FontAwesomeRegularFaceLaugh", - "FontAwesomeRegularFaceMehBlank", - "FontAwesomeRegularFaceMeh", - "FontAwesomeRegularFaceRollingEyes", - "FontAwesomeRegularFaceSadCry", - "FontAwesomeRegularFaceSadTear", - "FontAwesomeRegularFaceSmileBeam", - "FontAwesomeRegularFaceSmileWink", - "FontAwesomeRegularFaceSmile", - "FontAwesomeRegularFaceSurprise", - "FontAwesomeRegularFaceTired", - "FontAwesomeRegularFileAudio", - "FontAwesomeRegularFileCode", - "FontAwesomeRegularFileExcel", - "FontAwesomeRegularFileImage", - "FontAwesomeRegularFileLines", - "FontAwesomeRegularFilePdf", - "FontAwesomeRegularFilePowerpoint", - "FontAwesomeRegularFileVideo", - "FontAwesomeRegularFileWord", - "FontAwesomeRegularFileZipper", - "FontAwesomeRegularFile", - "FontAwesomeRegularFlag", - "FontAwesomeRegularFloppyDisk", - "FontAwesomeRegularFolderClosed", - "FontAwesomeRegularFolderOpen", - "FontAwesomeRegularFolder", - "FontAwesomeRegularFontAwesome", - "FontAwesomeRegularFutbol", - "FontAwesomeRegularGem", - "FontAwesomeRegularHandBackFist", - "FontAwesomeRegularHandLizard", - "FontAwesomeRegularHandPeace", - "FontAwesomeRegularHandPointDown", - "FontAwesomeRegularHandPointLeft", - "FontAwesomeRegularHandPointRight", - "FontAwesomeRegularHandPointUp", - "FontAwesomeRegularHandPointer", - "FontAwesomeRegularHandScissors", - "FontAwesomeRegularHandSpock", - "FontAwesomeRegularHand", - "FontAwesomeRegularHandshake", - "FontAwesomeRegularHardDrive", - "FontAwesomeRegularHeart", - "FontAwesomeRegularHospital", - "FontAwesomeRegularHourglass", - "FontAwesomeRegularIdBadge", - "FontAwesomeRegularIdCard", - "FontAwesomeRegularImage", - "FontAwesomeRegularImages", - "FontAwesomeRegularKeyboard", - "FontAwesomeRegularLemon", - "FontAwesomeRegularLifeRing", - "FontAwesomeRegularLightbulb", - "FontAwesomeRegularMap", - "FontAwesomeRegularMessage", - "FontAwesomeRegularMoneyBill1", - "FontAwesomeRegularMoon", - "FontAwesomeRegularNewspaper", - "FontAwesomeRegularNoteSticky", - "FontAwesomeRegularObjectGroup", - "FontAwesomeRegularObjectUngroup", - "FontAwesomeRegularPaperPlane", - "FontAwesomeRegularPaste", - "FontAwesomeRegularPenToSquare", - "FontAwesomeRegularRectangleList", - "FontAwesomeRegularRectangleXmark", - "FontAwesomeRegularRegistered", - "FontAwesomeRegularShareFromSquare", - "FontAwesomeRegularSnowflake", - "FontAwesomeRegularSquareCaretDown", - "FontAwesomeRegularSquareCaretLeft", - "FontAwesomeRegularSquareCaretRight", - "FontAwesomeRegularSquareCaretUp", - "FontAwesomeRegularSquareCheck", - "FontAwesomeRegularSquareFull", - "FontAwesomeRegularSquareMinus", - "FontAwesomeRegularSquarePlus", - "FontAwesomeRegularSquare", - "FontAwesomeRegularStarHalfStroke", - "FontAwesomeRegularStarHalf", - "FontAwesomeRegularStar", - "FontAwesomeRegularSun", - "FontAwesomeRegularThumbsDown", - "FontAwesomeRegularThumbsUp", - "FontAwesomeRegularTrashCan", - "FontAwesomeRegularUser", - "FontAwesomeRegularWindowMaximize", - "FontAwesomeRegularWindowMinimize", - "FontAwesomeRegularWindowRestore" - ], - "font_awesome_solid": [ - "FontAwesomeSolid0", - "FontAwesomeSolid1", - "FontAwesomeSolid2", - "FontAwesomeSolid3", - "FontAwesomeSolid4", - "FontAwesomeSolid5", - "FontAwesomeSolid6", - "FontAwesomeSolid7", - "FontAwesomeSolid8", - "FontAwesomeSolid9", - "FontAwesomeSolidA", - "FontAwesomeSolidAddressBook", - "FontAwesomeSolidAddressCard", - "FontAwesomeSolidAlignCenter", - "FontAwesomeSolidAlignJustify", - "FontAwesomeSolidAlignLeft", - "FontAwesomeSolidAlignRight", - "FontAwesomeSolidAnchorCircleCheck", - "FontAwesomeSolidAnchorCircleExclamation", - "FontAwesomeSolidAnchorCircleXmark", - "FontAwesomeSolidAnchorLock", - "FontAwesomeSolidAnchor", - "FontAwesomeSolidAngleDown", - "FontAwesomeSolidAngleLeft", - "FontAwesomeSolidAngleRight", - "FontAwesomeSolidAngleUp", - "FontAwesomeSolidAnglesDown", - "FontAwesomeSolidAnglesLeft", - "FontAwesomeSolidAnglesRight", - "FontAwesomeSolidAnglesUp", - "FontAwesomeSolidAnkh", - "FontAwesomeSolidAppleWhole", - "FontAwesomeSolidArchway", - "FontAwesomeSolidArrowDown19", - "FontAwesomeSolidArrowDown91", - "FontAwesomeSolidArrowDownAZ", - "FontAwesomeSolidArrowDownLong", - "FontAwesomeSolidArrowDownShortWide", - "FontAwesomeSolidArrowDownUpAcrossLine", - "FontAwesomeSolidArrowDownUpLock", - "FontAwesomeSolidArrowDownWideShort", - "FontAwesomeSolidArrowDownZA", - "FontAwesomeSolidArrowDown", - "FontAwesomeSolidArrowLeftLong", - "FontAwesomeSolidArrowLeft", - "FontAwesomeSolidArrowPointer", - "FontAwesomeSolidArrowRightArrowLeft", - "FontAwesomeSolidArrowRightFromBracket", - "FontAwesomeSolidArrowRightLong", - "FontAwesomeSolidArrowRightToBracket", - "FontAwesomeSolidArrowRightToCity", - "FontAwesomeSolidArrowRight", - "FontAwesomeSolidArrowRotateLeft", - "FontAwesomeSolidArrowRotateRight", - "FontAwesomeSolidArrowTrendDown", - "FontAwesomeSolidArrowTrendUp", - "FontAwesomeSolidArrowTurnDown", - "FontAwesomeSolidArrowTurnUp", - "FontAwesomeSolidArrowUp19", - "FontAwesomeSolidArrowUp91", - "FontAwesomeSolidArrowUpAZ", - "FontAwesomeSolidArrowUpFromBracket", - "FontAwesomeSolidArrowUpFromGroundWater", - "FontAwesomeSolidArrowUpFromWaterPump", - "FontAwesomeSolidArrowUpLong", - "FontAwesomeSolidArrowUpRightDots", - "FontAwesomeSolidArrowUpRightFromSquare", - "FontAwesomeSolidArrowUpShortWide", - "FontAwesomeSolidArrowUpWideShort", - "FontAwesomeSolidArrowUpZA", - "FontAwesomeSolidArrowUp", - "FontAwesomeSolidArrowsDownToLine", - "FontAwesomeSolidArrowsDownToPeople", - "FontAwesomeSolidArrowsLeftRightToLine", - "FontAwesomeSolidArrowsLeftRight", - "FontAwesomeSolidArrowsRotate", - "FontAwesomeSolidArrowsSpin", - "FontAwesomeSolidArrowsSplitUpAndLeft", - "FontAwesomeSolidArrowsToCircle", - "FontAwesomeSolidArrowsToDot", - "FontAwesomeSolidArrowsToEye", - "FontAwesomeSolidArrowsTurnRight", - "FontAwesomeSolidArrowsTurnToDots", - "FontAwesomeSolidArrowsUpDownLeftRight", - "FontAwesomeSolidArrowsUpDown", - "FontAwesomeSolidArrowsUpToLine", - "FontAwesomeSolidAsterisk", - "FontAwesomeSolidAt", - "FontAwesomeSolidAtom", - "FontAwesomeSolidAudioDescription", - "FontAwesomeSolidAustralSign", - "FontAwesomeSolidAward", - "FontAwesomeSolidB", - "FontAwesomeSolidBabyCarriage", - "FontAwesomeSolidBaby", - "FontAwesomeSolidBackwardFast", - "FontAwesomeSolidBackwardStep", - "FontAwesomeSolidBackward", - "FontAwesomeSolidBacon", - "FontAwesomeSolidBacteria", - "FontAwesomeSolidBacterium", - "FontAwesomeSolidBagShopping", - "FontAwesomeSolidBahai", - "FontAwesomeSolidBahtSign", - "FontAwesomeSolidBanSmoking", - "FontAwesomeSolidBan", - "FontAwesomeSolidBandage", - "FontAwesomeSolidBarcode", - "FontAwesomeSolidBarsProgress", - "FontAwesomeSolidBarsStaggered", - "FontAwesomeSolidBars", - "FontAwesomeSolidBaseballBatBall", - "FontAwesomeSolidBaseball", - "FontAwesomeSolidBasketShopping", - "FontAwesomeSolidBasketball", - "FontAwesomeSolidBath", - "FontAwesomeSolidBatteryEmpty", - "FontAwesomeSolidBatteryFull", - "FontAwesomeSolidBatteryHalf", - "FontAwesomeSolidBatteryQuarter", - "FontAwesomeSolidBatteryThreeQuarters", - "FontAwesomeSolidBedPulse", - "FontAwesomeSolidBed", - "FontAwesomeSolidBeerMugEmpty", - "FontAwesomeSolidBellConcierge", - "FontAwesomeSolidBellSlash", - "FontAwesomeSolidBell", - "FontAwesomeSolidBezierCurve", - "FontAwesomeSolidBicycle", - "FontAwesomeSolidBinoculars", - "FontAwesomeSolidBiohazard", - "FontAwesomeSolidBitcoinSign", - "FontAwesomeSolidBlenderPhone", - "FontAwesomeSolidBlender", - "FontAwesomeSolidBlog", - "FontAwesomeSolidBold", - "FontAwesomeSolidBoltLightning", - "FontAwesomeSolidBolt", - "FontAwesomeSolidBomb", - "FontAwesomeSolidBone", - "FontAwesomeSolidBong", - "FontAwesomeSolidBookAtlas", - "FontAwesomeSolidBookBible", - "FontAwesomeSolidBookBookmark", - "FontAwesomeSolidBookJournalWhills", - "FontAwesomeSolidBookMedical", - "FontAwesomeSolidBookOpenReader", - "FontAwesomeSolidBookOpen", - "FontAwesomeSolidBookQuran", - "FontAwesomeSolidBookSkull", - "FontAwesomeSolidBook", - "FontAwesomeSolidBookmark", - "FontAwesomeSolidBorderAll", - "FontAwesomeSolidBorderNone", - "FontAwesomeSolidBorderTopLeft", - "FontAwesomeSolidBoreHole", - "FontAwesomeSolidBottleDroplet", - "FontAwesomeSolidBottleWater", - "FontAwesomeSolidBowlFood", - "FontAwesomeSolidBowlRice", - "FontAwesomeSolidBowlingBall", - "FontAwesomeSolidBoxArchive", - "FontAwesomeSolidBoxOpen", - "FontAwesomeSolidBoxTissue", - "FontAwesomeSolidBox", - "FontAwesomeSolidBoxesPacking", - "FontAwesomeSolidBoxesStacked", - "FontAwesomeSolidBraille", - "FontAwesomeSolidBrain", - "FontAwesomeSolidBrazilianRealSign", - "FontAwesomeSolidBreadSlice", - "FontAwesomeSolidBridgeCircleCheck", - "FontAwesomeSolidBridgeCircleExclamation", - "FontAwesomeSolidBridgeCircleXmark", - "FontAwesomeSolidBridgeLock", - "FontAwesomeSolidBridgeWater", - "FontAwesomeSolidBridge", - "FontAwesomeSolidBriefcaseMedical", - "FontAwesomeSolidBriefcase", - "FontAwesomeSolidBroomBall", - "FontAwesomeSolidBroom", - "FontAwesomeSolidBrush", - "FontAwesomeSolidBucket", - "FontAwesomeSolidBugSlash", - "FontAwesomeSolidBug", - "FontAwesomeSolidBugs", - "FontAwesomeSolidBuildingCircleArrowRight", - "FontAwesomeSolidBuildingCircleCheck", - "FontAwesomeSolidBuildingCircleExclamation", - "FontAwesomeSolidBuildingCircleXmark", - "FontAwesomeSolidBuildingColumns", - "FontAwesomeSolidBuildingFlag", - "FontAwesomeSolidBuildingLock", - "FontAwesomeSolidBuildingNgo", - "FontAwesomeSolidBuildingShield", - "FontAwesomeSolidBuildingUn", - "FontAwesomeSolidBuildingUser", - "FontAwesomeSolidBuildingWheat", - "FontAwesomeSolidBuilding", - "FontAwesomeSolidBullhorn", - "FontAwesomeSolidBullseye", - "FontAwesomeSolidBurger", - "FontAwesomeSolidBurst", - "FontAwesomeSolidBusSimple", - "FontAwesomeSolidBus", - "FontAwesomeSolidBusinessTime", - "FontAwesomeSolidC", - "FontAwesomeSolidCakeCandles", - "FontAwesomeSolidCalculator", - "FontAwesomeSolidCalendarCheck", - "FontAwesomeSolidCalendarDay", - "FontAwesomeSolidCalendarDays", - "FontAwesomeSolidCalendarMinus", - "FontAwesomeSolidCalendarPlus", - "FontAwesomeSolidCalendarWeek", - "FontAwesomeSolidCalendarXmark", - "FontAwesomeSolidCalendar", - "FontAwesomeSolidCameraRetro", - "FontAwesomeSolidCameraRotate", - "FontAwesomeSolidCamera", - "FontAwesomeSolidCampground", - "FontAwesomeSolidCandyCane", - "FontAwesomeSolidCannabis", - "FontAwesomeSolidCapsules", - "FontAwesomeSolidCarBattery", - "FontAwesomeSolidCarBurst", - "FontAwesomeSolidCarCrash", - "FontAwesomeSolidCarOn", - "FontAwesomeSolidCarRear", - "FontAwesomeSolidCarSide", - "FontAwesomeSolidCarTunnel", - "FontAwesomeSolidCar", - "FontAwesomeSolidCaravan", - "FontAwesomeSolidCaretDown", - "FontAwesomeSolidCaretLeft", - "FontAwesomeSolidCaretRight", - "FontAwesomeSolidCaretUp", - "FontAwesomeSolidCarrot", - "FontAwesomeSolidCartArrowDown", - "FontAwesomeSolidCartFlatbedSuitcase", - "FontAwesomeSolidCartFlatbed", - "FontAwesomeSolidCartPlus", - "FontAwesomeSolidCartShopping", - "FontAwesomeSolidCashRegister", - "FontAwesomeSolidCat", - "FontAwesomeSolidCediSign", - "FontAwesomeSolidCentSign", - "FontAwesomeSolidCertificate", - "FontAwesomeSolidChair", - "FontAwesomeSolidChalkboardUser", - "FontAwesomeSolidChalkboard", - "FontAwesomeSolidChampagneGlasses", - "FontAwesomeSolidChargingStation", - "FontAwesomeSolidChartArea", - "FontAwesomeSolidChartBar", - "FontAwesomeSolidChartColumn", - "FontAwesomeSolidChartGantt", - "FontAwesomeSolidChartLine", - "FontAwesomeSolidChartPie", - "FontAwesomeSolidChartSimple", - "FontAwesomeSolidCheckDouble", - "FontAwesomeSolidCheckToSlot", - "FontAwesomeSolidCheck", - "FontAwesomeSolidCheese", - "FontAwesomeSolidChessBishop", - "FontAwesomeSolidChessBoard", - "FontAwesomeSolidChessKing", - "FontAwesomeSolidChessKnight", - "FontAwesomeSolidChessPawn", - "FontAwesomeSolidChessQueen", - "FontAwesomeSolidChessRook", - "FontAwesomeSolidChess", - "FontAwesomeSolidChevronDown", - "FontAwesomeSolidChevronLeft", - "FontAwesomeSolidChevronRight", - "FontAwesomeSolidChevronUp", - "FontAwesomeSolidChildDress", - "FontAwesomeSolidChildReaching", - "FontAwesomeSolidChildRifle", - "FontAwesomeSolidChild", - "FontAwesomeSolidChildren", - "FontAwesomeSolidChurch", - "FontAwesomeSolidCircleArrowDown", - "FontAwesomeSolidCircleArrowLeft", - "FontAwesomeSolidCircleArrowRight", - "FontAwesomeSolidCircleArrowUp", - "FontAwesomeSolidCircleCheck", - "FontAwesomeSolidCircleChevronDown", - "FontAwesomeSolidCircleChevronLeft", - "FontAwesomeSolidCircleChevronRight", - "FontAwesomeSolidCircleChevronUp", - "FontAwesomeSolidCircleDollarToSlot", - "FontAwesomeSolidCircleDot", - "FontAwesomeSolidCircleDown", - "FontAwesomeSolidCircleExclamation", - "FontAwesomeSolidCircleH", - "FontAwesomeSolidCircleHalfStroke", - "FontAwesomeSolidCircleInfo", - "FontAwesomeSolidCircleLeft", - "FontAwesomeSolidCircleMinus", - "FontAwesomeSolidCircleNodes", - "FontAwesomeSolidCircleNotch", - "FontAwesomeSolidCirclePause", - "FontAwesomeSolidCirclePlay", - "FontAwesomeSolidCirclePlus", - "FontAwesomeSolidCircleQuestion", - "FontAwesomeSolidCircleRadiation", - "FontAwesomeSolidCircleRight", - "FontAwesomeSolidCircleStop", - "FontAwesomeSolidCircleUp", - "FontAwesomeSolidCircleUser", - "FontAwesomeSolidCircleXmark", - "FontAwesomeSolidCircle", - "FontAwesomeSolidCity", - "FontAwesomeSolidClapperboard", - "FontAwesomeSolidClipboardCheck", - "FontAwesomeSolidClipboardList", - "FontAwesomeSolidClipboardQuestion", - "FontAwesomeSolidClipboardUser", - "FontAwesomeSolidClipboard", - "FontAwesomeSolidClockRotateLeft", - "FontAwesomeSolidClock", - "FontAwesomeSolidClone", - "FontAwesomeSolidClosedCaptioning", - "FontAwesomeSolidCloudArrowDown", - "FontAwesomeSolidCloudArrowUp", - "FontAwesomeSolidCloudBolt", - "FontAwesomeSolidCloudMeatball", - "FontAwesomeSolidCloudMoonRain", - "FontAwesomeSolidCloudMoon", - "FontAwesomeSolidCloudRain", - "FontAwesomeSolidCloudShowersHeavy", - "FontAwesomeSolidCloudShowersWater", - "FontAwesomeSolidCloudSunRain", - "FontAwesomeSolidCloudSun", - "FontAwesomeSolidCloud", - "FontAwesomeSolidClover", - "FontAwesomeSolidCodeBranch", - "FontAwesomeSolidCodeCommit", - "FontAwesomeSolidCodeCompare", - "FontAwesomeSolidCodeFork", - "FontAwesomeSolidCodeMerge", - "FontAwesomeSolidCodePullRequest", - "FontAwesomeSolidCode", - "FontAwesomeSolidCoins", - "FontAwesomeSolidColonSign", - "FontAwesomeSolidCommentDollar", - "FontAwesomeSolidCommentDots", - "FontAwesomeSolidCommentMedical", - "FontAwesomeSolidCommentSlash", - "FontAwesomeSolidCommentSms", - "FontAwesomeSolidComment", - "FontAwesomeSolidCommentsDollar", - "FontAwesomeSolidComments", - "FontAwesomeSolidCompactDisc", - "FontAwesomeSolidCompassDrafting", - "FontAwesomeSolidCompass", - "FontAwesomeSolidCompress", - "FontAwesomeSolidComputerMouse", - "FontAwesomeSolidComputer", - "FontAwesomeSolidCookieBite", - "FontAwesomeSolidCookie", - "FontAwesomeSolidCopy", - "FontAwesomeSolidCopyright", - "FontAwesomeSolidCouch", - "FontAwesomeSolidCow", - "FontAwesomeSolidCreditCard", - "FontAwesomeSolidCropSimple", - "FontAwesomeSolidCrop", - "FontAwesomeSolidCross", - "FontAwesomeSolidCrosshairs", - "FontAwesomeSolidCrow", - "FontAwesomeSolidCrown", - "FontAwesomeSolidCrutch", - "FontAwesomeSolidCruzeiroSign", - "FontAwesomeSolidCube", - "FontAwesomeSolidCubesStacked", - "FontAwesomeSolidCubes", - "FontAwesomeSolidD", - "FontAwesomeSolidDatabase", - "FontAwesomeSolidDeleteLeft", - "FontAwesomeSolidDemocrat", - "FontAwesomeSolidDesktop", - "FontAwesomeSolidDharmachakra", - "FontAwesomeSolidDiagramNext", - "FontAwesomeSolidDiagramPredecessor", - "FontAwesomeSolidDiagramProject", - "FontAwesomeSolidDiagramSuccessor", - "FontAwesomeSolidDiamondTurnRight", - "FontAwesomeSolidDiamond", - "FontAwesomeSolidDiceD20", - "FontAwesomeSolidDiceD6", - "FontAwesomeSolidDiceFive", - "FontAwesomeSolidDiceFour", - "FontAwesomeSolidDiceOne", - "FontAwesomeSolidDiceSix", - "FontAwesomeSolidDiceThree", - "FontAwesomeSolidDiceTwo", - "FontAwesomeSolidDice", - "FontAwesomeSolidDisease", - "FontAwesomeSolidDisplay", - "FontAwesomeSolidDivide", - "FontAwesomeSolidDna", - "FontAwesomeSolidDog", - "FontAwesomeSolidDollarSign", - "FontAwesomeSolidDolly", - "FontAwesomeSolidDongSign", - "FontAwesomeSolidDoorClosed", - "FontAwesomeSolidDoorOpen", - "FontAwesomeSolidDove", - "FontAwesomeSolidDownLeftAndUpRightToCenter", - "FontAwesomeSolidDownLong", - "FontAwesomeSolidDownload", - "FontAwesomeSolidDragon", - "FontAwesomeSolidDrawPolygon", - "FontAwesomeSolidDropletSlash", - "FontAwesomeSolidDroplet", - "FontAwesomeSolidDrumSteelpan", - "FontAwesomeSolidDrum", - "FontAwesomeSolidDrumstickBite", - "FontAwesomeSolidDumbbell", - "FontAwesomeSolidDumpsterFire", - "FontAwesomeSolidDumpster", - "FontAwesomeSolidDungeon", - "FontAwesomeSolidE", - "FontAwesomeSolidEarDeaf", - "FontAwesomeSolidEarListen", - "FontAwesomeSolidEarthAfrica", - "FontAwesomeSolidEarthAmericas", - "FontAwesomeSolidEarthAsia", - "FontAwesomeSolidEarthEurope", - "FontAwesomeSolidEarthOceania", - "FontAwesomeSolidEgg", - "FontAwesomeSolidEject", - "FontAwesomeSolidElevator", - "FontAwesomeSolidEllipsisVertical", - "FontAwesomeSolidEllipsis", - "FontAwesomeSolidEnvelopeCircleCheck", - "FontAwesomeSolidEnvelopeOpenText", - "FontAwesomeSolidEnvelopeOpen", - "FontAwesomeSolidEnvelope", - "FontAwesomeSolidEnvelopesBulk", - "FontAwesomeSolidEquals", - "FontAwesomeSolidEraser", - "FontAwesomeSolidEthernet", - "FontAwesomeSolidEuroSign", - "FontAwesomeSolidExclamation", - "FontAwesomeSolidExpand", - "FontAwesomeSolidExplosion", - "FontAwesomeSolidEyeDropper", - "FontAwesomeSolidEyeLowVision", - "FontAwesomeSolidEyeSlash", - "FontAwesomeSolidEye", - "FontAwesomeSolidF", - "FontAwesomeSolidFaceAngry", - "FontAwesomeSolidFaceDizzy", - "FontAwesomeSolidFaceFlushed", - "FontAwesomeSolidFaceFrownOpen", - "FontAwesomeSolidFaceFrown", - "FontAwesomeSolidFaceGrimace", - "FontAwesomeSolidFaceGrinBeamSweat", - "FontAwesomeSolidFaceGrinBeam", - "FontAwesomeSolidFaceGrinHearts", - "FontAwesomeSolidFaceGrinSquintTears", - "FontAwesomeSolidFaceGrinSquint", - "FontAwesomeSolidFaceGrinStars", - "FontAwesomeSolidFaceGrinTears", - "FontAwesomeSolidFaceGrinTongueSquint", - "FontAwesomeSolidFaceGrinTongueWink", - "FontAwesomeSolidFaceGrinTongue", - "FontAwesomeSolidFaceGrinWide", - "FontAwesomeSolidFaceGrinWink", - "FontAwesomeSolidFaceGrin", - "FontAwesomeSolidFaceKissBeam", - "FontAwesomeSolidFaceKissWinkHeart", - "FontAwesomeSolidFaceKiss", - "FontAwesomeSolidFaceLaughBeam", - "FontAwesomeSolidFaceLaughSquint", - "FontAwesomeSolidFaceLaughWink", - "FontAwesomeSolidFaceLaugh", - "FontAwesomeSolidFaceMehBlank", - "FontAwesomeSolidFaceMeh", - "FontAwesomeSolidFaceRollingEyes", - "FontAwesomeSolidFaceSadCry", - "FontAwesomeSolidFaceSadTear", - "FontAwesomeSolidFaceSmileBeam", - "FontAwesomeSolidFaceSmileWink", - "FontAwesomeSolidFaceSmile", - "FontAwesomeSolidFaceSurprise", - "FontAwesomeSolidFaceTired", - "FontAwesomeSolidFan", - "FontAwesomeSolidFaucetDrip", - "FontAwesomeSolidFaucet", - "FontAwesomeSolidFax", - "FontAwesomeSolidFeatherPointed", - "FontAwesomeSolidFeather", - "FontAwesomeSolidFerry", - "FontAwesomeSolidFileArrowDown", - "FontAwesomeSolidFileArrowUp", - "FontAwesomeSolidFileAudio", - "FontAwesomeSolidFileCircleCheck", - "FontAwesomeSolidFileCircleExclamation", - "FontAwesomeSolidFileCircleMinus", - "FontAwesomeSolidFileCirclePlus", - "FontAwesomeSolidFileCircleQuestion", - "FontAwesomeSolidFileCircleXmark", - "FontAwesomeSolidFileCode", - "FontAwesomeSolidFileContract", - "FontAwesomeSolidFileCsv", - "FontAwesomeSolidFileExcel", - "FontAwesomeSolidFileExport", - "FontAwesomeSolidFileImage", - "FontAwesomeSolidFileImport", - "FontAwesomeSolidFileInvoiceDollar", - "FontAwesomeSolidFileInvoice", - "FontAwesomeSolidFileLines", - "FontAwesomeSolidFileMedical", - "FontAwesomeSolidFilePdf", - "FontAwesomeSolidFilePen", - "FontAwesomeSolidFilePowerpoint", - "FontAwesomeSolidFilePrescription", - "FontAwesomeSolidFileShield", - "FontAwesomeSolidFileSignature", - "FontAwesomeSolidFileVideo", - "FontAwesomeSolidFileWaveform", - "FontAwesomeSolidFileWord", - "FontAwesomeSolidFileZipper", - "FontAwesomeSolidFile", - "FontAwesomeSolidFillDrip", - "FontAwesomeSolidFill", - "FontAwesomeSolidFilm", - "FontAwesomeSolidFilterCircleDollar", - "FontAwesomeSolidFilterCircleXmark", - "FontAwesomeSolidFilter", - "FontAwesomeSolidFingerprint", - "FontAwesomeSolidFireBurner", - "FontAwesomeSolidFireExtinguisher", - "FontAwesomeSolidFireFlameCurved", - "FontAwesomeSolidFireFlameSimple", - "FontAwesomeSolidFire", - "FontAwesomeSolidFishFins", - "FontAwesomeSolidFish", - "FontAwesomeSolidFlagCheckered", - "FontAwesomeSolidFlagUsa", - "FontAwesomeSolidFlag", - "FontAwesomeSolidFlaskVial", - "FontAwesomeSolidFlask", - "FontAwesomeSolidFloppyDisk", - "FontAwesomeSolidFlorinSign", - "FontAwesomeSolidFolderClosed", - "FontAwesomeSolidFolderMinus", - "FontAwesomeSolidFolderOpen", - "FontAwesomeSolidFolderPlus", - "FontAwesomeSolidFolderTree", - "FontAwesomeSolidFolder", - "FontAwesomeSolidFontAwesome", - "FontAwesomeSolidFont", - "FontAwesomeSolidFootball", - "FontAwesomeSolidForwardFast", - "FontAwesomeSolidForwardStep", - "FontAwesomeSolidForward", - "FontAwesomeSolidFrancSign", - "FontAwesomeSolidFrog", - "FontAwesomeSolidFutbol", - "FontAwesomeSolidG", - "FontAwesomeSolidGamepad", - "FontAwesomeSolidGasPump", - "FontAwesomeSolidGaugeHigh", - "FontAwesomeSolidGaugeSimpleHigh", - "FontAwesomeSolidGaugeSimple", - "FontAwesomeSolidGauge", - "FontAwesomeSolidGavel", - "FontAwesomeSolidGear", - "FontAwesomeSolidGears", - "FontAwesomeSolidGem", - "FontAwesomeSolidGenderless", - "FontAwesomeSolidGhost", - "FontAwesomeSolidGift", - "FontAwesomeSolidGifts", - "FontAwesomeSolidGlassWaterDroplet", - "FontAwesomeSolidGlassWater", - "FontAwesomeSolidGlasses", - "FontAwesomeSolidGlobe", - "FontAwesomeSolidGolfBallTee", - "FontAwesomeSolidGopuram", - "FontAwesomeSolidGraduationCap", - "FontAwesomeSolidGreaterThanEqual", - "FontAwesomeSolidGreaterThan", - "FontAwesomeSolidGripLinesVertical", - "FontAwesomeSolidGripLines", - "FontAwesomeSolidGripVertical", - "FontAwesomeSolidGrip", - "FontAwesomeSolidGroupArrowsRotate", - "FontAwesomeSolidGuaraniSign", - "FontAwesomeSolidGuitar", - "FontAwesomeSolidGun", - "FontAwesomeSolidH", - "FontAwesomeSolidHammer", - "FontAwesomeSolidHamsa", - "FontAwesomeSolidHandBackFist", - "FontAwesomeSolidHandDots", - "FontAwesomeSolidHandFist", - "FontAwesomeSolidHandHoldingDollar", - "FontAwesomeSolidHandHoldingDroplet", - "FontAwesomeSolidHandHoldingHand", - "FontAwesomeSolidHandHoldingHeart", - "FontAwesomeSolidHandHoldingMedical", - "FontAwesomeSolidHandHolding", - "FontAwesomeSolidHandLizard", - "FontAwesomeSolidHandMiddleFinger", - "FontAwesomeSolidHandPeace", - "FontAwesomeSolidHandPointDown", - "FontAwesomeSolidHandPointLeft", - "FontAwesomeSolidHandPointRight", - "FontAwesomeSolidHandPointUp", - "FontAwesomeSolidHandPointer", - "FontAwesomeSolidHandScissors", - "FontAwesomeSolidHandSparkles", - "FontAwesomeSolidHandSpock", - "FontAwesomeSolidHand", - "FontAwesomeSolidHandcuffs", - "FontAwesomeSolidHandsAslInterpreting", - "FontAwesomeSolidHandsBound", - "FontAwesomeSolidHandsBubbles", - "FontAwesomeSolidHandsClapping", - "FontAwesomeSolidHandsHoldingChild", - "FontAwesomeSolidHandsHoldingCircle", - "FontAwesomeSolidHandsHolding", - "FontAwesomeSolidHandsPraying", - "FontAwesomeSolidHands", - "FontAwesomeSolidHandshakeAngle", - "FontAwesomeSolidHandshakeSimpleSlash", - "FontAwesomeSolidHandshakeSimple", - "FontAwesomeSolidHandshakeSlash", - "FontAwesomeSolidHandshake", - "FontAwesomeSolidHanukiah", - "FontAwesomeSolidHardDrive", - "FontAwesomeSolidHashtag", - "FontAwesomeSolidHatCowboySide", - "FontAwesomeSolidHatCowboy", - "FontAwesomeSolidHatWizard", - "FontAwesomeSolidHeadSideCoughSlash", - "FontAwesomeSolidHeadSideCough", - "FontAwesomeSolidHeadSideMask", - "FontAwesomeSolidHeadSideVirus", - "FontAwesomeSolidHeading", - "FontAwesomeSolidHeadphonesSimple", - "FontAwesomeSolidHeadphones", - "FontAwesomeSolidHeadset", - "FontAwesomeSolidHeartCircleBolt", - "FontAwesomeSolidHeartCircleCheck", - "FontAwesomeSolidHeartCircleExclamation", - "FontAwesomeSolidHeartCircleMinus", - "FontAwesomeSolidHeartCirclePlus", - "FontAwesomeSolidHeartCircleXmark", - "FontAwesomeSolidHeartCrack", - "FontAwesomeSolidHeartPulse", - "FontAwesomeSolidHeart", - "FontAwesomeSolidHelicopterSymbol", - "FontAwesomeSolidHelicopter", - "FontAwesomeSolidHelmetSafety", - "FontAwesomeSolidHelmetUn", - "FontAwesomeSolidHighlighter", - "FontAwesomeSolidHillAvalanche", - "FontAwesomeSolidHillRockslide", - "FontAwesomeSolidHippo", - "FontAwesomeSolidHockeyPuck", - "FontAwesomeSolidHollyBerry", - "FontAwesomeSolidHorseHead", - "FontAwesomeSolidHorse", - "FontAwesomeSolidHospitalUser", - "FontAwesomeSolidHospital", - "FontAwesomeSolidHotTubPerson", - "FontAwesomeSolidHotdog", - "FontAwesomeSolidHotel", - "FontAwesomeSolidHourglassEmpty", - "FontAwesomeSolidHourglassEnd", - "FontAwesomeSolidHourglassStart", - "FontAwesomeSolidHourglass", - "FontAwesomeSolidHouseChimneyCrack", - "FontAwesomeSolidHouseChimneyMedical", - "FontAwesomeSolidHouseChimneyUser", - "FontAwesomeSolidHouseChimneyWindow", - "FontAwesomeSolidHouseChimney", - "FontAwesomeSolidHouseCircleCheck", - "FontAwesomeSolidHouseCircleExclamation", - "FontAwesomeSolidHouseCircleXmark", - "FontAwesomeSolidHouseCrack", - "FontAwesomeSolidHouseFire", - "FontAwesomeSolidHouseFlag", - "FontAwesomeSolidHouseFloodWaterCircleArrowRight", - "FontAwesomeSolidHouseFloodWater", - "FontAwesomeSolidHouseLaptop", - "FontAwesomeSolidHouseLock", - "FontAwesomeSolidHouseMedicalCircleCheck", - "FontAwesomeSolidHouseMedicalCircleExclamation", - "FontAwesomeSolidHouseMedicalCircleXmark", - "FontAwesomeSolidHouseMedicalFlag", - "FontAwesomeSolidHouseMedical", - "FontAwesomeSolidHouseSignal", - "FontAwesomeSolidHouseTsunami", - "FontAwesomeSolidHouseUser", - "FontAwesomeSolidHouse", - "FontAwesomeSolidHryvniaSign", - "FontAwesomeSolidHurricane", - "FontAwesomeSolidICursor", - "FontAwesomeSolidI", - "FontAwesomeSolidIceCream", - "FontAwesomeSolidIcicles", - "FontAwesomeSolidIcons", - "FontAwesomeSolidIdBadge", - "FontAwesomeSolidIdCardClip", - "FontAwesomeSolidIdCard", - "FontAwesomeSolidIgloo", - "FontAwesomeSolidImagePortrait", - "FontAwesomeSolidImage", - "FontAwesomeSolidImages", - "FontAwesomeSolidInbox", - "FontAwesomeSolidIndent", - "FontAwesomeSolidIndianRupeeSign", - "FontAwesomeSolidIndustry", - "FontAwesomeSolidInfinity", - "FontAwesomeSolidInfo", - "FontAwesomeSolidItalic", - "FontAwesomeSolidJ", - "FontAwesomeSolidJarWheat", - "FontAwesomeSolidJar", - "FontAwesomeSolidJedi", - "FontAwesomeSolidJetFighterUp", - "FontAwesomeSolidJetFighter", - "FontAwesomeSolidJoint", - "FontAwesomeSolidJugDetergent", - "FontAwesomeSolidK", - "FontAwesomeSolidKaaba", - "FontAwesomeSolidKey", - "FontAwesomeSolidKeyboard", - "FontAwesomeSolidKhanda", - "FontAwesomeSolidKipSign", - "FontAwesomeSolidKitMedical", - "FontAwesomeSolidKitchenSet", - "FontAwesomeSolidKiwiBird", - "FontAwesomeSolidL", - "FontAwesomeSolidLandMineOn", - "FontAwesomeSolidLandmarkDome", - "FontAwesomeSolidLandmarkFlag", - "FontAwesomeSolidLandmark", - "FontAwesomeSolidLanguage", - "FontAwesomeSolidLaptopCode", - "FontAwesomeSolidLaptopFile", - "FontAwesomeSolidLaptopMedical", - "FontAwesomeSolidLaptop", - "FontAwesomeSolidLariSign", - "FontAwesomeSolidLayerGroup", - "FontAwesomeSolidLeaf", - "FontAwesomeSolidLeftLong", - "FontAwesomeSolidLeftRight", - "FontAwesomeSolidLemon", - "FontAwesomeSolidLessThanEqual", - "FontAwesomeSolidLessThan", - "FontAwesomeSolidLifeRing", - "FontAwesomeSolidLightbulb", - "FontAwesomeSolidLinesLeaning", - "FontAwesomeSolidLinkSlash", - "FontAwesomeSolidLink", - "FontAwesomeSolidLiraSign", - "FontAwesomeSolidListCheck", - "FontAwesomeSolidListOl", - "FontAwesomeSolidListUl", - "FontAwesomeSolidList", - "FontAwesomeSolidLitecoinSign", - "FontAwesomeSolidLocationArrow", - "FontAwesomeSolidLocationCrosshairs", - "FontAwesomeSolidLocationDot", - "FontAwesomeSolidLocationPinLock", - "FontAwesomeSolidLocationPin", - "FontAwesomeSolidLockOpen", - "FontAwesomeSolidLock", - "FontAwesomeSolidLocust", - "FontAwesomeSolidLungsVirus", - "FontAwesomeSolidLungs", - "FontAwesomeSolidM", - "FontAwesomeSolidMagnet", - "FontAwesomeSolidMagnifyingGlassArrowRight", - "FontAwesomeSolidMagnifyingGlassChart", - "FontAwesomeSolidMagnifyingGlassDollar", - "FontAwesomeSolidMagnifyingGlassLocation", - "FontAwesomeSolidMagnifyingGlassMinus", - "FontAwesomeSolidMagnifyingGlassPlus", - "FontAwesomeSolidMagnifyingGlass", - "FontAwesomeSolidManatSign", - "FontAwesomeSolidMapLocationDot", - "FontAwesomeSolidMapLocation", - "FontAwesomeSolidMapPin", - "FontAwesomeSolidMap", - "FontAwesomeSolidMarker", - "FontAwesomeSolidMarsAndVenusBurst", - "FontAwesomeSolidMarsAndVenus", - "FontAwesomeSolidMarsDouble", - "FontAwesomeSolidMarsStrokeRight", - "FontAwesomeSolidMarsStrokeUp", - "FontAwesomeSolidMarsStroke", - "FontAwesomeSolidMars", - "FontAwesomeSolidMartiniGlassCitrus", - "FontAwesomeSolidMartiniGlassEmpty", - "FontAwesomeSolidMartiniGlass", - "FontAwesomeSolidMaskFace", - "FontAwesomeSolidMaskVentilator", - "FontAwesomeSolidMask", - "FontAwesomeSolidMasksTheater", - "FontAwesomeSolidMattressPillow", - "FontAwesomeSolidMaximize", - "FontAwesomeSolidMedal", - "FontAwesomeSolidMemory", - "FontAwesomeSolidMenorah", - "FontAwesomeSolidMercury", - "FontAwesomeSolidMessage", - "FontAwesomeSolidMeteor", - "FontAwesomeSolidMicrochip", - "FontAwesomeSolidMicrophoneLinesSlash", - "FontAwesomeSolidMicrophoneLines", - "FontAwesomeSolidMicrophoneSlash", - "FontAwesomeSolidMicrophone", - "FontAwesomeSolidMicroscope", - "FontAwesomeSolidMillSign", - "FontAwesomeSolidMinimize", - "FontAwesomeSolidMinus", - "FontAwesomeSolidMitten", - "FontAwesomeSolidMobileButton", - "FontAwesomeSolidMobileRetro", - "FontAwesomeSolidMobileScreenButton", - "FontAwesomeSolidMobileScreen", - "FontAwesomeSolidMobile", - "FontAwesomeSolidMoneyBill1Wave", - "FontAwesomeSolidMoneyBill1", - "FontAwesomeSolidMoneyBillTransfer", - "FontAwesomeSolidMoneyBillTrendUp", - "FontAwesomeSolidMoneyBillWave", - "FontAwesomeSolidMoneyBillWheat", - "FontAwesomeSolidMoneyBill", - "FontAwesomeSolidMoneyBills", - "FontAwesomeSolidMoneyCheckDollar", - "FontAwesomeSolidMoneyCheck", - "FontAwesomeSolidMonument", - "FontAwesomeSolidMoon", - "FontAwesomeSolidMortarPestle", - "FontAwesomeSolidMosque", - "FontAwesomeSolidMosquitoNet", - "FontAwesomeSolidMosquito", - "FontAwesomeSolidMotorcycle", - "FontAwesomeSolidMound", - "FontAwesomeSolidMountainCity", - "FontAwesomeSolidMountainSun", - "FontAwesomeSolidMountain", - "FontAwesomeSolidMugHot", - "FontAwesomeSolidMugSaucer", - "FontAwesomeSolidMusic", - "FontAwesomeSolidN", - "FontAwesomeSolidNairaSign", - "FontAwesomeSolidNetworkWired", - "FontAwesomeSolidNeuter", - "FontAwesomeSolidNewspaper", - "FontAwesomeSolidNotEqual", - "FontAwesomeSolidNoteSticky", - "FontAwesomeSolidNotesMedical", - "FontAwesomeSolidO", - "FontAwesomeSolidObjectGroup", - "FontAwesomeSolidObjectUngroup", - "FontAwesomeSolidOilCan", - "FontAwesomeSolidOilWell", - "FontAwesomeSolidOm", - "FontAwesomeSolidOtter", - "FontAwesomeSolidOutdent", - "FontAwesomeSolidP", - "FontAwesomeSolidPager", - "FontAwesomeSolidPaintRoller", - "FontAwesomeSolidPaintbrush", - "FontAwesomeSolidPalette", - "FontAwesomeSolidPallet", - "FontAwesomeSolidPanorama", - "FontAwesomeSolidPaperPlane", - "FontAwesomeSolidPaperclip", - "FontAwesomeSolidParachuteBox", - "FontAwesomeSolidParagraph", - "FontAwesomeSolidPassport", - "FontAwesomeSolidPaste", - "FontAwesomeSolidPause", - "FontAwesomeSolidPaw", - "FontAwesomeSolidPeace", - "FontAwesomeSolidPenClip", - "FontAwesomeSolidPenFancy", - "FontAwesomeSolidPenNib", - "FontAwesomeSolidPenRuler", - "FontAwesomeSolidPenToSquare", - "FontAwesomeSolidPen", - "FontAwesomeSolidPencil", - "FontAwesomeSolidPeopleArrowsLeftRight", - "FontAwesomeSolidPeopleCarryBox", - "FontAwesomeSolidPeopleGroup", - "FontAwesomeSolidPeopleLine", - "FontAwesomeSolidPeoplePulling", - "FontAwesomeSolidPeopleRobbery", - "FontAwesomeSolidPeopleRoof", - "FontAwesomeSolidPepperHot", - "FontAwesomeSolidPercent", - "FontAwesomeSolidPersonArrowDownToLine", - "FontAwesomeSolidPersonArrowUpFromLine", - "FontAwesomeSolidPersonBiking", - "FontAwesomeSolidPersonBooth", - "FontAwesomeSolidPersonBreastfeeding", - "FontAwesomeSolidPersonBurst", - "FontAwesomeSolidPersonCane", - "FontAwesomeSolidPersonChalkboard", - "FontAwesomeSolidPersonCircleCheck", - "FontAwesomeSolidPersonCircleExclamation", - "FontAwesomeSolidPersonCircleMinus", - "FontAwesomeSolidPersonCirclePlus", - "FontAwesomeSolidPersonCircleQuestion", - "FontAwesomeSolidPersonCircleXmark", - "FontAwesomeSolidPersonDigging", - "FontAwesomeSolidPersonDotsFromLine", - "FontAwesomeSolidPersonDressBurst", - "FontAwesomeSolidPersonDress", - "FontAwesomeSolidPersonDrowning", - "FontAwesomeSolidPersonFallingBurst", - "FontAwesomeSolidPersonFalling", - "FontAwesomeSolidPersonHalfDress", - "FontAwesomeSolidPersonHarassing", - "FontAwesomeSolidPersonHiking", - "FontAwesomeSolidPersonMilitaryPointing", - "FontAwesomeSolidPersonMilitaryRifle", - "FontAwesomeSolidPersonMilitaryToPerson", - "FontAwesomeSolidPersonPraying", - "FontAwesomeSolidPersonPregnant", - "FontAwesomeSolidPersonRays", - "FontAwesomeSolidPersonRifle", - "FontAwesomeSolidPersonRunning", - "FontAwesomeSolidPersonShelter", - "FontAwesomeSolidPersonSkating", - "FontAwesomeSolidPersonSkiingNordic", - "FontAwesomeSolidPersonSkiing", - "FontAwesomeSolidPersonSnowboarding", - "FontAwesomeSolidPersonSwimming", - "FontAwesomeSolidPersonThroughWindow", - "FontAwesomeSolidPersonWalkingArrowLoopLeft", - "FontAwesomeSolidPersonWalkingArrowRight", - "FontAwesomeSolidPersonWalkingDashedLineArrowRight", - "FontAwesomeSolidPersonWalkingLuggage", - "FontAwesomeSolidPersonWalkingWithCane", - "FontAwesomeSolidPersonWalking", - "FontAwesomeSolidPerson", - "FontAwesomeSolidPesetaSign", - "FontAwesomeSolidPesoSign", - "FontAwesomeSolidPhoneFlip", - "FontAwesomeSolidPhoneSlash", - "FontAwesomeSolidPhoneVolume", - "FontAwesomeSolidPhone", - "FontAwesomeSolidPhotoFilm", - "FontAwesomeSolidPiggyBank", - "FontAwesomeSolidPills", - "FontAwesomeSolidPizzaSlice", - "FontAwesomeSolidPlaceOfWorship", - "FontAwesomeSolidPlaneArrival", - "FontAwesomeSolidPlaneCircleCheck", - "FontAwesomeSolidPlaneCircleExclamation", - "FontAwesomeSolidPlaneCircleXmark", - "FontAwesomeSolidPlaneDeparture", - "FontAwesomeSolidPlaneLock", - "FontAwesomeSolidPlaneSlash", - "FontAwesomeSolidPlaneUp", - "FontAwesomeSolidPlane", - "FontAwesomeSolidPlantWilt", - "FontAwesomeSolidPlateWheat", - "FontAwesomeSolidPlay", - "FontAwesomeSolidPlugCircleBolt", - "FontAwesomeSolidPlugCircleCheck", - "FontAwesomeSolidPlugCircleExclamation", - "FontAwesomeSolidPlugCircleMinus", - "FontAwesomeSolidPlugCirclePlus", - "FontAwesomeSolidPlugCircleXmark", - "FontAwesomeSolidPlug", - "FontAwesomeSolidPlusMinus", - "FontAwesomeSolidPlus", - "FontAwesomeSolidPodcast", - "FontAwesomeSolidPooStorm", - "FontAwesomeSolidPoo", - "FontAwesomeSolidPoop", - "FontAwesomeSolidPowerOff", - "FontAwesomeSolidPrescriptionBottleMedical", - "FontAwesomeSolidPrescriptionBottle", - "FontAwesomeSolidPrescription", - "FontAwesomeSolidPrint", - "FontAwesomeSolidPumpMedical", - "FontAwesomeSolidPumpSoap", - "FontAwesomeSolidPuzzlePiece", - "FontAwesomeSolidQ", - "FontAwesomeSolidQrcode", - "FontAwesomeSolidQuestion", - "FontAwesomeSolidQuoteLeft", - "FontAwesomeSolidQuoteRight", - "FontAwesomeSolidR", - "FontAwesomeSolidRadiation", - "FontAwesomeSolidRadio", - "FontAwesomeSolidRainbow", - "FontAwesomeSolidRankingStar", - "FontAwesomeSolidReceipt", - "FontAwesomeSolidRecordVinyl", - "FontAwesomeSolidRectangleAd", - "FontAwesomeSolidRectangleList", - "FontAwesomeSolidRectangleXmark", - "FontAwesomeSolidRecycle", - "FontAwesomeSolidRegistered", - "FontAwesomeSolidRepeat", - "FontAwesomeSolidReplyAll", - "FontAwesomeSolidReply", - "FontAwesomeSolidRepublican", - "FontAwesomeSolidRestroom", - "FontAwesomeSolidRetweet", - "FontAwesomeSolidRibbon", - "FontAwesomeSolidRightFromBracket", - "FontAwesomeSolidRightLeft", - "FontAwesomeSolidRightLong", - "FontAwesomeSolidRightToBracket", - "FontAwesomeSolidRing", - "FontAwesomeSolidRoadBarrier", - "FontAwesomeSolidRoadBridge", - "FontAwesomeSolidRoadCircleCheck", - "FontAwesomeSolidRoadCircleExclamation", - "FontAwesomeSolidRoadCircleXmark", - "FontAwesomeSolidRoadLock", - "FontAwesomeSolidRoadSpikes", - "FontAwesomeSolidRoad", - "FontAwesomeSolidRobot", - "FontAwesomeSolidRocket", - "FontAwesomeSolidRotateLeft", - "FontAwesomeSolidRotateRight", - "FontAwesomeSolidRotate", - "FontAwesomeSolidRoute", - "FontAwesomeSolidRss", - "FontAwesomeSolidRubleSign", - "FontAwesomeSolidRug", - "FontAwesomeSolidRulerCombined", - "FontAwesomeSolidRulerHorizontal", - "FontAwesomeSolidRulerVertical", - "FontAwesomeSolidRuler", - "FontAwesomeSolidRupeeSign", - "FontAwesomeSolidRupiahSign", - "FontAwesomeSolidS", - "FontAwesomeSolidSackDollar", - "FontAwesomeSolidSackXmark", - "FontAwesomeSolidSailboat", - "FontAwesomeSolidSatelliteDish", - "FontAwesomeSolidSatellite", - "FontAwesomeSolidScaleBalanced", - "FontAwesomeSolidScaleUnbalancedFlip", - "FontAwesomeSolidScaleUnbalanced", - "FontAwesomeSolidSchoolCircleCheck", - "FontAwesomeSolidSchoolCircleExclamation", - "FontAwesomeSolidSchoolCircleXmark", - "FontAwesomeSolidSchoolFlag", - "FontAwesomeSolidSchoolLock", - "FontAwesomeSolidSchool", - "FontAwesomeSolidScissors", - "FontAwesomeSolidScrewdriverWrench", - "FontAwesomeSolidScrewdriver", - "FontAwesomeSolidScrollTorah", - "FontAwesomeSolidScroll", - "FontAwesomeSolidSdCard", - "FontAwesomeSolidSection", - "FontAwesomeSolidSeedling", - "FontAwesomeSolidServer", - "FontAwesomeSolidShapes", - "FontAwesomeSolidShareFromSquare", - "FontAwesomeSolidShareNodes", - "FontAwesomeSolidShare", - "FontAwesomeSolidSheetPlastic", - "FontAwesomeSolidShekelSign", - "FontAwesomeSolidShieldBlank", - "FontAwesomeSolidShieldCat", - "FontAwesomeSolidShieldDog", - "FontAwesomeSolidShieldHalved", - "FontAwesomeSolidShieldHeart", - "FontAwesomeSolidShieldVirus", - "FontAwesomeSolidShield", - "FontAwesomeSolidShip", - "FontAwesomeSolidShirt", - "FontAwesomeSolidShoePrints", - "FontAwesomeSolidShopLock", - "FontAwesomeSolidShopSlash", - "FontAwesomeSolidShop", - "FontAwesomeSolidShower", - "FontAwesomeSolidShrimp", - "FontAwesomeSolidShuffle", - "FontAwesomeSolidShuttleSpace", - "FontAwesomeSolidSignHanging", - "FontAwesomeSolidSignal", - "FontAwesomeSolidSignature", - "FontAwesomeSolidSignsPost", - "FontAwesomeSolidSimCard", - "FontAwesomeSolidSink", - "FontAwesomeSolidSitemap", - "FontAwesomeSolidSkullCrossbones", - "FontAwesomeSolidSkull", - "FontAwesomeSolidSlash", - "FontAwesomeSolidSleigh", - "FontAwesomeSolidSliders", - "FontAwesomeSolidSmog", - "FontAwesomeSolidSmoking", - "FontAwesomeSolidSnowflake", - "FontAwesomeSolidSnowman", - "FontAwesomeSolidSnowplow", - "FontAwesomeSolidSoap", - "FontAwesomeSolidSocks", - "FontAwesomeSolidSolarPanel", - "FontAwesomeSolidSortDown", - "FontAwesomeSolidSortUp", - "FontAwesomeSolidSort", - "FontAwesomeSolidSpa", - "FontAwesomeSolidSpaghettiMonsterFlying", - "FontAwesomeSolidSpellCheck", - "FontAwesomeSolidSpider", - "FontAwesomeSolidSpinner", - "FontAwesomeSolidSplotch", - "FontAwesomeSolidSpoon", - "FontAwesomeSolidSprayCanSparkles", - "FontAwesomeSolidSprayCan", - "FontAwesomeSolidSquareArrowUpRight", - "FontAwesomeSolidSquareCaretDown", - "FontAwesomeSolidSquareCaretLeft", - "FontAwesomeSolidSquareCaretRight", - "FontAwesomeSolidSquareCaretUp", - "FontAwesomeSolidSquareCheck", - "FontAwesomeSolidSquareEnvelope", - "FontAwesomeSolidSquareFull", - "FontAwesomeSolidSquareH", - "FontAwesomeSolidSquareMinus", - "FontAwesomeSolidSquareNfi", - "FontAwesomeSolidSquareParking", - "FontAwesomeSolidSquarePen", - "FontAwesomeSolidSquarePersonConfined", - "FontAwesomeSolidSquarePhoneFlip", - "FontAwesomeSolidSquarePhone", - "FontAwesomeSolidSquarePlus", - "FontAwesomeSolidSquarePollHorizontal", - "FontAwesomeSolidSquarePollVertical", - "FontAwesomeSolidSquareRootVariable", - "FontAwesomeSolidSquareRss", - "FontAwesomeSolidSquareShareNodes", - "FontAwesomeSolidSquareUpRight", - "FontAwesomeSolidSquareVirus", - "FontAwesomeSolidSquareXmark", - "FontAwesomeSolidSquare", - "FontAwesomeSolidStaffAesculapius", - "FontAwesomeSolidStairs", - "FontAwesomeSolidStamp", - "FontAwesomeSolidStarAndCrescent", - "FontAwesomeSolidStarHalfStroke", - "FontAwesomeSolidStarHalf", - "FontAwesomeSolidStarOfDavid", - "FontAwesomeSolidStarOfLife", - "FontAwesomeSolidStar", - "FontAwesomeSolidSterlingSign", - "FontAwesomeSolidStethoscope", - "FontAwesomeSolidStop", - "FontAwesomeSolidStopwatch20", - "FontAwesomeSolidStopwatch", - "FontAwesomeSolidStoreSlash", - "FontAwesomeSolidStore", - "FontAwesomeSolidStreetView", - "FontAwesomeSolidStrikethrough", - "FontAwesomeSolidStroopwafel", - "FontAwesomeSolidSubscript", - "FontAwesomeSolidSuitcaseMedical", - "FontAwesomeSolidSuitcaseRolling", - "FontAwesomeSolidSuitcase", - "FontAwesomeSolidSunPlantWilt", - "FontAwesomeSolidSun", - "FontAwesomeSolidSuperscript", - "FontAwesomeSolidSwatchbook", - "FontAwesomeSolidSynagogue", - "FontAwesomeSolidSyringe", - "FontAwesomeSolidT", - "FontAwesomeSolidTableCellsLarge", - "FontAwesomeSolidTableCells", - "FontAwesomeSolidTableColumns", - "FontAwesomeSolidTableList", - "FontAwesomeSolidTableTennisPaddleBall", - "FontAwesomeSolidTable", - "FontAwesomeSolidTabletButton", - "FontAwesomeSolidTabletScreenButton", - "FontAwesomeSolidTablet", - "FontAwesomeSolidTablets", - "FontAwesomeSolidTachographDigital", - "FontAwesomeSolidTag", - "FontAwesomeSolidTags", - "FontAwesomeSolidTape", - "FontAwesomeSolidTarpDroplet", - "FontAwesomeSolidTarp", - "FontAwesomeSolidTaxi", - "FontAwesomeSolidTeethOpen", - "FontAwesomeSolidTeeth", - "FontAwesomeSolidTemperatureArrowDown", - "FontAwesomeSolidTemperatureArrowUp", - "FontAwesomeSolidTemperatureEmpty", - "FontAwesomeSolidTemperatureFull", - "FontAwesomeSolidTemperatureHalf", - "FontAwesomeSolidTemperatureHigh", - "FontAwesomeSolidTemperatureLow", - "FontAwesomeSolidTemperatureQuarter", - "FontAwesomeSolidTemperatureThreeQuarters", - "FontAwesomeSolidTengeSign", - "FontAwesomeSolidTentArrowDownToLine", - "FontAwesomeSolidTentArrowLeftRight", - "FontAwesomeSolidTentArrowTurnLeft", - "FontAwesomeSolidTentArrowsDown", - "FontAwesomeSolidTent", - "FontAwesomeSolidTents", - "FontAwesomeSolidTerminal", - "FontAwesomeSolidTextHeight", - "FontAwesomeSolidTextSlash", - "FontAwesomeSolidTextWidth", - "FontAwesomeSolidThermometer", - "FontAwesomeSolidThumbsDown", - "FontAwesomeSolidThumbsUp", - "FontAwesomeSolidThumbtack", - "FontAwesomeSolidTicketSimple", - "FontAwesomeSolidTicket", - "FontAwesomeSolidTimeline", - "FontAwesomeSolidToggleOff", - "FontAwesomeSolidToggleOn", - "FontAwesomeSolidToiletPaperSlash", - "FontAwesomeSolidToiletPaper", - "FontAwesomeSolidToiletPortable", - "FontAwesomeSolidToilet", - "FontAwesomeSolidToiletsPortable", - "FontAwesomeSolidToolbox", - "FontAwesomeSolidTooth", - "FontAwesomeSolidToriiGate", - "FontAwesomeSolidTornado", - "FontAwesomeSolidTowerBroadcast", - "FontAwesomeSolidTowerCell", - "FontAwesomeSolidTowerObservation", - "FontAwesomeSolidTractor", - "FontAwesomeSolidTrademark", - "FontAwesomeSolidTrafficLight", - "FontAwesomeSolidTrailer", - "FontAwesomeSolidTrainSubway", - "FontAwesomeSolidTrainTram", - "FontAwesomeSolidTrain", - "FontAwesomeSolidTransgender", - "FontAwesomeSolidTrashArrowUp", - "FontAwesomeSolidTrashCanArrowUp", - "FontAwesomeSolidTrashCan", - "FontAwesomeSolidTrash", - "FontAwesomeSolidTreeCity", - "FontAwesomeSolidTree", - "FontAwesomeSolidTriangleExclamation", - "FontAwesomeSolidTrophy", - "FontAwesomeSolidTrowelBricks", - "FontAwesomeSolidTrowel", - "FontAwesomeSolidTruckArrowRight", - "FontAwesomeSolidTruckDroplet", - "FontAwesomeSolidTruckFast", - "FontAwesomeSolidTruckFieldUn", - "FontAwesomeSolidTruckField", - "FontAwesomeSolidTruckFront", - "FontAwesomeSolidTruckMedical", - "FontAwesomeSolidTruckMonster", - "FontAwesomeSolidTruckMoving", - "FontAwesomeSolidTruckPickup", - "FontAwesomeSolidTruckPlane", - "FontAwesomeSolidTruckRampBox", - "FontAwesomeSolidTruck", - "FontAwesomeSolidTty", - "FontAwesomeSolidTurkishLiraSign", - "FontAwesomeSolidTurnDown", - "FontAwesomeSolidTurnUp", - "FontAwesomeSolidTv", - "FontAwesomeSolidU", - "FontAwesomeSolidUmbrellaBeach", - "FontAwesomeSolidUmbrella", - "FontAwesomeSolidUnderline", - "FontAwesomeSolidUniversalAccess", - "FontAwesomeSolidUnlockKeyhole", - "FontAwesomeSolidUnlock", - "FontAwesomeSolidUpDownLeftRight", - "FontAwesomeSolidUpDown", - "FontAwesomeSolidUpLong", - "FontAwesomeSolidUpRightAndDownLeftFromCenter", - "FontAwesomeSolidUpRightFromSquare", - "FontAwesomeSolidUpload", - "FontAwesomeSolidUserAstronaut", - "FontAwesomeSolidUserCheck", - "FontAwesomeSolidUserClock", - "FontAwesomeSolidUserDoctor", - "FontAwesomeSolidUserGear", - "FontAwesomeSolidUserGraduate", - "FontAwesomeSolidUserGroup", - "FontAwesomeSolidUserInjured", - "FontAwesomeSolidUserLargeSlash", - "FontAwesomeSolidUserLarge", - "FontAwesomeSolidUserLock", - "FontAwesomeSolidUserMinus", - "FontAwesomeSolidUserNinja", - "FontAwesomeSolidUserNurse", - "FontAwesomeSolidUserPen", - "FontAwesomeSolidUserPlus", - "FontAwesomeSolidUserSecret", - "FontAwesomeSolidUserShield", - "FontAwesomeSolidUserSlash", - "FontAwesomeSolidUserTag", - "FontAwesomeSolidUserTie", - "FontAwesomeSolidUserXmark", - "FontAwesomeSolidUser", - "FontAwesomeSolidUsersBetweenLines", - "FontAwesomeSolidUsersGear", - "FontAwesomeSolidUsersLine", - "FontAwesomeSolidUsersRays", - "FontAwesomeSolidUsersRectangle", - "FontAwesomeSolidUsersSlash", - "FontAwesomeSolidUsersViewfinder", - "FontAwesomeSolidUsers", - "FontAwesomeSolidUtensils", - "FontAwesomeSolidV", - "FontAwesomeSolidVanShuttle", - "FontAwesomeSolidVault", - "FontAwesomeSolidVectorSquare", - "FontAwesomeSolidVenusDouble", - "FontAwesomeSolidVenusMars", - "FontAwesomeSolidVenus", - "FontAwesomeSolidVestPatches", - "FontAwesomeSolidVest", - "FontAwesomeSolidVialCircleCheck", - "FontAwesomeSolidVialVirus", - "FontAwesomeSolidVial", - "FontAwesomeSolidVials", - "FontAwesomeSolidVideoSlash", - "FontAwesomeSolidVideo", - "FontAwesomeSolidVihara", - "FontAwesomeSolidVirusCovidSlash", - "FontAwesomeSolidVirusCovid", - "FontAwesomeSolidVirusSlash", - "FontAwesomeSolidVirus", - "FontAwesomeSolidViruses", - "FontAwesomeSolidVoicemail", - "FontAwesomeSolidVolcano", - "FontAwesomeSolidVolleyball", - "FontAwesomeSolidVolumeHigh", - "FontAwesomeSolidVolumeLow", - "FontAwesomeSolidVolumeOff", - "FontAwesomeSolidVolumeXmark", - "FontAwesomeSolidVrCardboard", - "FontAwesomeSolidW", - "FontAwesomeSolidWalkieTalkie", - "FontAwesomeSolidWallet", - "FontAwesomeSolidWandMagicSparkles", - "FontAwesomeSolidWandMagic", - "FontAwesomeSolidWandSparkles", - "FontAwesomeSolidWarehouse", - "FontAwesomeSolidWaterLadder", - "FontAwesomeSolidWater", - "FontAwesomeSolidWaveSquare", - "FontAwesomeSolidWeightHanging", - "FontAwesomeSolidWeightScale", - "FontAwesomeSolidWheatAwnCircleExclamation", - "FontAwesomeSolidWheatAwn", - "FontAwesomeSolidWheelchairMove", - "FontAwesomeSolidWheelchair", - "FontAwesomeSolidWhiskeyGlass", - "FontAwesomeSolidWifi", - "FontAwesomeSolidWind", - "FontAwesomeSolidWindowMaximize", - "FontAwesomeSolidWindowMinimize", - "FontAwesomeSolidWindowRestore", - "FontAwesomeSolidWineBottle", - "FontAwesomeSolidWineGlassEmpty", - "FontAwesomeSolidWineGlass", - "FontAwesomeSolidWonSign", - "FontAwesomeSolidWorm", - "FontAwesomeSolidWrench", - "FontAwesomeSolidXRay", - "FontAwesomeSolidX", - "FontAwesomeSolidXmark", - "FontAwesomeSolidXmarksLines", - "FontAwesomeSolidY", - "FontAwesomeSolidYenSign", - "FontAwesomeSolidYinYang", - "FontAwesomeSolidZ" - ], - "generator": [ - "quote", - "convert_case", - "proc-macro2", - "regex", - "base64" - ], - "heroicons_mini_solid": [ - "HeroiconsMiniSolidAcademicCap", - "HeroiconsMiniSolidAdjustmentsHorizontal", - "HeroiconsMiniSolidAdjustmentsVertical", - "HeroiconsMiniSolidArchiveBoxArrowDown", - "HeroiconsMiniSolidArchiveBoxXMark", - "HeroiconsMiniSolidArchiveBox", - "HeroiconsMiniSolidArrowDownCircle", - "HeroiconsMiniSolidArrowDownLeft", - "HeroiconsMiniSolidArrowDownOnSquareStack", - "HeroiconsMiniSolidArrowDownOnSquare", - "HeroiconsMiniSolidArrowDownRight", - "HeroiconsMiniSolidArrowDownTray", - "HeroiconsMiniSolidArrowDown", - "HeroiconsMiniSolidArrowLeftCircle", - "HeroiconsMiniSolidArrowLeftOnRectangle", - "HeroiconsMiniSolidArrowLeft", - "HeroiconsMiniSolidArrowLongDown", - "HeroiconsMiniSolidArrowLongLeft", - "HeroiconsMiniSolidArrowLongRight", - "HeroiconsMiniSolidArrowLongUp", - "HeroiconsMiniSolidArrowPathRoundedSquare", - "HeroiconsMiniSolidArrowPath", - "HeroiconsMiniSolidArrowRightCircle", - "HeroiconsMiniSolidArrowRightOnRectangle", - "HeroiconsMiniSolidArrowRight", - "HeroiconsMiniSolidArrowSmallDown", - "HeroiconsMiniSolidArrowSmallLeft", - "HeroiconsMiniSolidArrowSmallRight", - "HeroiconsMiniSolidArrowSmallUp", - "HeroiconsMiniSolidArrowTopRightOnSquare", - "HeroiconsMiniSolidArrowTrendingDown", - "HeroiconsMiniSolidArrowTrendingUp", - "HeroiconsMiniSolidArrowUpCircle", - "HeroiconsMiniSolidArrowUpLeft", - "HeroiconsMiniSolidArrowUpOnSquareStack", - "HeroiconsMiniSolidArrowUpOnSquare", - "HeroiconsMiniSolidArrowUpRight", - "HeroiconsMiniSolidArrowUpTray", - "HeroiconsMiniSolidArrowUp", - "HeroiconsMiniSolidArrowUturnDown", - "HeroiconsMiniSolidArrowUturnLeft", - "HeroiconsMiniSolidArrowUturnRight", - "HeroiconsMiniSolidArrowUturnUp", - "HeroiconsMiniSolidArrowsPointingIn", - "HeroiconsMiniSolidArrowsPointingOut", - "HeroiconsMiniSolidArrowsRightLeft", - "HeroiconsMiniSolidArrowsUpDown", - "HeroiconsMiniSolidAtSymbol", - "HeroiconsMiniSolidBackspace", - "HeroiconsMiniSolidBackward", - "HeroiconsMiniSolidBanknotes", - "HeroiconsMiniSolidBars2", - "HeroiconsMiniSolidBars3BottomLeft", - "HeroiconsMiniSolidBars3BottomRight", - "HeroiconsMiniSolidBars3CenterLeft", - "HeroiconsMiniSolidBars3", - "HeroiconsMiniSolidBars4", - "HeroiconsMiniSolidBarsArrowDown", - "HeroiconsMiniSolidBarsArrowUp", - "HeroiconsMiniSolidBattery0", - "HeroiconsMiniSolidBattery100", - "HeroiconsMiniSolidBattery50", - "HeroiconsMiniSolidBeaker", - "HeroiconsMiniSolidBellAlert", - "HeroiconsMiniSolidBellSlash", - "HeroiconsMiniSolidBellSnooze", - "HeroiconsMiniSolidBell", - "HeroiconsMiniSolidBoltSlash", - "HeroiconsMiniSolidBolt", - "HeroiconsMiniSolidBookOpen", - "HeroiconsMiniSolidBookmarkSlash", - "HeroiconsMiniSolidBookmarkSquare", - "HeroiconsMiniSolidBookmark", - "HeroiconsMiniSolidBriefcase", - "HeroiconsMiniSolidBugAnt", - "HeroiconsMiniSolidBuildingLibrary", - "HeroiconsMiniSolidBuildingOffice2", - "HeroiconsMiniSolidBuildingOffice", - "HeroiconsMiniSolidBuildingStorefront", - "HeroiconsMiniSolidCake", - "HeroiconsMiniSolidCalculator", - "HeroiconsMiniSolidCalendarDays", - "HeroiconsMiniSolidCalendar", - "HeroiconsMiniSolidCamera", - "HeroiconsMiniSolidChartBarSquare", - "HeroiconsMiniSolidChartBar", - "HeroiconsMiniSolidChartPie", - "HeroiconsMiniSolidChatBubbleBottomCenterText", - "HeroiconsMiniSolidChatBubbleBottomCenter", - "HeroiconsMiniSolidChatBubbleLeftEllipsis", - "HeroiconsMiniSolidChatBubbleLeftRight", - "HeroiconsMiniSolidChatBubbleLeft", - "HeroiconsMiniSolidChatBubbleOvalLeftEllipsis", - "HeroiconsMiniSolidChatBubbleOvalLeft", - "HeroiconsMiniSolidCheckBadge", - "HeroiconsMiniSolidCheckCircle", - "HeroiconsMiniSolidCheck", - "HeroiconsMiniSolidChevronDoubleDown", - "HeroiconsMiniSolidChevronDoubleLeft", - "HeroiconsMiniSolidChevronDoubleRight", - "HeroiconsMiniSolidChevronDoubleUp", - "HeroiconsMiniSolidChevronDown", - "HeroiconsMiniSolidChevronLeft", - "HeroiconsMiniSolidChevronRight", - "HeroiconsMiniSolidChevronUpDown", - "HeroiconsMiniSolidChevronUp", - "HeroiconsMiniSolidCircleStack", - "HeroiconsMiniSolidClipboardDocumentCheck", - "HeroiconsMiniSolidClipboardDocumentList", - "HeroiconsMiniSolidClipboardDocument", - "HeroiconsMiniSolidClipboard", - "HeroiconsMiniSolidClock", - "HeroiconsMiniSolidCloudArrowDown", - "HeroiconsMiniSolidCloudArrowUp", - "HeroiconsMiniSolidCloud", - "HeroiconsMiniSolidCodeBracketSquare", - "HeroiconsMiniSolidCodeBracket", - "HeroiconsMiniSolidCog6Tooth", - "HeroiconsMiniSolidCog8Tooth", - "HeroiconsMiniSolidCog", - "HeroiconsMiniSolidCommandLine", - "HeroiconsMiniSolidComputerDesktop", - "HeroiconsMiniSolidCpuChip", - "HeroiconsMiniSolidCreditCard", - "HeroiconsMiniSolidCubeTransparent", - "HeroiconsMiniSolidCube", - "HeroiconsMiniSolidCurrencyBangladeshi", - "HeroiconsMiniSolidCurrencyDollar", - "HeroiconsMiniSolidCurrencyEuro", - "HeroiconsMiniSolidCurrencyPound", - "HeroiconsMiniSolidCurrencyRupee", - "HeroiconsMiniSolidCurrencyYen", - "HeroiconsMiniSolidCursorArrowRays", - "HeroiconsMiniSolidCursorArrowRipple", - "HeroiconsMiniSolidDevicePhoneMobile", - "HeroiconsMiniSolidDeviceTablet", - "HeroiconsMiniSolidDocumentArrowDown", - "HeroiconsMiniSolidDocumentArrowUp", - "HeroiconsMiniSolidDocumentChartBar", - "HeroiconsMiniSolidDocumentCheck", - "HeroiconsMiniSolidDocumentDuplicate", - "HeroiconsMiniSolidDocumentMagnifyingGlass", - "HeroiconsMiniSolidDocumentMinus", - "HeroiconsMiniSolidDocumentPlus", - "HeroiconsMiniSolidDocumentText", - "HeroiconsMiniSolidDocument", - "HeroiconsMiniSolidEllipsisHorizontalCircle", - "HeroiconsMiniSolidEllipsisHorizontal", - "HeroiconsMiniSolidEllipsisVertical", - "HeroiconsMiniSolidEnvelopeOpen", - "HeroiconsMiniSolidEnvelope", - "HeroiconsMiniSolidExclamationCircle", - "HeroiconsMiniSolidExclamationTriangle", - "HeroiconsMiniSolidEyeDropper", - "HeroiconsMiniSolidEyeSlash", - "HeroiconsMiniSolidEye", - "HeroiconsMiniSolidFaceFrown", - "HeroiconsMiniSolidFaceSmile", - "HeroiconsMiniSolidFilm", - "HeroiconsMiniSolidFingerPrint", - "HeroiconsMiniSolidFire", - "HeroiconsMiniSolidFlag", - "HeroiconsMiniSolidFolderArrowDown", - "HeroiconsMiniSolidFolderMinus", - "HeroiconsMiniSolidFolderOpen", - "HeroiconsMiniSolidFolderPlus", - "HeroiconsMiniSolidFolder", - "HeroiconsMiniSolidForward", - "HeroiconsMiniSolidFunnel", - "HeroiconsMiniSolidGif", - "HeroiconsMiniSolidGiftTop", - "HeroiconsMiniSolidGift", - "HeroiconsMiniSolidGlobeAlt", - "HeroiconsMiniSolidGlobeAmericas", - "HeroiconsMiniSolidGlobeAsiaAustralia", - "HeroiconsMiniSolidGlobeEuropeAfrica", - "HeroiconsMiniSolidHandRaised", - "HeroiconsMiniSolidHandThumbDown", - "HeroiconsMiniSolidHandThumbUp", - "HeroiconsMiniSolidHashtag", - "HeroiconsMiniSolidHeart", - "HeroiconsMiniSolidHomeModern", - "HeroiconsMiniSolidHome", - "HeroiconsMiniSolidIdentification", - "HeroiconsMiniSolidInboxArrowDown", - "HeroiconsMiniSolidInboxStack", - "HeroiconsMiniSolidInbox", - "HeroiconsMiniSolidInformationCircle", - "HeroiconsMiniSolidKey", - "HeroiconsMiniSolidLanguage", - "HeroiconsMiniSolidLifebuoy", - "HeroiconsMiniSolidLightBulb", - "HeroiconsMiniSolidLink", - "HeroiconsMiniSolidListBullet", - "HeroiconsMiniSolidLockClosed", - "HeroiconsMiniSolidLockOpen", - "HeroiconsMiniSolidMagnifyingGlassCircle", - "HeroiconsMiniSolidMagnifyingGlassMinus", - "HeroiconsMiniSolidMagnifyingGlassPlus", - "HeroiconsMiniSolidMagnifyingGlass", - "HeroiconsMiniSolidMapPin", - "HeroiconsMiniSolidMap", - "HeroiconsMiniSolidMegaphone", - "HeroiconsMiniSolidMicrophone", - "HeroiconsMiniSolidMinusCircle", - "HeroiconsMiniSolidMinusSmall", - "HeroiconsMiniSolidMinus", - "HeroiconsMiniSolidMoon", - "HeroiconsMiniSolidMusicalNote", - "HeroiconsMiniSolidNewspaper", - "HeroiconsMiniSolidNoSymbol", - "HeroiconsMiniSolidPaintBrush", - "HeroiconsMiniSolidPaperAirplane", - "HeroiconsMiniSolidPaperClip", - "HeroiconsMiniSolidPauseCircle", - "HeroiconsMiniSolidPause", - "HeroiconsMiniSolidPencilSquare", - "HeroiconsMiniSolidPencil", - "HeroiconsMiniSolidPhoneArrowDownLeft", - "HeroiconsMiniSolidPhoneArrowUpRight", - "HeroiconsMiniSolidPhoneXMark", - "HeroiconsMiniSolidPhone", - "HeroiconsMiniSolidPhoto", - "HeroiconsMiniSolidPlayCircle", - "HeroiconsMiniSolidPlayPause", - "HeroiconsMiniSolidPlay", - "HeroiconsMiniSolidPlusCircle", - "HeroiconsMiniSolidPlusSmall", - "HeroiconsMiniSolidPlus", - "HeroiconsMiniSolidPower", - "HeroiconsMiniSolidPresentationChartBar", - "HeroiconsMiniSolidPresentationChartLine", - "HeroiconsMiniSolidPrinter", - "HeroiconsMiniSolidPuzzlePiece", - "HeroiconsMiniSolidQrCode", - "HeroiconsMiniSolidQuestionMarkCircle", - "HeroiconsMiniSolidQueueList", - "HeroiconsMiniSolidRadio", - "HeroiconsMiniSolidReceiptPercent", - "HeroiconsMiniSolidReceiptRefund", - "HeroiconsMiniSolidRectangleGroup", - "HeroiconsMiniSolidRectangleStack", - "HeroiconsMiniSolidRocketLaunch", - "HeroiconsMiniSolidRss", - "HeroiconsMiniSolidScale", - "HeroiconsMiniSolidScissors", - "HeroiconsMiniSolidServerStack", - "HeroiconsMiniSolidServer", - "HeroiconsMiniSolidShare", - "HeroiconsMiniSolidShieldCheck", - "HeroiconsMiniSolidShieldExclamation", - "HeroiconsMiniSolidShoppingBag", - "HeroiconsMiniSolidShoppingCart", - "HeroiconsMiniSolidSignalSlash", - "HeroiconsMiniSolidSignal", - "HeroiconsMiniSolidSparkles", - "HeroiconsMiniSolidSpeakerWave", - "HeroiconsMiniSolidSpeakerXMark", - "HeroiconsMiniSolidSquare2Stack", - "HeroiconsMiniSolidSquare3Stack3D", - "HeroiconsMiniSolidSquares2X2", - "HeroiconsMiniSolidSquaresPlus", - "HeroiconsMiniSolidStar", - "HeroiconsMiniSolidStopCircle", - "HeroiconsMiniSolidStop", - "HeroiconsMiniSolidSun", - "HeroiconsMiniSolidSwatch", - "HeroiconsMiniSolidTableCells", - "HeroiconsMiniSolidTag", - "HeroiconsMiniSolidTicket", - "HeroiconsMiniSolidTrash", - "HeroiconsMiniSolidTrophy", - "HeroiconsMiniSolidTruck", - "HeroiconsMiniSolidTv", - "HeroiconsMiniSolidUserCircle", - "HeroiconsMiniSolidUserGroup", - "HeroiconsMiniSolidUserMinus", - "HeroiconsMiniSolidUserPlus", - "HeroiconsMiniSolidUser", - "HeroiconsMiniSolidUsers", - "HeroiconsMiniSolidVariable", - "HeroiconsMiniSolidVideoCameraSlash", - "HeroiconsMiniSolidVideoCamera", - "HeroiconsMiniSolidViewColumns", - "HeroiconsMiniSolidViewfinderCircle", - "HeroiconsMiniSolidWallet", - "HeroiconsMiniSolidWifi", - "HeroiconsMiniSolidWindow", - "HeroiconsMiniSolidWrenchScrewdriver", - "HeroiconsMiniSolidWrench", - "HeroiconsMiniSolidXCircle", - "HeroiconsMiniSolidXMark" - ], - "heroicons_outline": [ - "HeroiconsOutlineAcademicCap", - "HeroiconsOutlineAdjustmentsHorizontal", - "HeroiconsOutlineAdjustmentsVertical", - "HeroiconsOutlineArchiveBoxArrowDown", - "HeroiconsOutlineArchiveBoxXMark", - "HeroiconsOutlineArchiveBox", - "HeroiconsOutlineArrowDownCircle", - "HeroiconsOutlineArrowDownLeft", - "HeroiconsOutlineArrowDownOnSquareStack", - "HeroiconsOutlineArrowDownOnSquare", - "HeroiconsOutlineArrowDownRight", - "HeroiconsOutlineArrowDownTray", - "HeroiconsOutlineArrowDown", - "HeroiconsOutlineArrowLeftCircle", - "HeroiconsOutlineArrowLeftOnRectangle", - "HeroiconsOutlineArrowLeft", - "HeroiconsOutlineArrowLongDown", - "HeroiconsOutlineArrowLongLeft", - "HeroiconsOutlineArrowLongRight", - "HeroiconsOutlineArrowLongUp", - "HeroiconsOutlineArrowPathRoundedSquare", - "HeroiconsOutlineArrowPath", - "HeroiconsOutlineArrowRightCircle", - "HeroiconsOutlineArrowRightOnRectangle", - "HeroiconsOutlineArrowRight", - "HeroiconsOutlineArrowSmallDown", - "HeroiconsOutlineArrowSmallLeft", - "HeroiconsOutlineArrowSmallRight", - "HeroiconsOutlineArrowSmallUp", - "HeroiconsOutlineArrowTopRightOnSquare", - "HeroiconsOutlineArrowTrendingDown", - "HeroiconsOutlineArrowTrendingUp", - "HeroiconsOutlineArrowUpCircle", - "HeroiconsOutlineArrowUpLeft", - "HeroiconsOutlineArrowUpOnSquareStack", - "HeroiconsOutlineArrowUpOnSquare", - "HeroiconsOutlineArrowUpRight", - "HeroiconsOutlineArrowUpTray", - "HeroiconsOutlineArrowUp", - "HeroiconsOutlineArrowUturnDown", - "HeroiconsOutlineArrowUturnLeft", - "HeroiconsOutlineArrowUturnRight", - "HeroiconsOutlineArrowUturnUp", - "HeroiconsOutlineArrowsPointingIn", - "HeroiconsOutlineArrowsPointingOut", - "HeroiconsOutlineArrowsRightLeft", - "HeroiconsOutlineArrowsUpDown", - "HeroiconsOutlineAtSymbol", - "HeroiconsOutlineBackspace", - "HeroiconsOutlineBackward", - "HeroiconsOutlineBanknotes", - "HeroiconsOutlineBars2", - "HeroiconsOutlineBars3BottomLeft", - "HeroiconsOutlineBars3BottomRight", - "HeroiconsOutlineBars3CenterLeft", - "HeroiconsOutlineBars3", - "HeroiconsOutlineBars4", - "HeroiconsOutlineBarsArrowDown", - "HeroiconsOutlineBarsArrowUp", - "HeroiconsOutlineBattery0", - "HeroiconsOutlineBattery100", - "HeroiconsOutlineBattery50", - "HeroiconsOutlineBeaker", - "HeroiconsOutlineBellAlert", - "HeroiconsOutlineBellSlash", - "HeroiconsOutlineBellSnooze", - "HeroiconsOutlineBell", - "HeroiconsOutlineBoltSlash", - "HeroiconsOutlineBolt", - "HeroiconsOutlineBookOpen", - "HeroiconsOutlineBookmarkSlash", - "HeroiconsOutlineBookmarkSquare", - "HeroiconsOutlineBookmark", - "HeroiconsOutlineBriefcase", - "HeroiconsOutlineBugAnt", - "HeroiconsOutlineBuildingLibrary", - "HeroiconsOutlineBuildingOffice2", - "HeroiconsOutlineBuildingOffice", - "HeroiconsOutlineBuildingStorefront", - "HeroiconsOutlineCake", - "HeroiconsOutlineCalculator", - "HeroiconsOutlineCalendarDays", - "HeroiconsOutlineCalendar", - "HeroiconsOutlineCamera", - "HeroiconsOutlineChartBarSquare", - "HeroiconsOutlineChartBar", - "HeroiconsOutlineChartPie", - "HeroiconsOutlineChatBubbleBottomCenterText", - "HeroiconsOutlineChatBubbleBottomCenter", - "HeroiconsOutlineChatBubbleLeftEllipsis", - "HeroiconsOutlineChatBubbleLeftRight", - "HeroiconsOutlineChatBubbleLeft", - "HeroiconsOutlineChatBubbleOvalLeftEllipsis", - "HeroiconsOutlineChatBubbleOvalLeft", - "HeroiconsOutlineCheckBadge", - "HeroiconsOutlineCheckCircle", - "HeroiconsOutlineCheck", - "HeroiconsOutlineChevronDoubleDown", - "HeroiconsOutlineChevronDoubleLeft", - "HeroiconsOutlineChevronDoubleRight", - "HeroiconsOutlineChevronDoubleUp", - "HeroiconsOutlineChevronDown", - "HeroiconsOutlineChevronLeft", - "HeroiconsOutlineChevronRight", - "HeroiconsOutlineChevronUpDown", - "HeroiconsOutlineChevronUp", - "HeroiconsOutlineCircleStack", - "HeroiconsOutlineClipboardDocumentCheck", - "HeroiconsOutlineClipboardDocumentList", - "HeroiconsOutlineClipboardDocument", - "HeroiconsOutlineClipboard", - "HeroiconsOutlineClock", - "HeroiconsOutlineCloudArrowDown", - "HeroiconsOutlineCloudArrowUp", - "HeroiconsOutlineCloud", - "HeroiconsOutlineCodeBracketSquare", - "HeroiconsOutlineCodeBracket", - "HeroiconsOutlineCog6Tooth", - "HeroiconsOutlineCog8Tooth", - "HeroiconsOutlineCog", - "HeroiconsOutlineCommandLine", - "HeroiconsOutlineComputerDesktop", - "HeroiconsOutlineCpuChip", - "HeroiconsOutlineCreditCard", - "HeroiconsOutlineCubeTransparent", - "HeroiconsOutlineCube", - "HeroiconsOutlineCurrencyBangladeshi", - "HeroiconsOutlineCurrencyDollar", - "HeroiconsOutlineCurrencyEuro", - "HeroiconsOutlineCurrencyPound", - "HeroiconsOutlineCurrencyRupee", - "HeroiconsOutlineCurrencyYen", - "HeroiconsOutlineCursorArrowRays", - "HeroiconsOutlineCursorArrowRipple", - "HeroiconsOutlineDevicePhoneMobile", - "HeroiconsOutlineDeviceTablet", - "HeroiconsOutlineDocumentArrowDown", - "HeroiconsOutlineDocumentArrowUp", - "HeroiconsOutlineDocumentChartBar", - "HeroiconsOutlineDocumentCheck", - "HeroiconsOutlineDocumentDuplicate", - "HeroiconsOutlineDocumentMagnifyingGlass", - "HeroiconsOutlineDocumentMinus", - "HeroiconsOutlineDocumentPlus", - "HeroiconsOutlineDocumentText", - "HeroiconsOutlineDocument", - "HeroiconsOutlineEllipsisHorizontalCircle", - "HeroiconsOutlineEllipsisHorizontal", - "HeroiconsOutlineEllipsisVertical", - "HeroiconsOutlineEnvelopeOpen", - "HeroiconsOutlineEnvelope", - "HeroiconsOutlineExclamationCircle", - "HeroiconsOutlineExclamationTriangle", - "HeroiconsOutlineEyeDropper", - "HeroiconsOutlineEyeSlash", - "HeroiconsOutlineEye", - "HeroiconsOutlineFaceFrown", - "HeroiconsOutlineFaceSmile", - "HeroiconsOutlineFilm", - "HeroiconsOutlineFingerPrint", - "HeroiconsOutlineFire", - "HeroiconsOutlineFlag", - "HeroiconsOutlineFolderArrowDown", - "HeroiconsOutlineFolderMinus", - "HeroiconsOutlineFolderOpen", - "HeroiconsOutlineFolderPlus", - "HeroiconsOutlineFolder", - "HeroiconsOutlineForward", - "HeroiconsOutlineFunnel", - "HeroiconsOutlineGif", - "HeroiconsOutlineGiftTop", - "HeroiconsOutlineGift", - "HeroiconsOutlineGlobeAlt", - "HeroiconsOutlineGlobeAmericas", - "HeroiconsOutlineGlobeAsiaAustralia", - "HeroiconsOutlineGlobeEuropeAfrica", - "HeroiconsOutlineHandRaised", - "HeroiconsOutlineHandThumbDown", - "HeroiconsOutlineHandThumbUp", - "HeroiconsOutlineHashtag", - "HeroiconsOutlineHeart", - "HeroiconsOutlineHomeModern", - "HeroiconsOutlineHome", - "HeroiconsOutlineIdentification", - "HeroiconsOutlineInboxArrowDown", - "HeroiconsOutlineInboxStack", - "HeroiconsOutlineInbox", - "HeroiconsOutlineInformationCircle", - "HeroiconsOutlineKey", - "HeroiconsOutlineLanguage", - "HeroiconsOutlineLifebuoy", - "HeroiconsOutlineLightBulb", - "HeroiconsOutlineLink", - "HeroiconsOutlineListBullet", - "HeroiconsOutlineLockClosed", - "HeroiconsOutlineLockOpen", - "HeroiconsOutlineMagnifyingGlassCircle", - "HeroiconsOutlineMagnifyingGlassMinus", - "HeroiconsOutlineMagnifyingGlassPlus", - "HeroiconsOutlineMagnifyingGlass", - "HeroiconsOutlineMapPin", - "HeroiconsOutlineMap", - "HeroiconsOutlineMegaphone", - "HeroiconsOutlineMicrophone", - "HeroiconsOutlineMinusCircle", - "HeroiconsOutlineMinusSmall", - "HeroiconsOutlineMinus", - "HeroiconsOutlineMoon", - "HeroiconsOutlineMusicalNote", - "HeroiconsOutlineNewspaper", - "HeroiconsOutlineNoSymbol", - "HeroiconsOutlinePaintBrush", - "HeroiconsOutlinePaperAirplane", - "HeroiconsOutlinePaperClip", - "HeroiconsOutlinePauseCircle", - "HeroiconsOutlinePause", - "HeroiconsOutlinePencilSquare", - "HeroiconsOutlinePencil", - "HeroiconsOutlinePhoneArrowDownLeft", - "HeroiconsOutlinePhoneArrowUpRight", - "HeroiconsOutlinePhoneXMark", - "HeroiconsOutlinePhone", - "HeroiconsOutlinePhoto", - "HeroiconsOutlinePlayCircle", - "HeroiconsOutlinePlayPause", - "HeroiconsOutlinePlay", - "HeroiconsOutlinePlusCircle", - "HeroiconsOutlinePlusSmall", - "HeroiconsOutlinePlus", - "HeroiconsOutlinePower", - "HeroiconsOutlinePresentationChartBar", - "HeroiconsOutlinePresentationChartLine", - "HeroiconsOutlinePrinter", - "HeroiconsOutlinePuzzlePiece", - "HeroiconsOutlineQrCode", - "HeroiconsOutlineQuestionMarkCircle", - "HeroiconsOutlineQueueList", - "HeroiconsOutlineRadio", - "HeroiconsOutlineReceiptPercent", - "HeroiconsOutlineReceiptRefund", - "HeroiconsOutlineRectangleGroup", - "HeroiconsOutlineRectangleStack", - "HeroiconsOutlineRocketLaunch", - "HeroiconsOutlineRss", - "HeroiconsOutlineScale", - "HeroiconsOutlineScissors", - "HeroiconsOutlineServerStack", - "HeroiconsOutlineServer", - "HeroiconsOutlineShare", - "HeroiconsOutlineShieldCheck", - "HeroiconsOutlineShieldExclamation", - "HeroiconsOutlineShoppingBag", - "HeroiconsOutlineShoppingCart", - "HeroiconsOutlineSignalSlash", - "HeroiconsOutlineSignal", - "HeroiconsOutlineSparkles", - "HeroiconsOutlineSpeakerWave", - "HeroiconsOutlineSpeakerXMark", - "HeroiconsOutlineSquare2Stack", - "HeroiconsOutlineSquare3Stack3D", - "HeroiconsOutlineSquares2X2", - "HeroiconsOutlineSquaresPlus", - "HeroiconsOutlineStar", - "HeroiconsOutlineStopCircle", - "HeroiconsOutlineStop", - "HeroiconsOutlineSun", - "HeroiconsOutlineSwatch", - "HeroiconsOutlineTableCells", - "HeroiconsOutlineTag", - "HeroiconsOutlineTicket", - "HeroiconsOutlineTrash", - "HeroiconsOutlineTrophy", - "HeroiconsOutlineTruck", - "HeroiconsOutlineTv", - "HeroiconsOutlineUserCircle", - "HeroiconsOutlineUserGroup", - "HeroiconsOutlineUserMinus", - "HeroiconsOutlineUserPlus", - "HeroiconsOutlineUser", - "HeroiconsOutlineUsers", - "HeroiconsOutlineVariable", - "HeroiconsOutlineVideoCameraSlash", - "HeroiconsOutlineVideoCamera", - "HeroiconsOutlineViewColumns", - "HeroiconsOutlineViewfinderCircle", - "HeroiconsOutlineWallet", - "HeroiconsOutlineWifi", - "HeroiconsOutlineWindow", - "HeroiconsOutlineWrenchScrewdriver", - "HeroiconsOutlineWrench", - "HeroiconsOutlineXCircle", - "HeroiconsOutlineXMark" - ], - "heroicons_solid": [ - "HeroiconsSolidAcademicCap", - "HeroiconsSolidAdjustmentsHorizontal", - "HeroiconsSolidAdjustmentsVertical", - "HeroiconsSolidArchiveBoxArrowDown", - "HeroiconsSolidArchiveBoxXMark", - "HeroiconsSolidArchiveBox", - "HeroiconsSolidArrowDownCircle", - "HeroiconsSolidArrowDownLeft", - "HeroiconsSolidArrowDownOnSquareStack", - "HeroiconsSolidArrowDownOnSquare", - "HeroiconsSolidArrowDownRight", - "HeroiconsSolidArrowDownTray", - "HeroiconsSolidArrowDown", - "HeroiconsSolidArrowLeftCircle", - "HeroiconsSolidArrowLeftOnRectangle", - "HeroiconsSolidArrowLeft", - "HeroiconsSolidArrowLongDown", - "HeroiconsSolidArrowLongLeft", - "HeroiconsSolidArrowLongRight", - "HeroiconsSolidArrowLongUp", - "HeroiconsSolidArrowPathRoundedSquare", - "HeroiconsSolidArrowPath", - "HeroiconsSolidArrowRightCircle", - "HeroiconsSolidArrowRightOnRectangle", - "HeroiconsSolidArrowRight", - "HeroiconsSolidArrowSmallDown", - "HeroiconsSolidArrowSmallLeft", - "HeroiconsSolidArrowSmallRight", - "HeroiconsSolidArrowSmallUp", - "HeroiconsSolidArrowTopRightOnSquare", - "HeroiconsSolidArrowTrendingDown", - "HeroiconsSolidArrowTrendingUp", - "HeroiconsSolidArrowUpCircle", - "HeroiconsSolidArrowUpLeft", - "HeroiconsSolidArrowUpOnSquareStack", - "HeroiconsSolidArrowUpOnSquare", - "HeroiconsSolidArrowUpRight", - "HeroiconsSolidArrowUpTray", - "HeroiconsSolidArrowUp", - "HeroiconsSolidArrowUturnDown", - "HeroiconsSolidArrowUturnLeft", - "HeroiconsSolidArrowUturnRight", - "HeroiconsSolidArrowUturnUp", - "HeroiconsSolidArrowsPointingIn", - "HeroiconsSolidArrowsPointingOut", - "HeroiconsSolidArrowsRightLeft", - "HeroiconsSolidArrowsUpDown", - "HeroiconsSolidAtSymbol", - "HeroiconsSolidBackspace", - "HeroiconsSolidBackward", - "HeroiconsSolidBanknotes", - "HeroiconsSolidBars2", - "HeroiconsSolidBars3BottomLeft", - "HeroiconsSolidBars3BottomRight", - "HeroiconsSolidBars3CenterLeft", - "HeroiconsSolidBars3", - "HeroiconsSolidBars4", - "HeroiconsSolidBarsArrowDown", - "HeroiconsSolidBarsArrowUp", - "HeroiconsSolidBattery0", - "HeroiconsSolidBattery100", - "HeroiconsSolidBattery50", - "HeroiconsSolidBeaker", - "HeroiconsSolidBellAlert", - "HeroiconsSolidBellSlash", - "HeroiconsSolidBellSnooze", - "HeroiconsSolidBell", - "HeroiconsSolidBoltSlash", - "HeroiconsSolidBolt", - "HeroiconsSolidBookOpen", - "HeroiconsSolidBookmarkSlash", - "HeroiconsSolidBookmarkSquare", - "HeroiconsSolidBookmark", - "HeroiconsSolidBriefcase", - "HeroiconsSolidBugAnt", - "HeroiconsSolidBuildingLibrary", - "HeroiconsSolidBuildingOffice2", - "HeroiconsSolidBuildingOffice", - "HeroiconsSolidBuildingStorefront", - "HeroiconsSolidCake", - "HeroiconsSolidCalculator", - "HeroiconsSolidCalendarDays", - "HeroiconsSolidCalendar", - "HeroiconsSolidCamera", - "HeroiconsSolidChartBarSquare", - "HeroiconsSolidChartBar", - "HeroiconsSolidChartPie", - "HeroiconsSolidChatBubbleBottomCenterText", - "HeroiconsSolidChatBubbleBottomCenter", - "HeroiconsSolidChatBubbleLeftEllipsis", - "HeroiconsSolidChatBubbleLeftRight", - "HeroiconsSolidChatBubbleLeft", - "HeroiconsSolidChatBubbleOvalLeftEllipsis", - "HeroiconsSolidChatBubbleOvalLeft", - "HeroiconsSolidCheckBadge", - "HeroiconsSolidCheckCircle", - "HeroiconsSolidCheck", - "HeroiconsSolidChevronDoubleDown", - "HeroiconsSolidChevronDoubleLeft", - "HeroiconsSolidChevronDoubleRight", - "HeroiconsSolidChevronDoubleUp", - "HeroiconsSolidChevronDown", - "HeroiconsSolidChevronLeft", - "HeroiconsSolidChevronRight", - "HeroiconsSolidChevronUpDown", - "HeroiconsSolidChevronUp", - "HeroiconsSolidCircleStack", - "HeroiconsSolidClipboardDocumentCheck", - "HeroiconsSolidClipboardDocumentList", - "HeroiconsSolidClipboardDocument", - "HeroiconsSolidClipboard", - "HeroiconsSolidClock", - "HeroiconsSolidCloudArrowDown", - "HeroiconsSolidCloudArrowUp", - "HeroiconsSolidCloud", - "HeroiconsSolidCodeBracketSquare", - "HeroiconsSolidCodeBracket", - "HeroiconsSolidCog6Tooth", - "HeroiconsSolidCog8Tooth", - "HeroiconsSolidCog", - "HeroiconsSolidCommandLine", - "HeroiconsSolidComputerDesktop", - "HeroiconsSolidCpuChip", - "HeroiconsSolidCreditCard", - "HeroiconsSolidCubeTransparent", - "HeroiconsSolidCube", - "HeroiconsSolidCurrencyBangladeshi", - "HeroiconsSolidCurrencyDollar", - "HeroiconsSolidCurrencyEuro", - "HeroiconsSolidCurrencyPound", - "HeroiconsSolidCurrencyRupee", - "HeroiconsSolidCurrencyYen", - "HeroiconsSolidCursorArrowRays", - "HeroiconsSolidCursorArrowRipple", - "HeroiconsSolidDevicePhoneMobile", - "HeroiconsSolidDeviceTablet", - "HeroiconsSolidDocumentArrowDown", - "HeroiconsSolidDocumentArrowUp", - "HeroiconsSolidDocumentChartBar", - "HeroiconsSolidDocumentCheck", - "HeroiconsSolidDocumentDuplicate", - "HeroiconsSolidDocumentMagnifyingGlass", - "HeroiconsSolidDocumentMinus", - "HeroiconsSolidDocumentPlus", - "HeroiconsSolidDocumentText", - "HeroiconsSolidDocument", - "HeroiconsSolidEllipsisHorizontalCircle", - "HeroiconsSolidEllipsisHorizontal", - "HeroiconsSolidEllipsisVertical", - "HeroiconsSolidEnvelopeOpen", - "HeroiconsSolidEnvelope", - "HeroiconsSolidExclamationCircle", - "HeroiconsSolidExclamationTriangle", - "HeroiconsSolidEyeDropper", - "HeroiconsSolidEyeSlash", - "HeroiconsSolidEye", - "HeroiconsSolidFaceFrown", - "HeroiconsSolidFaceSmile", - "HeroiconsSolidFilm", - "HeroiconsSolidFingerPrint", - "HeroiconsSolidFire", - "HeroiconsSolidFlag", - "HeroiconsSolidFolderArrowDown", - "HeroiconsSolidFolderMinus", - "HeroiconsSolidFolderOpen", - "HeroiconsSolidFolderPlus", - "HeroiconsSolidFolder", - "HeroiconsSolidForward", - "HeroiconsSolidFunnel", - "HeroiconsSolidGif", - "HeroiconsSolidGiftTop", - "HeroiconsSolidGift", - "HeroiconsSolidGlobeAlt", - "HeroiconsSolidGlobeAmericas", - "HeroiconsSolidGlobeAsiaAustralia", - "HeroiconsSolidGlobeEuropeAfrica", - "HeroiconsSolidHandRaised", - "HeroiconsSolidHandThumbDown", - "HeroiconsSolidHandThumbUp", - "HeroiconsSolidHashtag", - "HeroiconsSolidHeart", - "HeroiconsSolidHomeModern", - "HeroiconsSolidHome", - "HeroiconsSolidIdentification", - "HeroiconsSolidInboxArrowDown", - "HeroiconsSolidInboxStack", - "HeroiconsSolidInbox", - "HeroiconsSolidInformationCircle", - "HeroiconsSolidKey", - "HeroiconsSolidLanguage", - "HeroiconsSolidLifebuoy", - "HeroiconsSolidLightBulb", - "HeroiconsSolidLink", - "HeroiconsSolidListBullet", - "HeroiconsSolidLockClosed", - "HeroiconsSolidLockOpen", - "HeroiconsSolidMagnifyingGlassCircle", - "HeroiconsSolidMagnifyingGlassMinus", - "HeroiconsSolidMagnifyingGlassPlus", - "HeroiconsSolidMagnifyingGlass", - "HeroiconsSolidMapPin", - "HeroiconsSolidMap", - "HeroiconsSolidMegaphone", - "HeroiconsSolidMicrophone", - "HeroiconsSolidMinusCircle", - "HeroiconsSolidMinusSmall", - "HeroiconsSolidMinus", - "HeroiconsSolidMoon", - "HeroiconsSolidMusicalNote", - "HeroiconsSolidNewspaper", - "HeroiconsSolidNoSymbol", - "HeroiconsSolidPaintBrush", - "HeroiconsSolidPaperAirplane", - "HeroiconsSolidPaperClip", - "HeroiconsSolidPauseCircle", - "HeroiconsSolidPause", - "HeroiconsSolidPencilSquare", - "HeroiconsSolidPencil", - "HeroiconsSolidPhoneArrowDownLeft", - "HeroiconsSolidPhoneArrowUpRight", - "HeroiconsSolidPhoneXMark", - "HeroiconsSolidPhone", - "HeroiconsSolidPhoto", - "HeroiconsSolidPlayCircle", - "HeroiconsSolidPlayPause", - "HeroiconsSolidPlay", - "HeroiconsSolidPlusCircle", - "HeroiconsSolidPlusSmall", - "HeroiconsSolidPlus", - "HeroiconsSolidPower", - "HeroiconsSolidPresentationChartBar", - "HeroiconsSolidPresentationChartLine", - "HeroiconsSolidPrinter", - "HeroiconsSolidPuzzlePiece", - "HeroiconsSolidQrCode", - "HeroiconsSolidQuestionMarkCircle", - "HeroiconsSolidQueueList", - "HeroiconsSolidRadio", - "HeroiconsSolidReceiptPercent", - "HeroiconsSolidReceiptRefund", - "HeroiconsSolidRectangleGroup", - "HeroiconsSolidRectangleStack", - "HeroiconsSolidRocketLaunch", - "HeroiconsSolidRss", - "HeroiconsSolidScale", - "HeroiconsSolidScissors", - "HeroiconsSolidServerStack", - "HeroiconsSolidServer", - "HeroiconsSolidShare", - "HeroiconsSolidShieldCheck", - "HeroiconsSolidShieldExclamation", - "HeroiconsSolidShoppingBag", - "HeroiconsSolidShoppingCart", - "HeroiconsSolidSignalSlash", - "HeroiconsSolidSignal", - "HeroiconsSolidSparkles", - "HeroiconsSolidSpeakerWave", - "HeroiconsSolidSpeakerXMark", - "HeroiconsSolidSquare2Stack", - "HeroiconsSolidSquare3Stack3D", - "HeroiconsSolidSquares2X2", - "HeroiconsSolidSquaresPlus", - "HeroiconsSolidStar", - "HeroiconsSolidStopCircle", - "HeroiconsSolidStop", - "HeroiconsSolidSun", - "HeroiconsSolidSwatch", - "HeroiconsSolidTableCells", - "HeroiconsSolidTag", - "HeroiconsSolidTicket", - "HeroiconsSolidTrash", - "HeroiconsSolidTrophy", - "HeroiconsSolidTruck", - "HeroiconsSolidTv", - "HeroiconsSolidUserCircle", - "HeroiconsSolidUserGroup", - "HeroiconsSolidUserMinus", - "HeroiconsSolidUserPlus", - "HeroiconsSolidUser", - "HeroiconsSolidUsers", - "HeroiconsSolidVariable", - "HeroiconsSolidVideoCameraSlash", - "HeroiconsSolidVideoCamera", - "HeroiconsSolidViewColumns", - "HeroiconsSolidViewfinderCircle", - "HeroiconsSolidWallet", - "HeroiconsSolidWifi", - "HeroiconsSolidWindow", - "HeroiconsSolidWrenchScrewdriver", - "HeroiconsSolidWrench", - "HeroiconsSolidXCircle", - "HeroiconsSolidXMark" - ], - "iterate_icon_id": [ - "enum-iterator" - ], - "lipis_flag_icons_1_x_1": [ - "LipisFlagIcons1X1Ac", - "LipisFlagIcons1X1Ad", - "LipisFlagIcons1X1Ae", - "LipisFlagIcons1X1Af", - "LipisFlagIcons1X1Ag", - "LipisFlagIcons1X1Ai", - "LipisFlagIcons1X1Al", - "LipisFlagIcons1X1Am", - "LipisFlagIcons1X1Ao", - "LipisFlagIcons1X1Aq", - "LipisFlagIcons1X1Ar", - "LipisFlagIcons1X1As", - "LipisFlagIcons1X1At", - "LipisFlagIcons1X1Au", - "LipisFlagIcons1X1Aw", - "LipisFlagIcons1X1Ax", - "LipisFlagIcons1X1Az", - "LipisFlagIcons1X1Ba", - "LipisFlagIcons1X1Bb", - "LipisFlagIcons1X1Bd", - "LipisFlagIcons1X1Be", - "LipisFlagIcons1X1Bf", - "LipisFlagIcons1X1Bg", - "LipisFlagIcons1X1Bh", - "LipisFlagIcons1X1Bi", - "LipisFlagIcons1X1Bj", - "LipisFlagIcons1X1Bl", - "LipisFlagIcons1X1Bm", - "LipisFlagIcons1X1Bn", - "LipisFlagIcons1X1Bo", - "LipisFlagIcons1X1Bq", - "LipisFlagIcons1X1Br", - "LipisFlagIcons1X1Bs", - "LipisFlagIcons1X1Bt", - "LipisFlagIcons1X1Bv", - "LipisFlagIcons1X1Bw", - "LipisFlagIcons1X1By", - "LipisFlagIcons1X1Bz", - "LipisFlagIcons1X1Ca", - "LipisFlagIcons1X1Cc", - "LipisFlagIcons1X1Cd", - "LipisFlagIcons1X1Cefta", - "LipisFlagIcons1X1Cf", - "LipisFlagIcons1X1Cg", - "LipisFlagIcons1X1Ch", - "LipisFlagIcons1X1Ci", - "LipisFlagIcons1X1Ck", - "LipisFlagIcons1X1Cl", - "LipisFlagIcons1X1Cm", - "LipisFlagIcons1X1Cn", - "LipisFlagIcons1X1Co", - "LipisFlagIcons1X1Cp", - "LipisFlagIcons1X1Cr", - "LipisFlagIcons1X1Cu", - "LipisFlagIcons1X1Cv", - "LipisFlagIcons1X1Cw", - "LipisFlagIcons1X1Cx", - "LipisFlagIcons1X1Cy", - "LipisFlagIcons1X1Cz", - "LipisFlagIcons1X1De", - "LipisFlagIcons1X1Dg", - "LipisFlagIcons1X1Dj", - "LipisFlagIcons1X1Dk", - "LipisFlagIcons1X1Dm", - "LipisFlagIcons1X1Do", - "LipisFlagIcons1X1Dz", - "LipisFlagIcons1X1Ea", - "LipisFlagIcons1X1Ec", - "LipisFlagIcons1X1Ee", - "LipisFlagIcons1X1Eg", - "LipisFlagIcons1X1Eh", - "LipisFlagIcons1X1Er", - "LipisFlagIcons1X1EsCt", - "LipisFlagIcons1X1EsGa", - "LipisFlagIcons1X1Es", - "LipisFlagIcons1X1Et", - "LipisFlagIcons1X1Eu", - "LipisFlagIcons1X1Fi", - "LipisFlagIcons1X1Fj", - "LipisFlagIcons1X1Fk", - "LipisFlagIcons1X1Fm", - "LipisFlagIcons1X1Fo", - "LipisFlagIcons1X1Fr", - "LipisFlagIcons1X1Ga", - "LipisFlagIcons1X1GbEng", - "LipisFlagIcons1X1GbNir", - "LipisFlagIcons1X1GbSct", - "LipisFlagIcons1X1GbWls", - "LipisFlagIcons1X1Gb", - "LipisFlagIcons1X1Gd", - "LipisFlagIcons1X1Ge", - "LipisFlagIcons1X1Gf", - "LipisFlagIcons1X1Gg", - "LipisFlagIcons1X1Gh", - "LipisFlagIcons1X1Gi", - "LipisFlagIcons1X1Gl", - "LipisFlagIcons1X1Gm", - "LipisFlagIcons1X1Gn", - "LipisFlagIcons1X1Gp", - "LipisFlagIcons1X1Gq", - "LipisFlagIcons1X1Gr", - "LipisFlagIcons1X1Gs", - "LipisFlagIcons1X1Gt", - "LipisFlagIcons1X1Gu", - "LipisFlagIcons1X1Gw", - "LipisFlagIcons1X1Gy", - "LipisFlagIcons1X1Hk", - "LipisFlagIcons1X1Hm", - "LipisFlagIcons1X1Hn", - "LipisFlagIcons1X1Hr", - "LipisFlagIcons1X1Ht", - "LipisFlagIcons1X1Hu", - "LipisFlagIcons1X1Ic", - "LipisFlagIcons1X1Id", - "LipisFlagIcons1X1Ie", - "LipisFlagIcons1X1Il", - "LipisFlagIcons1X1Im", - "LipisFlagIcons1X1In", - "LipisFlagIcons1X1Io", - "LipisFlagIcons1X1Iq", - "LipisFlagIcons1X1Ir", - "LipisFlagIcons1X1Is", - "LipisFlagIcons1X1It", - "LipisFlagIcons1X1Je", - "LipisFlagIcons1X1Jm", - "LipisFlagIcons1X1Jo", - "LipisFlagIcons1X1Jp", - "LipisFlagIcons1X1Ke", - "LipisFlagIcons1X1Kg", - "LipisFlagIcons1X1Kh", - "LipisFlagIcons1X1Ki", - "LipisFlagIcons1X1Km", - "LipisFlagIcons1X1Kn", - "LipisFlagIcons1X1Kp", - "LipisFlagIcons1X1Kr", - "LipisFlagIcons1X1Kw", - "LipisFlagIcons1X1Ky", - "LipisFlagIcons1X1Kz", - "LipisFlagIcons1X1La", - "LipisFlagIcons1X1Lb", - "LipisFlagIcons1X1Lc", - "LipisFlagIcons1X1Li", - "LipisFlagIcons1X1Lk", - "LipisFlagIcons1X1Lr", - "LipisFlagIcons1X1Ls", - "LipisFlagIcons1X1Lt", - "LipisFlagIcons1X1Lu", - "LipisFlagIcons1X1Lv", - "LipisFlagIcons1X1Ly", - "LipisFlagIcons1X1Ma", - "LipisFlagIcons1X1Mc", - "LipisFlagIcons1X1Md", - "LipisFlagIcons1X1Me", - "LipisFlagIcons1X1Mf", - "LipisFlagIcons1X1Mg", - "LipisFlagIcons1X1Mh", - "LipisFlagIcons1X1Mk", - "LipisFlagIcons1X1Ml", - "LipisFlagIcons1X1Mm", - "LipisFlagIcons1X1Mn", - "LipisFlagIcons1X1Mo", - "LipisFlagIcons1X1Mp", - "LipisFlagIcons1X1Mq", - "LipisFlagIcons1X1Mr", - "LipisFlagIcons1X1Ms", - "LipisFlagIcons1X1Mt", - "LipisFlagIcons1X1Mu", - "LipisFlagIcons1X1Mv", - "LipisFlagIcons1X1Mw", - "LipisFlagIcons1X1Mx", - "LipisFlagIcons1X1My", - "LipisFlagIcons1X1Mz", - "LipisFlagIcons1X1Na", - "LipisFlagIcons1X1Nc", - "LipisFlagIcons1X1Ne", - "LipisFlagIcons1X1Nf", - "LipisFlagIcons1X1Ng", - "LipisFlagIcons1X1Ni", - "LipisFlagIcons1X1Nl", - "LipisFlagIcons1X1No", - "LipisFlagIcons1X1Np", - "LipisFlagIcons1X1Nr", - "LipisFlagIcons1X1Nu", - "LipisFlagIcons1X1Nz", - "LipisFlagIcons1X1Om", - "LipisFlagIcons1X1Pa", - "LipisFlagIcons1X1Pe", - "LipisFlagIcons1X1Pf", - "LipisFlagIcons1X1Pg", - "LipisFlagIcons1X1Ph", - "LipisFlagIcons1X1Pk", - "LipisFlagIcons1X1Pl", - "LipisFlagIcons1X1Pm", - "LipisFlagIcons1X1Pn", - "LipisFlagIcons1X1Pr", - "LipisFlagIcons1X1Ps", - "LipisFlagIcons1X1Pt", - "LipisFlagIcons1X1Pw", - "LipisFlagIcons1X1Py", - "LipisFlagIcons1X1Qa", - "LipisFlagIcons1X1Re", - "LipisFlagIcons1X1Ro", - "LipisFlagIcons1X1Rs", - "LipisFlagIcons1X1Ru", - "LipisFlagIcons1X1Rw", - "LipisFlagIcons1X1Sa", - "LipisFlagIcons1X1Sb", - "LipisFlagIcons1X1Sc", - "LipisFlagIcons1X1Sd", - "LipisFlagIcons1X1Se", - "LipisFlagIcons1X1Sg", - "LipisFlagIcons1X1Sh", - "LipisFlagIcons1X1Si", - "LipisFlagIcons1X1Sj", - "LipisFlagIcons1X1Sk", - "LipisFlagIcons1X1Sl", - "LipisFlagIcons1X1Sm", - "LipisFlagIcons1X1Sn", - "LipisFlagIcons1X1So", - "LipisFlagIcons1X1Sr", - "LipisFlagIcons1X1Ss", - "LipisFlagIcons1X1St", - "LipisFlagIcons1X1Sv", - "LipisFlagIcons1X1Sx", - "LipisFlagIcons1X1Sy", - "LipisFlagIcons1X1Sz", - "LipisFlagIcons1X1Ta", - "LipisFlagIcons1X1Tc", - "LipisFlagIcons1X1Td", - "LipisFlagIcons1X1Tf", - "LipisFlagIcons1X1Tg", - "LipisFlagIcons1X1Th", - "LipisFlagIcons1X1Tj", - "LipisFlagIcons1X1Tk", - "LipisFlagIcons1X1Tl", - "LipisFlagIcons1X1Tm", - "LipisFlagIcons1X1Tn", - "LipisFlagIcons1X1To", - "LipisFlagIcons1X1Tr", - "LipisFlagIcons1X1Tt", - "LipisFlagIcons1X1Tv", - "LipisFlagIcons1X1Tw", - "LipisFlagIcons1X1Tz", - "LipisFlagIcons1X1Ua", - "LipisFlagIcons1X1Ug", - "LipisFlagIcons1X1Um", - "LipisFlagIcons1X1Un", - "LipisFlagIcons1X1Us", - "LipisFlagIcons1X1Uy", - "LipisFlagIcons1X1Uz", - "LipisFlagIcons1X1Va", - "LipisFlagIcons1X1Vc", - "LipisFlagIcons1X1Ve", - "LipisFlagIcons1X1Vg", - "LipisFlagIcons1X1Vi", - "LipisFlagIcons1X1Vn", - "LipisFlagIcons1X1Vu", - "LipisFlagIcons1X1Wf", - "LipisFlagIcons1X1Ws", - "LipisFlagIcons1X1Xk", - "LipisFlagIcons1X1Xx", - "LipisFlagIcons1X1Ye", - "LipisFlagIcons1X1Yt", - "LipisFlagIcons1X1Za", - "LipisFlagIcons1X1Zm", - "LipisFlagIcons1X1Zw" - ], - "lipis_flag_icons_4_x_3": [ - "LipisFlagIcons4X3Ac", - "LipisFlagIcons4X3Ad", - "LipisFlagIcons4X3Ae", - "LipisFlagIcons4X3Af", - "LipisFlagIcons4X3Ag", - "LipisFlagIcons4X3Ai", - "LipisFlagIcons4X3Al", - "LipisFlagIcons4X3Am", - "LipisFlagIcons4X3Ao", - "LipisFlagIcons4X3Aq", - "LipisFlagIcons4X3Ar", - "LipisFlagIcons4X3As", - "LipisFlagIcons4X3At", - "LipisFlagIcons4X3Au", - "LipisFlagIcons4X3Aw", - "LipisFlagIcons4X3Ax", - "LipisFlagIcons4X3Az", - "LipisFlagIcons4X3Ba", - "LipisFlagIcons4X3Bb", - "LipisFlagIcons4X3Bd", - "LipisFlagIcons4X3Be", - "LipisFlagIcons4X3Bf", - "LipisFlagIcons4X3Bg", - "LipisFlagIcons4X3Bh", - "LipisFlagIcons4X3Bi", - "LipisFlagIcons4X3Bj", - "LipisFlagIcons4X3Bl", - "LipisFlagIcons4X3Bm", - "LipisFlagIcons4X3Bn", - "LipisFlagIcons4X3Bo", - "LipisFlagIcons4X3Bq", - "LipisFlagIcons4X3Br", - "LipisFlagIcons4X3Bs", - "LipisFlagIcons4X3Bt", - "LipisFlagIcons4X3Bv", - "LipisFlagIcons4X3Bw", - "LipisFlagIcons4X3By", - "LipisFlagIcons4X3Bz", - "LipisFlagIcons4X3Ca", - "LipisFlagIcons4X3Cc", - "LipisFlagIcons4X3Cd", - "LipisFlagIcons4X3Cefta", - "LipisFlagIcons4X3Cf", - "LipisFlagIcons4X3Cg", - "LipisFlagIcons4X3Ch", - "LipisFlagIcons4X3Ci", - "LipisFlagIcons4X3Ck", - "LipisFlagIcons4X3Cl", - "LipisFlagIcons4X3Cm", - "LipisFlagIcons4X3Cn", - "LipisFlagIcons4X3Co", - "LipisFlagIcons4X3Cp", - "LipisFlagIcons4X3Cr", - "LipisFlagIcons4X3Cu", - "LipisFlagIcons4X3Cv", - "LipisFlagIcons4X3Cw", - "LipisFlagIcons4X3Cx", - "LipisFlagIcons4X3Cy", - "LipisFlagIcons4X3Cz", - "LipisFlagIcons4X3De", - "LipisFlagIcons4X3Dg", - "LipisFlagIcons4X3Dj", - "LipisFlagIcons4X3Dk", - "LipisFlagIcons4X3Dm", - "LipisFlagIcons4X3Do", - "LipisFlagIcons4X3Dz", - "LipisFlagIcons4X3Ea", - "LipisFlagIcons4X3Ec", - "LipisFlagIcons4X3Ee", - "LipisFlagIcons4X3Eg", - "LipisFlagIcons4X3Eh", - "LipisFlagIcons4X3Er", - "LipisFlagIcons4X3EsCt", - "LipisFlagIcons4X3EsGa", - "LipisFlagIcons4X3Es", - "LipisFlagIcons4X3Et", - "LipisFlagIcons4X3Eu", - "LipisFlagIcons4X3Fi", - "LipisFlagIcons4X3Fj", - "LipisFlagIcons4X3Fk", - "LipisFlagIcons4X3Fm", - "LipisFlagIcons4X3Fo", - "LipisFlagIcons4X3Fr", - "LipisFlagIcons4X3Ga", - "LipisFlagIcons4X3GbEng", - "LipisFlagIcons4X3GbNir", - "LipisFlagIcons4X3GbSct", - "LipisFlagIcons4X3GbWls", - "LipisFlagIcons4X3Gb", - "LipisFlagIcons4X3Gd", - "LipisFlagIcons4X3Ge", - "LipisFlagIcons4X3Gf", - "LipisFlagIcons4X3Gg", - "LipisFlagIcons4X3Gh", - "LipisFlagIcons4X3Gi", - "LipisFlagIcons4X3Gl", - "LipisFlagIcons4X3Gm", - "LipisFlagIcons4X3Gn", - "LipisFlagIcons4X3Gp", - "LipisFlagIcons4X3Gq", - "LipisFlagIcons4X3Gr", - "LipisFlagIcons4X3Gs", - "LipisFlagIcons4X3Gt", - "LipisFlagIcons4X3Gu", - "LipisFlagIcons4X3Gw", - "LipisFlagIcons4X3Gy", - "LipisFlagIcons4X3Hk", - "LipisFlagIcons4X3Hm", - "LipisFlagIcons4X3Hn", - "LipisFlagIcons4X3Hr", - "LipisFlagIcons4X3Ht", - "LipisFlagIcons4X3Hu", - "LipisFlagIcons4X3Ic", - "LipisFlagIcons4X3Id", - "LipisFlagIcons4X3Ie", - "LipisFlagIcons4X3Il", - "LipisFlagIcons4X3Im", - "LipisFlagIcons4X3In", - "LipisFlagIcons4X3Io", - "LipisFlagIcons4X3Iq", - "LipisFlagIcons4X3Ir", - "LipisFlagIcons4X3Is", - "LipisFlagIcons4X3It", - "LipisFlagIcons4X3Je", - "LipisFlagIcons4X3Jm", - "LipisFlagIcons4X3Jo", - "LipisFlagIcons4X3Jp", - "LipisFlagIcons4X3Ke", - "LipisFlagIcons4X3Kg", - "LipisFlagIcons4X3Kh", - "LipisFlagIcons4X3Ki", - "LipisFlagIcons4X3Km", - "LipisFlagIcons4X3Kn", - "LipisFlagIcons4X3Kp", - "LipisFlagIcons4X3Kr", - "LipisFlagIcons4X3Kw", - "LipisFlagIcons4X3Ky", - "LipisFlagIcons4X3Kz", - "LipisFlagIcons4X3La", - "LipisFlagIcons4X3Lb", - "LipisFlagIcons4X3Lc", - "LipisFlagIcons4X3Li", - "LipisFlagIcons4X3Lk", - "LipisFlagIcons4X3Lr", - "LipisFlagIcons4X3Ls", - "LipisFlagIcons4X3Lt", - "LipisFlagIcons4X3Lu", - "LipisFlagIcons4X3Lv", - "LipisFlagIcons4X3Ly", - "LipisFlagIcons4X3Ma", - "LipisFlagIcons4X3Mc", - "LipisFlagIcons4X3Md", - "LipisFlagIcons4X3Me", - "LipisFlagIcons4X3Mf", - "LipisFlagIcons4X3Mg", - "LipisFlagIcons4X3Mh", - "LipisFlagIcons4X3Mk", - "LipisFlagIcons4X3Ml", - "LipisFlagIcons4X3Mm", - "LipisFlagIcons4X3Mn", - "LipisFlagIcons4X3Mo", - "LipisFlagIcons4X3Mp", - "LipisFlagIcons4X3Mq", - "LipisFlagIcons4X3Mr", - "LipisFlagIcons4X3Ms", - "LipisFlagIcons4X3Mt", - "LipisFlagIcons4X3Mu", - "LipisFlagIcons4X3Mv", - "LipisFlagIcons4X3Mw", - "LipisFlagIcons4X3Mx", - "LipisFlagIcons4X3My", - "LipisFlagIcons4X3Mz", - "LipisFlagIcons4X3Na", - "LipisFlagIcons4X3Nc", - "LipisFlagIcons4X3Ne", - "LipisFlagIcons4X3Nf", - "LipisFlagIcons4X3Ng", - "LipisFlagIcons4X3Ni", - "LipisFlagIcons4X3Nl", - "LipisFlagIcons4X3No", - "LipisFlagIcons4X3Np", - "LipisFlagIcons4X3Nr", - "LipisFlagIcons4X3Nu", - "LipisFlagIcons4X3Nz", - "LipisFlagIcons4X3Om", - "LipisFlagIcons4X3Pa", - "LipisFlagIcons4X3Pe", - "LipisFlagIcons4X3Pf", - "LipisFlagIcons4X3Pg", - "LipisFlagIcons4X3Ph", - "LipisFlagIcons4X3Pk", - "LipisFlagIcons4X3Pl", - "LipisFlagIcons4X3Pm", - "LipisFlagIcons4X3Pn", - "LipisFlagIcons4X3Pr", - "LipisFlagIcons4X3Ps", - "LipisFlagIcons4X3Pt", - "LipisFlagIcons4X3Pw", - "LipisFlagIcons4X3Py", - "LipisFlagIcons4X3Qa", - "LipisFlagIcons4X3Re", - "LipisFlagIcons4X3Ro", - "LipisFlagIcons4X3Rs", - "LipisFlagIcons4X3Ru", - "LipisFlagIcons4X3Rw", - "LipisFlagIcons4X3Sa", - "LipisFlagIcons4X3Sb", - "LipisFlagIcons4X3Sc", - "LipisFlagIcons4X3Sd", - "LipisFlagIcons4X3Se", - "LipisFlagIcons4X3Sg", - "LipisFlagIcons4X3Sh", - "LipisFlagIcons4X3Si", - "LipisFlagIcons4X3Sj", - "LipisFlagIcons4X3Sk", - "LipisFlagIcons4X3Sl", - "LipisFlagIcons4X3Sm", - "LipisFlagIcons4X3Sn", - "LipisFlagIcons4X3So", - "LipisFlagIcons4X3Sr", - "LipisFlagIcons4X3Ss", - "LipisFlagIcons4X3St", - "LipisFlagIcons4X3Sv", - "LipisFlagIcons4X3Sx", - "LipisFlagIcons4X3Sy", - "LipisFlagIcons4X3Sz", - "LipisFlagIcons4X3Ta", - "LipisFlagIcons4X3Tc", - "LipisFlagIcons4X3Td", - "LipisFlagIcons4X3Tf", - "LipisFlagIcons4X3Tg", - "LipisFlagIcons4X3Th", - "LipisFlagIcons4X3Tj", - "LipisFlagIcons4X3Tk", - "LipisFlagIcons4X3Tl", - "LipisFlagIcons4X3Tm", - "LipisFlagIcons4X3Tn", - "LipisFlagIcons4X3To", - "LipisFlagIcons4X3Tr", - "LipisFlagIcons4X3Tt", - "LipisFlagIcons4X3Tv", - "LipisFlagIcons4X3Tw", - "LipisFlagIcons4X3Tz", - "LipisFlagIcons4X3Ua", - "LipisFlagIcons4X3Ug", - "LipisFlagIcons4X3Um", - "LipisFlagIcons4X3Un", - "LipisFlagIcons4X3Us", - "LipisFlagIcons4X3Uy", - "LipisFlagIcons4X3Uz", - "LipisFlagIcons4X3Va", - "LipisFlagIcons4X3Vc", - "LipisFlagIcons4X3Ve", - "LipisFlagIcons4X3Vg", - "LipisFlagIcons4X3Vi", - "LipisFlagIcons4X3Vn", - "LipisFlagIcons4X3Vu", - "LipisFlagIcons4X3Wf", - "LipisFlagIcons4X3Ws", - "LipisFlagIcons4X3Xk", - "LipisFlagIcons4X3Xx", - "LipisFlagIcons4X3Ye", - "LipisFlagIcons4X3Yt", - "LipisFlagIcons4X3Za", - "LipisFlagIcons4X3Zm", - "LipisFlagIcons4X3Zw" - ], - "lucide": [ - "LucideAccessibility", - "LucideActivity", - "LucideAirVent", - "LucideAirplay", - "LucideAlarmCheck", - "LucideAlarmClockOff", - "LucideAlarmClock", - "LucideAlarmMinus", - "LucideAlarmPlus", - "LucideAlbum", - "LucideAlertCircle", - "LucideAlertOctagon", - "LucideAlertTriangle", - "LucideAlignCenterHorizontal", - "LucideAlignCenterVertical", - "LucideAlignCenter", - "LucideAlignEndHorizontal", - "LucideAlignEndVertical", - "LucideAlignHorizontalDistributeCenter", - "LucideAlignHorizontalDistributeEnd", - "LucideAlignHorizontalDistributeStart", - "LucideAlignHorizontalJustifyCenter", - "LucideAlignHorizontalJustifyEnd", - "LucideAlignHorizontalJustifyStart", - "LucideAlignHorizontalSpaceAround", - "LucideAlignHorizontalSpaceBetween", - "LucideAlignJustify", - "LucideAlignLeft", - "LucideAlignRight", - "LucideAlignStartHorizontal", - "LucideAlignStartVertical", - "LucideAlignVerticalDistributeCenter", - "LucideAlignVerticalDistributeEnd", - "LucideAlignVerticalDistributeStart", - "LucideAlignVerticalJustifyCenter", - "LucideAlignVerticalJustifyEnd", - "LucideAlignVerticalJustifyStart", - "LucideAlignVerticalSpaceAround", - "LucideAlignVerticalSpaceBetween", - "LucideAnchor", - "LucideAngry", - "LucideAnnoyed", - "LucideAperture", - "LucideApple", - "LucideArchiveRestore", - "LucideArchive", - "LucideArmchair", - "LucideArrowBigDown", - "LucideArrowBigLeft", - "LucideArrowBigRight", - "LucideArrowBigUp", - "LucideArrowDownCircle", - "LucideArrowDownLeft", - "LucideArrowDownRight", - "LucideArrowDown", - "LucideArrowLeftCircle", - "LucideArrowLeftRight", - "LucideArrowLeft", - "LucideArrowRightCircle", - "LucideArrowRight", - "LucideArrowUpCircle", - "LucideArrowUpDown", - "LucideArrowUpLeft", - "LucideArrowUpRight", - "LucideArrowUp", - "LucideAsterisk", - "LucideAtSign", - "LucideAward", - "LucideAxe", - "LucideAxis3D", - "LucideBaby", - "LucideBackpack", - "LucideBaggageClaim", - "LucideBanana", - "LucideBanknote", - "LucideBarChart2", - "LucideBarChart3", - "LucideBarChart4", - "LucideBarChartHorizontal", - "LucideBarChart", - "LucideBaseline", - "LucideBath", - "LucideBatteryCharging", - "LucideBatteryFull", - "LucideBatteryLow", - "LucideBatteryMedium", - "LucideBattery", - "LucideBeaker", - "LucideBedDouble", - "LucideBedSingle", - "LucideBed", - "LucideBeer", - "LucideBellMinus", - "LucideBellOff", - "LucideBellPlus", - "LucideBellRing", - "LucideBell", - "LucideBike", - "LucideBinary", - "LucideBitcoin", - "LucideBluetoothConnected", - "LucideBluetoothOff", - "LucideBluetoothSearching", - "LucideBluetooth", - "LucideBold", - "LucideBomb", - "LucideBone", - "LucideBookOpenCheck", - "LucideBookOpen", - "LucideBook", - "LucideBookmarkMinus", - "LucideBookmarkPlus", - "LucideBookmark", - "LucideBot", - "LucideBoxSelect", - "LucideBox", - "LucideBoxes", - "LucideBriefcase", - "LucideBrush", - "LucideBug", - "LucideBuilding2", - "LucideBuilding", - "LucideBus", - "LucideCake", - "LucideCalculator", - "LucideCalendarCheck2", - "LucideCalendarCheck", - "LucideCalendarClock", - "LucideCalendarDays", - "LucideCalendarHeart", - "LucideCalendarMinus", - "LucideCalendarOff", - "LucideCalendarPlus", - "LucideCalendarRange", - "LucideCalendarSearch", - "LucideCalendarX2", - "LucideCalendarX", - "LucideCalendar", - "LucideCameraOff", - "LucideCamera", - "LucideCar", - "LucideCarrot", - "LucideCast", - "LucideCheckCircle2", - "LucideCheckCircle", - "LucideCheckSquare", - "LucideCheck", - "LucideChefHat", - "LucideCherry", - "LucideChevronDown", - "LucideChevronFirst", - "LucideChevronLast", - "LucideChevronLeft", - "LucideChevronRight", - "LucideChevronUp", - "LucideChevronsDownUp", - "LucideChevronsDown", - "LucideChevronsLeftRight", - "LucideChevronsLeft", - "LucideChevronsRightLeft", - "LucideChevronsRight", - "LucideChevronsUpDown", - "LucideChevronsUp", - "LucideChrome", - "LucideCigaretteOff", - "LucideCigarette", - "LucideCircleDot", - "LucideCircleEllipsis", - "LucideCircleSlashed", - "LucideCircle", - "LucideCitrus", - "LucideClapperboard", - "LucideClipboardCheck", - "LucideClipboardCopy", - "LucideClipboardEdit", - "LucideClipboardList", - "LucideClipboardSignature", - "LucideClipboardType", - "LucideClipboardX", - "LucideClipboard", - "LucideClock1", - "LucideClock10", - "LucideClock11", - "LucideClock12", - "LucideClock2", - "LucideClock3", - "LucideClock4", - "LucideClock5", - "LucideClock6", - "LucideClock7", - "LucideClock8", - "LucideClock9", - "LucideClock", - "LucideCloudCog", - "LucideCloudDrizzle", - "LucideCloudFog", - "LucideCloudHail", - "LucideCloudLightning", - "LucideCloudMoonRain", - "LucideCloudMoon", - "LucideCloudOff", - "LucideCloudRainWind", - "LucideCloudRain", - "LucideCloudSnow", - "LucideCloudSunRain", - "LucideCloudSun", - "LucideCloud", - "LucideCloudy", - "LucideClover", - "LucideCode2", - "LucideCode", - "LucideCodepen", - "LucideCodesandbox", - "LucideCoffee", - "LucideCog", - "LucideCoins", - "LucideColumns", - "LucideCommand", - "LucideCompass", - "LucideComponent", - "LucideConciergeBell", - "LucideContact", - "LucideContrast", - "LucideCookie", - "LucideCopy", - "LucideCopyleft", - "LucideCopyright", - "LucideCornerDownLeft", - "LucideCornerDownRight", - "LucideCornerLeftDown", - "LucideCornerLeftUp", - "LucideCornerRightDown", - "LucideCornerRightUp", - "LucideCornerUpLeft", - "LucideCornerUpRight", - "LucideCpu", - "LucideCreditCard", - "LucideCroissant", - "LucideCrop", - "LucideCross", - "LucideCrosshair", - "LucideCrown", - "LucideCupSoda", - "LucideCurlyBraces", - "LucideCurrency", - "LucideDatabase", - "LucideDelete", - "LucideDiamond", - "LucideDice1", - "LucideDice2", - "LucideDice3", - "LucideDice4", - "LucideDice5", - "LucideDice6", - "LucideDices", - "LucideDiff", - "LucideDisc", - "LucideDivideCircle", - "LucideDivideSquare", - "LucideDivide", - "LucideDollarSign", - "LucideDownloadCloud", - "LucideDownload", - "LucideDribbble", - "LucideDroplet", - "LucideDroplets", - "LucideDrumstick", - "LucideEarOff", - "LucideEar", - "LucideEdit2", - "LucideEdit3", - "LucideEdit", - "LucideEggFried", - "LucideEgg", - "LucideEqualNot", - "LucideEqual", - "LucideEraser", - "LucideEuro", - "LucideExpand", - "LucideExternalLink", - "LucideEyeOff", - "LucideEye", - "LucideFacebook", - "LucideFactory", - "LucideFan", - "LucideFastForward", - "LucideFeather", - "LucideFigma", - "LucideFileArchive", - "LucideFileAudio2", - "LucideFileAudio", - "LucideFileAxis3D", - "LucideFileBadge2", - "LucideFileBadge", - "LucideFileBarChart2", - "LucideFileBarChart", - "LucideFileBox", - "LucideFileCheck2", - "LucideFileCheck", - "LucideFileClock", - "LucideFileCode", - "LucideFileCog2", - "LucideFileCog", - "LucideFileDiff", - "LucideFileDigit", - "LucideFileDown", - "LucideFileEdit", - "LucideFileHeart", - "LucideFileImage", - "LucideFileInput", - "LucideFileJson2", - "LucideFileJson", - "LucideFileKey2", - "LucideFileKey", - "LucideFileLineChart", - "LucideFileLock2", - "LucideFileLock", - "LucideFileMinus2", - "LucideFileMinus", - "LucideFileOutput", - "LucideFilePieChart", - "LucideFilePlus2", - "LucideFilePlus", - "LucideFileQuestion", - "LucideFileScan", - "LucideFileSearch2", - "LucideFileSearch", - "LucideFileSignature", - "LucideFileSpreadsheet", - "LucideFileSymlink", - "LucideFileTerminal", - "LucideFileText", - "LucideFileType2", - "LucideFileType", - "LucideFileUp", - "LucideFileVideo2", - "LucideFileVideo", - "LucideFileVolume2", - "LucideFileVolume", - "LucideFileWarning", - "LucideFileX2", - "LucideFileX", - "LucideFile", - "LucideFiles", - "LucideFilm", - "LucideFilter", - "LucideFingerprint", - "LucideFlagOff", - "LucideFlagTriangleLeft", - "LucideFlagTriangleRight", - "LucideFlag", - "LucideFlame", - "LucideFlashlightOff", - "LucideFlashlight", - "LucideFlaskConical", - "LucideFlaskRound", - "LucideFlipHorizontal2", - "LucideFlipHorizontal", - "LucideFlipVertical2", - "LucideFlipVertical", - "LucideFlower2", - "LucideFlower", - "LucideFocus", - "LucideFolderArchive", - "LucideFolderCheck", - "LucideFolderClock", - "LucideFolderClosed", - "LucideFolderCog2", - "LucideFolderCog", - "LucideFolderDown", - "LucideFolderEdit", - "LucideFolderHeart", - "LucideFolderInput", - "LucideFolderKey", - "LucideFolderLock", - "LucideFolderMinus", - "LucideFolderOpen", - "LucideFolderOutput", - "LucideFolderPlus", - "LucideFolderSearch2", - "LucideFolderSearch", - "LucideFolderSymlink", - "LucideFolderTree", - "LucideFolderUp", - "LucideFolderX", - "LucideFolder", - "LucideFolders", - "LucideFormInput", - "LucideForward", - "LucideFrame", - "LucideFramer", - "LucideFrown", - "LucideFuel", - "LucideFunctionSquare", - "LucideGamepad2", - "LucideGamepad", - "LucideGauge", - "LucideGavel", - "LucideGem", - "LucideGhost", - "LucideGift", - "LucideGitBranchPlus", - "LucideGitBranch", - "LucideGitCommit", - "LucideGitCompare", - "LucideGitFork", - "LucideGitMerge", - "LucideGitPullRequestClosed", - "LucideGitPullRequestDraft", - "LucideGitPullRequest", - "LucideGithub", - "LucideGitlab", - "LucideGlassWater", - "LucideGlasses", - "LucideGlobe2", - "LucideGlobe", - "LucideGrab", - "LucideGraduationCap", - "LucideGrape", - "LucideGrid", - "LucideGripHorizontal", - "LucideGripVertical", - "LucideHammer", - "LucideHandMetal", - "LucideHand", - "LucideHardDrive", - "LucideHardHat", - "LucideHash", - "LucideHaze", - "LucideHeadphones", - "LucideHeartCrack", - "LucideHeartHandshake", - "LucideHeartOff", - "LucideHeartPulse", - "LucideHeart", - "LucideHelpCircle", - "LucideHexagon", - "LucideHighlighter", - "LucideHistory", - "LucideHome", - "LucideHourglass", - "LucideIceCream", - "LucideImageMinus", - "LucideImageOff", - "LucideImagePlus", - "LucideImage", - "LucideImport", - "LucideInbox", - "LucideIndent", - "LucideIndianRupee", - "LucideInfinity", - "LucideInfo", - "LucideInspect", - "LucideInstagram", - "LucideItalic", - "LucideJapaneseYen", - "LucideJoystick", - "LucideKey", - "LucideKeyboard", - "LucideLampCeiling", - "LucideLampDesk", - "LucideLampFloor", - "LucideLampWallDown", - "LucideLampWallUp", - "LucideLamp", - "LucideLandmark", - "LucideLanguages", - "LucideLaptop2", - "LucideLaptop", - "LucideLassoSelect", - "LucideLasso", - "LucideLaugh", - "LucideLayers", - "LucideLayoutDashboard", - "LucideLayoutGrid", - "LucideLayoutList", - "LucideLayoutTemplate", - "LucideLayout", - "LucideLeaf", - "LucideLibrary", - "LucideLifeBuoy", - "LucideLightbulbOff", - "LucideLightbulb", - "LucideLineChart", - "LucideLink2Off", - "LucideLink2", - "LucideLink", - "LucideLinkedin", - "LucideListChecks", - "LucideListEnd", - "LucideListMinus", - "LucideListMusic", - "LucideListOrdered", - "LucideListPlus", - "LucideListStart", - "LucideListVideo", - "LucideListX", - "LucideList", - "LucideLoader2", - "LucideLoader", - "LucideLocateFixed", - "LucideLocateOff", - "LucideLocate", - "LucideLock", - "LucideLogIn", - "LucideLogOut", - "LucideLuggage", - "LucideMagnet", - "LucideMailCheck", - "LucideMailMinus", - "LucideMailOpen", - "LucideMailPlus", - "LucideMailQuestion", - "LucideMailSearch", - "LucideMailWarning", - "LucideMailX", - "LucideMail", - "LucideMails", - "LucideMapPinOff", - "LucideMapPin", - "LucideMap", - "LucideMartini", - "LucideMaximize2", - "LucideMaximize", - "LucideMedal", - "LucideMegaphoneOff", - "LucideMegaphone", - "LucideMeh", - "LucideMenu", - "LucideMessageCircle", - "LucideMessageSquare", - "LucideMic2", - "LucideMicOff", - "LucideMic", - "LucideMicroscope", - "LucideMicrowave", - "LucideMilestone", - "LucideMinimize2", - "LucideMinimize", - "LucideMinusCircle", - "LucideMinusSquare", - "LucideMinus", - "LucideMonitorOff", - "LucideMonitorSpeaker", - "LucideMonitor", - "LucideMoon", - "LucideMoreHorizontal", - "LucideMoreVertical", - "LucideMountainSnow", - "LucideMountain", - "LucideMousePointer2", - "LucideMousePointerClick", - "LucideMousePointer", - "LucideMouse", - "LucideMove3D", - "LucideMoveDiagonal2", - "LucideMoveDiagonal", - "LucideMoveHorizontal", - "LucideMoveVertical", - "LucideMove", - "LucideMusic2", - "LucideMusic3", - "LucideMusic4", - "LucideMusic", - "LucideNavigation2Off", - "LucideNavigation2", - "LucideNavigationOff", - "LucideNavigation", - "LucideNetwork", - "LucideNewspaper", - "LucideOctagon", - "LucideOption", - "LucideOutdent", - "LucidePackage2", - "LucidePackageCheck", - "LucidePackageMinus", - "LucidePackageOpen", - "LucidePackagePlus", - "LucidePackageSearch", - "LucidePackageX", - "LucidePackage", - "LucidePaintBucket", - "LucidePaintbrush2", - "LucidePaintbrush", - "LucidePalette", - "LucidePalmtree", - "LucidePaperclip", - "LucidePartyPopper", - "LucidePauseCircle", - "LucidePauseOctagon", - "LucidePause", - "LucidePenTool", - "LucidePencil", - "LucidePercent", - "LucidePersonStanding", - "LucidePhoneCall", - "LucidePhoneForwarded", - "LucidePhoneIncoming", - "LucidePhoneMissed", - "LucidePhoneOff", - "LucidePhoneOutgoing", - "LucidePhone", - "LucidePieChart", - "LucidePiggyBank", - "LucidePinOff", - "LucidePin", - "LucidePipette", - "LucidePizza", - "LucidePlane", - "LucidePlayCircle", - "LucidePlay", - "LucidePlug2", - "LucidePlugZap", - "LucidePlug", - "LucidePlusCircle", - "LucidePlusSquare", - "LucidePlus", - "LucidePocket", - "LucidePodcast", - "LucidePointer", - "LucidePoundSterling", - "LucidePowerOff", - "LucidePower", - "LucidePrinter", - "LucidePuzzle", - "LucideQrCode", - "LucideQuote", - "LucideRadioReceiver", - "LucideRadio", - "LucideRectangleHorizontal", - "LucideRectangleVertical", - "LucideRecycle", - "LucideRedo2", - "LucideRedo", - "LucideRefreshCcw", - "LucideRefreshCw", - "LucideRefrigerator", - "LucideRegex", - "LucideRepeat1", - "LucideRepeat", - "LucideReplyAll", - "LucideReply", - "LucideRewind", - "LucideRocket", - "LucideRockingChair", - "LucideRotate3D", - "LucideRotateCcw", - "LucideRotateCw", - "LucideRss", - "LucideRuler", - "LucideRussianRuble", - "LucideSailboat", - "LucideSave", - "LucideScale3D", - "LucideScale", - "LucideScaling", - "LucideScanFace", - "LucideScanLine", - "LucideScan", - "LucideScissors", - "LucideScreenShareOff", - "LucideScreenShare", - "LucideScroll", - "LucideSearch", - "LucideSend", - "LucideSeparatorHorizontal", - "LucideSeparatorVertical", - "LucideServerCog", - "LucideServerCrash", - "LucideServerOff", - "LucideServer", - "LucideSettings2", - "LucideSettings", - "LucideShare2", - "LucideShare", - "LucideSheet", - "LucideShieldAlert", - "LucideShieldCheck", - "LucideShieldClose", - "LucideShieldOff", - "LucideShield", - "LucideShirt", - "LucideShoppingBag", - "LucideShoppingCart", - "LucideShovel", - "LucideShowerHead", - "LucideShrink", - "LucideShrub", - "LucideShuffle", - "LucideSidebarClose", - "LucideSidebarOpen", - "LucideSidebar", - "LucideSigma", - "LucideSignalHigh", - "LucideSignalLow", - "LucideSignalMedium", - "LucideSignalZero", - "LucideSignal", - "LucideSiren", - "LucideSkipBack", - "LucideSkipForward", - "LucideSkull", - "LucideSlack", - "LucideSlash", - "LucideSlice", - "LucideSlidersHorizontal", - "LucideSliders", - "LucideSmartphoneCharging", - "LucideSmartphone", - "LucideSmilePlus", - "LucideSmile", - "LucideSnowflake", - "LucideSofa", - "LucideSortAsc", - "LucideSortDesc", - "LucideSpeaker", - "LucideSprout", - "LucideSquare", - "LucideStarHalf", - "LucideStarOff", - "LucideStar", - "LucideStethoscope", - "LucideSticker", - "LucideStickyNote", - "LucideStopCircle", - "LucideStretchHorizontal", - "LucideStretchVertical", - "LucideStrikethrough", - "LucideSubscript", - "LucideSunDim", - "LucideSunMedium", - "LucideSunMoon", - "LucideSunSnow", - "LucideSun", - "LucideSunrise", - "LucideSunset", - "LucideSuperscript", - "LucideSwissFranc", - "LucideSwitchCamera", - "LucideSword", - "LucideSwords", - "LucideSyringe", - "LucideTable2", - "LucideTable", - "LucideTablet", - "LucideTag", - "LucideTags", - "LucideTarget", - "LucideTent", - "LucideTerminalSquare", - "LucideTerminal", - "LucideTextCursorInput", - "LucideTextCursor", - "LucideThermometerSnowflake", - "LucideThermometerSun", - "LucideThermometer", - "LucideThumbsDown", - "LucideThumbsUp", - "LucideTicket", - "LucideTimerOff", - "LucideTimerReset", - "LucideTimer", - "LucideToggleLeft", - "LucideToggleRight", - "LucideTornado", - "LucideToyBrick", - "LucideTrain", - "LucideTrash2", - "LucideTrash", - "LucideTreeDeciduous", - "LucideTreePine", - "LucideTrees", - "LucideTrello", - "LucideTrendingDown", - "LucideTrendingUp", - "LucideTriangle", - "LucideTrophy", - "LucideTruck", - "LucideTv2", - "LucideTv", - "LucideTwitch", - "LucideTwitter", - "LucideType", - "LucideUmbrella", - "LucideUnderline", - "LucideUndo2", - "LucideUndo", - "LucideUnlink2", - "LucideUnlink", - "LucideUnlock", - "LucideUploadCloud", - "LucideUpload", - "LucideUsb", - "LucideUserCheck", - "LucideUserCog", - "LucideUserMinus", - "LucideUserPlus", - "LucideUserX", - "LucideUser", - "LucideUsers", - "LucideUtensilsCrossed", - "LucideUtensils", - "LucideVenetianMask", - "LucideVerified", - "LucideVibrateOff", - "LucideVibrate", - "LucideVideoOff", - "LucideVideo", - "LucideView", - "LucideVoicemail", - "LucideVolume1", - "LucideVolume2", - "LucideVolumeX", - "LucideVolume", - "LucideWallet", - "LucideWand2", - "LucideWand", - "LucideWatch", - "LucideWaves", - "LucideWebcam", - "LucideWebhook", - "LucideWifiOff", - "LucideWifi", - "LucideWind", - "LucideWine", - "LucideWrapText", - "LucideWrench", - "LucideXCircle", - "LucideXOctagon", - "LucideXSquare", - "LucideX", - "LucideYoutube", - "LucideZapOff", - "LucideZap", - "LucideZoomIn", - "LucideZoomOut" - ], - "octicons": [ - "OcticonsAccessibility16", - "OcticonsAlert16", - "OcticonsAlert24", - "OcticonsAlertFill12", - "OcticonsApps16", - "OcticonsArchive16", - "OcticonsArchive24", - "OcticonsArrowBoth16", - "OcticonsArrowBoth24", - "OcticonsArrowDown16", - "OcticonsArrowDown24", - "OcticonsArrowDownLeft24", - "OcticonsArrowDownRight24", - "OcticonsArrowLeft16", - "OcticonsArrowLeft24", - "OcticonsArrowRight16", - "OcticonsArrowRight24", - "OcticonsArrowSwitch16", - "OcticonsArrowSwitch24", - "OcticonsArrowUp16", - "OcticonsArrowUp24", - "OcticonsArrowUpLeft24", - "OcticonsArrowUpRight24", - "OcticonsBeaker16", - "OcticonsBeaker24", - "OcticonsBell16", - "OcticonsBell24", - "OcticonsBellFill16", - "OcticonsBellFill24", - "OcticonsBellSlash16", - "OcticonsBellSlash24", - "OcticonsBlocked16", - "OcticonsBlocked24", - "OcticonsBold16", - "OcticonsBold24", - "OcticonsBook16", - "OcticonsBook24", - "OcticonsBookmark16", - "OcticonsBookmark24", - "OcticonsBookmarkFill24", - "OcticonsBookmarkSlash16", - "OcticonsBookmarkSlash24", - "OcticonsBookmarkSlashFill24", - "OcticonsBriefcase16", - "OcticonsBriefcase24", - "OcticonsBroadcast16", - "OcticonsBroadcast24", - "OcticonsBrowser16", - "OcticonsBrowser24", - "OcticonsBug16", - "OcticonsBug24", - "OcticonsCalendar16", - "OcticonsCalendar24", - "OcticonsCheck16", - "OcticonsCheck24", - "OcticonsCheckCircle16", - "OcticonsCheckCircle24", - "OcticonsCheckCircleFill12", - "OcticonsCheckCircleFill16", - "OcticonsCheckCircleFill24", - "OcticonsChecklist16", - "OcticonsChecklist24", - "OcticonsChevronDown16", - "OcticonsChevronDown24", - "OcticonsChevronLeft16", - "OcticonsChevronLeft24", - "OcticonsChevronRight16", - "OcticonsChevronRight24", - "OcticonsChevronUp16", - "OcticonsChevronUp24", - "OcticonsCircle16", - "OcticonsCircle24", - "OcticonsCircleSlash16", - "OcticonsCircleSlash24", - "OcticonsClock16", - "OcticonsClock24", - "OcticonsCloud16", - "OcticonsCloud24", - "OcticonsCloudOffline16", - "OcticonsCloudOffline24", - "OcticonsCode16", - "OcticonsCode24", - "OcticonsCodeOfConduct16", - "OcticonsCodeOfConduct24", - "OcticonsCodeReview16", - "OcticonsCodeReview24", - "OcticonsCodeSquare16", - "OcticonsCodeSquare24", - "OcticonsCodescan16", - "OcticonsCodescan24", - "OcticonsCodescanCheckmark16", - "OcticonsCodescanCheckmark24", - "OcticonsCodespaces16", - "OcticonsCodespaces24", - "OcticonsColumns16", - "OcticonsColumns24", - "OcticonsComment16", - "OcticonsComment24", - "OcticonsCommentDiscussion16", - "OcticonsCommentDiscussion24", - "OcticonsCommit24", - "OcticonsContainer16", - "OcticonsContainer24", - "OcticonsCopy16", - "OcticonsCopy24", - "OcticonsCpu16", - "OcticonsCpu24", - "OcticonsCreditCard16", - "OcticonsCreditCard24", - "OcticonsCrossReference16", - "OcticonsCrossReference24", - "OcticonsDash16", - "OcticonsDash24", - "OcticonsDatabase16", - "OcticonsDatabase24", - "OcticonsDependabot16", - "OcticonsDependabot24", - "OcticonsDesktopDownload16", - "OcticonsDesktopDownload24", - "OcticonsDeviceCamera16", - "OcticonsDeviceCameraVideo16", - "OcticonsDeviceCameraVideo24", - "OcticonsDeviceDesktop16", - "OcticonsDeviceDesktop24", - "OcticonsDeviceMobile16", - "OcticonsDeviceMobile24", - "OcticonsDiamond16", - "OcticonsDiamond24", - "OcticonsDiff16", - "OcticonsDiff24", - "OcticonsDiffAdded16", - "OcticonsDiffIgnored16", - "OcticonsDiffModified16", - "OcticonsDiffRemoved16", - "OcticonsDiffRenamed16", - "OcticonsDot16", - "OcticonsDot24", - "OcticonsDotFill16", - "OcticonsDotFill24", - "OcticonsDownload16", - "OcticonsDownload24", - "OcticonsDuplicate16", - "OcticonsDuplicate24", - "OcticonsEllipsis16", - "OcticonsEye16", - "OcticonsEye24", - "OcticonsEyeClosed16", - "OcticonsEyeClosed24", - "OcticonsFeedDiscussion16", - "OcticonsFeedForked16", - "OcticonsFeedHeart16", - "OcticonsFeedMerged16", - "OcticonsFeedPerson16", - "OcticonsFeedRepo16", - "OcticonsFeedRocket16", - "OcticonsFeedStar16", - "OcticonsFeedTag16", - "OcticonsFeedTrophy16", - "OcticonsFile16", - "OcticonsFile24", - "OcticonsFileBadge16", - "OcticonsFileBinary16", - "OcticonsFileBinary24", - "OcticonsFileCode16", - "OcticonsFileCode24", - "OcticonsFileDiff16", - "OcticonsFileDiff24", - "OcticonsFileDirectory16", - "OcticonsFileDirectory24", - "OcticonsFileDirectoryFill16", - "OcticonsFileDirectoryFill24", - "OcticonsFileDirectoryOpenFill16", - "OcticonsFileMedia24", - "OcticonsFileSubmodule16", - "OcticonsFileSubmodule24", - "OcticonsFileSymlinkFile16", - "OcticonsFileSymlinkFile24", - "OcticonsFileZip16", - "OcticonsFileZip24", - "OcticonsFilter16", - "OcticonsFilter24", - "OcticonsFlame16", - "OcticonsFlame24", - "OcticonsFold16", - "OcticonsFold24", - "OcticonsFoldDown16", - "OcticonsFoldDown24", - "OcticonsFoldUp16", - "OcticonsFoldUp24", - "OcticonsGear16", - "OcticonsGear24", - "OcticonsGift16", - "OcticonsGift24", - "OcticonsGitBranch16", - "OcticonsGitBranch24", - "OcticonsGitCommit16", - "OcticonsGitCommit24", - "OcticonsGitCompare16", - "OcticonsGitCompare24", - "OcticonsGitMerge16", - "OcticonsGitMerge24", - "OcticonsGitPullRequest16", - "OcticonsGitPullRequest24", - "OcticonsGitPullRequestClosed16", - "OcticonsGitPullRequestClosed24", - "OcticonsGitPullRequestDraft16", - "OcticonsGitPullRequestDraft24", - "OcticonsGlobe16", - "OcticonsGlobe24", - "OcticonsGrabber16", - "OcticonsGrabber24", - "OcticonsGraph16", - "OcticonsGraph24", - "OcticonsHash16", - "OcticonsHash24", - "OcticonsHeading16", - "OcticonsHeading24", - "OcticonsHeart16", - "OcticonsHeart24", - "OcticonsHeartFill16", - "OcticonsHeartFill24", - "OcticonsHistory16", - "OcticonsHistory24", - "OcticonsHome16", - "OcticonsHome24", - "OcticonsHomeFill24", - "OcticonsHorizontalRule16", - "OcticonsHorizontalRule24", - "OcticonsHourglass16", - "OcticonsHourglass24", - "OcticonsHubot16", - "OcticonsHubot24", - "OcticonsIdBadge16", - "OcticonsImage16", - "OcticonsImage24", - "OcticonsInbox16", - "OcticonsInbox24", - "OcticonsInfinity16", - "OcticonsInfinity24", - "OcticonsInfo16", - "OcticonsInfo24", - "OcticonsIssueClosed16", - "OcticonsIssueClosed24", - "OcticonsIssueDraft16", - "OcticonsIssueDraft24", - "OcticonsIssueOpened16", - "OcticonsIssueOpened24", - "OcticonsIssueReopened16", - "OcticonsIssueReopened24", - "OcticonsItalic16", - "OcticonsItalic24", - "OcticonsIterations16", - "OcticonsIterations24", - "OcticonsKebabHorizontal16", - "OcticonsKebabHorizontal24", - "OcticonsKey16", - "OcticonsKey24", - "OcticonsKeyAsterisk16", - "OcticonsLaw16", - "OcticonsLaw24", - "OcticonsLightBulb16", - "OcticonsLightBulb24", - "OcticonsLink16", - "OcticonsLink24", - "OcticonsLinkExternal16", - "OcticonsLinkExternal24", - "OcticonsListOrdered16", - "OcticonsListOrdered24", - "OcticonsListUnordered16", - "OcticonsListUnordered24", - "OcticonsLocation16", - "OcticonsLocation24", - "OcticonsLock16", - "OcticonsLock24", - "OcticonsLog16", - "OcticonsLogoGist16", - "OcticonsLogoGithub16", - "OcticonsMail16", - "OcticonsMail24", - "OcticonsMarkGithub16", - "OcticonsMarkdown16", - "OcticonsMegaphone16", - "OcticonsMegaphone24", - "OcticonsMention16", - "OcticonsMention24", - "OcticonsMeter16", - "OcticonsMilestone16", - "OcticonsMilestone24", - "OcticonsMirror16", - "OcticonsMirror24", - "OcticonsMoon16", - "OcticonsMoon24", - "OcticonsMortarBoard16", - "OcticonsMortarBoard24", - "OcticonsMultiSelect16", - "OcticonsMultiSelect24", - "OcticonsMute16", - "OcticonsMute24", - "OcticonsNoEntry16", - "OcticonsNoEntry24", - "OcticonsNoEntryFill12", - "OcticonsNorthStar16", - "OcticonsNorthStar24", - "OcticonsNote16", - "OcticonsNote24", - "OcticonsNumber16", - "OcticonsNumber24", - "OcticonsOrganization16", - "OcticonsOrganization24", - "OcticonsPackage16", - "OcticonsPackage24", - "OcticonsPackageDependencies16", - "OcticonsPackageDependencies24", - "OcticonsPackageDependents16", - "OcticonsPackageDependents24", - "OcticonsPaintbrush16", - "OcticonsPaperAirplane16", - "OcticonsPaperAirplane24", - "OcticonsPaste16", - "OcticonsPaste24", - "OcticonsPencil16", - "OcticonsPencil24", - "OcticonsPeople16", - "OcticonsPeople24", - "OcticonsPerson16", - "OcticonsPerson24", - "OcticonsPersonAdd16", - "OcticonsPersonAdd24", - "OcticonsPersonFill16", - "OcticonsPersonFill24", - "OcticonsPin16", - "OcticonsPin24", - "OcticonsPlay16", - "OcticonsPlay24", - "OcticonsPlug16", - "OcticonsPlug24", - "OcticonsPlus16", - "OcticonsPlus24", - "OcticonsPlusCircle16", - "OcticonsPlusCircle24", - "OcticonsProject16", - "OcticonsProject24", - "OcticonsPulse16", - "OcticonsPulse24", - "OcticonsQuestion16", - "OcticonsQuestion24", - "OcticonsQuote16", - "OcticonsQuote24", - "OcticonsReply16", - "OcticonsReply24", - "OcticonsRepo16", - "OcticonsRepo24", - "OcticonsRepoClone16", - "OcticonsRepoDeleted16", - "OcticonsRepoForked16", - "OcticonsRepoForked24", - "OcticonsRepoLocked16", - "OcticonsRepoPull16", - "OcticonsRepoPush16", - "OcticonsRepoPush24", - "OcticonsRepoTemplate16", - "OcticonsRepoTemplate24", - "OcticonsReport16", - "OcticonsReport24", - "OcticonsRocket16", - "OcticonsRocket24", - "OcticonsRows16", - "OcticonsRows24", - "OcticonsRss16", - "OcticonsRss24", - "OcticonsRuby16", - "OcticonsRuby24", - "OcticonsScreenFull16", - "OcticonsScreenFull24", - "OcticonsScreenNormal16", - "OcticonsScreenNormal24", - "OcticonsSearch16", - "OcticonsSearch24", - "OcticonsServer16", - "OcticonsServer24", - "OcticonsShare16", - "OcticonsShare24", - "OcticonsShareAndroid16", - "OcticonsShareAndroid24", - "OcticonsShield16", - "OcticonsShield24", - "OcticonsShieldCheck16", - "OcticonsShieldCheck24", - "OcticonsShieldLock16", - "OcticonsShieldLock24", - "OcticonsShieldX16", - "OcticonsShieldX24", - "OcticonsSidebarCollapse16", - "OcticonsSidebarCollapse24", - "OcticonsSidebarExpand16", - "OcticonsSidebarExpand24", - "OcticonsSignIn16", - "OcticonsSignIn24", - "OcticonsSignOut16", - "OcticonsSignOut24", - "OcticonsSingleSelect16", - "OcticonsSingleSelect24", - "OcticonsSkip16", - "OcticonsSkip24", - "OcticonsSmiley16", - "OcticonsSmiley24", - "OcticonsSortAsc16", - "OcticonsSortAsc24", - "OcticonsSortDesc16", - "OcticonsSortDesc24", - "OcticonsSquare16", - "OcticonsSquare24", - "OcticonsSquareFill16", - "OcticonsSquareFill24", - "OcticonsSquirrel16", - "OcticonsSquirrel24", - "OcticonsStack16", - "OcticonsStack24", - "OcticonsStar16", - "OcticonsStar24", - "OcticonsStarFill16", - "OcticonsStarFill24", - "OcticonsStop16", - "OcticonsStop24", - "OcticonsStopwatch16", - "OcticonsStopwatch24", - "OcticonsStrikethrough16", - "OcticonsStrikethrough24", - "OcticonsSun16", - "OcticonsSun24", - "OcticonsSync16", - "OcticonsSync24", - "OcticonsTab24", - "OcticonsTabExternal16", - "OcticonsTable16", - "OcticonsTable24", - "OcticonsTag16", - "OcticonsTag24", - "OcticonsTasklist16", - "OcticonsTasklist24", - "OcticonsTelescope16", - "OcticonsTelescope24", - "OcticonsTelescopeFill16", - "OcticonsTelescopeFill24", - "OcticonsTerminal16", - "OcticonsTerminal24", - "OcticonsThreeBars16", - "OcticonsThumbsdown16", - "OcticonsThumbsdown24", - "OcticonsThumbsup16", - "OcticonsThumbsup24", - "OcticonsTools16", - "OcticonsTools24", - "OcticonsTrash16", - "OcticonsTrash24", - "OcticonsTriangleDown16", - "OcticonsTriangleDown24", - "OcticonsTriangleLeft16", - "OcticonsTriangleLeft24", - "OcticonsTriangleRight16", - "OcticonsTriangleRight24", - "OcticonsTriangleUp16", - "OcticonsTriangleUp24", - "OcticonsTrophy16", - "OcticonsTrophy24", - "OcticonsTypography16", - "OcticonsTypography24", - "OcticonsUnfold16", - "OcticonsUnfold24", - "OcticonsUnlock16", - "OcticonsUnlock24", - "OcticonsUnmute16", - "OcticonsUnmute24", - "OcticonsUnverified16", - "OcticonsUnverified24", - "OcticonsUpload16", - "OcticonsUpload24", - "OcticonsVerified16", - "OcticonsVerified24", - "OcticonsVersions16", - "OcticonsVersions24", - "OcticonsVideo16", - "OcticonsVideo24", - "OcticonsWebhook16", - "OcticonsWorkflow16", - "OcticonsWorkflow24", - "OcticonsX16", - "OcticonsX24", - "OcticonsXCircle16", - "OcticonsXCircle24", - "OcticonsXCircleFill12", - "OcticonsXCircleFill16", - "OcticonsXCircleFill24", - "OcticonsZap16", - "OcticonsZap24" - ], - "proc-macro2": [ - "dep:proc-macro2" - ], - "quote": [ - "dep:quote" - ], - "regex": [ - "dep:regex" - ], - "simple_icons": [ - "SimpleIcons1001Tracklists", - "SimpleIcons1Password", - "SimpleIcons3M", - "SimpleIcons42", - "SimpleIcons4Chan", - "SimpleIcons4D", - "SimpleIcons500Px", - "SimpleIconsAbbott", - "SimpleIconsAbbrobotstudio", - "SimpleIconsAbbvie", - "SimpleIconsAbletonlive", - "SimpleIconsAboutdotme", - "SimpleIconsAbstract", - "SimpleIconsAcademia", - "SimpleIconsAccenture", - "SimpleIconsAcclaim", - "SimpleIconsAccusoft", - "SimpleIconsAcer", - "SimpleIconsAcm", - "SimpleIconsActigraph", - "SimpleIconsActivision", - "SimpleIconsAdafruit", - "SimpleIconsAdblock", - "SimpleIconsAdblockplus", - "SimpleIconsAddthis", - "SimpleIconsAdguard", - "SimpleIconsAdidas", - "SimpleIconsAdminer", - "SimpleIconsAdobe", - "SimpleIconsAdobeacrobatreader", - "SimpleIconsAdobeaftereffects", - "SimpleIconsAdobeaudition", - "SimpleIconsAdobecreativecloud", - "SimpleIconsAdobedreamweaver", - "SimpleIconsAdobefonts", - "SimpleIconsAdobeillustrator", - "SimpleIconsAdobeindesign", - "SimpleIconsAdobelightroom", - "SimpleIconsAdobelightroomclassic", - "SimpleIconsAdobephotoshop", - "SimpleIconsAdobepremierepro", - "SimpleIconsAdobexd", - "SimpleIconsAdonisjs", - "SimpleIconsAdp", - "SimpleIconsAdyen", - "SimpleIconsAerlingus", - "SimpleIconsAeroflot", - "SimpleIconsAeromexico", - "SimpleIconsAerospike", - "SimpleIconsAew", - "SimpleIconsAffinity", - "SimpleIconsAffinitydesigner", - "SimpleIconsAffinityphoto", - "SimpleIconsAffinitypublisher", - "SimpleIconsAframe", - "SimpleIconsAgora", - "SimpleIconsAib", - "SimpleIconsAidungeon", - "SimpleIconsAiohttp", - "SimpleIconsAiqfome", - "SimpleIconsAirasia", - "SimpleIconsAirbnb", - "SimpleIconsAirbus", - "SimpleIconsAirbyte", - "SimpleIconsAircall", - "SimpleIconsAircanada", - "SimpleIconsAirchina", - "SimpleIconsAirfrance", - "SimpleIconsAirplayaudio", - "SimpleIconsAirplayvideo", - "SimpleIconsAirtable", - "SimpleIconsAjv", - "SimpleIconsAkamai", - "SimpleIconsAlacritty", - "SimpleIconsAlbertheijn", - "SimpleIconsAlchemy", - "SimpleIconsAldinord", - "SimpleIconsAldisud", - "SimpleIconsAlfaromeo", - "SimpleIconsAlfred", - "SimpleIconsAlgolia", - "SimpleIconsAlgorand", - "SimpleIconsAlibabacloud", - "SimpleIconsAlibabadotcom", - "SimpleIconsAliexpress", - "SimpleIconsAlipay", - "SimpleIconsAlitalia", - "SimpleIconsAllegro", - "SimpleIconsAlliedmodders", - "SimpleIconsAllocine", - "SimpleIconsAlltrails", - "SimpleIconsAlpinedotjs", - "SimpleIconsAlpinelinux", - "SimpleIconsAltiumdesigner", - "SimpleIconsAlwaysdata", - "SimpleIconsAmazon", - "SimpleIconsAmazonalexa", - "SimpleIconsAmazonapigateway", - "SimpleIconsAmazonaws", - "SimpleIconsAmazoncloudwatch", - "SimpleIconsAmazondynamodb", - "SimpleIconsAmazonec2", - "SimpleIconsAmazonecs", - "SimpleIconsAmazoneks", - "SimpleIconsAmazonfiretv", - "SimpleIconsAmazongames", - "SimpleIconsAmazonlumberyard", - "SimpleIconsAmazonpay", - "SimpleIconsAmazonprime", - "SimpleIconsAmazonrds", - "SimpleIconsAmazons3", - "SimpleIconsAmazonsqs", - "SimpleIconsAmd", - "SimpleIconsAmericanairlines", - "SimpleIconsAmericanexpress", - "SimpleIconsAmg", - "SimpleIconsAmp", - "SimpleIconsAmul", - "SimpleIconsAna", - "SimpleIconsAnaconda", - "SimpleIconsAnalogue", - "SimpleIconsAnchor", - "SimpleIconsAndela", - "SimpleIconsAndroid", - "SimpleIconsAndroidauto", - "SimpleIconsAndroidstudio", - "SimpleIconsAngellist", - "SimpleIconsAngular", - "SimpleIconsAngularjs", - "SimpleIconsAngularuniversal", - "SimpleIconsAnilist", - "SimpleIconsAnsible", - "SimpleIconsAnswer", - "SimpleIconsAnsys", - "SimpleIconsAnta", - "SimpleIconsAntdesign", - "SimpleIconsAntena3", - "SimpleIconsAnydesk", - "SimpleIconsAol", - "SimpleIconsApache", - "SimpleIconsApacheairflow", - "SimpleIconsApacheant", - "SimpleIconsApachecassandra", - "SimpleIconsApachecloudstack", - "SimpleIconsApachecordova", - "SimpleIconsApachecouchdb", - "SimpleIconsApachedruid", - "SimpleIconsApacheecharts", - "SimpleIconsApacheflink", - "SimpleIconsApachegroovy", - "SimpleIconsApachehadoop", - "SimpleIconsApachehive", - "SimpleIconsApachejmeter", - "SimpleIconsApachekafka", - "SimpleIconsApachekylin", - "SimpleIconsApachemaven", - "SimpleIconsApachenetbeanside", - "SimpleIconsApacheopenoffice", - "SimpleIconsApachepulsar", - "SimpleIconsApacherocketmq", - "SimpleIconsApachesolr", - "SimpleIconsApachespark", - "SimpleIconsApachetomcat", - "SimpleIconsAparat", - "SimpleIconsApollographql", - "SimpleIconsApostrophe", - "SimpleIconsAppian", - "SimpleIconsApple", - "SimpleIconsApplearcade", - "SimpleIconsApplemusic", - "SimpleIconsApplenews", - "SimpleIconsApplepay", - "SimpleIconsApplepodcasts", - "SimpleIconsAppletv", - "SimpleIconsAppsignal", - "SimpleIconsAppstore", - "SimpleIconsAppveyor", - "SimpleIconsAppwrite", - "SimpleIconsAqua", - "SimpleIconsAral", - "SimpleIconsArangodb", - "SimpleIconsArchicad", - "SimpleIconsArchiveofourown", - "SimpleIconsArchlinux", - "SimpleIconsArdour", - "SimpleIconsArduino", - "SimpleIconsArgo", - "SimpleIconsArgos", - "SimpleIconsArkecosystem", - "SimpleIconsArlo", - "SimpleIconsArm", - "SimpleIconsArtifacthub", - "SimpleIconsArtixlinux", - "SimpleIconsArtstation", - "SimpleIconsArxiv", - "SimpleIconsAsana", - "SimpleIconsAsciidoctor", - "SimpleIconsAsciinema", - "SimpleIconsAsda", - "SimpleIconsAseprite", - "SimpleIconsAskfm", - "SimpleIconsAskubuntu", - "SimpleIconsAssemblyscript", - "SimpleIconsAstonmartin", - "SimpleIconsAstro", - "SimpleIconsAsus", - "SimpleIconsAtandt", - "SimpleIconsAtari", - "SimpleIconsAtlassian", - "SimpleIconsAtom", - "SimpleIconsAuchan", - "SimpleIconsAudacity", - "SimpleIconsAudi", - "SimpleIconsAudible", - "SimpleIconsAudioboom", - "SimpleIconsAudiomack", - "SimpleIconsAudiotechnica", - "SimpleIconsAurelia", - "SimpleIconsAuth0", - "SimpleIconsAuthy", - "SimpleIconsAutodesk", - "SimpleIconsAutohotkey", - "SimpleIconsAutomattic", - "SimpleIconsAutoprefixer", - "SimpleIconsAvajs", - "SimpleIconsAvast", - "SimpleIconsAwesomelists", - "SimpleIconsAwesomewm", - "SimpleIconsAwsamplify", - "SimpleIconsAwsfargate", - "SimpleIconsAwslambda", - "SimpleIconsAxios", - "SimpleIconsAzureartifacts", - "SimpleIconsAzuredataexplorer", - "SimpleIconsAzuredevops", - "SimpleIconsAzurefunctions", - "SimpleIconsAzurepipelines", - "SimpleIconsBabel", - "SimpleIconsBackblaze", - "SimpleIconsBackbonedotjs", - "SimpleIconsBackendless", - "SimpleIconsBackstage", - "SimpleIconsBadgr", - "SimpleIconsBadoo", - "SimpleIconsBaidu", - "SimpleIconsBamboo", - "SimpleIconsBandcamp", - "SimpleIconsBandlab", - "SimpleIconsBandrautomation", - "SimpleIconsBandsintown", - "SimpleIconsBankofamerica", - "SimpleIconsBarclays", - "SimpleIconsBaremetrics", - "SimpleIconsBasecamp", - "SimpleIconsBastyon", - "SimpleIconsBata", - "SimpleIconsBathasu", - "SimpleIconsBattledotnet", - "SimpleIconsBbc", - "SimpleIconsBbciplayer", - "SimpleIconsBeatport", - "SimpleIconsBeats", - "SimpleIconsBeatsbydre", - "SimpleIconsBehance", - "SimpleIconsBeijingsubway", - "SimpleIconsBem", - "SimpleIconsBentley", - "SimpleIconsBetfair", - "SimpleIconsBigbasket", - "SimpleIconsBigbluebutton", - "SimpleIconsBigcartel", - "SimpleIconsBigcommerce", - "SimpleIconsBilibili", - "SimpleIconsBillboard", - "SimpleIconsBim", - "SimpleIconsBinance", - "SimpleIconsBiolink", - "SimpleIconsBit", - "SimpleIconsBitbucket", - "SimpleIconsBitcoin", - "SimpleIconsBitcoincash", - "SimpleIconsBitcoinsv", - "SimpleIconsBitdefender", - "SimpleIconsBitly", - "SimpleIconsBitrise", - "SimpleIconsBitwarden", - "SimpleIconsBitwig", - "SimpleIconsBlackberry", - "SimpleIconsBlazemeter", - "SimpleIconsBlazor", - "SimpleIconsBlender", - "SimpleIconsBlockchaindotcom", - "SimpleIconsBlogger", - "SimpleIconsBloglovin", - "SimpleIconsBlueprint", - "SimpleIconsBluetooth", - "SimpleIconsBmcsoftware", - "SimpleIconsBmw", - "SimpleIconsBoardgamegeek", - "SimpleIconsBoehringeringelheim", - "SimpleIconsBoeing", - "SimpleIconsBookalope", - "SimpleIconsBookbub", - "SimpleIconsBookmeter", - "SimpleIconsBookmyshow", - "SimpleIconsBookstack", - "SimpleIconsBoost", - "SimpleIconsBoots", - "SimpleIconsBootstrap", - "SimpleIconsBorgbackup", - "SimpleIconsBosch", - "SimpleIconsBose", - "SimpleIconsBoulanger", - "SimpleIconsBower", - "SimpleIconsBox", - "SimpleIconsBoxysvg", - "SimpleIconsBrandfolder", - "SimpleIconsBrave", - "SimpleIconsBreaker", - "SimpleIconsBritishairways", - "SimpleIconsBroadcom", - "SimpleIconsBt", - "SimpleIconsBuddy", - "SimpleIconsBudibase", - "SimpleIconsBuefy", - "SimpleIconsBuffer", - "SimpleIconsBugatti", - "SimpleIconsBugcrowd", - "SimpleIconsBugsnag", - "SimpleIconsBuildkite", - "SimpleIconsBukalapak", - "SimpleIconsBulma", - "SimpleIconsBun", - "SimpleIconsBunq", - "SimpleIconsBurgerking", - "SimpleIconsBurton", - "SimpleIconsBuymeacoffee", - "SimpleIconsBuzzfeed", - "SimpleIconsBvg", - "SimpleIconsByjus", - "SimpleIconsByte", - "SimpleIconsBytedance", - "SimpleIconsC", - "SimpleIconsCachet", - "SimpleIconsCafepress", - "SimpleIconsCaffeine", - "SimpleIconsCairographics", - "SimpleIconsCairometro", - "SimpleIconsCakephp", - "SimpleIconsCampaignmonitor", - "SimpleIconsCanonical", - "SimpleIconsCanva", - "SimpleIconsCapacitor", - "SimpleIconsCarrefour", - "SimpleIconsCarthrottle", - "SimpleIconsCarto", - "SimpleIconsCashapp", - "SimpleIconsCastbox", - "SimpleIconsCastorama", - "SimpleIconsCastro", - "SimpleIconsCaterpillar", - "SimpleIconsCbs", - "SimpleIconsCdprojekt", - "SimpleIconsCelery", - "SimpleIconsCentos", - "SimpleIconsCeph", - "SimpleIconsCesium", - "SimpleIconsChai", - "SimpleIconsChainguard", - "SimpleIconsChainlink", - "SimpleIconsChakraui", - "SimpleIconsChartdotjs", - "SimpleIconsChartmogul", - "SimpleIconsChase", - "SimpleIconsChatbot", - "SimpleIconsCheckio", - "SimpleIconsCheckmarx", - "SimpleIconsChef", - "SimpleIconsChemex", - "SimpleIconsChevrolet", - "SimpleIconsChinaeasternairlines", - "SimpleIconsChinasouthernairlines", - "SimpleIconsChocolatey", - "SimpleIconsChromecast", - "SimpleIconsChrysler", - "SimpleIconsChupachups", - "SimpleIconsCilium", - "SimpleIconsCinema4D", - "SimpleIconsCircle", - "SimpleIconsCircleci", - "SimpleIconsCirrusci", - "SimpleIconsCisco", - "SimpleIconsCitrix", - "SimpleIconsCitroen", - "SimpleIconsCivicrm", - "SimpleIconsCivo", - "SimpleIconsCkeditor4", - "SimpleIconsClaris", - "SimpleIconsClickhouse", - "SimpleIconsClickup", - "SimpleIconsClion", - "SimpleIconsCliqz", - "SimpleIconsClockify", - "SimpleIconsClojure", - "SimpleIconsCloud66", - "SimpleIconsCloudbees", - "SimpleIconsCloudcannon", - "SimpleIconsCloudera", - "SimpleIconsCloudflare", - "SimpleIconsCloudflarepages", - "SimpleIconsCloudfoundry", - "SimpleIconsCloudsmith", - "SimpleIconsCloudways", - "SimpleIconsClubhouse", - "SimpleIconsClyp", - "SimpleIconsCmake", - "SimpleIconsCncf", - "SimpleIconsCnn", - "SimpleIconsCockpit", - "SimpleIconsCockroachlabs", - "SimpleIconsCocoapods", - "SimpleIconsCocos", - "SimpleIconsCoda", - "SimpleIconsCodacy", - "SimpleIconsCodeberg", - "SimpleIconsCodecademy", - "SimpleIconsCodeceptjs", - "SimpleIconsCodechef", - "SimpleIconsCodeclimate", - "SimpleIconsCodecov", - "SimpleIconsCodefactor", - "SimpleIconsCodeforces", - "SimpleIconsCodeigniter", - "SimpleIconsCodemagic", - "SimpleIconsCodemirror", - "SimpleIconsCodenewbie", - "SimpleIconsCodepen", - "SimpleIconsCodeproject", - "SimpleIconsCodereview", - "SimpleIconsCodersrank", - "SimpleIconsCoderwall", - "SimpleIconsCodesandbox", - "SimpleIconsCodeship", - "SimpleIconsCodewars", - "SimpleIconsCodingame", - "SimpleIconsCodingninjas", - "SimpleIconsCodio", - "SimpleIconsCoffeescript", - "SimpleIconsCognizant", - "SimpleIconsCoil", - "SimpleIconsCoinbase", - "SimpleIconsCoinmarketcap", - "SimpleIconsCommerzbank", - "SimpleIconsCommitlint", - "SimpleIconsCommodore", - "SimpleIconsCommonworkflowlanguage", - "SimpleIconsComposer", - "SimpleIconsComsol", - "SimpleIconsConan", - "SimpleIconsConcourse", - "SimpleIconsCondaforge", - "SimpleIconsConekta", - "SimpleIconsConfluence", - "SimpleIconsConstruct3", - "SimpleIconsConsul", - "SimpleIconsContactlesspayment", - "SimpleIconsContainerd", - "SimpleIconsContentful", - "SimpleIconsConventionalcommits", - "SimpleIconsConvertio", - "SimpleIconsCookiecutter", - "SimpleIconsCoop", - "SimpleIconsCora", - "SimpleIconsCoronaengine", - "SimpleIconsCoronarenderer", - "SimpleIconsCorsair", - "SimpleIconsCouchbase", - "SimpleIconsCounterstrike", - "SimpleIconsCountingworkspro", - "SimpleIconsCoursera", - "SimpleIconsCoveralls", - "SimpleIconsCpanel", - "SimpleIconsCplusplus", - "SimpleIconsCraftcms", - "SimpleIconsCratedb", - "SimpleIconsCrayon", - "SimpleIconsCreatereactapp", - "SimpleIconsCreativecommons", - "SimpleIconsCreativetechnology", - "SimpleIconsCredly", - "SimpleIconsCrehana", - "SimpleIconsCriticalrole", - "SimpleIconsCrowdin", - "SimpleIconsCrowdsource", - "SimpleIconsCrunchbase", - "SimpleIconsCrunchyroll", - "SimpleIconsCryengine", - "SimpleIconsCrystal", - "SimpleIconsCsharp", - "SimpleIconsCss3", - "SimpleIconsCssmodules", - "SimpleIconsCsswizardry", - "SimpleIconsCts", - "SimpleIconsCucumber", - "SimpleIconsCultura", - "SimpleIconsCurl", - "SimpleIconsCurseforge", - "SimpleIconsCycling74", - "SimpleIconsCypress", - "SimpleIconsCytoscapedotjs", - "SimpleIconsD", - "SimpleIconsD3Dotjs", - "SimpleIconsDacia", - "SimpleIconsDaf", - "SimpleIconsDailymotion", - "SimpleIconsDaimler", - "SimpleIconsDaisyui", - "SimpleIconsDapr", - "SimpleIconsDarkreader", - "SimpleIconsDart", - "SimpleIconsDarty", - "SimpleIconsDaserste", - "SimpleIconsDash", - "SimpleIconsDashlane", - "SimpleIconsDask", - "SimpleIconsDassaultsystemes", - "SimpleIconsDatabricks", - "SimpleIconsDatacamp", - "SimpleIconsDatadog", - "SimpleIconsDatadotai", - "SimpleIconsDatagrip", - "SimpleIconsDataiku", - "SimpleIconsDatastax", - "SimpleIconsDataverse", - "SimpleIconsDatocms", - "SimpleIconsDatto", - "SimpleIconsDazn", - "SimpleIconsDblp", - "SimpleIconsDbt", - "SimpleIconsDcentertainment", - "SimpleIconsDebian", - "SimpleIconsDedge", - "SimpleIconsDeepin", - "SimpleIconsDeepnote", - "SimpleIconsDeezer", - "SimpleIconsDelicious", - "SimpleIconsDeliveroo", - "SimpleIconsDell", - "SimpleIconsDelonghi", - "SimpleIconsDelphi", - "SimpleIconsDelta", - "SimpleIconsDeno", - "SimpleIconsDependabot", - "SimpleIconsDerspiegel", - "SimpleIconsDesignernews", - "SimpleIconsDeutschebahn", - "SimpleIconsDeutschebank", - "SimpleIconsDevdotto", - "SimpleIconsDevexpress", - "SimpleIconsDeviantart", - "SimpleIconsDevpost", - "SimpleIconsDevrant", - "SimpleIconsDgraph", - "SimpleIconsDhl", - "SimpleIconsDiagramsdotnet", - "SimpleIconsDialogflow", - "SimpleIconsDiaspora", - "SimpleIconsDigg", - "SimpleIconsDigikeyelectronics", - "SimpleIconsDigitalocean", - "SimpleIconsDior", - "SimpleIconsDirectus", - "SimpleIconsDiscogs", - "SimpleIconsDiscord", - "SimpleIconsDiscourse", - "SimpleIconsDiscover", - "SimpleIconsDisqus", - "SimpleIconsDisroot", - "SimpleIconsDjango", - "SimpleIconsDlib", - "SimpleIconsDlna", - "SimpleIconsDm", - "SimpleIconsDocker", - "SimpleIconsDocsdotrs", - "SimpleIconsDocusign", - "SimpleIconsDogecoin", - "SimpleIconsDolby", - "SimpleIconsDoordash", - "SimpleIconsDotenv", - "SimpleIconsDotnet", - "SimpleIconsDouban", - "SimpleIconsDoubanread", - "SimpleIconsDovecot", - "SimpleIconsDpd", - "SimpleIconsDragonframe", - "SimpleIconsDraugiemdotlv", - "SimpleIconsDribbble", - "SimpleIconsDrone", - "SimpleIconsDrooble", - "SimpleIconsDropbox", - "SimpleIconsDrupal", - "SimpleIconsDsautomobiles", - "SimpleIconsDtube", - "SimpleIconsDucati", - "SimpleIconsDuckdb", - "SimpleIconsDuckduckgo", - "SimpleIconsDungeonsanddragons", - "SimpleIconsDunked", - "SimpleIconsDuolingo", - "SimpleIconsDvc", - "SimpleIconsDwavesystems", - "SimpleIconsDwm", - "SimpleIconsDynamics365", - "SimpleIconsDynatrace", - "SimpleIconsE", - "SimpleIconsE3", - "SimpleIconsEa", - "SimpleIconsEagle", - "SimpleIconsEasyjet", - "SimpleIconsEbay", - "SimpleIconsEclipseche", - "SimpleIconsEclipseide", - "SimpleIconsEclipsejetty", - "SimpleIconsEclipsemosquitto", - "SimpleIconsEclipsevertdotx", - "SimpleIconsEdeka", - "SimpleIconsEditorconfig", - "SimpleIconsEdotleclerc", - "SimpleIconsEdx", - "SimpleIconsEgghead", - "SimpleIconsEgnyte", - "SimpleIconsEightsleep", - "SimpleIconsElastic", - "SimpleIconsElasticcloud", - "SimpleIconsElasticsearch", - "SimpleIconsElasticstack", - "SimpleIconsElectron", - "SimpleIconsElectronbuilder", - "SimpleIconsElectronfiddle", - "SimpleIconsElement", - "SimpleIconsElementary", - "SimpleIconsElementor", - "SimpleIconsEleventy", - "SimpleIconsElgato", - "SimpleIconsElixir", - "SimpleIconsEljueves", - "SimpleIconsEllo", - "SimpleIconsElm", - "SimpleIconsElsevier", - "SimpleIconsEmbarcadero", - "SimpleIconsEmberdotjs", - "SimpleIconsEmby", - "SimpleIconsEmirates", - "SimpleIconsEmlakjet", - "SimpleIconsEmpirekred", - "SimpleIconsEngadget", - "SimpleIconsEnpass", - "SimpleIconsEnterprisedb", - "SimpleIconsEnvato", - "SimpleIconsEnvoyproxy", - "SimpleIconsEpel", - "SimpleIconsEpicgames", - "SimpleIconsEpson", - "SimpleIconsEquinixmetal", - "SimpleIconsErlang", - "SimpleIconsEsbuild", - "SimpleIconsEsea", - "SimpleIconsEslgaming", - "SimpleIconsEslint", - "SimpleIconsEsphome", - "SimpleIconsEspressif", - "SimpleIconsEtcd", - "SimpleIconsEthereum", - "SimpleIconsEthiopianairlines", - "SimpleIconsEtihadairways", - "SimpleIconsEtsy", - "SimpleIconsEventbrite", - "SimpleIconsEventstore", - "SimpleIconsEvernote", - "SimpleIconsExercism", - "SimpleIconsExordo", - "SimpleIconsExoscale", - "SimpleIconsExpensify", - "SimpleIconsExpertsexchange", - "SimpleIconsExpo", - "SimpleIconsExpress", - "SimpleIconsExpressvpn", - "SimpleIconsEyeem", - "SimpleIconsF1", - "SimpleIconsF5", - "SimpleIconsFacebook", - "SimpleIconsFacebookgaming", - "SimpleIconsFacebooklive", - "SimpleIconsFaceit", - "SimpleIconsFacepunch", - "SimpleIconsFalcon", - "SimpleIconsFampay", - "SimpleIconsFandango", - "SimpleIconsFandom", - "SimpleIconsFanfou", - "SimpleIconsFantom", - "SimpleIconsFarfetch", - "SimpleIconsFastapi", - "SimpleIconsFastify", - "SimpleIconsFastlane", - "SimpleIconsFastly", - "SimpleIconsFathom", - "SimpleIconsFauna", - "SimpleIconsFavro", - "SimpleIconsFdroid", - "SimpleIconsFeathub", - "SimpleIconsFedex", - "SimpleIconsFedora", - "SimpleIconsFeedly", - "SimpleIconsFerrari", - "SimpleIconsFerrarinv", - "SimpleIconsFfmpeg", - "SimpleIconsFiat", - "SimpleIconsFidoalliance", - "SimpleIconsFifa", - "SimpleIconsFig", - "SimpleIconsFigma", - "SimpleIconsFigshare", - "SimpleIconsFila", - "SimpleIconsFiles", - "SimpleIconsFilezilla", - "SimpleIconsFing", - "SimpleIconsFirebase", - "SimpleIconsFirefox", - "SimpleIconsFirefoxbrowser", - "SimpleIconsFireship", - "SimpleIconsFirewalla", - "SimpleIconsFirst", - "SimpleIconsFitbit", - "SimpleIconsFite", - "SimpleIconsFivem", - "SimpleIconsFiverr", - "SimpleIconsFlask", - "SimpleIconsFlat", - "SimpleIconsFlathub", - "SimpleIconsFlatpak", - "SimpleIconsFlattr", - "SimpleIconsFlickr", - "SimpleIconsFlipboard", - "SimpleIconsFlipkart", - "SimpleIconsFloatplane", - "SimpleIconsFlood", - "SimpleIconsFluentbit", - "SimpleIconsFluentd", - "SimpleIconsFlutter", - "SimpleIconsFluxus", - "SimpleIconsFlyway", - "SimpleIconsFmod", - "SimpleIconsFnac", - "SimpleIconsFolium", - "SimpleIconsFonoma", - "SimpleIconsFontawesome", - "SimpleIconsFontbase", - "SimpleIconsFontforge", - "SimpleIconsFoodpanda", - "SimpleIconsFord", - "SimpleIconsForestry", - "SimpleIconsFormstack", - "SimpleIconsFortinet", - "SimpleIconsFortran", - "SimpleIconsFossa", - "SimpleIconsFossilscm", - "SimpleIconsFoursquare", - "SimpleIconsFoursquarecityguide", - "SimpleIconsFox", - "SimpleIconsFoxtel", - "SimpleIconsFozzy", - "SimpleIconsFramer", - "SimpleIconsFramework7", - "SimpleIconsFranprix", - "SimpleIconsFraunhofergesellschaft", - "SimpleIconsFreebsd", - "SimpleIconsFreecodecamp", - "SimpleIconsFreedesktopdotorg", - "SimpleIconsFreelancer", - "SimpleIconsFreenas", - "SimpleIconsFrontendmentor", - "SimpleIconsFsecure", - "SimpleIconsFugacloud", - "SimpleIconsFujifilm", - "SimpleIconsFujitsu", - "SimpleIconsFunimation", - "SimpleIconsFuraffinity", - "SimpleIconsFurrynetwork", - "SimpleIconsFuturelearn", - "SimpleIconsG2", - "SimpleIconsG2A", - "SimpleIconsGameandwatch", - "SimpleIconsGamedeveloper", - "SimpleIconsGamejolt", - "SimpleIconsGarmin", - "SimpleIconsGatling", - "SimpleIconsGatsby", - "SimpleIconsGeant", - "SimpleIconsGeeksforgeeks", - "SimpleIconsGeneralelectric", - "SimpleIconsGeneralmotors", - "SimpleIconsGenius", - "SimpleIconsGentoo", - "SimpleIconsGeocaching", - "SimpleIconsGerrit", - "SimpleIconsGhost", - "SimpleIconsGhostery", - "SimpleIconsGimp", - "SimpleIconsGiphy", - "SimpleIconsGit", - "SimpleIconsGitbook", - "SimpleIconsGitea", - "SimpleIconsGitee", - "SimpleIconsGitextensions", - "SimpleIconsGithub", - "SimpleIconsGithubactions", - "SimpleIconsGithubpages", - "SimpleIconsGithubsponsors", - "SimpleIconsGitignoredotio", - "SimpleIconsGitkraken", - "SimpleIconsGitlab", - "SimpleIconsGitlfs", - "SimpleIconsGitpod", - "SimpleIconsGitter", - "SimpleIconsGlassdoor", - "SimpleIconsGlitch", - "SimpleIconsGlobus", - "SimpleIconsGmail", - "SimpleIconsGnome", - "SimpleIconsGnometerminal", - "SimpleIconsGnu", - "SimpleIconsGnubash", - "SimpleIconsGnuemacs", - "SimpleIconsGnuicecat", - "SimpleIconsGnuprivacyguard", - "SimpleIconsGnusocial", - "SimpleIconsGo", - "SimpleIconsGocd", - "SimpleIconsGodaddy", - "SimpleIconsGodotengine", - "SimpleIconsGofundme", - "SimpleIconsGogdotcom", - "SimpleIconsGoland", - "SimpleIconsGoldenline", - "SimpleIconsGoodreads", - "SimpleIconsGoogle", - "SimpleIconsGoogleadmob", - "SimpleIconsGoogleads", - "SimpleIconsGoogleadsense", - "SimpleIconsGoogleanalytics", - "SimpleIconsGoogleassistant", - "SimpleIconsGooglecalendar", - "SimpleIconsGooglecardboard", - "SimpleIconsGooglechat", - "SimpleIconsGooglechrome", - "SimpleIconsGoogleclassroom", - "SimpleIconsGooglecloud", - "SimpleIconsGooglecolab", - "SimpleIconsGoogledomains", - "SimpleIconsGoogledrive", - "SimpleIconsGoogleearth", - "SimpleIconsGooglefit", - "SimpleIconsGooglefonts", - "SimpleIconsGooglehangouts", - "SimpleIconsGooglehome", - "SimpleIconsGooglekeep", - "SimpleIconsGooglelens", - "SimpleIconsGooglemaps", - "SimpleIconsGooglemarketingplatform", - "SimpleIconsGooglemeet", - "SimpleIconsGooglemessages", - "SimpleIconsGooglemybusiness", - "SimpleIconsGooglenearby", - "SimpleIconsGooglenews", - "SimpleIconsGoogleoptimize", - "SimpleIconsGooglepay", - "SimpleIconsGooglephotos", - "SimpleIconsGoogleplay", - "SimpleIconsGooglepodcasts", - "SimpleIconsGooglescholar", - "SimpleIconsGooglesearchconsole", - "SimpleIconsGooglesheets", - "SimpleIconsGooglestreetview", - "SimpleIconsGoogletagmanager", - "SimpleIconsGoogletranslate", - "SimpleIconsGotomeeting", - "SimpleIconsGrab", - "SimpleIconsGradle", - "SimpleIconsGrafana", - "SimpleIconsGrammarly", - "SimpleIconsGrandfrais", - "SimpleIconsGraphql", - "SimpleIconsGrav", - "SimpleIconsGravatar", - "SimpleIconsGraylog", - "SimpleIconsGreenhouse", - "SimpleIconsGreensock", - "SimpleIconsGriddotai", - "SimpleIconsGridsome", - "SimpleIconsGroupme", - "SimpleIconsGroupon", - "SimpleIconsGrubhub", - "SimpleIconsGrunt", - "SimpleIconsGsk", - "SimpleIconsGtk", - "SimpleIconsGuangzhoumetro", - "SimpleIconsGuilded", - "SimpleIconsGulp", - "SimpleIconsGumroad", - "SimpleIconsGumtree", - "SimpleIconsGunicorn", - "SimpleIconsGurobi", - "SimpleIconsGutenberg", - "SimpleIconsHabr", - "SimpleIconsHackaday", - "SimpleIconsHackclub", - "SimpleIconsHackerearth", - "SimpleIconsHackernoon", - "SimpleIconsHackerone", - "SimpleIconsHackerrank", - "SimpleIconsHackster", - "SimpleIconsHackthebox", - "SimpleIconsHandlebarsdotjs", - "SimpleIconsHandshake", - "SimpleIconsHandshakeProtocol", - "SimpleIconsHappycow", - "SimpleIconsHarbor", - "SimpleIconsHarmonyos", - "SimpleIconsHashnode", - "SimpleIconsHaskell", - "SimpleIconsHasura", - "SimpleIconsHatenabookmark", - "SimpleIconsHaveibeenpwned", - "SimpleIconsHaxe", - "SimpleIconsHbo", - "SimpleIconsHcl", - "SimpleIconsHeadlessui", - "SimpleIconsHeadspace", - "SimpleIconsHedera", - "SimpleIconsHellofresh", - "SimpleIconsHellyhansen", - "SimpleIconsHelm", - "SimpleIconsHelpdesk", - "SimpleIconsHelpscout", - "SimpleIconsHere", - "SimpleIconsHeroku", - "SimpleIconsHetzner", - "SimpleIconsHexo", - "SimpleIconsHey", - "SimpleIconsHibernate", - "SimpleIconsHibob", - "SimpleIconsHilton", - "SimpleIconsHitachi", - "SimpleIconsHive", - "SimpleIconsHiveBlockchain", - "SimpleIconsHomeadvisor", - "SimpleIconsHomeassistant", - "SimpleIconsHomeassistantcommunitystore", - "SimpleIconsHomebrew", - "SimpleIconsHomebridge", - "SimpleIconsHomify", - "SimpleIconsHonda", - "SimpleIconsHoney", - "SimpleIconsHootsuite", - "SimpleIconsHoppscotch", - "SimpleIconsHotelsdotcom", - "SimpleIconsHotjar", - "SimpleIconsHoudini", - "SimpleIconsHouzz", - "SimpleIconsHp", - "SimpleIconsHtml5", - "SimpleIconsHtmlacademy", - "SimpleIconsHttpie", - "SimpleIconsHuawei", - "SimpleIconsHubspot", - "SimpleIconsHugo", - "SimpleIconsHulu", - "SimpleIconsHumblebundle", - "SimpleIconsHungryjacks", - "SimpleIconsHurriyetemlak", - "SimpleIconsHusqvarna", - "SimpleIconsHyper", - "SimpleIconsHyperledger", - "SimpleIconsHypothesis", - "SimpleIconsHyundai", - "SimpleIconsI18Next", - "SimpleIconsIata", - "SimpleIconsIbeacon", - "SimpleIconsIbm", - "SimpleIconsIbmcloud", - "SimpleIconsIbmwatson", - "SimpleIconsIced", - "SimpleIconsIceland", - "SimpleIconsIcinga", - "SimpleIconsIcloud", - "SimpleIconsIcomoon", - "SimpleIconsIcon", - "SimpleIconsIconfinder", - "SimpleIconsIconify", - "SimpleIconsIconjar", - "SimpleIconsIcons8", - "SimpleIconsIcq", - "SimpleIconsIeee", - "SimpleIconsIfixit", - "SimpleIconsIfood", - "SimpleIconsIfttt", - "SimpleIconsIheartradio", - "SimpleIconsIkea", - "SimpleIconsIledefrancemobilites", - "SimpleIconsImagej", - "SimpleIconsImdb", - "SimpleIconsImgur", - "SimpleIconsImmer", - "SimpleIconsImou", - "SimpleIconsIndeed", - "SimpleIconsInfiniti", - "SimpleIconsInfluxdb", - "SimpleIconsInformatica", - "SimpleIconsInfosys", - "SimpleIconsInfracost", - "SimpleIconsIngress", - "SimpleIconsInkdrop", - "SimpleIconsInkscape", - "SimpleIconsInsomnia", - "SimpleIconsInstacart", - "SimpleIconsInstagram", - "SimpleIconsInstapaper", - "SimpleIconsInstatus", - "SimpleIconsInstructables", - "SimpleIconsInstructure", - "SimpleIconsIntegromat", - "SimpleIconsIntel", - "SimpleIconsIntellijidea", - "SimpleIconsInteractiondesignfoundation", - "SimpleIconsInteractjs", - "SimpleIconsIntercom", - "SimpleIconsIntermarche", - "SimpleIconsInternetarchive", - "SimpleIconsInternetexplorer", - "SimpleIconsIntigriti", - "SimpleIconsInvision", - "SimpleIconsInvoiceninja", - "SimpleIconsIobroker", - "SimpleIconsIonic", - "SimpleIconsIonos", - "SimpleIconsIos", - "SimpleIconsIota", - "SimpleIconsIpfs", - "SimpleIconsIssuu", - "SimpleIconsIstio", - "SimpleIconsItchdotio", - "SimpleIconsIterm2", - "SimpleIconsItunes", - "SimpleIconsItvx", - "SimpleIconsIveco", - "SimpleIconsJabber", - "SimpleIconsJaguar", - "SimpleIconsJamboard", - "SimpleIconsJameson", - "SimpleIconsJamstack", - "SimpleIconsJasmine", - "SimpleIconsJavascript", - "SimpleIconsJbl", - "SimpleIconsJcb", - "SimpleIconsJeep", - "SimpleIconsJekyll", - "SimpleIconsJellyfin", - "SimpleIconsJenkins", - "SimpleIconsJenkinsx", - "SimpleIconsJest", - "SimpleIconsJet", - "SimpleIconsJetbrains", - "SimpleIconsJetpackcompose", - "SimpleIconsJfrog", - "SimpleIconsJfrogbintray", - "SimpleIconsJinja", - "SimpleIconsJira", - "SimpleIconsJirasoftware", - "SimpleIconsJitsi", - "SimpleIconsJohndeere", - "SimpleIconsJoomla", - "SimpleIconsJoplin", - "SimpleIconsJordan", - "SimpleIconsJpeg", - "SimpleIconsJquery", - "SimpleIconsJrgroup", - "SimpleIconsJsdelivr", - "SimpleIconsJsfiddle", - "SimpleIconsJson", - "SimpleIconsJsonwebtokens", - "SimpleIconsJss", - "SimpleIconsJuke", - "SimpleIconsJulia", - "SimpleIconsJunipernetworks", - "SimpleIconsJunit5", - "SimpleIconsJupyter", - "SimpleIconsJusteat", - "SimpleIconsJustgiving", - "SimpleIconsK3S", - "SimpleIconsK6", - "SimpleIconsKaggle", - "SimpleIconsKahoot", - "SimpleIconsKaios", - "SimpleIconsKakao", - "SimpleIconsKakaotalk", - "SimpleIconsKalilinux", - "SimpleIconsKaniko", - "SimpleIconsKarlsruherverkehrsverbund", - "SimpleIconsKasasmart", - "SimpleIconsKashflow", - "SimpleIconsKaspersky", - "SimpleIconsKatacoda", - "SimpleIconsKatana", - "SimpleIconsKaufland", - "SimpleIconsKde", - "SimpleIconsKdenlive", - "SimpleIconsKeepachangelog", - "SimpleIconsKeepassxc", - "SimpleIconsKentico", - "SimpleIconsKeras", - "SimpleIconsKeybase", - "SimpleIconsKeycdn", - "SimpleIconsKeystone", - "SimpleIconsKfc", - "SimpleIconsKhanacademy", - "SimpleIconsKhronosgroup", - "SimpleIconsKia", - "SimpleIconsKibana", - "SimpleIconsKicad", - "SimpleIconsKickstarter", - "SimpleIconsKik", - "SimpleIconsKingstontechnology", - "SimpleIconsKinopoisk", - "SimpleIconsKirby", - "SimpleIconsKitsu", - "SimpleIconsKlarna", - "SimpleIconsKlm", - "SimpleIconsKlook", - "SimpleIconsKnative", - "SimpleIconsKnowledgebase", - "SimpleIconsKnown", - "SimpleIconsKoa", - "SimpleIconsKoc", - "SimpleIconsKodi", - "SimpleIconsKofax", - "SimpleIconsKofi", - "SimpleIconsKomoot", - "SimpleIconsKonami", - "SimpleIconsKong", - "SimpleIconsKongregate", - "SimpleIconsKonva", - "SimpleIconsKotlin", - "SimpleIconsKoyeb", - "SimpleIconsKrita", - "SimpleIconsKtm", - "SimpleIconsKuaishou", - "SimpleIconsKubernetes", - "SimpleIconsKubuntu", - "SimpleIconsKuma", - "SimpleIconsKuula", - "SimpleIconsKyocera", - "SimpleIconsLabview", - "SimpleIconsLada", - "SimpleIconsLamborghini", - "SimpleIconsLandrover", - "SimpleIconsLapce", - "SimpleIconsLaragon", - "SimpleIconsLaravel", - "SimpleIconsLaravelhorizon", - "SimpleIconsLaravelnova", - "SimpleIconsLastdotfm", - "SimpleIconsLastpass", - "SimpleIconsLatex", - "SimpleIconsLaunchpad", - "SimpleIconsLazarus", - "SimpleIconsLbry", - "SimpleIconsLeaderprice", - "SimpleIconsLeaflet", - "SimpleIconsLeanpub", - "SimpleIconsLeetcode", - "SimpleIconsLegacygames", - "SimpleIconsLemmy", - "SimpleIconsLenovo", - "SimpleIconsLens", - "SimpleIconsLerna", - "SimpleIconsLeroymerlin", - "SimpleIconsLess", - "SimpleIconsLetsencrypt", - "SimpleIconsLetterboxd", - "SimpleIconsLevelsdotfyi", - "SimpleIconsLg", - "SimpleIconsLgtm", - "SimpleIconsLiberapay", - "SimpleIconsLibrariesdotio", - "SimpleIconsLibrarything", - "SimpleIconsLibreoffice", - "SimpleIconsLibuv", - "SimpleIconsLichess", - "SimpleIconsLidl", - "SimpleIconsLifx", - "SimpleIconsLighthouse", - "SimpleIconsLine", - "SimpleIconsLineageos", - "SimpleIconsLinear", - "SimpleIconsLinkedin", - "SimpleIconsLinkerd", - "SimpleIconsLinkfire", - "SimpleIconsLinktree", - "SimpleIconsLinode", - "SimpleIconsLinux", - "SimpleIconsLinuxcontainers", - "SimpleIconsLinuxfoundation", - "SimpleIconsLinuxmint", - "SimpleIconsLionair", - "SimpleIconsLiquibase", - "SimpleIconsLit", - "SimpleIconsLitecoin", - "SimpleIconsLitiengine", - "SimpleIconsLivechat", - "SimpleIconsLivejournal", - "SimpleIconsLivewire", - "SimpleIconsLlvm", - "SimpleIconsLmms", - "SimpleIconsLodash", - "SimpleIconsLogitech", - "SimpleIconsLogmein", - "SimpleIconsLogstash", - "SimpleIconsLooker", - "SimpleIconsLoom", - "SimpleIconsLoop", - "SimpleIconsLoopback", - "SimpleIconsLospec", - "SimpleIconsLotpolishairlines", - "SimpleIconsLua", - "SimpleIconsLubuntu", - "SimpleIconsLudwig", - "SimpleIconsLufthansa", - "SimpleIconsLumen", - "SimpleIconsLunacy", - "SimpleIconsLydia", - "SimpleIconsLyft", - "SimpleIconsMaas", - "SimpleIconsMacos", - "SimpleIconsMacpaw", - "SimpleIconsMacys", - "SimpleIconsMagasinsu", - "SimpleIconsMagento", - "SimpleIconsMagisk", - "SimpleIconsMailchimp", - "SimpleIconsMaildotru", - "SimpleIconsMailgun", - "SimpleIconsMajorleaguehacking", - "SimpleIconsMakerbot", - "SimpleIconsMamp", - "SimpleIconsMan", - "SimpleIconsManageiq", - "SimpleIconsManjaro", - "SimpleIconsMapbox", - "SimpleIconsMariadb", - "SimpleIconsMariadbfoundation", - "SimpleIconsMarkdown", - "SimpleIconsMarketo", - "SimpleIconsMarko", - "SimpleIconsMarriott", - "SimpleIconsMaserati", - "SimpleIconsMastercard", - "SimpleIconsMastercomfig", - "SimpleIconsMastodon", - "SimpleIconsMaterialdesign", - "SimpleIconsMaterialdesignicons", - "SimpleIconsMatomo", - "SimpleIconsMatrix", - "SimpleIconsMatterdotjs", - "SimpleIconsMattermost", - "SimpleIconsMatternet", - "SimpleIconsMax", - "SimpleIconsMaxplanckgesellschaft", - "SimpleIconsMaytag", - "SimpleIconsMazda", - "SimpleIconsMcafee", - "SimpleIconsMcdonalds", - "SimpleIconsMclaren", - "SimpleIconsMdbook", - "SimpleIconsMdnwebdocs", - "SimpleIconsMdx", - "SimpleIconsMediafire", - "SimpleIconsMediamarkt", - "SimpleIconsMediatek", - "SimpleIconsMediatemple", - "SimpleIconsMedium", - "SimpleIconsMeetup", - "SimpleIconsMega", - "SimpleIconsMendeley", - "SimpleIconsMercadopago", - "SimpleIconsMercedes", - "SimpleIconsMerck", - "SimpleIconsMercurial", - "SimpleIconsMessenger", - "SimpleIconsMeta", - "SimpleIconsMetabase", - "SimpleIconsMetafilter", - "SimpleIconsMeteor", - "SimpleIconsMetro", - "SimpleIconsMetrodelaciudaddemexico", - "SimpleIconsMetrodemadrid", - "SimpleIconsMetrodeparis", - "SimpleIconsMewe", - "SimpleIconsMicrobit", - "SimpleIconsMicrodotblog", - "SimpleIconsMicrogenetics", - "SimpleIconsMicropython", - "SimpleIconsMicrosoft", - "SimpleIconsMicrosoftacademic", - "SimpleIconsMicrosoftaccess", - "SimpleIconsMicrosoftazure", - "SimpleIconsMicrosoftbing", - "SimpleIconsMicrosoftedge", - "SimpleIconsMicrosoftexcel", - "SimpleIconsMicrosoftexchange", - "SimpleIconsMicrosoftoffice", - "SimpleIconsMicrosoftonedrive", - "SimpleIconsMicrosoftonenote", - "SimpleIconsMicrosoftoutlook", - "SimpleIconsMicrosoftpowerpoint", - "SimpleIconsMicrosoftsharepoint", - "SimpleIconsMicrosoftsqlserver", - "SimpleIconsMicrosoftteams", - "SimpleIconsMicrosofttranslator", - "SimpleIconsMicrosoftvisio", - "SimpleIconsMicrosoftword", - "SimpleIconsMicrostrategy", - "SimpleIconsMidi", - "SimpleIconsMinds", - "SimpleIconsMinecraft", - "SimpleIconsMinetest", - "SimpleIconsMini", - "SimpleIconsMinutemailer", - "SimpleIconsMiro", - "SimpleIconsMitsubishi", - "SimpleIconsMix", - "SimpleIconsMixcloud", - "SimpleIconsMlb", - "SimpleIconsMlflow", - "SimpleIconsMobx", - "SimpleIconsMobxstatetree", - "SimpleIconsMocha", - "SimpleIconsModin", - "SimpleIconsModrinth", - "SimpleIconsModx", - "SimpleIconsMojangstudios", - "SimpleIconsMoleculer", - "SimpleIconsMomenteo", - "SimpleIconsMonero", - "SimpleIconsMoneygram", - "SimpleIconsMongodb", - "SimpleIconsMonica", - "SimpleIconsMonkeytie", - "SimpleIconsMonogames", - "SimpleIconsMonoprix", - "SimpleIconsMonster", - "SimpleIconsMonzo", - "SimpleIconsMoo", - "SimpleIconsMoonrepo", - "SimpleIconsMorrisons", - "SimpleIconsMoscowmetro", - "SimpleIconsMotorola", - "SimpleIconsMozilla", - "SimpleIconsMqtt", - "SimpleIconsMsi", - "SimpleIconsMsibusiness", - "SimpleIconsMta", - "SimpleIconsMtr", - "SimpleIconsMui", - "SimpleIconsMulesoft", - "SimpleIconsMuller", - "SimpleIconsMumble", - "SimpleIconsMusescore", - "SimpleIconsMusicbrainz", - "SimpleIconsMxlinux", - "SimpleIconsMyanimelist", - "SimpleIconsMyob", - "SimpleIconsMyspace", - "SimpleIconsMysql", - "SimpleIconsN26", - "SimpleIconsNamebase", - "SimpleIconsNamecheap", - "SimpleIconsNano", - "SimpleIconsNasa", - "SimpleIconsNationalgrid", - "SimpleIconsNativescript", - "SimpleIconsNaver", - "SimpleIconsNba", - "SimpleIconsNbb", - "SimpleIconsNdr", - "SimpleIconsNec", - "SimpleIconsNeo4J", - "SimpleIconsNeovim", - "SimpleIconsNestjs", - "SimpleIconsNetapp", - "SimpleIconsNetbsd", - "SimpleIconsNetflix", - "SimpleIconsNetlify", - "SimpleIconsNette", - "SimpleIconsNetto", - "SimpleIconsNeutralinojs", - "SimpleIconsNewbalance", - "SimpleIconsNewjapanprowrestling", - "SimpleIconsNewrelic", - "SimpleIconsNewyorktimes", - "SimpleIconsNextbilliondotai", - "SimpleIconsNextcloud", - "SimpleIconsNextdoor", - "SimpleIconsNextdotjs", - "SimpleIconsNfc", - "SimpleIconsNginx", - "SimpleIconsNgrok", - "SimpleIconsNiconico", - "SimpleIconsNike", - "SimpleIconsNim", - "SimpleIconsNintendo", - "SimpleIconsNintendo3Ds", - "SimpleIconsNintendogamecube", - "SimpleIconsNintendonetwork", - "SimpleIconsNintendoswitch", - "SimpleIconsNissan", - "SimpleIconsNixos", - "SimpleIconsNodedotjs", - "SimpleIconsNodemon", - "SimpleIconsNodered", - "SimpleIconsNokia", - "SimpleIconsNorco", - "SimpleIconsNordvpn", - "SimpleIconsNorwegian", - "SimpleIconsNotepadplusplus", - "SimpleIconsNotion", - "SimpleIconsNotist", - "SimpleIconsNounproject", - "SimpleIconsNovu", - "SimpleIconsNow", - "SimpleIconsNpm", - "SimpleIconsNrwl", - "SimpleIconsNubank", - "SimpleIconsNucleo", - "SimpleIconsNuget", - "SimpleIconsNuke", - "SimpleIconsNumba", - "SimpleIconsNumpy", - "SimpleIconsNunjucks", - "SimpleIconsNutanix", - "SimpleIconsNuxtdotjs", - "SimpleIconsNvidia", - "SimpleIconsNx", - "SimpleIconsNzxt", - "SimpleIconsObservable", - "SimpleIconsObsidian", - "SimpleIconsObsstudio", - "SimpleIconsOcaml", - "SimpleIconsOctanerender", - "SimpleIconsOctave", - "SimpleIconsOctoprint", - "SimpleIconsOctopusdeploy", - "SimpleIconsOculus", - "SimpleIconsOdnoklassniki", - "SimpleIconsOdysee", - "SimpleIconsOhdear", - "SimpleIconsOkcupid", - "SimpleIconsOkta", - "SimpleIconsOneplus", - "SimpleIconsOnlyfans", - "SimpleIconsOnlyoffice", - "SimpleIconsOnnx", - "SimpleIconsOnstar", - "SimpleIconsOpel", - "SimpleIconsOpenaccess", - "SimpleIconsOpenai", - "SimpleIconsOpenaigym", - "SimpleIconsOpenapiinitiative", - "SimpleIconsOpenbadges", - "SimpleIconsOpenbsd", - "SimpleIconsOpenbugbounty", - "SimpleIconsOpencollective", - "SimpleIconsOpencontainersinitiative", - "SimpleIconsOpencv", - "SimpleIconsOpenfaas", - "SimpleIconsOpengl", - "SimpleIconsOpenid", - "SimpleIconsOpenjdk", - "SimpleIconsOpenlayers", - "SimpleIconsOpenmined", - "SimpleIconsOpennebula", - "SimpleIconsOpenproject", - "SimpleIconsOpensea", - "SimpleIconsOpensearch", - "SimpleIconsOpensourceinitiative", - "SimpleIconsOpenssl", - "SimpleIconsOpenstack", - "SimpleIconsOpenstreetmap", - "SimpleIconsOpensuse", - "SimpleIconsOpentelemetry", - "SimpleIconsOpenverse", - "SimpleIconsOpenvpn", - "SimpleIconsOpenwrt", - "SimpleIconsOpenzeppelin", - "SimpleIconsOpenzfs", - "SimpleIconsOpera", - "SimpleIconsOpnsense", - "SimpleIconsOpsgenie", - "SimpleIconsOpslevel", - "SimpleIconsOracle", - "SimpleIconsOrcid", - "SimpleIconsOreilly", - "SimpleIconsOrg", - "SimpleIconsOrigin", - "SimpleIconsOsano", - "SimpleIconsOshkosh", - "SimpleIconsOsmc", - "SimpleIconsOsu", - "SimpleIconsOtto", - "SimpleIconsOvercast", - "SimpleIconsOverleaf", - "SimpleIconsOvh", - "SimpleIconsOwasp", - "SimpleIconsOxygen", - "SimpleIconsOyo", - "SimpleIconsP5Dotjs", - "SimpleIconsPackagist", - "SimpleIconsPacker", - "SimpleIconsPaddypower", - "SimpleIconsPagekit", - "SimpleIconsPagerduty", - "SimpleIconsPagespeedinsights", - "SimpleIconsPagseguro", - "SimpleIconsPalantir", - "SimpleIconsPaloaltosoftware", - "SimpleIconsPandas", - "SimpleIconsPandora", - "SimpleIconsPantheon", - "SimpleIconsPaperspace", - "SimpleIconsParitysubstrate", - "SimpleIconsParsedotly", - "SimpleIconsPassport", - "SimpleIconsPastebin", - "SimpleIconsPatreon", - "SimpleIconsPayoneer", - "SimpleIconsPaypal", - "SimpleIconsPaytm", - "SimpleIconsPcgamingwiki", - "SimpleIconsPeakdesign", - "SimpleIconsPeertube", - "SimpleIconsPegasusairlines", - "SimpleIconsPelican", - "SimpleIconsPeloton", - "SimpleIconsPenny", - "SimpleIconsPenpot", - "SimpleIconsPepsi", - "SimpleIconsPercy", - "SimpleIconsPerforce", - "SimpleIconsPerl", - "SimpleIconsPersistent", - "SimpleIconsPersonio", - "SimpleIconsPetsathome", - "SimpleIconsPeugeot", - "SimpleIconsPexels", - "SimpleIconsPfsense", - "SimpleIconsPhabricator", - "SimpleIconsPhilipshue", - "SimpleIconsPhonepe", - "SimpleIconsPhotobucket", - "SimpleIconsPhotocrowd", - "SimpleIconsPhotopea", - "SimpleIconsPhp", - "SimpleIconsPhpmyadmin", - "SimpleIconsPhpstorm", - "SimpleIconsPicardsurgeles", - "SimpleIconsPicartodottv", - "SimpleIconsPicnic", - "SimpleIconsPicpay", - "SimpleIconsPihole", - "SimpleIconsPimcore", - "SimpleIconsPinboard", - "SimpleIconsPingdom", - "SimpleIconsPinterest", - "SimpleIconsPioneerdj", - "SimpleIconsPivotaltracker", - "SimpleIconsPiwigo", - "SimpleIconsPix", - "SimpleIconsPixabay", - "SimpleIconsPixiv", - "SimpleIconsPkgsrc", - "SimpleIconsPlanet", - "SimpleIconsPlanetscale", - "SimpleIconsPlangrid", - "SimpleIconsPlatformdotsh", - "SimpleIconsPlatzi", - "SimpleIconsPlausibleanalytics", - "SimpleIconsPlaycanvas", - "SimpleIconsPlayerdotme", - "SimpleIconsPlayerfm", - "SimpleIconsPlaystation", - "SimpleIconsPlaystation2", - "SimpleIconsPlaystation3", - "SimpleIconsPlaystation4", - "SimpleIconsPlaystation5", - "SimpleIconsPlaystationvita", - "SimpleIconsPlaywright", - "SimpleIconsPleroma", - "SimpleIconsPlesk", - "SimpleIconsPlex", - "SimpleIconsPlotly", - "SimpleIconsPluralsight", - "SimpleIconsPlurk", - "SimpleIconsPluscodes", - "SimpleIconsPm2", - "SimpleIconsPnpm", - "SimpleIconsPocket", - "SimpleIconsPocketbase", - "SimpleIconsPocketcasts", - "SimpleIconsPodcastaddict", - "SimpleIconsPodman", - "SimpleIconsPoetry", - "SimpleIconsPointy", - "SimpleIconsPokemon", - "SimpleIconsPolars", - "SimpleIconsPolkadot", - "SimpleIconsPoly", - "SimpleIconsPolymerproject", - "SimpleIconsPolywork", - "SimpleIconsPopos", - "SimpleIconsPorsche", - "SimpleIconsPortainer", - "SimpleIconsPostcss", - "SimpleIconsPostgresql", - "SimpleIconsPostman", - "SimpleIconsPostmates", - "SimpleIconsPowerapps", - "SimpleIconsPowerautomate", - "SimpleIconsPowerbi", - "SimpleIconsPowerfx", - "SimpleIconsPowerpages", - "SimpleIconsPowers", - "SimpleIconsPowershell", - "SimpleIconsPowervirtualagents", - "SimpleIconsPrdotco", - "SimpleIconsPreact", - "SimpleIconsPrecommit", - "SimpleIconsPremierleague", - "SimpleIconsPrestashop", - "SimpleIconsPresto", - "SimpleIconsPrettier", - "SimpleIconsPrevention", - "SimpleIconsPrezi", - "SimpleIconsPrime", - "SimpleIconsPrimevideo", - "SimpleIconsPrisma", - "SimpleIconsPrismic", - "SimpleIconsPrivateinternetaccess", - "SimpleIconsProbot", - "SimpleIconsProcessingfoundation", - "SimpleIconsProcesswire", - "SimpleIconsProducthunt", - "SimpleIconsProgate", - "SimpleIconsProgress", - "SimpleIconsPrometheus", - "SimpleIconsProsieben", - "SimpleIconsProtocolsdotio", - "SimpleIconsProtodotio", - "SimpleIconsProtondb", - "SimpleIconsProtonmail", - "SimpleIconsProtonvpn", - "SimpleIconsProtools", - "SimpleIconsProtractor", - "SimpleIconsProxmox", - "SimpleIconsPubg", - "SimpleIconsPublons", - "SimpleIconsPubmed", - "SimpleIconsPug", - "SimpleIconsPulumi", - "SimpleIconsPuma", - "SimpleIconsPuppet", - "SimpleIconsPuppeteer", - "SimpleIconsPurescript", - "SimpleIconsPurgecss", - "SimpleIconsPurism", - "SimpleIconsPusher", - "SimpleIconsPwa", - "SimpleIconsPycharm", - "SimpleIconsPyg", - "SimpleIconsPypi", - "SimpleIconsPypy", - "SimpleIconsPyscaffold", - "SimpleIconsPysyft", - "SimpleIconsPytest", - "SimpleIconsPython", - "SimpleIconsPytorch", - "SimpleIconsPytorchlightning", - "SimpleIconsPyup", - "SimpleIconsQantas", - "SimpleIconsQatarairways", - "SimpleIconsQemu", - "SimpleIconsQgis", - "SimpleIconsQi", - "SimpleIconsQiita", - "SimpleIconsQiskit", - "SimpleIconsQiwi", - "SimpleIconsQmk", - "SimpleIconsQt", - "SimpleIconsQualcomm", - "SimpleIconsQualtrics", - "SimpleIconsQualys", - "SimpleIconsQuantcast", - "SimpleIconsQuantconnect", - "SimpleIconsQuarkus", - "SimpleIconsQuasar", - "SimpleIconsQubesos", - "SimpleIconsQuest", - "SimpleIconsQuickbooks", - "SimpleIconsQuicklook", - "SimpleIconsQuicktime", - "SimpleIconsQuip", - "SimpleIconsQuora", - "SimpleIconsQwiklabs", - "SimpleIconsQzone", - "SimpleIconsR", - "SimpleIconsR3", - "SimpleIconsRabbitmq", - "SimpleIconsRacket", - "SimpleIconsRadar", - "SimpleIconsRadiopublic", - "SimpleIconsRailway", - "SimpleIconsRainmeter", - "SimpleIconsRakuten", - "SimpleIconsRam", - "SimpleIconsRancher", - "SimpleIconsRarible", - "SimpleIconsRasa", - "SimpleIconsRaspberrypi", - "SimpleIconsRavelry", - "SimpleIconsRay", - "SimpleIconsRazer", - "SimpleIconsRazorpay", - "SimpleIconsReact", - "SimpleIconsReacthookform", - "SimpleIconsReactivex", - "SimpleIconsReactos", - "SimpleIconsReactquery", - "SimpleIconsReactrouter", - "SimpleIconsReacttable", - "SimpleIconsReadme", - "SimpleIconsReadthedocs", - "SimpleIconsRealm", - "SimpleIconsReason", - "SimpleIconsReasonstudios", - "SimpleIconsRed", - "SimpleIconsRedbubble", - "SimpleIconsReddit", - "SimpleIconsRedhat", - "SimpleIconsRedhatopenshift", - "SimpleIconsRedis", - "SimpleIconsRedmine", - "SimpleIconsRedox", - "SimpleIconsRedux", - "SimpleIconsReduxsaga", - "SimpleIconsRedwoodjs", - "SimpleIconsReebok", - "SimpleIconsRelay", - "SimpleIconsRelianceindustrieslimited", - "SimpleIconsRemix", - "SimpleIconsRenault", - "SimpleIconsRender", - "SimpleIconsRenovatebot", - "SimpleIconsRenpy", - "SimpleIconsRenren", - "SimpleIconsReplit", - "SimpleIconsRepublicofgamers", - "SimpleIconsRescript", - "SimpleIconsRescuetime", - "SimpleIconsResearchgate", - "SimpleIconsResharper", - "SimpleIconsResurrectionremixos", - "SimpleIconsRetroarch", - "SimpleIconsRetropie", - "SimpleIconsRevealdotjs", - "SimpleIconsReverbnation", - "SimpleIconsRevoltdotchat", - "SimpleIconsRevolut", - "SimpleIconsRevue", - "SimpleIconsRewe", - "SimpleIconsRezgo", - "SimpleIconsRhinoceros", - "SimpleIconsRider", - "SimpleIconsRimacautomobili", - "SimpleIconsRing", - "SimpleIconsRiotgames", - "SimpleIconsRipple", - "SimpleIconsRiseup", - "SimpleIconsRoamresearch", - "SimpleIconsRoblox", - "SimpleIconsRobotframework", - "SimpleIconsRocketdotchat", - "SimpleIconsRocksdb", - "SimpleIconsRockylinux", - "SimpleIconsRoku", - "SimpleIconsRollsroyce", - "SimpleIconsRollupdotjs", - "SimpleIconsRome", - "SimpleIconsRoots", - "SimpleIconsRootsbedrock", - "SimpleIconsRootssage", - "SimpleIconsRos", - "SimpleIconsRossmann", - "SimpleIconsRotaryinternational", - "SimpleIconsRottentomatoes", - "SimpleIconsRoundcube", - "SimpleIconsRsocket", - "SimpleIconsRss", - "SimpleIconsRstudio", - "SimpleIconsRte", - "SimpleIconsRtl", - "SimpleIconsRtlzwei", - "SimpleIconsRubocop", - "SimpleIconsRuby", - "SimpleIconsRubygems", - "SimpleIconsRubyonrails", - "SimpleIconsRubysinatra", - "SimpleIconsRunkeeper", - "SimpleIconsRunkit", - "SimpleIconsRust", - "SimpleIconsRxdb", - "SimpleIconsRyanair", - "SimpleIconsS7Airlines", - "SimpleIconsSabanci", - "SimpleIconsSafari", - "SimpleIconsSahibinden", - "SimpleIconsSailfishos", - "SimpleIconsSalesforce", - "SimpleIconsSaltproject", - "SimpleIconsSamsung", - "SimpleIconsSamsungpay", - "SimpleIconsSandisk", - "SimpleIconsSanfranciscomunicipalrailway", - "SimpleIconsSaopaulometro", - "SimpleIconsSap", - "SimpleIconsSass", - "SimpleIconsSat1", - "SimpleIconsSaturn", - "SimpleIconsSaucelabs", - "SimpleIconsScala", - "SimpleIconsScaleway", - "SimpleIconsScania", - "SimpleIconsSchneiderelectric", - "SimpleIconsScikitlearn", - "SimpleIconsScipy", - "SimpleIconsScopus", - "SimpleIconsScpfoundation", - "SimpleIconsScratch", - "SimpleIconsScreencastify", - "SimpleIconsScribd", - "SimpleIconsScrimba", - "SimpleIconsScrollreveal", - "SimpleIconsScrumalliance", - "SimpleIconsScrutinizerci", - "SimpleIconsSeagate", - "SimpleIconsSeat", - "SimpleIconsSecurityscorecard", - "SimpleIconsSefaria", - "SimpleIconsSega", - "SimpleIconsSelenium", - "SimpleIconsSellfy", - "SimpleIconsSemanticrelease", - "SimpleIconsSemanticscholar", - "SimpleIconsSemanticuireact", - "SimpleIconsSemanticweb", - "SimpleIconsSemaphoreci", - "SimpleIconsSemver", - "SimpleIconsSencha", - "SimpleIconsSendinblue", - "SimpleIconsSennheiser", - "SimpleIconsSensu", - "SimpleIconsSentry", - "SimpleIconsSepa", - "SimpleIconsSequelize", - "SimpleIconsServerfault", - "SimpleIconsServerless", - "SimpleIconsSessionize", - "SimpleIconsSetapp", - "SimpleIconsSfml", - "SimpleIconsShadow", - "SimpleIconsShanghaimetro", - "SimpleIconsSharp", - "SimpleIconsShazam", - "SimpleIconsShell", - "SimpleIconsShelly", - "SimpleIconsShenzhenmetro", - "SimpleIconsShieldsdotio", - "SimpleIconsShikimori", - "SimpleIconsShopee", - "SimpleIconsShopify", - "SimpleIconsShopware", - "SimpleIconsShotcut", - "SimpleIconsShowpad", - "SimpleIconsShowtime", - "SimpleIconsShutterstock", - "SimpleIconsSiemens", - "SimpleIconsSignal", - "SimpleIconsSimilarweb", - "SimpleIconsSimkl", - "SimpleIconsSimpleanalytics", - "SimpleIconsSimpleicons", - "SimpleIconsSimplenote", - "SimpleIconsSinaweibo", - "SimpleIconsSinglestore", - "SimpleIconsSitepoint", - "SimpleIconsSketch", - "SimpleIconsSketchfab", - "SimpleIconsSketchup", - "SimpleIconsSkillshare", - "SimpleIconsSkoda", - "SimpleIconsSky", - "SimpleIconsSkynet", - "SimpleIconsSkypack", - "SimpleIconsSkype", - "SimpleIconsSkypeforbusiness", - "SimpleIconsSlack", - "SimpleIconsSlackware", - "SimpleIconsSlashdot", - "SimpleIconsSlickpic", - "SimpleIconsSlides", - "SimpleIconsSlideshare", - "SimpleIconsSmart", - "SimpleIconsSmartthings", - "SimpleIconsSmashdotgg", - "SimpleIconsSmashingmagazine", - "SimpleIconsSmrt", - "SimpleIconsSmugmug", - "SimpleIconsSnapchat", - "SimpleIconsSnapcraft", - "SimpleIconsSncf", - "SimpleIconsSnowflake", - "SimpleIconsSnowpack", - "SimpleIconsSnyk", - "SimpleIconsSocialblade", - "SimpleIconsSociety6", - "SimpleIconsSocketdotio", - "SimpleIconsSogou", - "SimpleIconsSolid", - "SimpleIconsSolidity", - "SimpleIconsSololearn", - "SimpleIconsSolus", - "SimpleIconsSonar", - "SimpleIconsSonarcloud", - "SimpleIconsSonarlint", - "SimpleIconsSonarqube", - "SimpleIconsSonarsource", - "SimpleIconsSongkick", - "SimpleIconsSongoda", - "SimpleIconsSonicwall", - "SimpleIconsSonos", - "SimpleIconsSony", - "SimpleIconsSoundcharts", - "SimpleIconsSoundcloud", - "SimpleIconsSourceengine", - "SimpleIconsSourceforge", - "SimpleIconsSourcegraph", - "SimpleIconsSourcetree", - "SimpleIconsSouthwestairlines", - "SimpleIconsSpacemacs", - "SimpleIconsSpacex", - "SimpleIconsSpacy", - "SimpleIconsSparkar", - "SimpleIconsSparkasse", - "SimpleIconsSparkfun", - "SimpleIconsSparkpost", - "SimpleIconsSpdx", - "SimpleIconsSpeakerdeck", - "SimpleIconsSpectrum", - "SimpleIconsSpeedtest", - "SimpleIconsSpinnaker", - "SimpleIconsSpinrilla", - "SimpleIconsSplunk", - "SimpleIconsSpond", - "SimpleIconsSpotify", - "SimpleIconsSpotlight", - "SimpleIconsSpreadshirt", - "SimpleIconsSpreaker", - "SimpleIconsSpring", - "SimpleIconsSpringCreators", - "SimpleIconsSpringboot", - "SimpleIconsSpringsecurity", - "SimpleIconsSpyderide", - "SimpleIconsSqlite", - "SimpleIconsSquare", - "SimpleIconsSquareenix", - "SimpleIconsSquarespace", - "SimpleIconsSsrn", - "SimpleIconsStackbit", - "SimpleIconsStackblitz", - "SimpleIconsStackedit", - "SimpleIconsStackexchange", - "SimpleIconsStackoverflow", - "SimpleIconsStackpath", - "SimpleIconsStackshare", - "SimpleIconsStadia", - "SimpleIconsStaffbase", - "SimpleIconsStandardjs", - "SimpleIconsStarbucks", - "SimpleIconsStardock", - "SimpleIconsStarlingbank", - "SimpleIconsStarship", - "SimpleIconsStartrek", - "SimpleIconsStarz", - "SimpleIconsStatamic", - "SimpleIconsStatuspage", - "SimpleIconsStatuspal", - "SimpleIconsSteam", - "SimpleIconsSteamdb", - "SimpleIconsSteamdeck", - "SimpleIconsSteamworks", - "SimpleIconsSteelseries", - "SimpleIconsSteem", - "SimpleIconsSteemit", - "SimpleIconsSteinberg", - "SimpleIconsStellar", - "SimpleIconsStencyl", - "SimpleIconsStimulus", - "SimpleIconsStitcher", - "SimpleIconsStmicroelectronics", - "SimpleIconsStopstalk", - "SimpleIconsStoryblok", - "SimpleIconsStorybook", - "SimpleIconsStrapi", - "SimpleIconsStrava", - "SimpleIconsStreamlit", - "SimpleIconsStripe", - "SimpleIconsStrongswan", - "SimpleIconsStubhub", - "SimpleIconsStyledcomponents", - "SimpleIconsStylelint", - "SimpleIconsStyleshare", - "SimpleIconsStylus", - "SimpleIconsSubaru", - "SimpleIconsSublimetext", - "SimpleIconsSubstack", - "SimpleIconsSubversion", - "SimpleIconsSuckless", - "SimpleIconsSumologic", - "SimpleIconsSupabase", - "SimpleIconsSupermicro", - "SimpleIconsSuperuser", - "SimpleIconsSurrealdb", - "SimpleIconsSurveymonkey", - "SimpleIconsSuse", - "SimpleIconsSuzuki", - "SimpleIconsSvelte", - "SimpleIconsSvg", - "SimpleIconsSvgo", - "SimpleIconsSwagger", - "SimpleIconsSwarm", - "SimpleIconsSwc", - "SimpleIconsSwift", - "SimpleIconsSwiggy", - "SimpleIconsSwiper", - "SimpleIconsSymantec", - "SimpleIconsSymfony", - "SimpleIconsSymphony", - "SimpleIconsSympy", - "SimpleIconsSynology", - "SimpleIconsSystem76", - "SimpleIconsTableau", - "SimpleIconsTablecheck", - "SimpleIconsTacobell", - "SimpleIconsTado", - "SimpleIconsTaichigraphics", - "SimpleIconsTaichilang", - "SimpleIconsTails", - "SimpleIconsTailwindcss", - "SimpleIconsTalend", - "SimpleIconsTalenthouse", - "SimpleIconsTamiya", - "SimpleIconsTampermonkey", - "SimpleIconsTaobao", - "SimpleIconsTapas", - "SimpleIconsTarget", - "SimpleIconsTask", - "SimpleIconsTasmota", - "SimpleIconsTata", - "SimpleIconsTauri", - "SimpleIconsTaxbuzz", - "SimpleIconsTeamcity", - "SimpleIconsTeamspeak", - "SimpleIconsTeamviewer", - "SimpleIconsTed", - "SimpleIconsTeespring", - "SimpleIconsTekton", - "SimpleIconsTele5", - "SimpleIconsTelegram", - "SimpleIconsTelegraph", - "SimpleIconsTemporal", - "SimpleIconsTencentqq", - "SimpleIconsTensorflow", - "SimpleIconsTeradata", - "SimpleIconsTeratail", - "SimpleIconsTerraform", - "SimpleIconsTesco", - "SimpleIconsTesla", - "SimpleIconsTestcafe", - "SimpleIconsTestin", - "SimpleIconsTestinglibrary", - "SimpleIconsTether", - "SimpleIconsTextpattern", - "SimpleIconsTga", - "SimpleIconsThealgorithms", - "SimpleIconsTheconversation", - "SimpleIconsTheirishtimes", - "SimpleIconsThemighty", - "SimpleIconsThemodelsresource", - "SimpleIconsThemoviedatabase", - "SimpleIconsThenorthface", - "SimpleIconsTheregister", - "SimpleIconsThesoundsresource", - "SimpleIconsThespritersresource", - "SimpleIconsThewashingtonpost", - "SimpleIconsThingiverse", - "SimpleIconsThinkpad", - "SimpleIconsThreadless", - "SimpleIconsThreedotjs", - "SimpleIconsThreema", - "SimpleIconsThumbtack", - "SimpleIconsThunderbird", - "SimpleIconsThymeleaf", - "SimpleIconsTicketmaster", - "SimpleIconsTidal", - "SimpleIconsTide", - "SimpleIconsTidyverse", - "SimpleIconsTietoevry", - "SimpleIconsTiktok", - "SimpleIconsTile", - "SimpleIconsTimescale", - "SimpleIconsTinder", - "SimpleIconsTinyletter", - "SimpleIconsTistory", - "SimpleIconsTmobile", - "SimpleIconsTmux", - "SimpleIconsTnt", - "SimpleIconsTodoist", - "SimpleIconsToggl", - "SimpleIconsTokyometro", - "SimpleIconsToml", - "SimpleIconsTomorrowland", - "SimpleIconsTopcoder", - "SimpleIconsToptal", - "SimpleIconsTorbrowser", - "SimpleIconsTorproject", - "SimpleIconsToshiba", - "SimpleIconsToyota", - "SimpleIconsTplink", - "SimpleIconsTqdm", - "SimpleIconsTraefikmesh", - "SimpleIconsTraefikproxy", - "SimpleIconsTrainerroad", - "SimpleIconsTrakt", - "SimpleIconsTransportforireland", - "SimpleIconsTransportforlondon", - "SimpleIconsTravisci", - "SimpleIconsTreehouse", - "SimpleIconsTrello", - "SimpleIconsTrendmicro", - "SimpleIconsTreyarch", - "SimpleIconsTriller", - "SimpleIconsTrino", - "SimpleIconsTripadvisor", - "SimpleIconsTripdotcom", - "SimpleIconsTrove", - "SimpleIconsTrpc", - "SimpleIconsTruenas", - "SimpleIconsTrulia", - "SimpleIconsTrustedshops", - "SimpleIconsTrustpilot", - "SimpleIconsTryhackme", - "SimpleIconsTryitonline", - "SimpleIconsTsnode", - "SimpleIconsTubi", - "SimpleIconsTui", - "SimpleIconsTumblr", - "SimpleIconsTunein", - "SimpleIconsTurborepo", - "SimpleIconsTurbosquid", - "SimpleIconsTurkishairlines", - "SimpleIconsTutanota", - "SimpleIconsTvtime", - "SimpleIconsTwilio", - "SimpleIconsTwitch", - "SimpleIconsTwitter", - "SimpleIconsTwoo", - "SimpleIconsTypeform", - "SimpleIconsTypescript", - "SimpleIconsTypo3", - "SimpleIconsUber", - "SimpleIconsUbereats", - "SimpleIconsUbiquiti", - "SimpleIconsUbisoft", - "SimpleIconsUblockorigin", - "SimpleIconsUbuntu", - "SimpleIconsUdacity", - "SimpleIconsUdemy", - "SimpleIconsUfc", - "SimpleIconsUikit", - "SimpleIconsUlule", - "SimpleIconsUmbraco", - "SimpleIconsUnacademy", - "SimpleIconsUnderarmour", - "SimpleIconsUnderscoredotjs", - "SimpleIconsUndertale", - "SimpleIconsUnicode", - "SimpleIconsUnilever", - "SimpleIconsUnitedairlines", - "SimpleIconsUnity", - "SimpleIconsUnlicense", - "SimpleIconsUnocss", - "SimpleIconsUnraid", - "SimpleIconsUnrealengine", - "SimpleIconsUnsplash", - "SimpleIconsUntangle", - "SimpleIconsUntappd", - "SimpleIconsUpcloud", - "SimpleIconsUplabs", - "SimpleIconsUploaded", - "SimpleIconsUps", - "SimpleIconsUpstash", - "SimpleIconsUptimekuma", - "SimpleIconsUptobox", - "SimpleIconsUpwork", - "SimpleIconsUsps", - "SimpleIconsV", - "SimpleIconsV2Ex", - "SimpleIconsV8", - "SimpleIconsVaadin", - "SimpleIconsVagrant", - "SimpleIconsVala", - "SimpleIconsValorant", - "SimpleIconsValve", - "SimpleIconsVapor", - "SimpleIconsVault", - "SimpleIconsVauxhall", - "SimpleIconsVbulletin", - "SimpleIconsVectorlogozone", - "SimpleIconsVectorworks", - "SimpleIconsVeeam", - "SimpleIconsVeepee", - "SimpleIconsVelog", - "SimpleIconsVenmo", - "SimpleIconsVercel", - "SimpleIconsVerdaccio", - "SimpleIconsVeritas", - "SimpleIconsVerizon", - "SimpleIconsVexxhost", - "SimpleIconsVfairs", - "SimpleIconsViadeo", - "SimpleIconsViber", - "SimpleIconsVim", - "SimpleIconsVimeo", - "SimpleIconsVimeolivestream", - "SimpleIconsVirgin", - "SimpleIconsVirginmedia", - "SimpleIconsVirtualbox", - "SimpleIconsVirustotal", - "SimpleIconsVisa", - "SimpleIconsVisualstudio", - "SimpleIconsVisualstudiocode", - "SimpleIconsVite", - "SimpleIconsVitess", - "SimpleIconsVitest", - "SimpleIconsVivaldi", - "SimpleIconsVivino", - "SimpleIconsVk", - "SimpleIconsVlcmediaplayer", - "SimpleIconsVmware", - "SimpleIconsVodafone", - "SimpleIconsVolkswagen", - "SimpleIconsVolvo", - "SimpleIconsVonage", - "SimpleIconsVowpalwabbit", - "SimpleIconsVox", - "SimpleIconsVsco", - "SimpleIconsVscodium", - "SimpleIconsVtex", - "SimpleIconsVuedotjs", - "SimpleIconsVuetify", - "SimpleIconsVulkan", - "SimpleIconsVultr", - "SimpleIconsW3C", - "SimpleIconsWacom", - "SimpleIconsWagtail", - "SimpleIconsWails", - "SimpleIconsWakatime", - "SimpleIconsWalkman", - "SimpleIconsWallabag", - "SimpleIconsWalmart", - "SimpleIconsWantedly", - "SimpleIconsWappalyzer", - "SimpleIconsWarnerbros", - "SimpleIconsWarp", - "SimpleIconsWasmcloud", - "SimpleIconsWasmer", - "SimpleIconsWattpad", - "SimpleIconsWayland", - "SimpleIconsWaze", - "SimpleIconsWearos", - "SimpleIconsWeasyl", - "SimpleIconsWeb3Dotjs", - "SimpleIconsWebassembly", - "SimpleIconsWebauthn", - "SimpleIconsWebcomponentsdotorg", - "SimpleIconsWebdriverio", - "SimpleIconsWebflow", - "SimpleIconsWebgl", - "SimpleIconsWebhint", - "SimpleIconsWeblate", - "SimpleIconsWebmin", - "SimpleIconsWebmoney", - "SimpleIconsWebpack", - "SimpleIconsWebrtc", - "SimpleIconsWebstorm", - "SimpleIconsWebtoon", - "SimpleIconsWechat", - "SimpleIconsWegame", - "SimpleIconsWeightsandbiases", - "SimpleIconsWelcometothejungle", - "SimpleIconsWemo", - "SimpleIconsWesterndigital", - "SimpleIconsWetransfer", - "SimpleIconsWhatsapp", - "SimpleIconsWheniwork", - "SimpleIconsWhitesource", - "SimpleIconsWii", - "SimpleIconsWiiu", - "SimpleIconsWikidata", - "SimpleIconsWikidotjs", - "SimpleIconsWikimediacommons", - "SimpleIconsWikipedia", - "SimpleIconsWikiquote", - "SimpleIconsWikivoyage", - "SimpleIconsWinamp", - "SimpleIconsWindicss", - "SimpleIconsWindows", - "SimpleIconsWindows11", - "SimpleIconsWindows95", - "SimpleIconsWindowsterminal", - "SimpleIconsWindowsxp", - "SimpleIconsWinmate", - "SimpleIconsWipro", - "SimpleIconsWire", - "SimpleIconsWireguard", - "SimpleIconsWireshark", - "SimpleIconsWise", - "SimpleIconsWish", - "SimpleIconsWistia", - "SimpleIconsWix", - "SimpleIconsWizzair", - "SimpleIconsWolfram", - "SimpleIconsWolframlanguage", - "SimpleIconsWolframmathematica", - "SimpleIconsWoo", - "SimpleIconsWoocommerce", - "SimpleIconsWordpress", - "SimpleIconsWorkplace", - "SimpleIconsWorldhealthorganization", - "SimpleIconsWpengine", - "SimpleIconsWpexplorer", - "SimpleIconsWprocket", - "SimpleIconsWritedotas", - "SimpleIconsWwe", - "SimpleIconsWwise", - "SimpleIconsXamarin", - "SimpleIconsXaml", - "SimpleIconsXampp", - "SimpleIconsXbox", - "SimpleIconsXcode", - "SimpleIconsXdadevelopers", - "SimpleIconsXdotorg", - "SimpleIconsXero", - "SimpleIconsXfce", - "SimpleIconsXiaomi", - "SimpleIconsXilinx", - "SimpleIconsXing", - "SimpleIconsXmpp", - "SimpleIconsXo", - "SimpleIconsXrp", - "SimpleIconsXsplit", - "SimpleIconsXstate", - "SimpleIconsYahoo", - "SimpleIconsYale", - "SimpleIconsYamahacorporation", - "SimpleIconsYamahamotorcorporation", - "SimpleIconsYammer", - "SimpleIconsYarn", - "SimpleIconsYcombinator", - "SimpleIconsYelp", - "SimpleIconsYoast", - "SimpleIconsYolo", - "SimpleIconsYourtraveldottv", - "SimpleIconsYoutube", - "SimpleIconsYoutubegaming", - "SimpleIconsYoutubemusic", - "SimpleIconsYoutubestudio", - "SimpleIconsYoutubetv", - "SimpleIconsYubico", - "SimpleIconsZabka", - "SimpleIconsZalando", - "SimpleIconsZalo", - "SimpleIconsZapier", - "SimpleIconsZara", - "SimpleIconsZazzle", - "SimpleIconsZcash", - "SimpleIconsZdf", - "SimpleIconsZebratechnologies", - "SimpleIconsZelle", - "SimpleIconsZend", - "SimpleIconsZendesk", - "SimpleIconsZendframework", - "SimpleIconsZenn", - "SimpleIconsZenodo", - "SimpleIconsZerodha", - "SimpleIconsZeromq", - "SimpleIconsZerply", - "SimpleIconsZettlr", - "SimpleIconsZhihu", - "SimpleIconsZig", - "SimpleIconsZigbee", - "SimpleIconsZillow", - "SimpleIconsZincsearch", - "SimpleIconsZingat", - "SimpleIconsZoho", - "SimpleIconsZoiper", - "SimpleIconsZomato", - "SimpleIconsZoom", - "SimpleIconsZorin", - "SimpleIconsZotero", - "SimpleIconsZulip", - "SimpleIconsZwave", - "SimpleIconsZyte" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Finn Bear" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/finnbear/yew_icons/", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "yoke", - "version": "0.7.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "license": "Unicode-3.0", - "license_file": null, - "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yoke-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bincode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/tests/bincode.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "miri", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/tests/miri.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "stable_deref_trait/alloc", - "serde?/alloc", - "zerofrom/alloc" - ], - "default": [ - "alloc", - "zerofrom" - ], - "derive": [ - "dep:yoke-derive", - "zerofrom/derive" - ], - "serde": [ - "dep:serde" - ], - "zerofrom": [ - "dep:zerofrom" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/Cargo.toml", - "metadata": { - "cargo-all-features": { - "max_combination_size": 3 - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "memory-management", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow", - "self-referential" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71.1" - }, - { - "name": "yoke-derive", - "version": "0.7.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", - "license": "Unicode-3.0", - "license_file": null, - "description": "Custom derive for the yoke crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fold" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "yoke_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "yoke_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/examples/yoke_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/Cargo.toml", - "metadata": { - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "memory-management", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow", - "self-referential" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zerocopy", - "version": "0.7.35", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Utilities for zero-copy parsing and serialization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.35", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "assert_matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "elain", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.85", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.35", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerocopy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trybuild", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/tests/trybuild.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__internal_use_only_features_that_work_on_stable": [ - "alloc", - "derive", - "simd" - ], - "alloc": [], - "byteorder": [ - "dep:byteorder" - ], - "default": [ - "byteorder" - ], - "derive": [ - "zerocopy-derive" - ], - "simd": [], - "simd-nightly": [ - "simd" - ], - "zerocopy-derive": [ - "dep:zerocopy-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/Cargo.toml", - "metadata": { - "ci": { - "pinned-nightly": "nightly-2024-06-19", - "pinned-stable": "1.79.0" - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg", - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "__internal_use_only_features_that_work_on_stable" - ] - } - }, - "publish": null, - "authors": [ - "Joshua Liebow-Feeser " - ], - "categories": [ - "embedded", - "encoding", - "no-std::no-alloc", - "parsing", - "rust-patterns" - ], - "keywords": [ - "cast", - "convert", - "transmute", - "transmutation", - "type-punning" - ], - "readme": "README.md", - "repository": "https://github.com/google/zerocopy", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "zerocopy", - "version": "0.8.25", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "elain", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.89", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.25", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerocopy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trybuild", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/tests/trybuild.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "__internal_use_only_features_that_work_on_stable": [ - "alloc", - "derive", - "simd", - "std" - ], - "alloc": [], - "derive": [ - "zerocopy-derive" - ], - "float-nightly": [], - "simd": [], - "simd-nightly": [ - "simd" - ], - "std": [ - "alloc" - ], - "zerocopy-derive": [ - "dep:zerocopy-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/Cargo.toml", - "metadata": { - "build-rs": { - "zerocopy-aarch64-simd-1-59-0": "1.59.0", - "zerocopy-core-error-1-81-0": "1.81.0", - "zerocopy-diagnostic-on-unimplemented-1-78-0": "1.78.0", - "zerocopy-generic-bounds-in-const-fn-1-61-0": "1.61.0", - "zerocopy-panic-in-const-and-vec-try-reserve-1-57-0": "1.57.0", - "zerocopy-target-has-atomics-1-60-0": "1.60.0" - }, - "ci": { - "pinned-nightly": "nightly-2025-04-23", - "pinned-stable": "1.86.0" - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg", - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "__internal_use_only_features_that_work_on_stable" - ] - } - }, - "publish": null, - "authors": [ - "Joshua Liebow-Feeser ", - "Jack Wrenn " - ], - "categories": [ - "embedded", - "encoding", - "no-std::no-alloc", - "parsing", - "rust-patterns" - ], - "keywords": [ - "cast", - "convert", - "transmute", - "transmutation", - "type-punning" - ], - "readme": "README.md", - "repository": "https://github.com/google/zerocopy", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "zerocopy-derive", - "version": "0.7.35", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.35", - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Custom derive for traits from the zerocopy crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.85", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "zerocopy_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_as_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/enum_as_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_from_zeroes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/enum_from_zeroes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_known_layout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/enum_known_layout.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_unaligned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/enum_unaligned.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hygiene", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/hygiene.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "paths_and_modules", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/paths_and_modules.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "priv_in_pub", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/priv_in_pub.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_as_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_as_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_from_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_from_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_from_zeroes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_from_zeroes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_known_layout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_known_layout.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_unaligned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/struct_unaligned.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trybuild", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/trybuild.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_as_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_as_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_from_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_from_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_from_zeroes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_from_zeroes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_known_layout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_known_layout.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_unaligned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/union_unaligned.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/tests/util.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.7.35/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Joshua Liebow-Feeser " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/google/zerocopy", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zerocopy-derive", - "version": "0.8.25", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25", - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Custom derive for traits from the zerocopy crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.46", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "dissimilar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.163", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "prettyplease", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.89", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "zerocopy_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crate_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/crate_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deprecated", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/deprecated.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_from_zeros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_from_zeros.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_known_layout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_known_layout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_no_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_no_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_to_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_to_bytes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_try_from_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_try_from_bytes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_unaligned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/enum_unaligned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "eq", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/eq.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/hash.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hygiene", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/hygiene.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "include", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/include.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue_2117", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/issue_2117.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "paths_and_modules", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/paths_and_modules.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "priv_in_pub", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/priv_in_pub.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_from_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_from_bytes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_from_zeros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_from_zeros.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_known_layout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_known_layout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_no_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_no_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_to_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_to_bytes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_try_from_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_try_from_bytes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_unaligned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/struct_unaligned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trybuild", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/trybuild.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_from_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_from_bytes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_from_zeros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_from_zeros.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_known_layout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_known_layout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_no_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_no_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_to_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_to_bytes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_try_from_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_try_from_bytes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_unaligned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/union_unaligned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unsafe_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/tests/unsafe_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.25/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Joshua Liebow-Feeser ", - "Jack Wrenn " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/google/zerocopy", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zerofrom", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "license": "Unicode-3.0", - "license_file": null, - "description": "ZeroFrom trait for constructing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zerofrom-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerofrom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "derive": [ - "dep:zerofrom-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "zerofrom-derive", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "license": "Unicode-3.0", - "license_file": null, - "description": "Custom derive for the zerofrom crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fold" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "zerofrom_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zf_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/examples/zf_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/Cargo.toml", - "metadata": { - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "memory-management", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zeroize", - "version": "1.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Securely clear secrets from memory with a simple trait built on\nstable Rust primitives which guarantee memory is zeroed using an\noperation will not be 'optimized away' by the compiler.\nUses a portable pure Rust implementation that works everywhere,\neven WASM!\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zeroize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zeroize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/tests/zeroize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zeroize_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/tests/zeroize_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "aarch64": [], - "alloc": [], - "default": [ - "alloc" - ], - "derive": [ - "zeroize_derive" - ], - "serde": [ - "dep:serde" - ], - "simd": [], - "std": [ - "alloc" - ], - "zeroize_derive": [ - "dep:zeroize_derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The RustCrypto Project Developers" - ], - "categories": [ - "cryptography", - "memory-management", - "no-std", - "os" - ], - "keywords": [ - "memory", - "memset", - "secure", - "volatile", - "zero" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils/tree/master/zeroize", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "zerovec", - "version": "0.10.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "license": "Unicode-3.0", - "license_file": null, - "description": "Zero-copy vector backed by a byte array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "twox-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.6.0, <0.8.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerovec-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "iai", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_distr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_pcg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rmp-serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerovec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zv_serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/examples/zv_serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "vzv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/vzv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zeromap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zeromap.rs", - "edition": "2021", - "required-features": [ - "serde", - "hashmap", - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zerovec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zerovec_iai", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec_iai.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zerovec_serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec_serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [ - "serde", - "databake" - ], - "databake": [ - "dep:databake" - ], - "derive": [ - "dep:zerovec-derive" - ], - "hashmap": [ - "dep:twox-hash" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "yoke": [ - "dep:yoke" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ], - "max_combination_size": 3 - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "rust-patterns", - "memory-management", - "caching", - "no-std", - "data-structures" - ], - "keywords": [ - "zerocopy", - "serialization", - "zero-copy", - "serde" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "zerovec-derive", - "version": "0.10.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", - "license": "Unicode-3.0", - "license_file": null, - "description": "Custom derive for the zerovec crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "zerovec_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "derives", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/derives.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "make", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/make.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "make_var", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/make_var.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/Cargo.toml", - "metadata": { - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "rust-patterns", - "memory-management", - "caching", - "no-std", - "data-structures" - ], - "keywords": [ - "zerocopy", - "serialization", - "zero-copy", - "serde" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zip", - "version": "2.6.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", - "license": "MIT", - "license_file": null, - "description": "Library to support the reading and writing of zip files.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bzip2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "constant_time_eq", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "deflate64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "wasm_js", - "std" - ], - "target": null, - "registry": null - }, - { - "name": "hmac", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "reset" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lzma-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nt-time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pbkdf2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=1.0.60", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.37", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "xz2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "zeroize_derive" - ], - "target": null, - "registry": null - }, - { - "name": "zopfli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zstd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.95", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=4.4.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasm_js", - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.15", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.37", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "formatting", - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))", - "registry": null - }, - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": "cfg(fuzzing)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "merge_archive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/merge_archive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "read_entry", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/read_entry.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "read_metadata", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/read_metadata.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/src/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "_all-features": [], - "_deflate-any": [], - "aes": [ - "dep:aes" - ], - "aes-crypto": [ - "aes", - "constant_time_eq", - "hmac", - "pbkdf2", - "sha1", - "getrandom", - "zeroize" - ], - "bzip2": [ - "dep:bzip2" - ], - "chrono": [ - "chrono/default" - ], - "constant_time_eq": [ - "dep:constant_time_eq" - ], - "default": [ - "aes-crypto", - "bzip2", - "deflate64", - "deflate", - "lzma", - "time", - "zstd", - "xz" - ], - "deflate": [ - "flate2/rust_backend", - "deflate-zopfli", - "deflate-flate2" - ], - "deflate-flate2": [ - "_deflate-any" - ], - "deflate-miniz": [ - "deflate", - "deflate-flate2" - ], - "deflate-zlib": [ - "flate2/zlib", - "deflate-flate2" - ], - "deflate-zlib-ng": [ - "flate2/zlib-ng", - "deflate-flate2" - ], - "deflate-zopfli": [ - "zopfli", - "_deflate-any" - ], - "deflate64": [ - "dep:deflate64" - ], - "flate2": [ - "dep:flate2" - ], - "getrandom": [ - "dep:getrandom" - ], - "hmac": [ - "dep:hmac" - ], - "jiff-02": [ - "dep:jiff" - ], - "lzma": [ - "lzma-rs/stream" - ], - "lzma-rs": [ - "dep:lzma-rs" - ], - "nt-time": [ - "dep:nt-time" - ], - "pbkdf2": [ - "dep:pbkdf2" - ], - "proc-macro2": [ - "dep:proc-macro2" - ], - "sha1": [ - "dep:sha1" - ], - "time": [ - "dep:time" - ], - "unreserved": [], - "xz": [ - "dep:xz2" - ], - "zeroize": [ - "dep:zeroize" - ], - "zopfli": [ - "dep:zopfli" - ], - "zstd": [ - "dep:zstd" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Mathijs van de Nes ", - "Marli Frost ", - "Ryan Levick ", - "Chris Hennick " - ], - "categories": [], - "keywords": [ - "zip", - "archive", - "compression" - ], - "readme": "README.md", - "repository": "https://github.com/zip-rs/zip2.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.73.0" - }, - { - "name": "zopfli", - "version": "0.8.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", - "license": "Apache-2.0", - "license_file": null, - "description": "A Rust implementation of the Zopfli compression algorithm.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.17.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "simd-adler32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zopfli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "zopfli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/src/main.rs", - "edition": "2021", - "required-features": [ - "gzip", - "std", - "zlib" - ], - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "gzip", - "std", - "zlib" - ], - "gzip": [ - "dep:crc32fast" - ], - "nightly": [ - "crc32fast?/nightly" - ], - "std": [ - "crc32fast?/std", - "dep:log", - "simd-adler32?/std" - ], - "zlib": [ - "dep:simd-adler32" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "--all-features" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "compression", - "no-std" - ], - "keywords": [ - "compression" - ], - "readme": "README.md", - "repository": "https://github.com/zopfli-rs/zopfli", - "homepage": "https://github.com/zopfli-rs/zopfli", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.73.0" - } - ], - "workspace_members": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0" - ], - "workspace_default_members": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0" - ], - "resolve": { - "nodes": [ - { - "id": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" - ], - "deps": [ - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "heavyweight", - "lazy_static", - "regex" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "abi_tester", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "adder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1" - ], - "deps": [ - { - "name": "gimli", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cipher", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cpufeatures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))" - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "zerocopy", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "perf-literal", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "alloc_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.7", - "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ], - "deps": [ - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle_parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle_query", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle_wincon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.7", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - }, - { - "name": "colorchoice", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "is_terminal_polyfill", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "auto", - "default", - "wincon" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ], - "deps": [ - { - "name": "utf8parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "utf8" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#arbitrary@1.4.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#derive_arbitrary@1.4.1" - ], - "deps": [ - { - "name": "derive_arbitrary", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_arbitrary@1.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "derive", - "derive_arbitrary" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", - "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" - ], - "deps": [ - { - "name": "addr2line", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" - } - ] - }, - { - "name": "miniz_oxide", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" - } - ] - }, - { - "name": "object", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" - } - ] - }, - { - "name": "rustc_demangle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "basic_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serial_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "system_sc_interact", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "basic_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "adder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serial_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "big_float_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", - "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cexpr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clang_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "prettyplease", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "shlex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "logging", - "prettyplease", - "runtime", - "static" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22" - ], - "deps": [ - { - "name": "bitcoin_hashes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crate_rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_normalization", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "crate_rand", - "default", - "rand", - "rand_core", - "serde", - "std", - "unicode-normalization" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2" - ], - "deps": [ - { - "name": "internals", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ], - "deps": [ - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "bonding_curve_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "builtin_func_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5" - ], - "deps": [ - { - "name": "bytecheck_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ptr_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "simdutf8", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "simdutf8", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5" - ], - "deps": [ - { - "name": "bytecheck_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ptr_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rancor", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "simdutf8", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "simdutf8" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0" - ], - "deps": [ - { - "name": "shlex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3" - ], - "deps": [ - { - "name": "nom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "check_pause", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "child", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1" - ], - "deps": [ - { - "name": "android_tzdata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"android\")" - } - ] - }, - { - "name": "iana_time_zone", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))" - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))" - } - ] - }, - { - "name": "windows_link", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "alloc", - "android-tzdata", - "clock", - "default", - "iana-time-zone", - "js-sys", - "now", - "oldtime", - "std", - "wasm-bindgen", - "wasmbind", - "winapi", - "windows-link" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4" - ], - "deps": [ - { - "name": "crypto_common", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "inout", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6" - ], - "deps": [ - { - "name": "glob", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libloading", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clang_3_5", - "clang_3_6", - "clang_3_7", - "clang_3_8", - "clang_3_9", - "clang_4_0", - "clang_5_0", - "clang_6_0", - "libloading", - "runtime", - "static" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32" - ], - "deps": [ - { - "name": "clap_builder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "color", - "default", - "derive", - "error-context", - "help", - "std", - "suggestions", - "usage" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", - "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1" - ], - "deps": [ - { - "name": "anstream", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_lex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strsim", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "color", - "error-context", - "help", - "std", - "suggestions", - "usage" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "heck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "builtin_func_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder_legacy", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder_queue", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder_raw", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "promises_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "proxy_test_first", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "proxy_test_second", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "recursive_caller", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0" - ], - "deps": [ - { - "name": "unicode_segmentation", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ], - "deps": [ - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "core_foundation_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "link" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "dependencies": [], - "deps": [], - "features": [ - "default", - "link" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "scopeguard", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "default", - "default-stack", - "libc", - "unwind", - "windows-sys" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-linux-android" - }, - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))" - }, - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))" - }, - { - "kind": null, - "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" - ], - "deps": [ - { - "name": "crossbeam_epoch", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" - ], - "deps": [ - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" - ], - "deps": [ - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "crowdfunding_erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "crowdfunding_esdt", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "crypto_bubbles", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0" - ], - "deps": [ - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "typenum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "crypto_zombies", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" - ], - "deps": [ - { - "name": "cipher", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "registry+https://github.com/rust-lang/crates.io-index#fiat-crypto@0.2.9", - "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cpufeatures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"x86_64\")" - } - ] - }, - { - "name": "curve25519_dalek_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(curve25519_dalek_backend = \"fiat\"), not(curve25519_dalek_backend = \"serial\"), target_arch = \"x86_64\"))" - } - ] - }, - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fiat_crypto", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fiat-crypto@0.2.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(curve25519_dalek_backend = \"fiat\")" - } - ] - }, - { - "name": "rustc_version", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "digest", - "precomputed-tables", - "zeroize" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11" - ], - "deps": [ - { - "name": "darling_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "darling_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ident_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "darling_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lock_api", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "const_oid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "oid", - "std", - "zeroize" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_arbitrary@1.4.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "display", - "error", - "from" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0" - ], - "deps": [ - { - "name": "derive_more_impl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "debug", - "default", - "from", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_xid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "debug", - "default", - "from" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" - ], - "deps": [ - { - "name": "block_buffer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crypto_common", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "block-buffer", - "core-api", - "default", - "mac", - "std", - "subtle" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "digital_cash", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro_error", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10" - ], - "deps": [ - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dynasm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memmap2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", - "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0" - ], - "deps": [ - { - "name": "pkcs8", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "signature", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", - "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "curve25519_dalek", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ed25519", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "fast", - "std", - "zeroize" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "dependencies": [], - "deps": [], - "features": [ - "std", - "use_std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "empty", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0" - ], - "deps": [ - { - "name": "enum_iterator_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0" - ], - "deps": [ - { - "name": "enumset_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "darling", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "regex" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27" - ], - "deps": [ - { - "name": "anstream", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "env_filter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "jiff", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "auto-color", - "color", - "default", - "humantime", - "regex" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "erc1155_user_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "erc1155", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc1155_marketplace", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc1155", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc1155_user_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc721", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - }, - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0" - ], - "deps": [ - { - "name": "first_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "second_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "esdt_transfer_with_fee", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "exchange_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "factorial", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "order_book_factory", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fiat-crypto@0.2.9", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "libredox", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "first_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8" - ], - "deps": [ - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "miniz_oxide", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))" - } - ] - } - ], - "features": [ - "any_impl", - "default", - "miniz_oxide", - "rust_backend" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1" - ], - "deps": [ - { - "name": "foreign_types_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" - ], - "deps": [ - { - "name": "percent_encoding", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "formatted_message_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "forwarder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "forwarder_legacy", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "forwarder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "forwarder_queue", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "forwarder_raw", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "fractional_nfts", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_executor", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_io", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_task", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "async-await", - "default", - "executor", - "futures-executor", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "futures-sink", - "sink", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_task", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_io", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_task", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "slab", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "async-await", - "async-await-macro", - "channel", - "futures-channel", - "futures-io", - "futures-macro", - "futures-sink", - "io", - "memchr", - "sink", - "slab", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "convert_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "env_logger", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ], - "deps": [ - { - "name": "typenum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "more_lengths" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0" - ], - "deps": [ - { - "name": "typenum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "wasi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" - } - ] - } - ], - "features": [ - "js", - "js-sys", - "std", - "wasm-bindgen" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#r-efi@5.2.0", - "registry+https://github.com/rust-lang/crates.io-index#wasi@0.14.2+wasi-0.2.4" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))" - }, - { - "kind": null, - "target": "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))" - }, - { - "kind": null, - "target": "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))" - }, - { - "kind": null, - "target": "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))" - }, - { - "kind": null, - "target": "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))" - }, - { - "kind": null, - "target": "cfg(target_os = \"netbsd\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"solaris\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"vxworks\")" - } - ] - }, - { - "name": "r_efi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#r-efi@5.2.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))" - } - ] - }, - { - "name": "wasi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.14.2+wasi-0.2.4", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0" - ], - "deps": [ - { - "name": "fallible_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "stable_deref_trait", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "endian-reader", - "fallible-iterator", - "read", - "read-all", - "read-core", - "std", - "write" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", - "dependencies": [], - "deps": [], - "features": [ - "read", - "read-core" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bstr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "log" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", - "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1" - ], - "deps": [ - { - "name": "gloo_console", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_dialogs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_events", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_file", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_history", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_net", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_render", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_storage", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_timers", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_worker", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "console", - "default", - "dialogs", - "events", - "file", - "futures", - "gloo-console", - "gloo-dialogs", - "gloo-events", - "gloo-file", - "gloo-history", - "gloo-net", - "gloo-render", - "gloo-storage", - "gloo-timers", - "gloo-utils", - "gloo-worker", - "history", - "net", - "render", - "storage", - "timers", - "utils", - "worker" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_events", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "futures", - "futures-channel" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "gloo_events", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "query", - "serde_urlencoded", - "thiserror" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "eventsource", - "futures-channel", - "futures-core", - "futures-sink", - "http", - "json", - "pin-project", - "serde", - "serde_json", - "websocket" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "eventsource", - "futures-channel", - "futures-core", - "futures-sink", - "http", - "json", - "pin-project", - "serde", - "serde_json", - "websocket" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "futures", - "futures-channel", - "futures-core" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "anymap2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bincode", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_console", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "futures" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" - ], - "deps": [ - { - "name": "atomic_waker", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "slab", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", - "dependencies": [], - "deps": [], - "features": [ - "raw" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11" - ], - "deps": [ - { - "name": "ahash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "ahash", - "raw" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "foldhash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default-hasher", - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ], - "deps": [ - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "h2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "httparse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "want", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "client", - "default", - "http1", - "http2" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ], - "deps": [ - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio_rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "http1", - "http2", - "tls12" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "native_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio_native_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "socket2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "client", - "client-legacy", - "default", - "http1", - "http2", - "tokio" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", - "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.0" - ], - "deps": [ - { - "name": "android_system_properties", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"android\")" - } - ] - }, - { - "name": "core_foundation_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_vendor = \"apple\")" - } - ] - }, - { - "name": "iana_time_zone_haiku", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"haiku\")" - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))" - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))" - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))" - } - ] - }, - { - "name": "windows_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"windows\")" - } - ] - } - ], - "features": [ - "fallback" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yoke", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "litemap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "writeable", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "zerovec" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid_transform_data", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_collections", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_normalizer_data", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_properties", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf16_iter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8_iter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "write16", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_collections", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid_transform", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_properties_data", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "stable_deref_trait", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "writeable", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yoke", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "macros" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4" - ], - "deps": [ - { - "name": "idna_adapter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8_iter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "compiled_data", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1" - ], - "deps": [ - { - "name": "icu_normalizer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_properties", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9" - ], - "deps": [ - { - "name": "crossbeam_deque", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "globset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "same_file", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winapi_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "indexmap", - "map" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "equivalent", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "serde", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ], - "deps": [ - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "use_alloc", - "use_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#jiff-static@0.2.10", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.4", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "jiff_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#jiff-static@0.2.10", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any())" - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "portable_atomic", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_has_atomic = \"ptr\"))" - } - ] - }, - { - "name": "portable_atomic_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.4", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_has_atomic = \"ptr\"))" - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#jiff-static@0.2.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17" - ], - "deps": [ - { - "name": "cpufeatures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"aarch64\")" - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "random", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "kitty", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "kitty_ownership", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "kitty_auction", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" - ], - "deps": [ - { - "name": "kitty", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "random", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "kitty_genetic_alg", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" - ], - "deps": [ - { - "name": "kitty", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "kitty_genetic_alg", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "random", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "kitty_ownership", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "large_storage", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syscall", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "call", - "default", - "redox_syscall", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "linked_list_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", - "dependencies": [], - "deps": [], - "features": [ - "elf", - "errno", - "general", - "ioctl", - "no_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "local_esdt_and_nft", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "scopeguard", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "atomic_usize", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "lottery_erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "lottery_esdt", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20" - ], - "deps": [ - { - "name": "loupe_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "derive", - "loupe-derive" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))" - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#macho-unwind-info@0.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", - "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25" - ], - "deps": [ - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerocopy", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerocopy_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "managed_map_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "map_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0" - ], - "deps": [ - { - "name": "adler2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "with-alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - }, - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - }, - { - "name": "wasi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "net", - "os-ext", - "os-poll" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "multi_contract_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multisig", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "multisig", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_codec", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8" - ], - "deps": [ - { - "name": "bech32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha3", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ed25519_dalek", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex_literal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_core", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor_wasmer_experimental", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_seeder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha3", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "multiversx-chain-vm-executor-wasmer-experimental", - "rand", - "wasm-incompatible", - "wasmer-experimental" - ] - }, - { - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "chrono", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rc_new_cyclic_fallible", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5" - ], - "deps": [ - { - "name": "arrayvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "multiversx_price_aggregator_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex_literal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_core", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_codec", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_derive", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unwrap_infallible", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "num-bigint" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" - ], - "deps": [ - { - "name": "arrayvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_codec_derive", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unwrap_infallible", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "derive", - "multiversx-sc-codec-derive", - "num-bigint" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "radix_trie", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1" - ], - "deps": [ - { - "name": "bip39", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "common_path", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "convert_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "copy_dir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "home", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pathdiff", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "reqwest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruplacer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zip", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", - "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "convert_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_version", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmprinter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wat", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bech32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_scenario_format", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pathdiff", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "simple_error", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unwrap_infallible", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "wasm-incompatible", - "wasmer-experimental" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "env_logger", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_scenario_format", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk_dapp", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk_http", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "dapp", - "default", - "default-tls", - "http", - "multiversx-sdk-dapp", - "multiversx-sdk-http", - "tokio" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "aes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bech32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bip39", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ctr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hmac", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_core", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pbkdf2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pem", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "scrypt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_repr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha3", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "uuid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_net", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "reqwest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "default-tls" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_wegld_swap_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4" - ], - "deps": [ - { - "name": "munge_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "bech32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", - "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", - "registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.27", - "registry+https://github.com/rust-lang/crates.io-index#security-framework@2.11.1", - "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_vendor = \"apple\")" - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" - } - ] - }, - { - "name": "openssl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" - } - ] - }, - { - "name": "openssl_probe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" - } - ] - }, - { - "name": "openssl_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" - } - ] - }, - { - "name": "schannel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.27", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"windows\")" - } - ] - }, - { - "name": "security_framework", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#security-framework@2.11.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_vendor = \"apple\")" - } - ] - }, - { - "name": "security_framework_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_vendor = \"apple\")" - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"macos\")" - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nft_minter", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nft_storage_prepay", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nft_subscription", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0" - ], - "deps": [ - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "minimal_lexical", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "num_integer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "i128", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default", - "i128", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "hermit_abi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(windows))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0" - ], - "deps": [ - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "flate2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruzstd", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "archive", - "coff", - "compression", - "default", - "elf", - "macho", - "pe", - "read", - "read_core", - "std", - "unaligned", - "write", - "write_core", - "write_std", - "xcoff" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "archive", - "coff", - "elf", - "macho", - "pe", - "read_core", - "unaligned", - "xcoff" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "race", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "foreign_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "openssl_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ffi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", - "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pkg_config", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "vcpkg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "order_book_pair", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "panic_message_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parent", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10" - ], - "deps": [ - { - "name": "lock_api", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "syscall", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" - ], - "deps": [ - { - "name": "base64ct", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "rand_core", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "payable_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "payable_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serial_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1" - ], - "deps": [ - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hmac", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "hmac" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10" - ], - "deps": [ - { - "name": "pin_project_internal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", - "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3" - ], - "deps": [ - { - "name": "console_log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew_router", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew_icons", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ping_pong_egld", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ping_pong_egld", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" - ], - "deps": [ - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3" - ], - "deps": [ - { - "name": "der", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "spki", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", - "dependencies": [], - "deps": [], - "features": [ - "require-cas" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic-util@0.2.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0" - ], - "deps": [ - { - "name": "portable_atomic", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25" - ], - "deps": [ - { - "name": "zerocopy", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "simd", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "verbatim" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ], - "deps": [ - { - "name": "proc_macro_error_attr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default", - "syn", - "syn-error" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro_error_attr2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "syn-error" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" - ], - "deps": [ - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proc-macro" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50" - ], - "deps": [ - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "num_cpus", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "pin_project", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pinned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tokio_stream", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "promises_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "check_pause", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proxy_pause", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "hex_literal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proxy_test_first", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proxy_test_second", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4" - ], - "deps": [ - { - "name": "ptr_meta_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0" - ], - "deps": [ - { - "name": "ptr_meta_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "derive", - "ptr_meta_derive", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "queue_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proc-macro" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#r-efi@5.2.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0" - ], - "deps": [ - { - "name": "endian_type", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nibble_vec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0" - ], - "deps": [ - { - "name": "ptr_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "rand_chacha", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "getrandom", - "libc", - "rand_chacha", - "std", - "std_rng" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "ppv_lite86", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16" - ], - "deps": [ - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "getrandom", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rayon_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" - ], - "deps": [ - { - "name": "crossbeam_deque", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "recursive_caller", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "userspace" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "perf", - "perf-backtrack", - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal", - "perf-onepass", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "dfa-onepass", - "hybrid", - "meta", - "nfa", - "nfa-backtrack", - "nfa-pikevm", - "nfa-thompson", - "perf", - "perf-inline", - "perf-literal", - "perf-literal-multisubstring", - "perf-literal-substring", - "std", - "syntax", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "unicode-word-boundary" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "mach2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1" - ], - "deps": [ - { - "name": "bytecheck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "bytecheck" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", - "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#system-configuration@0.6.1", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.4.0" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "encoding_rs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "h2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "http_body_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "hyper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "hyper_rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "hyper_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "hyper_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "ipnet", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "mime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "native_tls_crate", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "percent_encoding", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "rustls_pemfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "serde_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sync_wrapper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "system_configuration", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#system-configuration@0.6.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"macos\")" - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tokio_native_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tower", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "url", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "windows_registry", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "__tls", - "blocking", - "charset", - "default", - "default-tls", - "h2", - "http2", - "json", - "macos-system-configuration" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rewards_distribution", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))" - }, - { - "kind": null, - "target": "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))" - } - ] - }, - { - "name": "untrusted", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))" - } - ] - } - ], - "features": [ - "alloc", - "default", - "dev_urandom_fallback" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", - "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0" - ], - "deps": [ - { - "name": "bytecheck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytes_1", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap_2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "munge", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ptr_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rancor", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rend", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinyvec_1", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "uuid_1", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "bytecheck", - "bytes-1", - "default", - "indexmap-2", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "bytecheck" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", - "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" - ], - "deps": [ - { - "name": "inflector", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ignore", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rust_snippets_generator_test", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "adder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "basic_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rust_testing_framework_tester", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26" - ], - "deps": [ - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc_errno", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - }, - { - "kind": null, - "target": "cfg(windows)" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - } - ] - }, - { - "name": "linux_raw_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "alloc", - "default", - "fs", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ring", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "webpki", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "log", - "logging", - "ring", - "std", - "tls12" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0" - ], - "deps": [ - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ], - "deps": [ - { - "name": "ring", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "untrusted", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "ring", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", - "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3" - ], - "deps": [ - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "derive_more", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "twox_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" - ], - "deps": [ - { - "name": "cipher", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9" - ], - "deps": [ - { - "name": "winapi_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8" - ], - "deps": [ - { - "name": "sdd", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "scenario_tester", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.27", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "use_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9" - ], - "deps": [ - { - "name": "password_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pbkdf2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "salsa20", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "password-hash", - "simple", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "second_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#security-framework@2.11.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", - "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "core_foundation", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "core_foundation_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "security_framework_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "OSX_10_10", - "OSX_10_11", - "OSX_10_12", - "OSX_10_9", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#security-framework-sys@2.14.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "core_foundation_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "OSX_10_10", - "OSX_10_11", - "OSX_10_12", - "OSX_10_9", - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "seed_nft_minter", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "send_tx_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219" - ], - "deps": [ - { - "name": "serde_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": null, - "target": "cfg(any())" - } - ] - } - ], - "features": [ - "alloc", - "default", - "derive", - "serde_derive", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ryu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "indexmap", - "preserve_order", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "form_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ryu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", - "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0" - ], - "deps": [ - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "scc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serial_test_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "async", - "default", - "logging" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "async", - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "set_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cpufeatures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" - } - ] - }, - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5" - ], - "deps": [ - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "keccak", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memmap2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "single_value_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dependencies": [], - "deps": [], - "features": [ - "const_generics", - "const_new" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "all" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10" - ], - "deps": [ - { - "name": "base64ct", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "der", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "str_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clone-impls", - "default", - "derive", - "extra-traits", - "full", - "parsing", - "printing", - "proc-macro", - "quote", - "visit-mut" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clone-impls", - "default", - "derive", - "extra-traits", - "fold", - "full", - "parsing", - "printing", - "proc-macro", - "visit", - "visit-mut" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "futures", - "futures-core" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proc-macro" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#system-configuration@0.6.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", - "registry+https://github.com/rust-lang/crates.io-index#system-configuration-sys@0.6.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "core_foundation", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation@0.9.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "system_configuration_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#system-configuration-sys@0.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#system-configuration-sys@0.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "core_foundation_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0" - ], - "deps": [ - { - "name": "filetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "xattr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [ - "default", - "xattr" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "fastrand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(unix, windows, target_os = \"wasi\"))" - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(unix, target_os = \"wasi\"))" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "default", - "getrandom" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9" - ], - "deps": [ - { - "name": "winapi_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69" - ], - "deps": [ - { - "name": "thiserror_impl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12" - ], - "deps": [ - { - "name": "thiserror_impl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "zerovec" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1" - ], - "deps": [ - { - "name": "tinyvec_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "tinyvec_macros" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "token_release", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "backtrace", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(tokio_taskdump)" - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "mio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "signal_hook_registry", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "socket2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_family = \"wasm\"))" - } - ] - }, - { - "name": "tokio_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "bytes", - "default", - "fs", - "full", - "io-std", - "io-util", - "libc", - "macros", - "mio", - "net", - "parking_lot", - "process", - "rt", - "rt-multi-thread", - "signal", - "signal-hook-registry", - "socket2", - "sync", - "time", - "tokio-macros", - "windows-sys" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "native_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "tls12" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "time" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "codec", - "default", - "io" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_edit", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "display", - "parse" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_edit", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "display", - "indexmap", - "parse", - "preserve_order" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winnow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_write", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winnow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "display", - "parse", - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sync_wrapper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_layer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "__common", - "futures-core", - "futures-util", - "pin-project-lite", - "sync_wrapper", - "timeout", - "tokio", - "util" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33" - ], - "deps": [ - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_attributes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "attributes", - "default", - "std", - "tracing-attributes" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3" - ], - "deps": [ - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "once_cell", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "transfer_role_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "static_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "dependencies": [], - "deps": [], - "features": [ - "const-generics" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0" - ], - "deps": [ - { - "name": "tinyvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dependencies": [], - "deps": [], - "features": [ - "cjk", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "flate2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls_pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "url", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "webpki_roots", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "gzip", - "tls" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" - ], - "deps": [ - { - "name": "form_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "idna", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "percent_encoding", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "use_module", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2" - ], - "deps": [ - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))" - } - ] - } - ], - "features": [ - "default", - "rng", - "std", - "v4" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "vec_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9" - ], - "deps": [ - { - "name": "same_file", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winapi_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5" - ], - "deps": [ - { - "name": "try_lock", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.14.2+wasi-0.2.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wit-bindgen-rt@0.39.0" - ], - "deps": [ - { - "name": "wit_bindgen_rt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wit-bindgen-rt@0.39.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "msrv", - "rustversion", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100" - ], - "deps": [ - { - "name": "bumpalo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_feature = \"atomics\")" - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100" - ], - "deps": [ - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_macro_support", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_backend", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" - ], - "deps": [ - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0" - ], - "deps": [ - { - "name": "leb128fmt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", - "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", - "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", - "dep_kinds": [ - { - "kind": "build", - "target": "cfg(not(target_env = \"musl\"))" - }, - { - "kind": "build", - "target": "cfg(target_env = \"musl\")" - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cmake", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "derive_more", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "paste", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_demangle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "serde_wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "shared_buffer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tar", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "target_lexicon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ureq", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasmer_compiler_singlepass", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmer_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wat", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(target_arch = \"wasm32\"), target_os = \"windows\"))" - } - ] - } - ], - "features": [ - "compiler", - "singlepass", - "std", - "sys", - "wasmer-compiler-singlepass", - "wasmparser", - "wat" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#macho-unwind-info@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", - "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15" - ], - "deps": [ - { - "name": "backtrace", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enum_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "leb128", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "macho_unwind_info", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#macho-unwind-info@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_os = \"macos\", target_arch = \"aarch64\"))" - } - ] - }, - { - "name": "memmap2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "object", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "region", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "rkyv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "self_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "shared_buffer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "target_lexicon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"windows\")" - } - ] - }, - { - "name": "xxhash_rust", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiler", - "default", - "std", - "translator", - "wasmparser" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" - ], - "deps": [ - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dynasm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dynasmrt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gimli", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rayon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "avx", - "default", - "gimli", - "rayon", - "std", - "unwind" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro_error2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15" - ], - "deps": [ - { - "name": "bytecheck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enum_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "target_lexicon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "xxhash_rust", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", - "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", - "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", - "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "backtrace", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "corosensei", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_queue", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dashmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enum_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libunwind", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_family = \"unix\", all(target_family = \"windows\", target_env = \"gnu\")))" - } - ] - }, - { - "name": "mach2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#mach2@0.4.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_vendor = \"apple\")" - } - ] - }, - { - "name": "memoffset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "region", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "scopeguard", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"windows\")" - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "features", - "simd", - "validate" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "default", - "features", - "hash-collections", - "serde", - "simd", - "std", - "validate" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "simd", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "termcolor", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0" - ], - "deps": [ - { - "name": "bumpalo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "leb128fmt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_encoder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "wasm-module" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0" - ], - "deps": [ - { - "name": "wast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "AbortController", - "AbortSignal", - "AddEventListenerOptions", - "AnimationEvent", - "BinaryType", - "Blob", - "BlobPropertyBag", - "CharacterData", - "CloseEvent", - "CloseEventInit", - "DedicatedWorkerGlobalScope", - "Document", - "DocumentFragment", - "DomException", - "DragEvent", - "Element", - "ErrorEvent", - "Event", - "EventInit", - "EventSource", - "EventTarget", - "File", - "FileList", - "FilePropertyBag", - "FileReader", - "FocusEvent", - "FormData", - "Headers", - "History", - "HtmlBaseElement", - "HtmlCollection", - "HtmlElement", - "HtmlHeadElement", - "HtmlInputElement", - "HtmlScriptElement", - "HtmlTextAreaElement", - "InputEvent", - "InputEventInit", - "KeyboardEvent", - "Location", - "MessageEvent", - "MouseEvent", - "Node", - "NodeList", - "ObserverCallback", - "PointerEvent", - "ProgressEvent", - "ReadableStream", - "ReferrerPolicy", - "Request", - "RequestCache", - "RequestCredentials", - "RequestInit", - "RequestMode", - "RequestRedirect", - "Response", - "ResponseInit", - "ResponseType", - "ServiceWorkerGlobalScope", - "ShadowRoot", - "Storage", - "SubmitEvent", - "Text", - "TouchEvent", - "TransitionEvent", - "UiEvent", - "Url", - "UrlSearchParams", - "WebSocket", - "WheelEvent", - "Window", - "Worker", - "WorkerGlobalScope", - "WorkerOptions", - "console", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0" - ], - "deps": [ - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.1", - "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", - "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.0" - ], - "deps": [ - { - "name": "windows_implement", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_interface", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_link", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_result", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_strings", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-registry@0.4.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", - "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.0" - ], - "deps": [ - { - "name": "windows_result", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_strings", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1" - ], - "deps": [ - { - "name": "windows_link", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1" - ], - "deps": [ - { - "name": "windows_link", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1" - ], - "deps": [ - { - "name": "windows_link", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" - ], - "deps": [ - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "Wdk", - "Wdk_Foundation", - "Wdk_Storage", - "Wdk_Storage_FileSystem", - "Wdk_System", - "Wdk_System_IO", - "Win32", - "Win32_Foundation", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_System_Diagnostics", - "Win32_System_Diagnostics_Debug", - "Win32_System_IO", - "Win32_System_Memory", - "Win32_System_Pipes", - "Win32_System_SystemInformation", - "Win32_System_SystemServices", - "Win32_System_Threading", - "Win32_System_WindowsProgramming", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" - ], - "deps": [ - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "Win32", - "Win32_Foundation", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Security_Authentication", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_Security_Cryptography", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Com", - "Win32_System_Console", - "Win32_System_Diagnostics", - "Win32_System_Diagnostics_Debug", - "Win32_System_Kernel", - "Win32_System_LibraryLoader", - "Win32_System_Memory", - "Win32_System_SystemInformation", - "Win32_System_Threading", - "Win32_UI", - "Win32_UI_Shell", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6" - ], - "deps": [ - { - "name": "windows_aarch64_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_aarch64_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_i686_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_i686_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_i686_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_x86_64_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_x86_64_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_x86_64_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.53.0", - "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.53.0", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.53.0", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.53.0", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.53.0", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.53.0", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.53.0", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0" - ], - "deps": [ - { - "name": "windows_aarch64_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.53.0", - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_aarch64_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.53.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_i686_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.53.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_i686_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.53.0", - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_i686_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.53.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_x86_64_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.53.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_x86_64_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.53.0", - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_x86_64_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.53.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.53.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.53.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.53.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.53.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.53.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.53.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wit-bindgen-rt@0.39.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "bitflags" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))" - } - ] - }, - { - "name": "rustix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))" - } - ] - } - ], - "features": [ - "default", - "unsupported" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", - "dependencies": [], - "deps": [], - "features": [ - "xxh64" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0" - ], - "deps": [ - { - "name": "console_error_panic_hook", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "implicit_clone", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "prokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "slab", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "csr", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "boolinator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "prettyplease", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro_error", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0" - ], - "deps": [ - { - "name": "gloo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "route_recognizer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew_router_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0" - ], - "deps": [ - { - "name": "yew", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "BootstrapHeartFill", - "data_uri", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "stable_deref_trait", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yoke_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "derive", - "zerofrom" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "synstructure", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.35" - ], - "deps": [ - { - "name": "zerocopy_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.35", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any())" - } - ] - } - ], - "features": [ - "simd" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25" - ], - "deps": [ - { - "name": "zerocopy_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any())" - } - ] - } - ], - "features": [ - "simd" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.35", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.25", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6" - ], - "deps": [ - { - "name": "zerofrom_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "derive" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "synstructure", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3" - ], - "deps": [ - { - "name": "yoke", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "derive", - "yoke" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#arbitrary@1.4.1", - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2" - ], - "deps": [ - { - "name": "arbitrary", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#arbitrary@1.4.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(fuzzing)" - } - ] - }, - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))" - } - ] - }, - { - "name": "flate2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zopfli", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "_deflate-any", - "deflate", - "deflate-flate2", - "deflate-zopfli", - "flate2", - "zopfli" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7" - ], - "deps": [ - { - "name": "bumpalo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "simd_adler32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "gzip", - "std", - "zlib" - ] - } - ], - "root": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0" - }, - "target_directory": "/home/bibi/Desktop/mx-sdk-rs/target", - "version": 1, - "workspace_root": "/home/bibi/Desktop/mx-sdk-rs", - "metadata": null -} \ No newline at end of file diff --git a/contracts/examples/adder/file.txt b/contracts/examples/adder/file.txt deleted file mode 100644 index 472b92e048..0000000000 --- a/contracts/examples/adder/file.txt +++ /dev/null @@ -1,211 +0,0 @@ -adder v0.0.0 (/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder) -└── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) - ├── bitflags v2.9.0 - ├── generic-array v1.2.0 - │ └── typenum v1.18.0 - ├── hex-literal v0.4.1 - ├── multiversx-chain-core v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/core) - │ ├── bitflags v2.9.0 - │ └── multiversx-sc-codec v0.22.0 (/home/bibi/Desktop/mx-sdk-rs/data/codec) - │ ├── arrayvec v0.7.6 - │ ├── bitflags v2.9.0 - │ ├── multiversx-sc-codec-derive v0.22.0 (proc-macro) (/home/bibi/Desktop/mx-sdk-rs/data/codec-derive) - │ │ ├── hex v0.4.3 - │ │ ├── proc-macro2 v1.0.94 - │ │ │ └── unicode-ident v1.0.18 - │ │ ├── quote v1.0.39 - │ │ │ └── proc-macro2 v1.0.94 (*) - │ │ └── syn v2.0.100 - │ │ ├── proc-macro2 v1.0.94 (*) - │ │ ├── quote v1.0.39 (*) - │ │ └── unicode-ident v1.0.18 - │ ├── num-bigint v0.4.6 - │ │ ├── num-integer v0.1.46 - │ │ │ └── num-traits v0.2.19 - │ │ │ [build-dependencies] - │ │ │ └── autocfg v1.4.0 - │ │ └── num-traits v0.2.19 (*) - │ └── unwrap-infallible v0.1.5 - ├── multiversx-sc-codec v0.22.0 (/home/bibi/Desktop/mx-sdk-rs/data/codec) (*) - ├── multiversx-sc-derive v0.57.1 (proc-macro) (/home/bibi/Desktop/mx-sdk-rs/framework/derive) - │ ├── hex v0.4.3 - │ ├── proc-macro2 v1.0.94 (*) - │ ├── quote v1.0.39 (*) - │ ├── radix_trie v0.2.1 - │ │ ├── endian-type v0.1.2 - │ │ └── nibble_vec v0.1.0 - │ │ └── smallvec v1.15.0 - │ └── syn v2.0.100 (*) - ├── num-traits v0.2.19 (*) - └── unwrap-infallible v0.1.5 -[dev-dependencies] -└── multiversx-sc-scenario v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/scenario) - ├── base64 v0.22.1 - ├── bech32 v0.11.0 - ├── colored v3.0.0 - ├── hex v0.4.3 - ├── itertools v0.14.0 - │ └── either v1.15.0 - ├── log v0.4.27 - ├── multiversx-chain-scenario-format v0.23.1 (/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format) - │ ├── bech32 v0.11.0 - │ ├── hex v0.4.3 - │ ├── num-bigint v0.4.6 (*) - │ ├── num-traits v0.2.19 (*) - │ ├── serde v1.0.219 - │ │ └── serde_derive v1.0.219 (proc-macro) - │ │ ├── proc-macro2 v1.0.94 (*) - │ │ ├── quote v1.0.39 (*) - │ │ └── syn v2.0.100 (*) - │ ├── serde_json v1.0.140 - │ │ ├── itoa v1.0.15 - │ │ ├── memchr v2.7.4 - │ │ ├── ryu v1.0.20 - │ │ └── serde v1.0.219 (*) - │ └── sha3 v0.10.8 - │ ├── digest v0.10.7 - │ │ ├── block-buffer v0.10.4 - │ │ │ └── generic-array v0.14.7 - │ │ │ └── typenum v1.18.0 - │ │ │ [build-dependencies] - │ │ │ └── version_check v0.9.5 - │ │ └── crypto-common v0.1.6 - │ │ ├── generic-array v0.14.7 (*) - │ │ └── typenum v1.18.0 - │ └── keccak v0.1.5 - ├── multiversx-chain-vm v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/vm) - │ ├── anyhow v1.0.98 - │ ├── bitflags v2.9.0 - │ ├── colored v3.0.0 - │ ├── ed25519-dalek v2.1.1 - │ │ ├── curve25519-dalek v4.1.3 - │ │ │ ├── cfg-if v1.0.0 - │ │ │ ├── cpufeatures v0.2.17 - │ │ │ ├── curve25519-dalek-derive v0.1.1 (proc-macro) - │ │ │ │ ├── proc-macro2 v1.0.94 (*) - │ │ │ │ ├── quote v1.0.39 (*) - │ │ │ │ └── syn v2.0.100 (*) - │ │ │ ├── digest v0.10.7 (*) - │ │ │ ├── subtle v2.6.1 - │ │ │ └── zeroize v1.8.1 - │ │ │ [build-dependencies] - │ │ │ └── rustc_version v0.4.1 - │ │ │ └── semver v1.0.26 - │ │ ├── ed25519 v2.2.3 - │ │ │ └── signature v2.2.0 - │ │ ├── sha2 v0.10.9 - │ │ │ ├── cfg-if v1.0.0 - │ │ │ ├── cpufeatures v0.2.17 - │ │ │ └── digest v0.10.7 (*) - │ │ ├── subtle v2.6.1 - │ │ └── zeroize v1.8.1 - │ ├── hex v0.4.3 - │ ├── hex-literal v0.4.1 - │ ├── itertools v0.14.0 (*) - │ ├── multiversx-chain-core v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/core) (*) - │ ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) - │ │ ├── serde v1.0.219 (*) - │ │ └── toml v0.7.8 - │ │ ├── serde v1.0.219 (*) - │ │ ├── serde_spanned v0.6.8 - │ │ │ └── serde v1.0.219 (*) - │ │ ├── toml_datetime v0.6.9 - │ │ │ └── serde v1.0.219 (*) - │ │ └── toml_edit v0.19.15 - │ │ ├── indexmap v2.9.0 - │ │ │ ├── equivalent v1.0.2 - │ │ │ ├── hashbrown v0.15.2 - │ │ │ │ ├── foldhash v0.1.5 - │ │ │ │ └── serde v1.0.219 (*) - │ │ │ └── serde v1.0.219 (*) - │ │ ├── serde v1.0.219 (*) - │ │ ├── serde_spanned v0.6.8 (*) - │ │ ├── toml_datetime v0.6.9 (*) - │ │ └── winnow v0.5.40 - │ ├── num-bigint v0.4.6 (*) - │ ├── num-traits v0.2.19 (*) - │ ├── rand v0.8.5 - │ │ ├── libc v0.2.172 - │ │ ├── rand_chacha v0.3.1 - │ │ │ ├── ppv-lite86 v0.2.21 - │ │ │ │ └── zerocopy v0.8.25 - │ │ │ └── rand_core v0.6.4 - │ │ │ └── getrandom v0.2.16 - │ │ │ ├── cfg-if v1.0.0 - │ │ │ └── libc v0.2.172 - │ │ └── rand_core v0.6.4 (*) - │ ├── rand_seeder v0.3.0 - │ │ └── rand_core v0.6.4 (*) - │ ├── serde v1.0.219 (*) - │ ├── sha2 v0.10.9 (*) - │ ├── sha3 v0.10.8 (*) - │ └── toml v0.7.8 (*) - ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) (*) - ├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) - ├── multiversx-sc-meta-lib v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib) - │ ├── clap v4.5.37 - │ │ ├── clap_builder v4.5.37 - │ │ │ ├── anstream v0.6.18 - │ │ │ │ ├── anstyle v1.0.10 - │ │ │ │ ├── anstyle-parse v0.2.6 - │ │ │ │ │ └── utf8parse v0.2.2 - │ │ │ │ ├── anstyle-query v1.1.2 - │ │ │ │ ├── colorchoice v1.0.3 - │ │ │ │ ├── is_terminal_polyfill v1.70.1 - │ │ │ │ └── utf8parse v0.2.2 - │ │ │ ├── anstyle v1.0.10 - │ │ │ ├── clap_lex v0.7.4 - │ │ │ └── strsim v0.11.1 - │ │ └── clap_derive v4.5.32 (proc-macro) - │ │ ├── heck v0.5.0 - │ │ ├── proc-macro2 v1.0.94 (*) - │ │ ├── quote v1.0.39 (*) - │ │ └── syn v2.0.100 (*) - │ ├── colored v3.0.0 - │ ├── convert_case v0.8.0 - │ │ └── unicode-segmentation v1.12.0 - │ ├── hex v0.4.3 - │ ├── lazy_static v1.5.0 - │ ├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) - │ ├── rustc_version v0.4.1 (*) - │ ├── semver v1.0.26 - │ ├── serde v1.0.219 (*) - │ ├── serde_json v1.0.140 (*) - │ ├── toml v0.8.22 - │ │ ├── indexmap v2.9.0 (*) - │ │ ├── serde v1.0.219 (*) - │ │ ├── serde_spanned v0.6.8 (*) - │ │ ├── toml_datetime v0.6.9 (*) - │ │ └── toml_edit v0.22.26 - │ │ ├── indexmap v2.9.0 (*) - │ │ ├── serde v1.0.219 (*) - │ │ ├── serde_spanned v0.6.8 (*) - │ │ ├── toml_datetime v0.6.9 (*) - │ │ ├── toml_write v0.1.1 - │ │ └── winnow v0.7.7 - │ ├── wasmparser v0.227.1 - │ │ ├── bitflags v2.9.0 - │ │ ├── hashbrown v0.15.2 (*) - │ │ ├── indexmap v2.9.0 (*) - │ │ ├── semver v1.0.26 - │ │ └── serde v1.0.219 (*) - │ ├── wasmprinter v0.227.1 - │ │ ├── anyhow v1.0.98 - │ │ ├── termcolor v1.4.1 - │ │ └── wasmparser v0.227.1 (*) - │ └── wat v1.229.0 - │ └── wast v229.0.0 - │ ├── bumpalo v3.17.0 - │ ├── leb128fmt v0.1.0 - │ ├── memchr v2.7.4 - │ ├── unicode-width v0.2.0 - │ └── wasm-encoder v0.229.0 - │ └── leb128fmt v0.1.0 - ├── num-bigint v0.4.6 (*) - ├── num-traits v0.2.19 (*) - ├── pathdiff v0.2.3 - ├── serde v1.0.219 (*) - ├── serde_json v1.0.140 (*) - ├── sha2 v0.10.9 (*) - ├── simple-error v0.3.1 - └── unwrap-infallible v0.1.5 diff --git a/contracts/examples/multisig/file.json b/contracts/examples/multisig/file.json deleted file mode 100644 index 9e37c44e7a..0000000000 --- a/contracts/examples/multisig/file.json +++ /dev/null @@ -1,160821 +0,0 @@ -{ - "packages": [ - { - "name": "Inflector", - "version": "0.11.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", - "license": "BSD-2-Clause", - "license_file": null, - "description": "Adds String based inflections for Rust. Snake, kebab, camel, sentence, class, title and table cases as well as ordinalize, deordinalize, demodulize, foreign key, and pluralize/singularize are supported as both traits and pure functions acting on String types.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "inflector", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/tests/lib.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "heavyweight" - ], - "heavyweight": [ - "regex", - "lazy_static" - ], - "lazy_static": [ - "dep:lazy_static" - ], - "regex": [ - "dep:regex" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/Inflector-0.11.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Josh Teeter" - ], - "categories": [ - "text-processing", - "value-formatting" - ], - "keywords": [ - "pluralize", - "Inflector", - "camel", - "snake", - "inflection" - ], - "readme": "README.md", - "repository": "https://github.com/whatisinternet/inflector", - "homepage": "https://github.com/whatisinternet/inflector", - "documentation": "https://docs.rs/Inflector", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "abi-tester", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "abi_tester", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/src/abi_tester.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "abi_tester_abi_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/tests/abi_tester_abi_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "abi-tester-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "abi-tester", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "abi-tester-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "adder", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "adder", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/src/adder.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_unit_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_unit_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/tests/adder_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "adder-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "adder", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "adder-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "addr2line", - "version": "0.24.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A cross-platform symbolication library written in Rust, using `gimli`", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.3.21", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "wrap_help" - ], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cpp_demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "fallible-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gimli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.31.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "read" - ], - "target": null, - "registry": null - }, - { - "name": "memmap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "object", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.36.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "read", - "compression" - ], - "target": null, - "registry": null - }, - { - "name": "rustc-demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typed-arena", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "findshlibs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libtest-mimic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "addr2line", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "addr2line", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/src/bin/addr2line.rs", - "edition": "2018", - "required-features": [ - "bin" - ], - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "all": [ - "bin" - ], - "alloc": [ - "dep:alloc" - ], - "bin": [ - "loader", - "rustc-demangle", - "cpp_demangle", - "fallible-iterator", - "smallvec", - "dep:clap" - ], - "cargo-all": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "cpp_demangle": [ - "dep:cpp_demangle" - ], - "default": [ - "rustc-demangle", - "cpp_demangle", - "loader", - "fallible-iterator", - "smallvec" - ], - "fallible-iterator": [ - "dep:fallible-iterator" - ], - "loader": [ - "std", - "dep:object", - "dep:memmap2", - "dep:typed-arena" - ], - "rustc-demangle": [ - "dep:rustc-demangle" - ], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "gimli/rustc-dep-of-std" - ], - "smallvec": [ - "dep:smallvec" - ], - "std": [ - "gimli/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/addr2line-0.24.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "DWARF", - "debug", - "elf", - "symbolicate", - "atos" - ], - "readme": "README.md", - "repository": "https://github.com/gimli-rs/addr2line", - "homepage": null, - "documentation": "https://docs.rs/addr2line", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "adler2", - "version": "2.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", - "license": "0BSD OR MIT OR Apache-2.0", - "license_file": null, - "description": "A simple clean-room implementation of the Adler-32 checksum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "adler2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg=docsrs" - ] - } - }, - "release": { - "no-dev-version": true, - "pre-release-commit-message": "Release {{version}}", - "tag-message": "{{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "## Unreleased\n\nNo changes.\n\n## [{{version}} - {{date}}](https://github.com/jonas-schievink/adler/releases/tag/v{{version}})\n", - "search": "## Unreleased\n" - }, - { - "file": "README.md", - "replace": "adler = \"{{version}}\"", - "search": "adler = \"[a-z0-9\\\\.-]+\"" - }, - { - "file": "src/lib.rs", - "replace": "https://docs.rs/adler/{{version}}", - "search": "https://docs.rs/adler/[a-z0-9\\.-]+" - } - ] - } - }, - "publish": null, - "authors": [ - "Jonas Schievink ", - "oyvindln " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "checksum", - "integrity", - "hash", - "adler32", - "zlib" - ], - "readme": "README.md", - "repository": "https://github.com/oyvindln/adler2", - "homepage": null, - "documentation": "https://docs.rs/adler2/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "aes", - "version": "0.8.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "aarch64" - ], - "target": "cfg(all(aes_armv8, target_arch = \"aarch64\"))", - "registry": null - }, - { - "name": "cpufeatures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(not(all(aes_armv8, target_arch = \"aarch64\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "aes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hazmat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/tests/hazmat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "hazmat": [], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "aes", - "rijndael", - "block-cipher" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/block-ciphers", - "homepage": null, - "documentation": "https://docs.rs/aes", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "ahash", - "version": "0.7.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A non-cryptographic hash function using AES-NI for high performance", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "seahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.59", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "const-random", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))", - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.117", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))", - "registry": null - }, - { - "name": "atomic-polyfill", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))", - "registry": null - }, - { - "name": "const-random", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))", - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.117", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ahash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "map_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/map_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nopanic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/nopanic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ahash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/tests/map_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "atomic-polyfill": [ - "dep:atomic-polyfill", - "once_cell/atomic-polyfill" - ], - "compile-time-rng": [ - "const-random" - ], - "const-random": [ - "dep:const-random" - ], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.7.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ], - "rustc-args": [ - "-C", - "target-feature=+aes" - ], - "rustdoc-args": [ - "-C", - "target-feature=+aes" - ] - } - } - }, - "publish": null, - "authors": [ - "Tom Kaitchuck " - ], - "categories": [ - "algorithms", - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "hasher", - "hashmap", - "aes", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/tkaitchuck/ahash", - "homepage": null, - "documentation": "https://docs.rs/ahash", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ahash", - "version": "0.8.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A non-cryptographic hash function using AES-NI for high performance", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "atomic-polyfill", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "const-random", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.117", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pcg-mwc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "seahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.59", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.4", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.18.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ahash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "map_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/map_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nopanic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/nopanic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ahash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/tests/map_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "atomic-polyfill": [ - "dep:atomic-polyfill", - "once_cell/atomic-polyfill" - ], - "compile-time-rng": [ - "const-random" - ], - "const-random": [ - "dep:const-random" - ], - "default": [ - "std", - "runtime-rng" - ], - "getrandom": [ - "dep:getrandom" - ], - "nightly-arm-aes": [], - "no-rng": [], - "runtime-rng": [ - "getrandom" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ], - "rustc-args": [ - "-C", - "target-feature=+aes" - ], - "rustdoc-args": [ - "-C", - "target-feature=+aes" - ] - } - } - }, - "publish": null, - "authors": [ - "Tom Kaitchuck " - ], - "categories": [ - "algorithms", - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "hasher", - "hashmap", - "aes", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/tkaitchuck/ahash", - "homepage": null, - "documentation": "https://docs.rs/ahash", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "aho-corasick", - "version": "1.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Fast multiple substring searching.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "aho_corasick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std", - "perf-literal" - ], - "logging": [ - "dep:log" - ], - "perf-literal": [ - "dep:memchr" - ], - "std": [ - "memchr?/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "string", - "search", - "text", - "pattern", - "multi" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/aho-corasick", - "homepage": "https://github.com/BurntSushi/aho-corasick", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "alloc-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmer-experimental" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "alloc_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/src/alloc_features_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "af_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/af_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "alloc_features_general_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_general_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "alloc_features_managed_buffer_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_managed_buffer_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "alloc_features_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "alloc_features_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/tests/alloc_features_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "alloc-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "alloc-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "alloc-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "anstream", - "version": "0.6.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A simple cross platform library for writing colored text to a terminal.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle-parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle-query", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colorchoice", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is_terminal_polyfill", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.48", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf8parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "divan", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "owo-colors", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strip-ansi-escapes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle-wincon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dump-stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/examples/dump-stream.rs", - "edition": "2021", - "required-features": [ - "auto" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "query-stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/examples/query-stream.rs", - "edition": "2021", - "required-features": [ - "auto" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "strip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/strip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "wincon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/benches/wincon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "auto": [ - "dep:anstyle-query" - ], - "default": [ - "auto", - "wincon" - ], - "test": [], - "wincon": [ - "dep:anstyle-wincon" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "strip", - "wincon" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "anstyle", - "version": "1.0.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "ANSI text styling", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dump-style", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/examples/dump-style.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "tag-prefix": "", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "anstyle-parse", - "version": "0.2.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parse ANSI Style Escapes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf8parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "codegenrs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "divan", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vte_generate_state_changes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle_parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "parselog", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/examples/parselog.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/benches/parse.rs", - "edition": "2021", - "required-features": [ - "utf8" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "core": [ - "dep:arrayvec" - ], - "default": [ - "utf8" - ], - "utf8": [ - "dep:utf8parse" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "vte" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "anstyle-query", - "version": "1.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Look up colored console capabilities", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle_query", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "query", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/examples/query.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "anyhow", - "version": "1.0.98", - "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Flexible concrete Error type built on std::error::Error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.51", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.66", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anyhow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_autotrait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_autotrait.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_backtrace.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_boxed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_boxed.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_chain", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_chain.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_context", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_context.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_convert", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_convert.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_downcast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_downcast.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ensure", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_ensure.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ffi", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_ffi.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_fmt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_repr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_repr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_source", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/tests/test_source.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "backtrace": [ - "dep:backtrace" - ], - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "keywords": [ - "error", - "error-handling" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/anyhow", - "homepage": null, - "documentation": "https://docs.rs/anyhow", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.39" - }, - { - "name": "anymap2", - "version": "0.13.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A safe and convenient store for one value of each type", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anymap2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anymap2-0.13.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Chris Morgan ", - "Azriel Hoh " - ], - "categories": [], - "keywords": [ - "container", - "data-structure", - "map" - ], - "readme": "README.md", - "repository": "https://github.com/azriel91/anymap2", - "homepage": null, - "documentation": "https://docs.rs/anymap2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "arrayvec", - "version": "0.7.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "arrayvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "borsh", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/borsh.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "arraystring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/benches/arraystring.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "extend", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/benches/extend.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "borsh": [ - "dep:borsh" - ], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "borsh", - "serde", - "zeroize" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "stack", - "vector", - "array", - "data-structure", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/bluss/arrayvec", - "homepage": null, - "documentation": "https://docs.rs/arrayvec/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.51" - }, - { - "name": "atomic-waker", - "version": "1.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A synchronization primitive for task wakeup", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "cargo_bench_support" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "atomic_waker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/tests/basic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "waker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/benches/waker.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "portable-atomic": [ - "dep:portable-atomic" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Stjepan Glavina ", - "Contributors to futures-rs" - ], - "categories": [ - "asynchronous", - "concurrency" - ], - "keywords": [ - "waker", - "notify", - "wake", - "futures", - "async" - ], - "readme": "README.md", - "repository": "https://github.com/smol-rs/atomic-waker", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "autocfg", - "version": "1.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Automatic cfg for Rust compiler features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "autocfg", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "integers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/integers.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "nightly", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/nightly.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "paths", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/paths.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/traits.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "versions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/examples/versions.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/no_std.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rustflags", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/rustflags.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wrappers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/tests/wrappers.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Josh Stone " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "rustc", - "build", - "autoconf" - ], - "readme": "README.md", - "repository": "https://github.com/cuviper/autocfg", - "homepage": null, - "documentation": "https://docs.rs/autocfg/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.0" - }, - { - "name": "backtrace", - "version": "0.3.74", - "id": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library to acquire a stack trace (backtrace) at runtime in a Rust program.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cpp_demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "rustc-demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "libloading", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "addr2line", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.24.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.156", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", - "registry": null - }, - { - "name": "object", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.36.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "read_core", - "elf", - "macho", - "pe", - "xcoff", - "unaligned", - "archive" - ], - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))", - "registry": null - }, - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/examples/backtrace.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "raw", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/examples/raw.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accuracy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/accuracy/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "concurrent-panics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/concurrent-panics.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "current-exe-mismatch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/current-exe-mismatch.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "long_fn_name", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/long_fn_name.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sgx-image-base", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/sgx-image-base.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "skip_inner_frames", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/skip_inner_frames.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/tests/smoke.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/benches/benchmarks.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "coresymbolication": [], - "cpp_demangle": [ - "dep:cpp_demangle" - ], - "dbghelp": [], - "default": [ - "std" - ], - "dl_iterate_phdr": [], - "dladdr": [], - "kernel32": [], - "libunwind": [], - "serde": [ - "dep:serde" - ], - "serialize-serde": [ - "serde" - ], - "std": [], - "unix-backtrace": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/backtrace-0.3.74/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/backtrace-rs", - "homepage": "https://github.com/rust-lang/backtrace-rs", - "documentation": "https://docs.rs/backtrace", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "base64", - "version": "0.22.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "encodes and decodes base64 as bytes or utf8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rstest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rstest_reuse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "base64", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "base64", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/examples/base64.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/tests/encode.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/tests/tests.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/benches/benchmarks.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Marshall Pierce " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "base64", - "utf8", - "encode", - "decode", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/marshallpierce/rust-base64", - "homepage": null, - "documentation": "https://docs.rs/base64", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.48.0" - }, - { - "name": "base64ct", - "version": "1.7.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of\ndata-dependent branches/LUTs and thereby provides portable \"best effort\"\nconstant-time operation and embedded-friendly no_std support\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "base64ct", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bcrypt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/bcrypt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crypt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/crypt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proptests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/proptests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "shacrypt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/shacrypt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "standard", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/standard.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "url", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/tests/url.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64ct-1.7.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "encoding", - "no-std", - "parser-implementations" - ], - "keywords": [ - "crypto", - "base64", - "pem", - "phc" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats", - "homepage": "https://github.com/RustCrypto/formats/tree/master/base64ct", - "documentation": "https://docs.rs/base64ct", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "basic-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "basic_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/src/basic_features_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_big_num_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_big_num_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_egld_decimal_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_egld_decimal_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_is_builtin_function_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_is_builtin_function_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_managed_buffer_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_buffer_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_managed_decimal_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_decimal_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_managed_option_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_option_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_managed_vec_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_managed_vec_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_ordered_binary_tree_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_ordered_binary_tree_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_sparse_array_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_sparse_array_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_storage_mapper_get_at_address_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_storage_mapper_get_at_address_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_timelock_mapper_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_timelock_mapper_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_features_token_identifier_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/tests/basic_features_token_identifier_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "basic-features-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "basic-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "system-sc-interact", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls" - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "basic_features_interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/src/bf_interact.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "basic-features-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/src/bf_interact_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bf_interact_cs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/tests/bf_interact_cs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "basic-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "basic-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "basic-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "basic-interactor", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "adder", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "basic_interactor", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/src/basic_interactor.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "basic-interactor", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/src/basic_interactor_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_interactor_cs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/tests/basic_interactor_cs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bech32", - "version": "0.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "license": "MIT", - "license_file": null, - "description": "Encodes and decodes the Bech32 format and implements the bech32 and bech32m checksums", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bech32", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bip_173_test_vectors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/tests/bip_173_test_vectors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bip_350_test_vectors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/tests/bip_350_test_vectors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bech32-0.11.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Clark Moody", - "Andrew Poelstra", - "Tobin Harding" - ], - "categories": [ - "encoding", - "cryptography::cryptocurrencies" - ], - "keywords": [ - "base32", - "encoding", - "bech32", - "bitcoin", - "cryptocurrency" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/rust-bech32", - "homepage": null, - "documentation": "https://docs.rs/bech32/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "benchmark-common", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "benchmark_common", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "big-float-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "big_float_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/src/big_float_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_float_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/tests/big_float_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_float_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/tests/big_float_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "big-float-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "big-float-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "big-float-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bincode", - "version": "1.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "license": "MIT", - "license_file": null, - "description": "A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.63", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.27", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bincode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/tests/test.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "i128": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bincode-1.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ty Overby ", - "Francesco Mazzoli ", - "David Tolnay ", - "Zoey Riordan " - ], - "categories": [ - "encoding", - "network-programming" - ], - "keywords": [ - "binary", - "encode", - "decode", - "serialize", - "deserialize" - ], - "readme": "./readme.md", - "repository": "https://github.com/servo/bincode", - "homepage": null, - "documentation": "https://docs.rs/bincode", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bindgen", - "version": "0.70.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", - "license": "BSD-3-Clause", - "license_file": null, - "description": "Automatically generates Rust FFI bindings to C and C++ libraries.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "annotate-snippets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "color" - ], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cexpr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clang-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "clang_6_0" - ], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.10, <0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "prettyplease", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "verbatim" - ], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "unicode-perl" - ], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shlex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits", - "visit-mut" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bindgen", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "__cli": [], - "__testing_only_extra_assertions": [], - "__testing_only_libclang_16": [], - "__testing_only_libclang_9": [], - "default": [ - "logging", - "prettyplease", - "runtime" - ], - "experimental": [ - "dep:annotate-snippets" - ], - "logging": [ - "dep:log" - ], - "prettyplease": [ - "dep:prettyplease" - ], - "runtime": [ - "clang-sys/runtime" - ], - "static": [ - "clang-sys/static" - ], - "which-rustfmt": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bindgen-0.70.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "experimental" - ] - } - }, - "release": { - "pre-release-hook": [ - "../node_modules/doctoc/doctoc.js", - "../CHANGELOG.md" - ], - "release": true, - "pre-release-replacements": [ - { - "file": "../CHANGELOG.md", - "replace": "# Unreleased\n## Added\n## Changed\n## Removed\n## Fixed\n## Security\n\n# {{version}} ({{date}})", - "search": "# Unreleased" - } - ] - } - }, - "publish": null, - "authors": [ - "Jyun-Yan You ", - "Emilio Cobos Álvarez ", - "Nick Fitzgerald ", - "The Servo project developers" - ], - "categories": [ - "external-ffi-bindings", - "development-tools::ffi" - ], - "keywords": [ - "bindings", - "ffi", - "code-generation" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/rust-bindgen", - "homepage": "https://rust-lang.github.io/rust-bindgen/", - "documentation": "https://docs.rs/bindgen", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.70.0" - }, - { - "name": "bip39", - "version": "2.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "license": "CC0-1.0", - "license_file": null, - "description": "Library for BIP-39 Bitcoin mnemonic codes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitcoin_hashes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.12, <=0.13", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.6.0, <0.9.0", - "kind": null, - "rename": "crate_rand", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.4.0, <0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "unicode-normalization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.1.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "zeroize_derive" - ], - "target": null, - "registry": null - }, - { - "name": "bitcoin_hashes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.12, <0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bip39", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "all-languages": [ - "chinese-simplified", - "chinese-traditional", - "czech", - "french", - "italian", - "japanese", - "korean", - "portuguese", - "spanish" - ], - "alloc": [ - "unicode-normalization" - ], - "chinese-simplified": [], - "chinese-traditional": [], - "crate_rand": [ - "dep:crate_rand" - ], - "czech": [], - "default": [ - "std" - ], - "french": [], - "italian": [], - "japanese": [], - "korean": [], - "portuguese": [], - "rand": [ - "crate_rand", - "rand_core" - ], - "rand_core": [ - "dep:rand_core" - ], - "serde": [ - "dep:serde" - ], - "spanish": [], - "std": [ - "alloc", - "serde/std", - "unicode-normalization/std" - ], - "unicode-normalization": [ - "dep:unicode-normalization" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bip39-2.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Steven Roose " - ], - "categories": [], - "keywords": [ - "crypto", - "bitcoin", - "bip39", - "mnemonic" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/rust-bip39/", - "homepage": "https://github.com/rust-bitcoin/rust-bip39/", - "documentation": "https://docs.rs/bip39/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitcoin-internals", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", - "license": "CC0-1.0", - "license_file": null, - "description": "Internal types and macros used by rust-bitcoin ecosystem", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitcoin_internals", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin-internals-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Poelstra ", - "The Rust Bitcoin developers" - ], - "categories": [ - "cryptography::cryptocurrencies" - ], - "keywords": [ - "internal" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/rust-bitcoin/", - "homepage": null, - "documentation": "https://docs.rs/bitcoin-internals", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitcoin_hashes", - "version": "0.13.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", - "license": "CC0-1.0", - "license_file": null, - "description": "Hash functions used by the rust-bitcoin eccosystem", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "core2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": "actual-core2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-conservative", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": "hex", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitcoin-internals", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": "internals", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "wasm32-unknown-unknown", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitcoin_hashes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin_hashes-0.13.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "actual-core2": [ - "dep:actual-core2" - ], - "alloc": [ - "internals/alloc", - "hex/alloc" - ], - "core2": [ - "actual-core2", - "hex/core2" - ], - "default": [ - "std" - ], - "schemars": [ - "dep:schemars" - ], - "serde": [ - "dep:serde" - ], - "serde-std": [ - "serde/std" - ], - "small-hash": [], - "std": [ - "alloc", - "internals/std", - "hex/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitcoin_hashes-0.13.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Poelstra " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "crypto", - "bitcoin", - "hash", - "digest" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/rust-bitcoin", - "homepage": null, - "documentation": "https://docs.rs/bitcoin_hashes/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitflags", - "version": "1.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A macro to generate structures which behave like bitflags.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitflags", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/tests/basic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/tests/compile.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "homepage": "https://github.com/bitflags/bitflags", - "documentation": "https://docs.rs/bitflags", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitflags", - "version": "2.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A macro to generate structures which behave like bitflags.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.19", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitflags", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_bits_type", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/custom_bits_type.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/custom_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/fmt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "macro_free", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/macro_free.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/examples/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/benches/parse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "bytemuck": [ - "dep:bytemuck" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "homepage": "https://github.com/bitflags/bitflags", - "documentation": "https://docs.rs/bitflags", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "bitvec", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitvec@1.0.1", - "license": "MIT", - "license_file": null, - "description": "Addresses memory by bits, for packed collections and bitfields", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "funty", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "radium", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wyz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "eq", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/eq.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/iter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/macros.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "memcpy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/memcpy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mut_access", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/mut_access.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "slice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/benches/slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "atomic": [], - "default": [ - "atomic", - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "testing": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitvec-1.0.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "atomic", - "serde", - "std" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "embedded", - "no-std", - "rust-patterns" - ], - "keywords": [ - "bitfields", - "bitmap", - "bitstream", - "bitvec", - "bitvector" - ], - "readme": "README.md", - "repository": "https://github.com/bitvecto-rs/bitvec", - "homepage": "https://bitvecto-rs.github.io/bitvec", - "documentation": "https://docs.rs/bitvec/latest/bitvec", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "block-buffer", - "version": "0.10.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Buffer type for block processing of data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "block_buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "block", - "buffer" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/block-buffer", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bonding-curve-contract", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bonding_curve_contract", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/src/bonding_curve_contract.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bonding_curve_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/tests/bonding_curve_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bonding_curve_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/tests/bonding_curve_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bonding-curve-contract-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "bonding-curve-contract", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "bonding-curve-contract-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "boolinator", - "version": "2.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Provides the Boolinator trait, which lets you use Option and Result-style combinators with bools.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "boolinator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/boolinator-2.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/boolinator-2.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Daniel Keep " - ], - "categories": [], - "keywords": [ - "bool", - "combinator", - "monad", - "serious" - ], - "readme": "README.md", - "repository": "https://github.com/DanielKeep/rust-boolinator", - "homepage": null, - "documentation": "https://danielkeep.github.io/rust-boolinator/doc/boolinator/index.html", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bstr", - "version": "1.12.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A string type that is not required to be valid UTF-8.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "dfa-search" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.85", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ucd-parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-segmentation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bstr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "graphemes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/graphemes.rs", - "edition": "2021", - "required-features": [ - "std", - "unicode" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "graphemes-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/graphemes-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lines", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/lines.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lines-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/lines-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "uppercase", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/uppercase.rs", - "edition": "2021", - "required-features": [ - "std", - "unicode" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "uppercase-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/uppercase-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "words", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/words.rs", - "edition": "2021", - "required-features": [ - "std", - "unicode" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "words-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/examples/words-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "memchr/alloc", - "serde?/alloc" - ], - "default": [ - "std", - "unicode" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc", - "memchr/std", - "serde?/std" - ], - "unicode": [ - "dep:regex-automata" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing", - "encoding" - ], - "keywords": [ - "string", - "str", - "byte", - "bytes", - "text" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/bstr", - "homepage": "https://github.com/BurntSushi/bstr", - "documentation": "https://docs.rs/bstr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.73" - }, - { - "name": "builtin-func-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "builtin_func_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/src/builtin_func_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_transfer_promise_blackbox_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/tests/esdt_transfer_promise_blackbox_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_transfer_promise_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/tests/esdt_transfer_promise_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "builtin-func-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "builtin-func-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "builtin-func-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bumpalo", - "version": "3.17.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A fast bump allocation arena for Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "allocator-api2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.171", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.115", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bumpalo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.17.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "allocator-api2": [ - "dep:allocator-api2" - ], - "allocator_api": [], - "boxed": [], - "collections": [], - "default": [], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.17.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Nick Fitzgerald " - ], - "categories": [ - "memory-management", - "rust-patterns", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/fitzgen/bumpalo", - "homepage": null, - "documentation": "https://docs.rs/bumpalo", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71.1" - }, - { - "name": "bytecheck", - "version": "0.6.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "license": "MIT", - "license_file": null, - "description": "Derive macro for bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytecheck_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "simdutf8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bytecheck", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "simdutf8", - "std" - ], - "simdutf8": [ - "dep:simdutf8" - ], - "std": [ - "ptr_meta/std", - "bytecheck_derive/std", - "simdutf8/std" - ], - "uuid": [ - "dep:uuid" - ], - "verbose": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.6.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "bytecheck", - "validation", - "zero-copy", - "rkyv" - ], - "readme": "crates-io.md", - "repository": "https://github.com/djkoloski/bytecheck", - "homepage": null, - "documentation": "https://docs.rs/bytecheck", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bytecheck", - "version": "0.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "license": "MIT", - "license_file": null, - "description": "Memory validation framework for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytecheck_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rancor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "simdutf8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "uuid-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bytecheck", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.8.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "simdutf8" - ], - "simdutf8": [ - "dep:simdutf8" - ], - "uuid-1": [ - "dep:uuid-1" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck-0.8.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "no_std", - "validation", - "serialization" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/bytecheck", - "homepage": null, - "documentation": "https://docs.rs/bytecheck", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "bytecheck_derive", - "version": "0.6.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", - "license": "MIT", - "license_file": null, - "description": "Derive macro for bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "bytecheck_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.6.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.6.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/djkoloski/bytecheck", - "homepage": null, - "documentation": "https://docs.rs/bytecheck_derive", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bytecheck_derive", - "version": "0.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", - "license": "MIT", - "license_file": null, - "description": "Derive macro for bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "full", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "bytecheck_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.8.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytecheck_derive-0.8.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "no_std", - "validation", - "serialization" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/bytecheck", - "homepage": null, - "documentation": "https://docs.rs/bytecheck_derive", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "byteorder", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Library for reading/writing numbers in big-endian and little-endian.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "byteorder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "i128": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "encoding", - "parsing", - "no-std" - ], - "keywords": [ - "byte", - "endian", - "big-endian", - "little-endian", - "binary" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/byteorder", - "homepage": "https://github.com/BurntSushi/byteorder", - "documentation": "https://docs.rs/byteorder", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "bytes", - "version": "1.10.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "license": "MIT", - "license_file": null, - "description": "Types and traits for working with bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": "extra-platforms", - "optional": true, - "uses_default_features": false, - "features": [ - "require-cas" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_buf.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_buf_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_buf_mut.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_bytes_odd_alloc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes_odd_alloc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_bytes_vec_alloc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_bytes_vec_alloc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_chain", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_chain.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_debug.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_iter.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_reader", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_reader.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_take", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/tests/test_take.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/buf.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bytes_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/benches/bytes_mut.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "extra-platforms": [ - "dep:extra-platforms" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Carl Lerche ", - "Sean McArthur " - ], - "categories": [ - "network-programming", - "data-structures" - ], - "keywords": [ - "buffers", - "zero-copy", - "io" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/bytes", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.39" - }, - { - "name": "cc", - "version": "1.2.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "jobserver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.30", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shlex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.62", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.20/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "jobserver": [], - "parallel": [ - "dep:libc", - "dep:jobserver" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.20/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "build-dependencies" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/cc-rs", - "homepage": "https://github.com/rust-lang/cc-rs", - "documentation": "https://docs.rs/cc", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "cexpr", - "version": "0.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "A C expression parser and evaluator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "nom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "clang-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.13.0, <0.29.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cexpr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "clang", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/tests/clang.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cexpr-0.6.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jethro Beekman " - ], - "categories": [], - "keywords": [ - "C", - "expression", - "parser" - ], - "readme": null, - "repository": "https://github.com/jethrogb/rust-cexpr", - "homepage": null, - "documentation": "https://docs.rs/cexpr/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "cfg-if", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cfg_if", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "xcrate", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/tests/xcrate.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/cfg-if", - "homepage": "https://github.com/alexcrichton/cfg-if", - "documentation": "https://docs.rs/cfg-if", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "cfg_aliases", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "license": "MIT", - "license_file": null, - "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cfg_aliases", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Zicklag " - ], - "categories": [ - "development-tools", - "development-tools::build-utils" - ], - "keywords": [ - "cfg", - "alias", - "conditional", - "compilation", - "build" - ], - "readme": "README.md", - "repository": "https://github.com/katharostech/cfg_aliases", - "homepage": "https://github.com/katharostech/cfg_aliases", - "documentation": "https://docs.rs/cfg_aliases", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "check-pause", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "check_pause", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/src/check_pause.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "check-pause-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "check-pause", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "check-pause-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "child", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "child", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "child-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "child", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "child-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "chrono", - "version": "0.4.41", - "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Date and time library for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pure-rust-locales", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.43", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.99", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "similar-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "android-tzdata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"android\")", - "registry": null - }, - { - "name": "iana-time-zone", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.45", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "fallback" - ], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-link", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.61", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "chrono", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dateutils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/dateutils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wasm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/wasm.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "win_bindings", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/tests/win_bindings.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__internal_bench": [], - "alloc": [], - "android-tzdata": [ - "dep:android-tzdata" - ], - "arbitrary": [ - "dep:arbitrary" - ], - "clock": [ - "winapi", - "iana-time-zone", - "android-tzdata", - "now" - ], - "default": [ - "clock", - "std", - "oldtime", - "wasmbind" - ], - "iana-time-zone": [ - "dep:iana-time-zone" - ], - "js-sys": [ - "dep:js-sys" - ], - "libc": [], - "now": [ - "std" - ], - "oldtime": [], - "pure-rust-locales": [ - "dep:pure-rust-locales" - ], - "rkyv": [ - "dep:rkyv", - "rkyv/size_32" - ], - "rkyv-16": [ - "dep:rkyv", - "rkyv?/size_16" - ], - "rkyv-32": [ - "dep:rkyv", - "rkyv?/size_32" - ], - "rkyv-64": [ - "dep:rkyv", - "rkyv?/size_64" - ], - "rkyv-validation": [ - "rkyv?/validation" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "unstable-locales": [ - "pure-rust-locales" - ], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ], - "wasmbind": [ - "wasm-bindgen", - "js-sys" - ], - "winapi": [ - "windows-link" - ], - "windows-link": [ - "dep:windows-link" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.41/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "rkyv", - "serde", - "unstable-locales" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "date-and-time" - ], - "keywords": [ - "date", - "time", - "calendar" - ], - "readme": "README.md", - "repository": "https://github.com/chronotope/chrono", - "homepage": "https://github.com/chronotope/chrono", - "documentation": "https://docs.rs/chrono/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.62.0" - }, - { - "name": "cipher", - "version": "0.4.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Traits for describing block ciphers and stream ciphers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "blobby", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crypto-common", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "inout", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cipher", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "blobby": [ - "dep:blobby" - ], - "block-padding": [ - "inout/block-padding" - ], - "dev": [ - "blobby" - ], - "rand_core": [ - "crypto-common/rand_core" - ], - "std": [ - "alloc", - "crypto-common/std", - "inout/std" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "block-cipher", - "stream-cipher", - "trait" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "homepage": null, - "documentation": "https://docs.rs/cipher", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "clang-sys", - "version": "1.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", - "license": "Apache-2.0", - "license_file": null, - "description": "Rust bindings for libclang.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libloading", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=3.0.0, <3.7.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clang_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/tests/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "clang_10_0": [ - "clang_9_0" - ], - "clang_11_0": [ - "clang_10_0" - ], - "clang_12_0": [ - "clang_11_0" - ], - "clang_13_0": [ - "clang_12_0" - ], - "clang_14_0": [ - "clang_13_0" - ], - "clang_15_0": [ - "clang_14_0" - ], - "clang_16_0": [ - "clang_15_0" - ], - "clang_17_0": [ - "clang_16_0" - ], - "clang_18_0": [ - "clang_17_0" - ], - "clang_3_5": [], - "clang_3_6": [ - "clang_3_5" - ], - "clang_3_7": [ - "clang_3_6" - ], - "clang_3_8": [ - "clang_3_7" - ], - "clang_3_9": [ - "clang_3_8" - ], - "clang_4_0": [ - "clang_3_9" - ], - "clang_5_0": [ - "clang_4_0" - ], - "clang_6_0": [ - "clang_5_0" - ], - "clang_7_0": [ - "clang_6_0" - ], - "clang_8_0": [ - "clang_7_0" - ], - "clang_9_0": [ - "clang_8_0" - ], - "libcpp": [], - "libloading": [ - "dep:libloading" - ], - "runtime": [ - "libloading" - ], - "static": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clang-sys-1.8.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "clang_18_0", - "runtime" - ] - } - } - }, - "publish": null, - "authors": [ - "Kyle Mayes " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/KyleMayes/clang-sys", - "homepage": null, - "documentation": "https://docs.rs/clang-sys", - "edition": "2021", - "links": "clang", - "default_run": null, - "rust_version": null - }, - { - "name": "clap", - "version": "4.5.37", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "clap_builder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=4.5.37", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=4.5.32", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap-cargo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.15", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shlex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "term-svg" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.91", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trycmd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "color-auto", - "diff", - "examples" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "stdio-fixture", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/src/bin/stdio-fixture.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "01_quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/01_quick.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "01_quick_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/01_quick.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_app_settings", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_app_settings.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_app_settings_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_app_settings.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_apps", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_apps.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_apps_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_apps.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_crate", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/02_crate.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_crate_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/02_crate.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_bool", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_01_flag_bool.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_bool_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_01_flag_bool.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_count", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_01_flag_count.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_count_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_01_flag_count.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_02_option.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_02_option.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option_mult", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_02_option_mult.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option_mult_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_02_option_mult.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_03_positional.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_03_positional.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional_mult", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_03_positional_mult.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional_mult_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_03_positional_mult.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_04_subcommands", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_04_subcommands.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_04_subcommands_alt_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_04_subcommands_alt.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_04_subcommands_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_04_subcommands.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_05_default_values", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_05_default_values.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_05_default_values_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_05_default_values.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_06_optional_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/03_06_optional.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_06_required", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/03_06_required.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_01_enum", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_01_enum.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_01_enum_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_01_enum.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_01_possible", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_01_possible.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_02_parse.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_parse_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_02_parse.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_validate", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_02_validate.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_validate_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_02_validate.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_03_relations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_03_relations.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_03_relations_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_03_relations.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_04_custom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/04_04_custom.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_04_custom_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/04_04_custom.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "05_01_assert", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_builder/05_01_assert.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "05_01_assert_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/tutorial_derive/05_01_assert.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "busybox", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/multicall-busybox.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cargo-example", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/cargo-example.rs", - "edition": "2021", - "required-features": [ - "cargo", - "color" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cargo-example-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/cargo-example-derive.rs", - "edition": "2021", - "required-features": [ - "derive", - "color" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "demo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/demo.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "escaped-positional", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/escaped-positional.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "escaped-positional-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/escaped-positional-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "find", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/find.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "git", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/git.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "git-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/git-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hostname", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/multicall-hostname.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_augment_args", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/augment_args.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_augment_subcommands", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/augment_subcommands.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_flatten_hand_args", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/flatten_hand_args.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_hand_subcommand", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/derive_ref/hand_subcommand.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pacman", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/pacman.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "repl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/repl.rs", - "edition": "2021", - "required-features": [ - "help" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "repl-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/repl-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "typed-derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/examples/typed-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "cargo": [ - "clap_builder/cargo" - ], - "color": [ - "clap_builder/color" - ], - "debug": [ - "clap_builder/debug", - "clap_derive?/debug" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [ - "clap_builder/deprecated", - "clap_derive?/deprecated" - ], - "derive": [ - "dep:clap_derive" - ], - "env": [ - "clap_builder/env" - ], - "error-context": [ - "clap_builder/error-context" - ], - "help": [ - "clap_builder/help" - ], - "std": [ - "clap_builder/std" - ], - "string": [ - "clap_builder/string" - ], - "suggestions": [ - "clap_builder/suggestions" - ], - "unicode": [ - "clap_builder/unicode" - ], - "unstable-derive-ui-tests": [], - "unstable-doc": [ - "clap_builder/unstable-doc", - "derive" - ], - "unstable-ext": [ - "clap_builder/unstable-ext" - ], - "unstable-markdown": [ - "clap_derive/unstable-markdown" - ], - "unstable-styles": [ - "clap_builder/unstable-styles" - ], - "unstable-v5": [ - "clap_builder/unstable-v5", - "clap_derive?/unstable-v5", - "deprecated" - ], - "usage": [ - "clap_builder/usage" - ], - "wrap_help": [ - "clap_builder/wrap_help" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.37/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "shared-version": true, - "tag-name": "v{{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "file": "CITATION.cff", - "replace": "date-released: {{date}}", - "search": "^date-released: ....-..-.." - }, - { - "file": "CITATION.cff", - "replace": "version: {{version}}", - "search": "^version: .+\\..+\\..+" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "blob/v{{version}}/CHANGELOG.md", - "search": "blob/v.+\\..+\\..+/CHANGELOG.md" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_builder", - "version": "4.5.37", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.73", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap_lex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strsim", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "terminal_size", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicase", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "color-print", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unic-emoji-char", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap_builder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.37/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "cargo": [], - "color": [ - "dep:anstream" - ], - "debug": [ - "dep:backtrace" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [], - "env": [], - "error-context": [], - "help": [], - "std": [ - "anstyle/std" - ], - "string": [], - "suggestions": [ - "dep:strsim", - "error-context" - ], - "unicode": [ - "dep:unicode-width", - "dep:unicase" - ], - "unstable-doc": [ - "cargo", - "wrap_help", - "env", - "unicode", - "string", - "unstable-ext" - ], - "unstable-ext": [], - "unstable-styles": [ - "color" - ], - "unstable-v5": [ - "deprecated" - ], - "usage": [], - "wrap_help": [ - "help", - "dep:terminal_size" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.37/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "dependent-version": "upgrade", - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_derive", - "version": "4.5.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parse command line argument by defining a struct, derive crate.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "heck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pulldown-cmark", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "clap_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "debug": [], - "default": [], - "deprecated": [], - "raw-deprecated": [ - "deprecated" - ], - "unstable-markdown": [ - "dep:pulldown-cmark", - "dep:anstyle" - ], - "unstable-v5": [ - "deprecated" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "release": { - "dependent-version": "upgrade", - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface", - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "clap", - "cli", - "parse", - "derive", - "proc_macro" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_lex", - "version": "0.7.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Minimal, flexible command line parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap_lex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "exactly": 4, - "file": "README.md", - "prerelease": true, - "replace": "github.com/clap-rs/clap/blob/{{tag_name}}/", - "search": "github.com/clap-rs/clap/blob/[^/]+/" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "cmake", - "version": "0.1.54", - "id": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A build dependency for running `cmake` to build a native library\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cmake", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cmake-0.1.54/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cmake-0.1.54/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "build-dependencies" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/cmake-rs", - "homepage": "https://github.com/rust-lang/cmake-rs", - "documentation": "https://docs.rs/cmake", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "colorchoice", - "version": "1.0.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Global override of color control", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "colorchoice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "colored", - "version": "2.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", - "license": "MPL-2.0", - "license_file": null, - "description": "The most simple way to add colors in your terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ansi_term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rspec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.48, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Console" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "colored", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "as_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/as_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "control", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/control.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/custom_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dynamic_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/dynamic_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "most_simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/most_simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "nested_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/examples/nested_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ansi_term_compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/tests/ansi_term_compat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "no-color": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-2.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Thomas Wickham " - ], - "categories": [], - "keywords": [ - "color", - "string", - "term", - "ansi_term", - "term-painter" - ], - "readme": "README.md", - "repository": "https://github.com/mackwic/colored", - "homepage": "https://github.com/mackwic/colored", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "colored", - "version": "3.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "license": "MPL-2.0", - "license_file": null, - "description": "The most simple way to add colors in your terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ansi_term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rspec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.48, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Console" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "colored", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "as_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/as_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "control", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/control.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/custom_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dynamic_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/dynamic_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "most_simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/most_simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "nested_colors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/examples/nested_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ansi_term_compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/tests/ansi_term_compat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "no-color": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colored-3.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Thomas Wickham " - ], - "categories": [], - "keywords": [ - "color", - "string", - "term", - "ansi_term", - "term-painter" - ], - "readme": "README.md", - "repository": "https://github.com/mackwic/colored", - "homepage": "https://github.com/mackwic/colored", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "common-path", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Finds the common prefix between a set of paths\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "common_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/common-path-1.0.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/common-path-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Paul Woolcock " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": "https://gitlab.com/pwoolcoc/common-path", - "documentation": "https://docs.rs/common-path", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "composability-tests", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "builtin-func-features", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features" - }, - { - "name": "forwarder", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" - }, - { - "name": "forwarder-legacy", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy" - }, - { - "name": "forwarder-queue", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue" - }, - { - "name": "forwarder-raw", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "promises-features", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features" - }, - { - "name": "proxy-test-first", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first" - }, - { - "name": "proxy-test-second", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second" - }, - { - "name": "recursive-caller", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - } - ], - "targets": [ - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "composability_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/composability_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "composability_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/composability_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder_blackbox_legacy_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_blackbox_legacy_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder_whitebox_legacy_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_whitebox_legacy_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/forwarder_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "promises_feature_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/tests/promises_feature_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "console_error_panic_hook", - "version": "0.1.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "A panic hook for `wasm32-unknown-unknown` that logs panics to `console.error`", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.37", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "console_error_panic_hook", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/tests/tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nick Fitzgerald " - ], - "categories": [ - "wasm" - ], - "keywords": [], - "readme": "./README.md", - "repository": "https://github.com/rustwasm/console_error_panic_hook", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "console_log", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A logging facility that routes Rust log messages to the browser's console.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "console" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "console_log", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_log-1.0.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "color": [ - "wasm-bindgen" - ], - "default": [], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_log-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Matthew Nicholson " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "log", - "logging", - "console", - "web_sys", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/iamcodemaker/console_log", - "homepage": null, - "documentation": "https://docs.rs/console_log", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "const-oid", - "version": "0.9.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard\nas defined in ITU X.660, with support for BER/DER encoding/decoding as well as\nheapless no_std (i.e. embedded) support\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "const_oid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "db": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-oid-0.9.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "keywords": [ - "iso", - "iec", - "itu", - "oid" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/const-oid", - "homepage": null, - "documentation": "https://docs.rs/const-oid", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "convert_case", - "version": "0.8.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "license": "MIT", - "license_file": null, - "description": "Convert strings into any case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-segmentation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "convert_case", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "string_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/tests/string_types.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "rand": [ - "dep:rand" - ], - "random": [ - "rand" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.8.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "rutrum " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "casing", - "case", - "string" - ], - "readme": "README.md", - "repository": "https://github.com/rutrum/convert-case", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "copy_dir", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Copy directories recursively in a straightforward and predictable way.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "copy_dir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/copy_dir-0.1.3/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/copy_dir-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Michael Dunsmuir " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": "https://github.com/mdunsmuir/copy_dir", - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "corosensei", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A fast and safe implementation of stackful coroutines", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scopeguard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.69", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion-cycles-per-byte", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.159", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Diagnostics_Debug", - "Win32_System_Kernel", - "Win32_System_Memory", - "Win32_System_Threading", - "Win32_System_SystemInformation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "corosensei", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/backtrace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/examples/panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "coroutine", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/benches/coroutine.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "asm-unwind": [ - "unwind" - ], - "default": [ - "default-stack", - "unwind" - ], - "default-stack": [ - "libc", - "windows-sys" - ], - "libc": [ - "dep:libc" - ], - "unwind": [], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/corosensei-0.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "aarch64-unknown-linux-gnu", - "armv7-unknown-linux-gnueabihf", - "riscv64gc-unknown-linux-gnu", - "x86_64-apple-darwin", - "aarch64-apple-darwin", - "x86_64-pc-windows-msvc", - "i686-pc-windows-msvc" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std", - "concurrency" - ], - "keywords": [ - "coroutine", - "stack", - "fiber", - "generator" - ], - "readme": "README.md", - "repository": "https://github.com/Amanieu/corosensei", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.59.0" - }, - { - "name": "cpufeatures", - "version": "0.2.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, \nwith no_std support and support for mobile targets including Android and iOS\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "aarch64-linux-android", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cpufeatures", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "aarch64", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/aarch64.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "loongarch64", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/loongarch64.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "x86", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/tests/x86.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "hardware-support", - "no-std" - ], - "keywords": [ - "cpuid", - "target-feature" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/cpufeatures", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crc32fast", - "version": "1.4.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crc32fast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/benches/bench.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.4.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sam Rijs ", - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "checksum", - "crc", - "crc32", - "simd", - "fast" - ], - "readme": "README.md", - "repository": "https://github.com/srijs/rust-crc32fast", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crossbeam-deque", - "version": "0.8.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Concurrent work-stealing deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-epoch", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_deque", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fifo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/fifo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "injector", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/injector.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lifo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/lifo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "steal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/tests/steal.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "crossbeam-epoch/std", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "keywords": [ - "chase-lev", - "lock-free", - "scheduler", - "scheduling" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "crossbeam-epoch", - "version": "0.9.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Epoch-based garbage collection", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": "loom-crate", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(crossbeam_loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_epoch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "sanitize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/examples/sanitize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "loom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/tests/loom.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "defer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/defer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "flush", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/flush.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "pin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/benches/pin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "loom": [ - "loom-crate", - "crossbeam-utils/loom" - ], - "loom-crate": [ - "dep:loom-crate" - ], - "nightly": [ - "crossbeam-utils/nightly" - ], - "std": [ - "alloc", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "memory-management", - "no-std" - ], - "keywords": [ - "lock-free", - "rcu", - "atomic", - "garbage" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "crossbeam-queue", - "version": "0.3.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Concurrent queues", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "array_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/tests/array_queue.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "seg_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/tests/seg_queue.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "nightly": [ - "crossbeam-utils/nightly" - ], - "std": [ - "alloc", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "data-structures", - "no-std" - ], - "keywords": [ - "queue", - "mpmc", - "lock-free", - "producer", - "consumer" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "crossbeam-utils", - "version": "0.8.21", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Utilities for concurrent programming", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(crossbeam_loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "atomic_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/atomic_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cache_padded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/cache_padded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/parker.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sharded_lock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/sharded_lock.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "thread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/thread.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wait_group", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/tests/wait_group.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "atomic_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/benches/atomic_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "loom": [ - "dep:loom" - ], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures", - "no-std" - ], - "keywords": [ - "scoped", - "thread", - "atomic", - "cache" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "crowdfunding-erc20", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crowdfunding_erc20", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/src/crowdfunding_erc20.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_erc20_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/tests/crowdfunding_erc20_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_erc20_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/tests/crowdfunding_erc20_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crowdfunding-erc20-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "crowdfunding-erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding-erc20-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crowdfunding-esdt", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crowdfunding_esdt", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/src/crowdfunding_esdt.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_esdt_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_esdt_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding_esdt_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/tests/crowdfunding_esdt_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crowdfunding-esdt-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "crowdfunding-esdt", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "crowdfunding-esdt-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-bubbles", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crypto_bubbles", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/src/crypto_bubbles.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crypto_bubbles_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/tests/crypto_bubbles_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crypto_bubbles_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/tests/crypto_bubbles_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-bubbles-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "crypto-bubbles", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "crypto-bubbles-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-common", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Common cryptographic traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "more_lengths" - ], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typenum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crypto_common", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "getrandom": [ - "rand_core/getrandom" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "traits" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "homepage": null, - "documentation": "https://docs.rs/crypto-common", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-zombies", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crypto_zombies", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-zombies-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "crypto-zombies", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "crypto-zombies-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ctr", - "version": "0.9.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "CTR block modes of operation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "aes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "kuznyechik", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "magma", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ctr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "aes128", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/benches/aes128.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "cipher/alloc" - ], - "block-padding": [ - "cipher/block-padding" - ], - "std": [ - "cipher/std", - "alloc" - ], - "zeroize": [ - "cipher/zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctr-0.9.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "block-mode", - "stream-cipher", - "ciphers" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/block-modes", - "homepage": null, - "documentation": "https://docs.rs/ctr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "curve25519-dalek", - "version": "4.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", - "license": "BSD-3-Clause", - "license_file": null, - "description": "A pure-Rust implementation of group operations on ristretto255 and Curve25519", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "group", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "getrandom" - ], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "curve25519-dalek-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(not(curve25519_dalek_backend = \"fiat\"), not(curve25519_dalek_backend = \"serial\"), target_arch = \"x86_64\"))", - "registry": null - }, - { - "name": "fiat-crypto", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(curve25519_dalek_backend = \"fiat\")", - "registry": null - }, - { - "name": "cpufeatures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"x86_64\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "curve25519_dalek", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "dalek_benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/benches/dalek_benchmarks.rs", - "edition": "2021", - "required-features": [ - "alloc", - "rand_core" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "zeroize?/alloc" - ], - "default": [ - "alloc", - "precomputed-tables", - "zeroize" - ], - "digest": [ - "dep:digest" - ], - "ff": [ - "dep:ff" - ], - "group": [ - "dep:group", - "rand_core" - ], - "group-bits": [ - "group", - "ff/bits" - ], - "legacy_compatibility": [], - "precomputed-tables": [], - "rand_core": [ - "dep:rand_core" - ], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-4.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "rand_core", - "digest", - "legacy_compatibility", - "group-bits" - ], - "rustdoc-args": [ - "--html-in-header", - "docs/assets/rustdoc-include-katex-header.html", - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Isis Lovecruft ", - "Henry de Valence " - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "cryptography", - "crypto", - "ristretto", - "curve25519", - "ristretto255" - ], - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek", - "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", - "documentation": "https://docs.rs/curve25519-dalek", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "curve25519-dalek-derive", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "curve25519-dalek Derives", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.66", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.27", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "curve25519_dalek_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/curve25519-dalek-derive-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/curve25519-dalek", - "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", - "documentation": "https://docs.rs/curve25519-dalek-derive", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "darling", - "version": "0.20.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", - "license": "MIT", - "license_file": null, - "description": "A proc-macro library for reading attributes into structs when\nimplementing custom derives.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "darling_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.20.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "darling_macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.20.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.86", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.15", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(compiletests)", - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.89", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(compiletests)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "darling", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "automatic_bounds", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/automatic_bounds.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "consume_fields", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/consume_fields.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "expr_with", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/expr_with.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "fallible_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/fallible_read.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "heterogeneous_enum_and_word", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/heterogeneous_enum_and_word.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "shorthand_or_long_field", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/shorthand_or_long_field.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "supports_struct", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/examples/supports_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accrue_errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/accrue_errors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "attrs_with", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/attrs_with.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/compiletests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "computed_bound", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/computed_bound.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom_bound", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/custom_bound.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "data_with", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/data_with.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "defaults", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/defaults.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_newtype", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_newtype.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_struct", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_unit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/enums_unit.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_error_accumulation", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten_error_accumulation.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_from_field", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/flatten_from_field.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "forward_attrs_to_from_attributes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/forward_attrs_to_from_attributes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_meta.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_type_param", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_type_param.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_type_param_default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_type_param_default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_variant", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/from_variant.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "happy_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/happy_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/hash_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "meta_with", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/meta_with.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/multiple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "newtype", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/newtype.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "skip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/skip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spanned_value", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/spanned_value.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "split_declaration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/split_declaration.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "suggestions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/suggestions.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "supports", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/supports.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unsupported_attributes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/tests/unsupported_attributes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "suggestions" - ], - "diagnostics": [ - "darling_core/diagnostics" - ], - "suggestions": [ - "darling_core/suggestions" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling-0.20.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/TedDriggs/darling", - "homepage": null, - "documentation": "https://docs.rs/darling/0.20.11", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "darling_core", - "version": "0.20.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "license": "MIT", - "license_file": null, - "description": "Helper crate for proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ident_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.86", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strsim", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "darling_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_core-0.20.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "diagnostics": [], - "strsim": [ - "dep:strsim" - ], - "suggestions": [ - "strsim" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_core-0.20.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/TedDriggs/darling", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "darling_macro", - "version": "0.20.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", - "license": "MIT", - "license_file": null, - "description": "Internal support for a proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "darling_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.20.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "darling_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_macro-0.20.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/darling_macro-0.20.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/TedDriggs/darling", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "dashmap", - "version": "6.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "license": "MIT", - "license_file": null, - "description": "Blazing fast concurrent HashMap for Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "raw" - ], - "target": null, - "registry": null - }, - { - "name": "lock_api", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.18.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.188", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "typesize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dashmap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "inline": [ - "hashbrown/inline-more" - ], - "raw-api": [], - "rayon": [ - "dep:rayon" - ], - "serde": [ - "dep:serde" - ], - "typesize": [ - "dep:typesize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "rayon", - "raw-api", - "serde" - ] - } - } - }, - "publish": null, - "authors": [ - "Acrimon " - ], - "categories": [ - "concurrency", - "algorithms", - "data-structures" - ], - "keywords": [ - "atomic", - "concurrent", - "hashmap" - ], - "readme": "README.md", - "repository": "https://github.com/xacrimon/dashmap", - "homepage": "https://github.com/xacrimon/dashmap", - "documentation": "https://docs.rs/dashmap", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "der", - "version": "0.7.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules\n(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with\nfull support for heapless no_std targets\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "const-oid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "der_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flagset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pem-rfc7468", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "der", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "datetime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/datetime.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pem", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/pem.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set_of", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/tests/set_of.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "zeroize?/alloc" - ], - "arbitrary": [ - "dep:arbitrary", - "const-oid?/arbitrary", - "std" - ], - "bytes": [ - "dep:bytes", - "alloc" - ], - "derive": [ - "dep:der_derive" - ], - "flagset": [ - "dep:flagset" - ], - "oid": [ - "dep:const-oid" - ], - "pem": [ - "dep:pem-rfc7468", - "alloc", - "zeroize" - ], - "real": [], - "std": [ - "alloc" - ], - "time": [ - "dep:time" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/der-0.7.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "keywords": [ - "asn1", - "crypto", - "itu", - "pkcs" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/der", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "derive_more", - "version": "0.99.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", - "license": "MIT", - "license_file": null, - "description": "Adds #[derive(x)] macros for more traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "peg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "derive_more", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deny_missing_docs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/examples/deny_missing_docs.rs", - "edition": "2018", - "required-features": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "from", - "from_str", - "index", - "index_mut", - "into", - "mul_assign", - "mul", - "not", - "try_into", - "is_variant" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "add", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/add.rs", - "edition": "2018", - "required-features": [ - "add" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "add_assign", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/add_assign.rs", - "edition": "2018", - "required-features": [ - "add_assign" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "as_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/as_mut.rs", - "edition": "2018", - "required-features": [ - "as_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "as_ref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/as_ref.rs", - "edition": "2018", - "required-features": [ - "as_ref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "boats_display_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/boats_display_derive.rs", - "edition": "2018", - "required-features": [ - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constructor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/constructor.rs", - "edition": "2018", - "required-features": [ - "constructor" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/deref.rs", - "edition": "2018", - "required-features": [ - "deref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deref_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/deref_mut.rs", - "edition": "2018", - "required-features": [ - "deref_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "display", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/display.rs", - "edition": "2018", - "required-features": [ - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/error_tests.rs", - "edition": "2018", - "required-features": [ - "error" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/from.rs", - "edition": "2018", - "required-features": [ - "from" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_str", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/from_str.rs", - "edition": "2018", - "required-features": [ - "from_str" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/generics.rs", - "edition": "2018", - "required-features": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "from", - "from_str", - "index", - "index_mut", - "into", - "mul_assign", - "mul", - "not", - "try_into", - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "index", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/index.rs", - "edition": "2018", - "required-features": [ - "index" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "index_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/index_mut.rs", - "edition": "2018", - "required-features": [ - "index_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "into", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/into.rs", - "edition": "2018", - "required-features": [ - "into" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "into_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/into_iterator.rs", - "edition": "2018", - "required-features": [ - "into_iterator" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "is_variant", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/is_variant.rs", - "edition": "2018", - "required-features": [ - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/lib.rs", - "edition": "2018", - "required-features": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "from", - "from_str", - "index", - "index_mut", - "into", - "mul_assign", - "mul", - "not", - "try_into", - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mul", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/mul.rs", - "edition": "2018", - "required-features": [ - "mul" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mul_assign", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/mul_assign.rs", - "edition": "2018", - "required-features": [ - "mul_assign" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/no_std.rs", - "edition": "2018", - "required-features": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "from", - "from_str", - "index", - "index_mut", - "into", - "mul_assign", - "mul", - "not", - "sum", - "try_into", - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "not", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/not.rs", - "edition": "2018", - "required-features": [ - "not" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sum", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/sum.rs", - "edition": "2018", - "required-features": [ - "sum" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_into", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/try_into.rs", - "edition": "2018", - "required-features": [ - "try_into" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unwrap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/tests/unwrap.rs", - "edition": "2018", - "required-features": [ - "unwrap" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "add": [], - "add_assign": [], - "as_mut": [], - "as_ref": [], - "constructor": [], - "convert_case": [ - "dep:convert_case" - ], - "default": [ - "add_assign", - "add", - "as_mut", - "as_ref", - "constructor", - "deref", - "deref_mut", - "display", - "error", - "from", - "from_str", - "index", - "index_mut", - "into", - "into_iterator", - "iterator", - "mul_assign", - "mul", - "not", - "sum", - "try_into", - "is_variant", - "unwrap" - ], - "deref": [], - "deref_mut": [], - "display": [ - "syn/extra-traits" - ], - "error": [ - "syn/extra-traits" - ], - "from": [ - "syn/extra-traits" - ], - "from_str": [], - "generate-parsing-rs": [ - "peg" - ], - "index": [], - "index_mut": [], - "into": [ - "syn/extra-traits" - ], - "into_iterator": [], - "is_variant": [ - "convert_case" - ], - "iterator": [], - "mul": [ - "syn/extra-traits" - ], - "mul_assign": [ - "syn/extra-traits" - ], - "nightly": [], - "not": [ - "syn/extra-traits" - ], - "peg": [ - "dep:peg" - ], - "rustc_version": [ - "dep:rustc_version" - ], - "sum": [], - "testing-helpers": [ - "rustc_version" - ], - "track-caller": [], - "try_into": [ - "syn/extra-traits" - ], - "unwrap": [ - "convert_case", - "rustc_version" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jelte Fennema " - ], - "categories": [ - "development-tools", - "development-tools::procedural-macro-helpers", - "no-std" - ], - "keywords": [ - "derive", - "Add", - "From", - "Display", - "IntoIterator" - ], - "readme": "README.md", - "repository": "https://github.com/JelteF/derive_more", - "homepage": null, - "documentation": "https://jeltef.github.io/derive_more/derive_more/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "derive_more", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", - "license": "MIT", - "license_file": null, - "description": "Adds #[derive(x)] macros for more traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "derive_more-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.56", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "derive_more", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deny_missing_docs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/examples/deny_missing_docs.rs", - "edition": "2021", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "add", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/add.rs", - "edition": "2021", - "required-features": [ - "add" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "add_assign", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/add_assign.rs", - "edition": "2021", - "required-features": [ - "add_assign" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "as_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/as_mut.rs", - "edition": "2021", - "required-features": [ - "as_ref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "as_ref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/as_ref.rs", - "edition": "2021", - "required-features": [ - "as_ref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "boats_display_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/boats_display_derive.rs", - "edition": "2021", - "required-features": [ - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compile_fail", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/compile_fail/mod.rs", - "edition": "2021", - "required-features": [ - "as_ref", - "debug", - "display", - "from", - "into", - "is_variant", - "try_from" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constructor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/constructor.rs", - "edition": "2021", - "required-features": [ - "constructor" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/debug.rs", - "edition": "2021", - "required-features": [ - "debug" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/deref.rs", - "edition": "2021", - "required-features": [ - "deref" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deref_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/deref_mut.rs", - "edition": "2021", - "required-features": [ - "deref_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "display", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/display.rs", - "edition": "2021", - "required-features": [ - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/error_tests.rs", - "edition": "2021", - "required-features": [ - "error" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/from.rs", - "edition": "2021", - "required-features": [ - "from" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_str", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/from_str.rs", - "edition": "2021", - "required-features": [ - "from_str" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/generics.rs", - "edition": "2021", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "index", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/index.rs", - "edition": "2021", - "required-features": [ - "index" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "index_mut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/index_mut.rs", - "edition": "2021", - "required-features": [ - "index_mut" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "into", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/into.rs", - "edition": "2021", - "required-features": [ - "into" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "into_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/into_iterator.rs", - "edition": "2021", - "required-features": [ - "into_iterator" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "is_variant", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/is_variant.rs", - "edition": "2021", - "required-features": [ - "is_variant" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/lib.rs", - "edition": "2021", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mul", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/mul.rs", - "edition": "2021", - "required-features": [ - "mul" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mul_assign", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/mul_assign.rs", - "edition": "2021", - "required-features": [ - "mul_assign" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/no_std.rs", - "edition": "2021", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "not", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/not.rs", - "edition": "2021", - "required-features": [ - "not" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sum", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/sum.rs", - "edition": "2021", - "required-features": [ - "sum" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_from.rs", - "edition": "2021", - "required-features": [ - "try_from" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_into", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_into.rs", - "edition": "2021", - "required-features": [ - "try_into" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_unwrap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/try_unwrap.rs", - "edition": "2021", - "required-features": [ - "try_unwrap" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unwrap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/tests/unwrap.rs", - "edition": "2021", - "required-features": [ - "unwrap" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "add": [ - "derive_more-impl/add" - ], - "add_assign": [ - "derive_more-impl/add_assign" - ], - "as_ref": [ - "derive_more-impl/as_ref" - ], - "constructor": [ - "derive_more-impl/constructor" - ], - "debug": [ - "derive_more-impl/debug" - ], - "default": [ - "std" - ], - "deref": [ - "derive_more-impl/deref" - ], - "deref_mut": [ - "derive_more-impl/deref_mut" - ], - "display": [ - "derive_more-impl/display" - ], - "error": [ - "derive_more-impl/error" - ], - "from": [ - "derive_more-impl/from" - ], - "from_str": [ - "derive_more-impl/from_str" - ], - "full": [ - "add", - "add_assign", - "as_ref", - "constructor", - "debug", - "deref", - "deref_mut", - "display", - "error", - "from", - "from_str", - "index", - "index_mut", - "into", - "into_iterator", - "is_variant", - "mul", - "mul_assign", - "not", - "sum", - "try_from", - "try_into", - "try_unwrap", - "unwrap" - ], - "index": [ - "derive_more-impl/index" - ], - "index_mut": [ - "derive_more-impl/index_mut" - ], - "into": [ - "derive_more-impl/into" - ], - "into_iterator": [ - "derive_more-impl/into_iterator" - ], - "is_variant": [ - "derive_more-impl/is_variant" - ], - "mul": [ - "derive_more-impl/mul" - ], - "mul_assign": [ - "derive_more-impl/mul_assign" - ], - "not": [ - "derive_more-impl/not" - ], - "std": [], - "sum": [ - "derive_more-impl/sum" - ], - "testing-helpers": [ - "derive_more-impl/testing-helpers", - "dep:rustc_version" - ], - "try_from": [ - "derive_more-impl/try_from" - ], - "try_into": [ - "derive_more-impl/try_into" - ], - "try_unwrap": [ - "derive_more-impl/try_unwrap" - ], - "unwrap": [ - "derive_more-impl/unwrap" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-1.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "full" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Jelte Fennema " - ], - "categories": [ - "development-tools", - "development-tools::procedural-macro-helpers", - "no-std", - "rust-patterns" - ], - "keywords": [ - "derive", - "Add", - "From", - "Display", - "IntoIterator" - ], - "readme": "README.md", - "repository": "https://github.com/JelteF/derive_more", - "homepage": null, - "documentation": "https://docs.rs/derive_more", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.75.0" - }, - { - "name": "derive_more-impl", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", - "license": "MIT", - "license_file": null, - "description": "Internal implementation of `derive_more` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.45", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-xid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "derive_more_impl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "add": [], - "add_assign": [], - "as_ref": [ - "syn/extra-traits", - "syn/visit" - ], - "constructor": [], - "debug": [ - "syn/extra-traits", - "dep:unicode-xid" - ], - "default": [], - "deref": [], - "deref_mut": [], - "display": [ - "syn/extra-traits", - "dep:unicode-xid" - ], - "error": [ - "syn/extra-traits" - ], - "from": [ - "syn/extra-traits" - ], - "from_str": [], - "full": [ - "add", - "add_assign", - "as_ref", - "constructor", - "debug", - "deref", - "deref_mut", - "display", - "error", - "from", - "from_str", - "index", - "index_mut", - "into", - "into_iterator", - "is_variant", - "mul", - "mul_assign", - "not", - "sum", - "try_from", - "try_into", - "try_unwrap", - "unwrap" - ], - "index": [], - "index_mut": [], - "into": [ - "syn/extra-traits" - ], - "into_iterator": [], - "is_variant": [ - "dep:convert_case" - ], - "mul": [ - "syn/extra-traits" - ], - "mul_assign": [ - "syn/extra-traits" - ], - "not": [ - "syn/extra-traits" - ], - "sum": [], - "testing-helpers": [ - "dep:rustc_version" - ], - "try_from": [], - "try_into": [ - "syn/extra-traits" - ], - "try_unwrap": [ - "dep:convert_case" - ], - "unwrap": [ - "dep:convert_case" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-1.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "full" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Jelte Fennema " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/JelteF/derive_more", - "homepage": null, - "documentation": "https://docs.rs/derive_more", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.75.0" - }, - { - "name": "digest", - "version": "0.10.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Traits for cryptographic hash functions and message authentication codes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "blobby", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "block-buffer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "const-oid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crypto-common", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "digest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "blobby": [ - "dep:blobby" - ], - "block-buffer": [ - "dep:block-buffer" - ], - "const-oid": [ - "dep:const-oid" - ], - "core-api": [ - "block-buffer" - ], - "default": [ - "core-api" - ], - "dev": [ - "blobby" - ], - "mac": [ - "subtle" - ], - "oid": [ - "const-oid" - ], - "rand_core": [ - "crypto-common/rand_core" - ], - "std": [ - "alloc", - "crypto-common/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "digest", - "crypto", - "hash" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "homepage": null, - "documentation": "https://docs.rs/digest", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "digital-cash", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "digital_cash", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/src/digital_cash.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "digital_cash_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/tests/digital_cash_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "digital_cash_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/tests/digital_cash_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Valentin Craciun" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "digital-cash-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "digital-cash", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "digital-cash-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "displaydoc", - "version": "0.2.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.24", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "displaydoc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compile_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/compile_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "happy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/happy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "num_in_field", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/num_in_field.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "variantless", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/tests/variantless.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "no-dev-version": true, - "pre-release-hook": [ - "./update-readme.sh" - ], - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "#![doc(html_root_url = \"https://docs.rs/{{crate_name}}/{{version}}\")]", - "search": "#!\\[doc\\(html_root_url.*" - }, - { - "file": "CHANGELOG.md", - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n\n# [Unreleased] - ReleaseDate", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/yaahc/{{crate_name}}/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Jane Lusby " - ], - "categories": [], - "keywords": [ - "display", - "derive" - ], - "readme": "README.md", - "repository": "https://github.com/yaahc/displaydoc", - "homepage": "https://github.com/yaahc/displaydoc", - "documentation": "https://docs.rs/displaydoc", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "dynasm", - "version": "1.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "license": "MPL-2.0", - "license_file": null, - "description": "A plugin for assembling code at runtime. Combined with the runtime crate dynasmrt it can be used to write JIT compilers easily.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro-error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.26", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "dynasm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-1.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "dynasm_extract": [], - "dynasm_opmap": [], - "filelocal": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasm-1.2.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alexander Stocko ", - "CensoredUsername " - ], - "categories": [], - "keywords": [ - "jit", - "dynasm", - "dynasmrt", - "dynasm-rs", - "assembler" - ], - "readme": "../README.md", - "repository": "https://github.com/CensoredUsername/dynasm-rs", - "homepage": null, - "documentation": "https://censoredusername.github.io/dynasm-rs/plugin/dynasm/index.html", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dynasmrt", - "version": "1.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "license": "MPL-2.0", - "license_file": null, - "description": "A simple runtime for assembling code at runtime. Combined with the plugin crate dynasm it can be used to write JIT compilers easily.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dynasm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memmap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dynasmrt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-1.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dynasmrt-1.2.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alexander Stocko ", - "CensoredUsername " - ], - "categories": [], - "keywords": [ - "jit", - "dynasm", - "dynasmrt", - "dynasm-rs", - "assembler" - ], - "readme": "../README.md", - "repository": "https://github.com/CensoredUsername/dynasm-rs", - "homepage": null, - "documentation": "https://censoredusername.github.io/dynasm-rs/plugin/dynasm/index.html", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ed25519", - "version": "2.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)\nsupport library providing signature type definitions and PKCS#8 private key\ndecoding/encoding support\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "pkcs8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "signature", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ed25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rand_core" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "ring-compat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "signature" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ed25519", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/hex.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pkcs8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/pkcs8.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "pkcs8?/alloc" - ], - "default": [ - "std" - ], - "pem": [ - "alloc", - "pkcs8/pem" - ], - "pkcs8": [ - "dep:pkcs8" - ], - "serde": [ - "dep:serde" - ], - "serde_bytes": [ - "serde", - "dep:serde_bytes" - ], - "std": [ - "pkcs8?/std", - "signature/std" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-2.2.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "curve25519", - "ecc", - "signature", - "signing" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/signatures/tree/master/ed25519", - "homepage": null, - "documentation": "https://docs.rs/ed25519", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "ed25519-dalek", - "version": "2.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", - "license": "BSD-3-Clause", - "license_file": null, - "description": "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "curve25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "digest" - ], - "target": null, - "registry": null - }, - { - "name": "ed25519", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=2.2, <2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "merlin", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "signature", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=2.0, <2.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "blake2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "curve25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "digest", - "rand_core" - ], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "x25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "static_secrets" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ed25519_dalek", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ed25519", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/ed25519.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pkcs8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/pkcs8.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "validation_criteria", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/validation_criteria.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "x25519", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/tests/x25519.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ed25519_benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/benches/ed25519_benchmarks.rs", - "edition": "2021", - "required-features": [ - "rand_core" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "curve25519-dalek/alloc", - "ed25519/alloc", - "serde?/alloc", - "zeroize/alloc" - ], - "asm": [ - "sha2/asm" - ], - "batch": [ - "alloc", - "merlin", - "rand_core" - ], - "default": [ - "fast", - "std", - "zeroize" - ], - "digest": [ - "signature/digest" - ], - "fast": [ - "curve25519-dalek/precomputed-tables" - ], - "hazmat": [], - "legacy_compatibility": [ - "curve25519-dalek/legacy_compatibility" - ], - "merlin": [ - "dep:merlin" - ], - "pem": [ - "alloc", - "ed25519/pem", - "pkcs8" - ], - "pkcs8": [ - "ed25519/pkcs8" - ], - "rand_core": [ - "dep:rand_core" - ], - "serde": [ - "dep:serde", - "ed25519/serde" - ], - "signature": [ - "dep:signature" - ], - "std": [ - "alloc", - "ed25519/std", - "serde?/std", - "sha2/std" - ], - "zeroize": [ - "dep:zeroize", - "curve25519-dalek/zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ed25519-dalek-2.1.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "batch", - "digest", - "hazmat", - "pem", - "serde" - ], - "rustdoc-args": [ - "--html-in-header", - "docs/assets/rustdoc-include-katex-header.html", - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "isis lovecruft ", - "Tony Arcieri ", - "Michael Rosenberg " - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "cryptography", - "ed25519", - "curve25519", - "signature", - "ECC" - ], - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/ed25519-dalek", - "homepage": "https://github.com/dalek-cryptography/curve25519-dalek", - "documentation": "https://docs.rs/ed25519-dalek", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "either", - "version": "1.15.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.95", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "either", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - }, - "release": { - "allow-branch": [ - "main" - ], - "sign-tag": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "data-structure", - "no_std" - ], - "readme": "README-crates.io.md", - "repository": "https://github.com/rayon-rs/either", - "homepage": null, - "documentation": "https://docs.rs/either/1/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "empty", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "empty", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/src/empty.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "empty_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/tests/empty_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "empty_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/tests/empty_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "empty-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "empty", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "empty-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "encoding_rs", - "version": "0.8.35", - "id": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", - "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", - "license_file": null, - "description": "A Gecko-oriented implementation of the Encoding Standard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "any_all_workaround", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "encoding_rs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "any_all_workaround": [ - "dep:any_all_workaround" - ], - "default": [ - "alloc" - ], - "fast-big5-hanzi-encode": [], - "fast-gb-hanzi-encode": [], - "fast-hangul-encode": [], - "fast-hanja-encode": [], - "fast-kanji-encode": [], - "fast-legacy-encode": [ - "fast-hangul-encode", - "fast-hanja-encode", - "fast-kanji-encode", - "fast-gb-hanzi-encode", - "fast-big5-hanzi-encode" - ], - "less-slow-big5-hanzi-encode": [], - "less-slow-gb-hanzi-encode": [], - "less-slow-kanji-encode": [], - "serde": [ - "dep:serde" - ], - "simd-accel": [ - "any_all_workaround" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Henri Sivonen " - ], - "categories": [ - "text-processing", - "encoding", - "web-programming", - "internationalization" - ], - "keywords": [ - "encoding", - "web", - "unicode", - "charset" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/encoding_rs", - "homepage": "https://docs.rs/encoding_rs/", - "documentation": "https://docs.rs/encoding_rs/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "endian-type", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", - "license": "MIT", - "license_file": null, - "description": "Type safe wrappers for types with a defined byte order", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "endian_type", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endian-type-0.1.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endian-type-0.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Lolirofle " - ], - "categories": [], - "keywords": [ - "endian", - "byteorder" - ], - "readme": null, - "repository": "https://github.com/Lolirofle/endian-type.git", - "homepage": "https://github.com/Lolirofle/endian-type", - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "enum-iterator", - "version": "0.7.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "license": "0BSD", - "license_file": null, - "description": "Tools to iterate over the variants of a field-less enum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "enum-iterator-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "enum_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-0.7.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-0.7.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Stephane Raux " - ], - "categories": [], - "keywords": [ - "enum", - "variants", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/stephaneyfx/enum-iterator.git", - "homepage": "https://github.com/stephaneyfx/enum-iterator", - "documentation": "https://docs.rs/enum-iterator", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "enum-iterator-derive", - "version": "0.7.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", - "license": "0BSD", - "license_file": null, - "description": "Procedural macro to iterate over the variants of a field-less enum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "enum_iterator_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-derive-0.7.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enum-iterator-derive-0.7.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Stephane Raux " - ], - "categories": [], - "keywords": [ - "enum", - "variants", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/stephaneyfx/enum-iterator.git", - "homepage": "https://github.com/stephaneyfx/enum-iterator", - "documentation": "https://docs.rs/enum-iterator-derive", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "enumset", - "version": "1.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A library for creating compact sets of enums.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "enumset_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "serde2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "i128" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "enumset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "conversions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/conversions.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ops", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/ops.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "repr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/repr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "proc-macro-crate": [ - "enumset_derive/proc-macro-crate" - ], - "serde": [ - "serde2", - "enumset_derive/serde" - ], - "serde2": [ - "dep:serde2" - ], - "std": [ - "alloc", - "enumset_derive/proc-macro-crate", - "enumset_derive/std_deprecation_warning" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset-1.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Alissa Rao " - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "enum", - "bitset" - ], - "readme": "README.md", - "repository": "https://github.com/Lymia/enumset", - "homepage": null, - "documentation": "https://docs.rs/enumset/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "enumset_derive", - "version": "0.10.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "An internal helper crate for enumset. Not public API.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "darling", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro-crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "enumset_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset_derive-0.10.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "proc-macro-crate": [ - "dep:proc-macro-crate" - ], - "serde": [], - "std_deprecation_warning": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumset_derive-0.10.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alissa Rao " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/Lymia/enumset", - "homepage": null, - "documentation": "https://lymia.moe/doc/enumset/enumset/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "env_filter", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Filter log events using environment variables\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "perf" - ], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "env_filter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-0.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "regex" - ], - "regex": [ - "dep:regex" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-0.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "logging", - "log", - "logger" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/env_logger", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "env_logger", - "version": "0.11.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A logging implementation for `log` which is configured via an environment\nvariable.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "wincon" - ], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_filter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "env_logger", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_default_format", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/custom_default_format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_format", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/custom_format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "direct_logger", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/direct_logger.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "filters_from_code", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/filters_from_code.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "in_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/in_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "syslog_friendly_format", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/examples/syslog_friendly_format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "init-twice-retains-filter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/init-twice-retains-filter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "log-in-log", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/log-in-log.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "log_tls_dtors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/log_tls_dtors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regexp_filter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/tests/regexp_filter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "auto-color": [ - "color", - "anstream/auto" - ], - "color": [ - "dep:anstream", - "dep:anstyle" - ], - "default": [ - "auto-color", - "humantime", - "regex" - ], - "humantime": [ - "dep:jiff" - ], - "kv": [ - "log/kv" - ], - "regex": [ - "env_filter/regex" - ], - "unstable-kv": [ - "kv" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "logging", - "log", - "logger" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/env_logger", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "equivalent", - "version": "1.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Traits for key comparison in maps.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "equivalent", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hashmap", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/indexmap-rs/equivalent", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.6" - }, - { - "name": "erc1155", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "erc1155-user-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc1155", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/src/erc1155.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/tests/erc1155_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/tests/erc1155_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-marketplace", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc1155", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc1155_marketplace", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155_marketplace_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/tests/erc1155_marketplace_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155_marketplace_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/tests/erc1155_marketplace_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-marketplace-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc1155-marketplace", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155-marketplace-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc1155", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-user-mock", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc1155_user_mock", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc1155-user-mock-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc1155-user-mock", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc1155-user-mock-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc20", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc20", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/src/erc20.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc20_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/tests/erc20_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "erc20_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/tests/erc20_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc20-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc20-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc721", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "erc721", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/src/erc721.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/tests/nft_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/tests/nft_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "erc721-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc721", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "erc721-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "errno", - "version": "0.3.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Cross-platform interface to the `errno` variable.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"hermit\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Diagnostics_Debug" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "errno", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.11/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "libc/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Chris Wong ", - "Dan Gohman " - ], - "categories": [ - "no-std", - "os" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/lambda-fairy/rust-errno", - "homepage": null, - "documentation": "https://docs.rs/errno", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "esdt-contract-pair", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "first-contract", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "second-contract", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract" - } - ], - "targets": [ - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "esdt-system-sc-mock", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "esdt_system_sc_mock", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/src/esdt_system_sc_mock.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_system_sc_mock_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/tests/esdt_system_sc_mock_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_system_sc_mock_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/tests/esdt_system_sc_mock_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "esdt-system-sc-mock-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "esdt-system-sc-mock-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "esdt-transfer-with-fee", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "esdt_transfer_with_fee", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/src/esdt_transfer_with_fee.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_transfer_with_fee_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/tests/esdt_transfer_with_fee_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_transfer_with_fee_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/tests/esdt_transfer_with_fee_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin Cruceat " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "esdt-transfer-with-fee-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "esdt-transfer-with-fee", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "esdt-transfer-with-fee-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "exchange-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "exchange_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/src/exchange_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "exchange_features_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/tests/exchange_features_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Alin-Marius Cruceat " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "exchange-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "exchange-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "exchange-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "factorial", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmer-experimental" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "factorial", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/src/factorial.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "factorial_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "factorial_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "factorial_scenario_rs_wasmer_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_scenario_rs_wasmer_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "factorial_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/tests/factorial_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "run-go-tests": [ - "multiversx-sc-scenario/run-go-tests" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "factorial-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "factorial", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "factorial-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "factory-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "order-book-factory", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "factory-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fallible-iterator", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Fallible iterator traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fallible_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-fallible-iterator", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fastrand", - "version": "2.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A simple and fast random number generator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wyhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "js" - ], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fastrand", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "char", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/tests/char.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/tests/smoke.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "getrandom": [ - "dep:getrandom" - ], - "js": [ - "std", - "getrandom" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Stjepan Glavina " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "simple", - "fast", - "rand", - "random", - "wyrand" - ], - "readme": "README.md", - "repository": "https://github.com/smol-rs/fastrand", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "filetime", - "version": "0.2.25", - "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Platform-agnostic accessors of timestamps in File metadata\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libredox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"redox\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.27", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "filetime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.25/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.25/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "timestamp", - "mtime" - ], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/filetime", - "homepage": "https://github.com/alexcrichton/filetime", - "documentation": "https://docs.rs/filetime", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "first-contract", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "first_contract", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "first-contract-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "first-contract", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "first-contract-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "flate2", - "version": "1.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams.\nSupports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,\nand raw deflate streams.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cloudflare-zlib-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libz-ng-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libz-rs-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "rust-allocator" - ], - "target": null, - "registry": null - }, - { - "name": "libz-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "with-alloc" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "with-alloc" - ], - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "flate2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "compress_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/compress_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decompress_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/decompress_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflatedecoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflatedecoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflatedecoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflatedecoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflateencoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflateencoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflateencoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/deflateencoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzbuilder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzbuilder.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzdecoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzdecoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzdecoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzdecoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzencoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzencoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzencoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzencoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzmultidecoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzmultidecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzmultidecoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/gzmultidecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibdecoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibdecoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibdecoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibdecoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibencoder-bufread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibencoder-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibencoder-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/examples/zlibencoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "early-flush", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/early-flush.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "empty-read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/empty-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gunzip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/gunzip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zero-write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/tests/zero-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "any_impl": [], - "any_zlib": [ - "any_impl" - ], - "cloudflare-zlib-sys": [ - "dep:cloudflare-zlib-sys" - ], - "cloudflare_zlib": [ - "any_zlib", - "cloudflare-zlib-sys" - ], - "default": [ - "rust_backend" - ], - "libz-ng-sys": [ - "dep:libz-ng-sys" - ], - "libz-rs-sys": [ - "dep:libz-rs-sys" - ], - "libz-sys": [ - "dep:libz-sys" - ], - "miniz-sys": [ - "rust_backend" - ], - "miniz_oxide": [ - "dep:miniz_oxide" - ], - "rust_backend": [ - "miniz_oxide", - "any_impl" - ], - "zlib": [ - "any_zlib", - "libz-sys" - ], - "zlib-default": [ - "any_zlib", - "libz-sys/default" - ], - "zlib-ng": [ - "any_zlib", - "libz-ng-sys" - ], - "zlib-ng-compat": [ - "zlib", - "libz-sys/zlib-ng" - ], - "zlib-rs": [ - "any_zlib", - "libz-rs-sys" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton ", - "Josh Triplett " - ], - "categories": [ - "compression", - "api-bindings" - ], - "keywords": [ - "gzip", - "deflate", - "zlib", - "zlib-ng", - "encoding" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/flate2-rs", - "homepage": "https://github.com/rust-lang/flate2-rs", - "documentation": "https://docs.rs/flate2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.67.0" - }, - { - "name": "fnv", - "version": "1.0.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "license": "Apache-2.0 / MIT", - "license_file": null, - "description": "Fowler–Noll–Vo hash function", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fnv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/servo/rust-fnv", - "homepage": null, - "documentation": "https://doc.servo.org/fnv/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "foldhash", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", - "license": "Zlib", - "license_file": null, - "description": "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "foldhash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Orson Peters " - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "hash", - "hasher", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/orlp/foldhash", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "foreign-types", - "version": "0.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A framework for Rust wrappers over C APIs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "foreign-types-shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "foreign_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/sfackler/foreign-types", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "foreign-types-shared", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "An internal crate used by foreign-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "foreign_types_shared", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/sfackler/foreign-types", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "form_urlencoded", - "version": "1.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "form_urlencoded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - } - ], - "features": { - "alloc": [ - "percent-encoding/alloc" - ], - "default": [ - "std" - ], - "std": [ - "alloc", - "percent-encoding/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "no_std" - ], - "keywords": [], - "readme": null, - "repository": "https://github.com/servo/rust-url", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.51" - }, - { - "name": "formatted-message-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "formatted_message_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/src/formatted_message_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "msg_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "msg_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "msg_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/tests/msg_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "formatted-message-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "formatted-message-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "formatted-message-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/src/forwarder_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "forwarder", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder_interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/src/interact.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/src/interactor_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "interact_cs_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/interact_cs_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "interact_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/interact_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenarios_go_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/tests/scenarios_go_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-legacy", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder_legacy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/src/forwarder_legacy_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-legacy-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "forwarder-legacy", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-legacy-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "forwarder", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-queue", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-wasm-adapter", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder_queue", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/src/forwarder_queue.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "multiversx-sc-wasm-adapter": [ - "dep:multiversx-sc-wasm-adapter" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Costin Carabas " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-queue-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "forwarder-queue", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-queue-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-raw", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "forwarder_raw", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/src/forwarder_raw.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "forwarder-raw-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "forwarder-raw", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "forwarder-raw-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fractional-nfts", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fractional_nfts", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/src/fractional_nfts.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fractional-nfts-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "fractional-nfts", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "fractional-nfts-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "funty", - "version": "2.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#funty@2.0.0", - "license": "MIT", - "license_file": null, - "description": "Trait generalization over the primitive types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "funty", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/funty-2.0.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/funty-2.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "myrrlyn " - ], - "categories": [ - "no-std", - "rust-patterns" - ], - "keywords": [ - "numerics", - "primitives", - "traits" - ], - "readme": "README.md", - "repository": "https://github.com/myrrlyn/funty", - "homepage": null, - "documentation": "https://docs.rs/funty", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "futures", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "sink" - ], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-executor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-task", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "sink" - ], - "target": null, - "registry": null - }, - { - "name": "assert_matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "_require_features", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/_require_features.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async_await_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/async_await_macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "auto_traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/auto_traits.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bilock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/bilock.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/compat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "eager_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/eager_drop.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "eventual", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/eventual.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_abortable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_abortable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_basic_combinators", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_basic_combinators.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_fuse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_fuse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_inspect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_inspect.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_join_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_join_all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_obj", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_obj.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_select_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_select_all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_select_ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_select_ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_shared", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_shared.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_try_flatten_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_try_flatten_stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_try_join_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/future_try_join_all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_buf_reader", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_buf_reader.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_buf_writer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_buf_writer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_cursor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_cursor.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_line_writer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_line_writer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_lines", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_lines.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_exact", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_exact.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_line", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_line.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_to_end", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_to_end.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_to_string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_to_string.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_until", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_read_until.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_window", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_window.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/io_write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lock_mutex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/lock_mutex.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro_comma_support", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/macro_comma_support.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "object_safety", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/object_safety.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "oneshot", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/oneshot.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ready_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/ready_queue.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "recurse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/recurse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sink", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/sink.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sink_fanout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/sink_fanout.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_abortable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_abortable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_buffer_unordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_buffer_unordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_catch_unwind", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_catch_unwind.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_futures_ordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_futures_ordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_futures_unordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_futures_unordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_into_async_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_into_async_read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_peekable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_peekable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_select_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_select_all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_select_next_some", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_select_next_some.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_split.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_try_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_try_stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_unfold", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/stream_unfold.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_arc_wake", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/task_arc_wake.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_atomic_waker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/task_atomic_waker.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/test_macro.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/tests/try_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "futures-core/alloc", - "futures-task/alloc", - "futures-sink/alloc", - "futures-channel/alloc", - "futures-util/alloc" - ], - "async-await": [ - "futures-util/async-await", - "futures-util/async-await-macro" - ], - "bilock": [ - "futures-util/bilock" - ], - "cfg-target-has-atomic": [], - "compat": [ - "std", - "futures-util/compat" - ], - "default": [ - "std", - "async-await", - "executor" - ], - "executor": [ - "std", - "futures-executor/std" - ], - "futures-executor": [ - "dep:futures-executor" - ], - "io-compat": [ - "compat", - "futures-util/io-compat" - ], - "std": [ - "alloc", - "futures-core/std", - "futures-task/std", - "futures-io/std", - "futures-sink/std", - "futures-util/std", - "futures-util/io", - "futures-util/channel" - ], - "thread-pool": [ - "executor", - "futures-executor/thread-pool" - ], - "unstable": [ - "futures-core/unstable", - "futures-task/unstable", - "futures-channel/unstable", - "futures-io/unstable", - "futures-util/unstable" - ], - "write-all-vectored": [ - "futures-util/write-all-vectored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "std", - "async-await", - "compat", - "io-compat", - "executor", - "thread-pool" - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "asynchronous" - ], - "keywords": [ - "futures", - "async", - "future" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-channel", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Channels for asynchronous communication using futures-rs.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_channel", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "channel", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/channel.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mpsc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mpsc-close", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc-close.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mpsc-size_hint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/mpsc-size_hint.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "oneshot", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/tests/oneshot.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mpsc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/benches/sync_mpsc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "futures-core/alloc" - ], - "cfg-target-has-atomic": [], - "default": [ - "std" - ], - "futures-sink": [ - "dep:futures-sink" - ], - "sink": [ - "futures-sink" - ], - "std": [ - "alloc", - "futures-core/std" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-core", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The core traits and types in for the `futures` library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "require-cas" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "cfg-target-has-atomic": [], - "default": [ - "std" - ], - "portable-atomic": [ - "dep:portable-atomic" - ], - "std": [ - "alloc" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "futures-executor", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Executors for asynchronous tasks based on the futures-rs library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-task", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_executor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "local_pool", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/tests/local_pool.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "thread_notify", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/benches/thread_notify.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "num_cpus": [ - "dep:num_cpus" - ], - "std": [ - "futures-core/std", - "futures-task/std", - "futures-util/std" - ], - "thread-pool": [ - "std", - "num_cpus" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-io", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_io", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "futures-macro", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The futures-rs procedural macro implementations.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "futures_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-sink", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The asynchronous `Sink` trait for the futures-rs library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_sink", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "futures-task", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Tools for working with tasks.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_task", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "cfg-target-has-atomic": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "futures-util", - "version": "0.3.31", - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Common utilities and extension traits for the futures-rs library.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "futures-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-task", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.25", - "kind": null, - "rename": "futures_01", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "futures_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bilock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/bilock.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_unordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/flatten_unordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "futures_unordered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/futures_unordered.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "select", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/benches/select.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "futures-core/alloc", - "futures-task/alloc" - ], - "async-await": [], - "async-await-macro": [ - "async-await", - "futures-macro" - ], - "bilock": [], - "cfg-target-has-atomic": [], - "channel": [ - "std", - "futures-channel" - ], - "compat": [ - "std", - "futures_01" - ], - "default": [ - "std", - "async-await", - "async-await-macro" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "futures-io": [ - "dep:futures-io" - ], - "futures-macro": [ - "dep:futures-macro" - ], - "futures-sink": [ - "dep:futures-sink" - ], - "futures_01": [ - "dep:futures_01" - ], - "io": [ - "std", - "futures-io", - "memchr" - ], - "io-compat": [ - "io", - "compat", - "tokio-io" - ], - "memchr": [ - "dep:memchr" - ], - "portable-atomic": [ - "futures-core/portable-atomic" - ], - "sink": [ - "futures-sink" - ], - "slab": [ - "dep:slab" - ], - "std": [ - "alloc", - "futures-core/std", - "futures-task/std", - "slab" - ], - "tokio-io": [ - "dep:tokio-io" - ], - "unstable": [ - "futures-core/unstable", - "futures-task/unstable" - ], - "write-all-vectored": [ - "io" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/futures-rs", - "homepage": "https://rust-lang.github.io/futures-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "gas-schedule-generator", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-vm", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm" - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gas_schedule_generator", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "gas-schedule-generator", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generation_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/tests/generation_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "generic-array", - "version": "0.14.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "license": "MIT", - "license_file": null, - "description": "Generic types implementing functionality of arrays", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typenum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "generic_array", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "more_lengths": [], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "zeroize" - ] - } - } - }, - "publish": null, - "authors": [ - "Bartłomiej Kamiński ", - "Aaron Trent " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "generic", - "array" - ], - "readme": "README.md", - "repository": "https://github.com/fizyk20/generic-array.git", - "homepage": null, - "documentation": "http://fizyk20.github.io/generic-array/generic_array/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "generic-array", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", - "license": "MIT", - "license_file": null, - "description": "Generic types implementing functionality of arrays", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "const-default", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "faster-hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typenum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "const-generics" - ], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "generic_array", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-1.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "const-default": [ - "dep:const-default" - ], - "faster-hex": [ - "dep:faster-hex" - ], - "internals": [], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-1.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "zeroize", - "const-default", - "alloc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "all-features": true - } - }, - "publish": null, - "authors": [ - "Bartłomiej Kamiński ", - "Aaron Trent " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "generic", - "array" - ], - "readme": "README.md", - "repository": "https://github.com/fizyk20/generic-array.git", - "homepage": null, - "documentation": "https://fizyk20.github.io/generic-array/generic_array/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.83" - }, - { - "name": "getrandom", - "version": "0.2.16", - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A small cross-platform library for retrieving random data from system source", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.62", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "getrandom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/custom.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "normal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/normal.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rdrand", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/tests/rdrand.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/benches/buffer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "custom": [], - "js": [ - "wasm-bindgen", - "js-sys" - ], - "js-sys": [ - "dep:js-sys" - ], - "linux_disable_fallback": [], - "rdrand": [], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "libc/rustc-dep-of-std", - "wasi/rustc-dep-of-std" - ], - "std": [], - "test-in-browser": [], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/Cargo.toml", - "metadata": { - "cross": { - "target": { - "x86_64-unknown-netbsd": { - "pre-build": [ - "mkdir -p /tmp/netbsd", - "curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O", - "tar -C /tmp/netbsd -xJf base.tar.xz", - "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", - "rm base.tar.xz", - "rm -rf /tmp/netbsd" - ] - } - } - }, - "docs": { - "rs": { - "features": [ - "std", - "custom" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "os", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-random/getrandom", - "homepage": null, - "documentation": "https://docs.rs/getrandom", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "getrandom", - "version": "0.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A small cross-platform library for retrieving random data from system source", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.98", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\")))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\")))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.77", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", any(target_os = \"unknown\", target_os = \"none\"), target_feature = \"atomics\"))", - "registry": null - }, - { - "name": "wasi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))", - "registry": null - }, - { - "name": "r-efi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^5.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"netbsd\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"solaris\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.154", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"vxworks\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "getrandom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/benches/buffer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "rustc-dep-of-std": [ - "dep:compiler_builtins", - "dep:core" - ], - "std": [], - "wasm_js": [ - "dep:wasm-bindgen", - "dep:js-sys" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.2/Cargo.toml", - "metadata": { - "cross": { - "target": { - "x86_64-unknown-netbsd": { - "pre-build": [ - "mkdir -p /tmp/netbsd", - "curl -fO https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.3/amd64/binary/sets/base.tar.xz", - "tar -C /tmp/netbsd -xJf base.tar.xz", - "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", - "rm base.tar.xz", - "rm -rf /tmp/netbsd" - ] - } - } - }, - "docs": { - "rs": { - "features": [ - "std" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "os", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-random/getrandom", - "homepage": null, - "documentation": "https://docs.rs/getrandom", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "gimli", - "version": "0.28.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library for reading and writing the DWARF debugging format.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fallible-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-assembler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gimli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.28.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "read-all", - "write" - ], - "endian-reader": [ - "read", - "dep:stable_deref_trait" - ], - "fallible-iterator": [ - "dep:fallible-iterator" - ], - "read": [ - "read-core" - ], - "read-all": [ - "read", - "std", - "fallible-iterator", - "endian-reader" - ], - "read-core": [], - "rustc-dep-of-std": [ - "dep:core", - "dep:alloc", - "dep:compiler_builtins" - ], - "std": [ - "fallible-iterator?/std", - "stable_deref_trait?/std" - ], - "write": [ - "dep:indexmap" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.28.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "parser-implementations" - ], - "keywords": [ - "DWARF", - "debug", - "ELF", - "eh_frame" - ], - "readme": "./README.md", - "repository": "https://github.com/gimli-rs/gimli", - "homepage": null, - "documentation": "https://docs.rs/gimli", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "gimli", - "version": "0.31.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library for reading and writing the DWARF debugging format.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fallible-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-assembler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gimli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.31.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "read-all", - "write" - ], - "endian-reader": [ - "read", - "dep:stable_deref_trait" - ], - "fallible-iterator": [ - "dep:fallible-iterator" - ], - "read": [ - "read-core" - ], - "read-all": [ - "read", - "std", - "fallible-iterator", - "endian-reader" - ], - "read-core": [], - "rustc-dep-of-std": [ - "dep:core", - "dep:alloc", - "dep:compiler_builtins" - ], - "std": [ - "fallible-iterator?/std", - "stable_deref_trait?/std" - ], - "write": [ - "dep:indexmap" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gimli-0.31.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "parser-implementations" - ], - "keywords": [ - "DWARF", - "debug", - "ELF", - "eh_frame" - ], - "readme": "README.md", - "repository": "https://github.com/gimli-rs/gimli", - "homepage": null, - "documentation": "https://docs.rs/gimli", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "glob", - "version": "0.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Support for matching file paths against Unix shell style patterns.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "glob", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "glob-std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/tests/glob-std.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "filesystem" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/glob", - "homepage": "https://github.com/rust-lang/glob", - "documentation": "https://docs.rs/glob/0.3.1", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.23.0" - }, - { - "name": "globset", - "version": "0.4.16", - "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Cross platform single glob and glob set matching. Glob set matching is the\nprocess of matching one or more glob patterns against a single candidate path\nsimultaneously, and returning all of the globs that matched.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "perf", - "syntax", - "meta", - "nfa", - "hybrid" - ], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.188", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.107", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "globset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "log" - ], - "log": [ - "dep:log" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "simd-accel": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.16/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "regex", - "glob", - "multiple", - "set", - "pattern" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "documentation": "https://docs.rs/globset", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo", - "version": "0.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A modular toolkit for Rust and WebAssembly", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo-console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-dialogs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-events", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-history", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-net", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-render", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-storage", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-timers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-worker", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-0.8.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "console": [ - "gloo-console" - ], - "default": [ - "timers", - "events", - "file", - "dialogs", - "storage", - "render", - "console", - "utils", - "history", - "worker", - "net" - ], - "dialogs": [ - "gloo-dialogs" - ], - "events": [ - "gloo-events" - ], - "file": [ - "gloo-file" - ], - "futures": [ - "timers", - "file", - "worker", - "gloo-timers/futures", - "gloo-file/futures", - "gloo-worker/futures" - ], - "gloo-console": [ - "dep:gloo-console" - ], - "gloo-dialogs": [ - "dep:gloo-dialogs" - ], - "gloo-events": [ - "dep:gloo-events" - ], - "gloo-file": [ - "dep:gloo-file" - ], - "gloo-history": [ - "dep:gloo-history" - ], - "gloo-net": [ - "dep:gloo-net" - ], - "gloo-render": [ - "dep:gloo-render" - ], - "gloo-storage": [ - "dep:gloo-storage" - ], - "gloo-timers": [ - "dep:gloo-timers" - ], - "gloo-utils": [ - "dep:gloo-utils" - ], - "gloo-worker": [ - "dep:gloo-worker" - ], - "history": [ - "gloo-history" - ], - "net": [ - "gloo-net" - ], - "render": [ - "gloo-render" - ], - "storage": [ - "gloo-storage" - ], - "timers": [ - "gloo-timers" - ], - "utils": [ - "gloo-utils" - ], - "worker": [ - "gloo-worker" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-0.8.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "docsrs" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo", - "homepage": "https://gloo-rs.web.app/", - "documentation": "https://docs.rs/gloo/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-console", - "version": "0.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with browser's console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "console", - "Document" - ], - "target": null, - "registry": null - }, - { - "name": "gloo-timers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_console", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "web", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/tests/web.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-console-0.2.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "development-tools::profiling", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/console", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": "https://docs.rs/gloo-console/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-dialogs", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with dialogs in browser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Window" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_dialogs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-dialogs-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-dialogs-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/dialogs", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-events", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with DOM event listeners", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Event", - "EventTarget", - "AddEventListenerOptions" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "HtmlElement", - "Window", - "Document", - "Element", - "MouseEvent", - "ProgressEvent" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_events", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "web", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/tests/web.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-events-0.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "web-programming", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/events", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-file", - "version": "0.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with JavaScript files and blobs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-events", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Blob", - "File", - "FileList", - "FileReader", - "HtmlInputElement", - "BlobPropertyBag", - "FilePropertyBag", - "DomException", - "Url" - ], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmbind" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": "futures_rs", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Window", - "Response" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "web", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/tests/web.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "futures": [ - "futures-channel" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "mime": [ - "dep:mime" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-file-0.2.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "futures" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/file", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-history", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Universal Session History", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo-events", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde-wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "History", - "Window", - "Location", - "Url" - ], - "target": null, - "registry": null - }, - { - "name": "gloo-timers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_history", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser_history", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/browser_history.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser_history_feat_serialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/browser_history_feat_serialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_history", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/hash_history.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_history_feat_serialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/hash_history_feat_serialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "memory_history", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/memory_history.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "memory_history_feat_serialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/memory_history_feat_serialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/tests/utils.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "query" - ], - "query": [ - "thiserror", - "serde_urlencoded" - ], - "serde_urlencoded": [ - "dep:serde_urlencoded" - ], - "thiserror": [ - "dep:thiserror" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-history-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "history", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/history", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-net", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "HTTP requests library for WASM Apps", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_net", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/tests/http.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "query", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/tests/query.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "json", - "websocket", - "http", - "eventsource" - ], - "eventsource": [ - "futures-channel", - "futures-core", - "pin-project", - "web-sys/Event", - "web-sys/EventTarget", - "web-sys/EventSource", - "web-sys/MessageEvent" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "futures-core": [ - "dep:futures-core" - ], - "futures-sink": [ - "dep:futures-sink" - ], - "http": [ - "web-sys/Headers", - "web-sys/UrlSearchParams", - "web-sys/Url", - "web-sys/Request", - "web-sys/RequestInit", - "web-sys/RequestMode", - "web-sys/Response", - "web-sys/ResponseInit", - "web-sys/ResponseType", - "web-sys/Window", - "web-sys/RequestCache", - "web-sys/RequestCredentials", - "web-sys/ObserverCallback", - "web-sys/RequestRedirect", - "web-sys/ReferrerPolicy", - "web-sys/AbortSignal", - "web-sys/ReadableStream", - "web-sys/Blob", - "web-sys/FormData", - "web-sys/WorkerGlobalScope" - ], - "json": [ - "serde", - "serde_json", - "gloo-utils/serde" - ], - "pin-project": [ - "dep:pin-project" - ], - "serde": [ - "dep:serde" - ], - "serde_json": [ - "dep:serde_json" - ], - "websocket": [ - "web-sys/WebSocket", - "web-sys/AddEventListenerOptions", - "web-sys/ErrorEvent", - "web-sys/FileReader", - "web-sys/MessageEvent", - "web-sys/ProgressEvent", - "web-sys/CloseEvent", - "web-sys/CloseEventInit", - "web-sys/BinaryType", - "web-sys/Blob", - "futures-channel", - "futures-core", - "futures-sink", - "pin-project" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.3.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group", - "Muhammad Hamza " - ], - "categories": [ - "wasm", - "web-programming::http-client", - "api-bindings" - ], - "keywords": [ - "requests", - "http", - "wasm", - "websockets" - ], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-net", - "version": "0.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "HTTP requests library for WASM Apps", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_net", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/tests/http.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "query", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/tests/query.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "json", - "websocket", - "http", - "eventsource" - ], - "eventsource": [ - "futures-channel", - "futures-core", - "pin-project", - "web-sys/Event", - "web-sys/EventTarget", - "web-sys/EventSource", - "web-sys/MessageEvent" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "futures-core": [ - "dep:futures-core" - ], - "futures-io": [ - "dep:futures-io" - ], - "futures-sink": [ - "dep:futures-sink" - ], - "http": [ - "web-sys/Headers", - "web-sys/UrlSearchParams", - "web-sys/Url", - "web-sys/Request", - "web-sys/RequestInit", - "web-sys/RequestMode", - "web-sys/Response", - "web-sys/ResponseInit", - "web-sys/ResponseType", - "web-sys/RequestCache", - "web-sys/RequestCredentials", - "web-sys/ObserverCallback", - "web-sys/RequestRedirect", - "web-sys/ReferrerPolicy", - "web-sys/AbortSignal", - "web-sys/ReadableStream", - "web-sys/Blob", - "web-sys/FormData" - ], - "io-util": [ - "futures-io" - ], - "json": [ - "serde", - "serde_json", - "gloo-utils/serde" - ], - "pin-project": [ - "dep:pin-project" - ], - "serde": [ - "dep:serde" - ], - "serde_json": [ - "dep:serde_json" - ], - "websocket": [ - "web-sys/WebSocket", - "web-sys/AddEventListenerOptions", - "web-sys/ErrorEvent", - "web-sys/FileReader", - "web-sys/MessageEvent", - "web-sys/ProgressEvent", - "web-sys/CloseEvent", - "web-sys/CloseEventInit", - "web-sys/BinaryType", - "web-sys/Blob", - "futures-channel", - "futures-core", - "futures-sink", - "pin-project" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group", - "Elina " - ], - "categories": [ - "wasm", - "web-programming::http-client", - "api-bindings" - ], - "keywords": [ - "requests", - "http", - "wasm", - "websockets" - ], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64" - }, - { - "name": "gloo-render", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with browser's requestAnimationFrame", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Window" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_render", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-render-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-render-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "storage", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/storage", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-storage", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with local and session storage in browser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Storage", - "Window" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_storage", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "local_storage", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/tests/local_storage.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "session_storage", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/tests/session_storage.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-storage-0.2.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "storage", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/storage", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-timers", - "version": "0.2.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with JavaScript timers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_timers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "node", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/tests/node.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "web", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/tests/web.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "futures": [ - "futures-core", - "futures-channel" - ], - "futures-channel": [ - "dep:futures-channel" - ], - "futures-core": [ - "dep:futures-core" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-timers-0.2.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "futures" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/timers", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-utils", - "version": "0.1.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Convenience crate for common `web_sys` features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Document", - "History", - "HtmlElement", - "Location", - "Window", - "HtmlHeadElement", - "Element" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "serde" - ], - "serde": [ - "dep:serde", - "dep:serde_json" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.1.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/utils", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "gloo-utils", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for common `web_sys` features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Document", - "History", - "HtmlElement", - "Location", - "Window", - "HtmlHeadElement", - "Element" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "serde" - ], - "serde": [ - "dep:serde", - "dep:serde_json" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/utils", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64" - }, - { - "name": "gloo-worker", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Convenience crate for working with Web Workers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anymap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Blob", - "BlobPropertyBag", - "DedicatedWorkerGlobalScope", - "MessageEvent", - "Url", - "Worker", - "WorkerOptions" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "gloo_worker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-worker-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "futures": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-worker-0.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Rust and WebAssembly Working Group" - ], - "categories": [ - "api-bindings", - "asynchronous", - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/gloo/tree/master/crates/worker", - "homepage": "https://github.com/rustwasm/gloo", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "h2", - "version": "0.4.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "license": "MIT", - "license_file": null, - "description": "An HTTP/2 client and server", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "atomic-waker", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "io-util" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "codec", - "io" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rt-multi-thread", - "macros", - "sync", - "net" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "h2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "akamai", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/akamai.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/client.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/examples/server.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/benches/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "stream": [], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "stream" - ] - } - } - }, - "publish": null, - "authors": [ - "Carl Lerche ", - "Sean McArthur " - ], - "categories": [ - "asynchronous", - "web-programming", - "network-programming" - ], - "keywords": [ - "http", - "async", - "non-blocking" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/h2", - "homepage": null, - "documentation": "https://docs.rs/h2", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "hashbrown", - "version": "0.11.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.11.2", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "A Rust port of Google's SwissTable hash map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashbrown", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hasher", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/tests/hasher.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rayon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/tests/rayon.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/tests/set.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ahash": [ - "dep:ahash" - ], - "ahash-compile-time-rng": [ - "ahash/compile-time-rng" - ], - "alloc": [ - "dep:alloc" - ], - "bumpalo": [ - "dep:bumpalo" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more" - ], - "inline-more": [], - "nightly": [], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.11.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hashbrown", - "version": "0.12.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust port of Google's SwissTable hash map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashbrown", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hasher", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/hasher.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rayon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/rayon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/tests/set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "insert_unique_unchecked", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ahash": [ - "dep:ahash" - ], - "ahash-compile-time-rng": [ - "ahash/compile-time-rng" - ], - "alloc": [ - "dep:alloc" - ], - "bumpalo": [ - "dep:bumpalo" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more" - ], - "inline-more": [], - "nightly": [], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "hashbrown", - "version": "0.14.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust port of Google's SwissTable hash map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "allocator-api2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.42", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "allocator-api2" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.42", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "validation" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashbrown", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hasher", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/hasher.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "raw", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/raw.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rayon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/rayon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/tests/set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "insert_unique_unchecked", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/benches/insert_unique_unchecked.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ahash": [ - "dep:ahash" - ], - "alloc": [ - "dep:alloc" - ], - "allocator-api2": [ - "dep:allocator-api2" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more", - "allocator-api2" - ], - "equivalent": [ - "dep:equivalent" - ], - "inline-more": [], - "nightly": [ - "allocator-api2?/nightly", - "bumpalo/allocator_api" - ], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rkyv": [ - "dep:rkyv" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "hashbrown", - "version": "0.15.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust port of Google's SwissTable hash map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "allocator-api2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "foldhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "allocator-api2" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashbrown", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hasher", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/hasher.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rayon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/rayon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/tests/set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "insert_unique_unchecked", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/insert_unique_unchecked.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "set_ops", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/benches/set_ops.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "dep:alloc" - ], - "allocator-api2": [ - "dep:allocator-api2" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "default-hasher", - "inline-more", - "allocator-api2", - "equivalent", - "raw-entry" - ], - "default-hasher": [ - "dep:foldhash" - ], - "equivalent": [ - "dep:equivalent" - ], - "inline-more": [], - "nightly": [ - "allocator-api2?/nightly", - "bumpalo/allocator_api" - ], - "raw-entry": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api", - "raw-entry" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw-entry" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "heck", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "heck is a case conversion library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "heck", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "no-std" - ], - "keywords": [ - "string", - "case", - "camel", - "snake", - "unicode" - ], - "readme": "README.md", - "repository": "https://github.com/withoutboats/heck", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "hex", - "version": "0.4.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Encoding and decoding data into/from hexadecimal representation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "faster-hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version-sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "version-number", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/tests/version-number.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "hex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/benches/hex.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "KokaKiwi " - ], - "categories": [ - "encoding", - "no-std" - ], - "keywords": [ - "no_std", - "hex" - ], - "readme": "README.md", - "repository": "https://github.com/KokaKiwi/rust-hex", - "homepage": null, - "documentation": "https://docs.rs/hex/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hex-conservative", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", - "license": "CC0-1.0", - "license_file": null, - "description": "A hex encoding and decoding crate with a conservative MSRV and dependency policy.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "core2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hex_conservative", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/custom.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hexy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/hexy.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "wrap_array_display_hex_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/wrap_array_display_hex_trait.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "wrap_array_fmt_traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/examples/wrap_array_fmt_traits.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "core2": [ - "dep:core2" - ], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-conservative-0.1.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Poelstra " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "encoding", - "hex", - "hexadecimal" - ], - "readme": "README.md", - "repository": "https://github.com/rust-bitcoin/hex-conservative", - "homepage": null, - "documentation": "https://docs.rs/hex-conservative/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hex-literal", - "version": "0.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Macro for converting hexadecimal string to a byte array at compile time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hex_literal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/tests/basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-literal-0.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [], - "keywords": [ - "hex", - "literals" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/hex-literal", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "hmac", - "version": "0.12.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Generic implementation of Hash-based Message Authentication Code (HMAC)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "mac" - ], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "md-5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha-1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "streebog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hmac", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "reset": [], - "std": [ - "digest/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "mac", - "hmac", - "digest" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/MACs", - "homepage": null, - "documentation": "https://docs.rs/hmac", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "home", - "version": "0.5.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Shared definitions of home directories.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_UI_Shell", - "Win32_System_Com" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "home", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Brian Anderson " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/cargo", - "homepage": "https://github.com/rust-lang/cargo", - "documentation": "https://docs.rs/home", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "http", - "version": "0.2.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A set of types for representing HTTP requests and responses.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "<=1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "seahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "header_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/header_map.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "header_map_fuzz", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/header_map_fuzz.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "status_code", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/tests/status_code.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton ", - "Carl Lerche ", - "Sean McArthur " - ], - "categories": [ - "web-programming" - ], - "keywords": [ - "http" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/http", - "homepage": null, - "documentation": "https://docs.rs/http", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.49.0" - }, - { - "name": "http", - "version": "1.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A set of types for representing HTTP requests and responses.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "header_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/header_map.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "header_map_fuzz", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/header_map_fuzz.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "status_code", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/tests/status_code.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton ", - "Carl Lerche ", - "Sean McArthur " - ], - "categories": [ - "web-programming" - ], - "keywords": [ - "http" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/http", - "homepage": null, - "documentation": "https://docs.rs/http", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.49.0" - }, - { - "name": "http-body", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "license": "MIT", - "license_file": null, - "description": "Trait representing an asynchronous, streaming, HTTP request or response body.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "http_body", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "is_end_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/tests/is_end_stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Carl Lerche ", - "Lucio Franco ", - "Sean McArthur " - ], - "categories": [ - "web-programming" - ], - "keywords": [ - "http" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/http-body", - "homepage": null, - "documentation": "https://docs.rs/http-body", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.49" - }, - { - "name": "http-body-util", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Combinators and adapters for HTTP request or response bodies.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "rt", - "sync", - "rt-multi-thread" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "http_body_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "channel": [ - "dep:tokio" - ], - "default": [], - "full": [ - "channel" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Carl Lerche ", - "Lucio Franco ", - "Sean McArthur " - ], - "categories": [ - "web-programming" - ], - "keywords": [ - "http" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/http-body", - "homepage": null, - "documentation": "https://docs.rs/http-body-util", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "httparse", - "version": "1.10.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "httparse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uri", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/tests/uri.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/benches/parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "network-programming", - "no-std", - "parser-implementations", - "web-programming" - ], - "keywords": [ - "http", - "parser", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/httparse", - "homepage": null, - "documentation": "https://docs.rs/httparse", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hyper", - "version": "1.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "license": "MIT", - "license_file": null, - "description": "A protective and efficient HTTP library for all.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "h2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "httparse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "httpdate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "const_generics", - "const_new" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "want", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "form_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sink" - ], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "sink" - ], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "spmc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fs", - "macros", - "net", - "io-std", - "io-util", - "rt", - "rt-multi-thread", - "sync", - "time", - "test-util" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hyper", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.6.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "capi": [], - "client": [ - "dep:want", - "dep:pin-project-lite", - "dep:smallvec" - ], - "default": [], - "ffi": [ - "dep:http-body-util", - "futures-util?/alloc" - ], - "full": [ - "client", - "http1", - "http2", - "server" - ], - "http1": [ - "dep:futures-channel", - "dep:futures-util", - "dep:httparse", - "dep:itoa" - ], - "http2": [ - "dep:futures-channel", - "dep:futures-util", - "dep:h2" - ], - "nightly": [], - "server": [ - "dep:httpdate", - "dep:pin-project-lite", - "dep:smallvec" - ], - "tracing": [ - "dep:tracing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.6.0/Cargo.toml", - "metadata": { - "capi": { - "header": { - "generation": false, - "subdirectory": false - }, - "install": { - "include": { - "asset": [ - { - "from": "capi/include/hyper.h" - } - ] - } - } - }, - "docs": { - "rs": { - "features": [ - "ffi", - "full", - "tracing" - ], - "rustdoc-args": [ - "--cfg", - "hyper_unstable_ffi", - "--cfg", - "hyper_unstable_tracing" - ] - } - }, - "playground": { - "features": [ - "full" - ] - } - }, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "network-programming", - "web-programming::http-client", - "web-programming::http-server" - ], - "keywords": [ - "http", - "hyper", - "hyperium" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/hyper", - "homepage": "https://hyper.rs", - "documentation": "https://docs.rs/hyper", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "hyper-rustls", - "version": "0.27.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", - "license": "Apache-2.0 OR ISC OR MIT", - "license_file": null, - "description": "Rustls+hyper integration for pure rust HTTPS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "client-legacy", - "tokio" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-native-certs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-platform-verifier", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "server-auto" - ], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "tls12" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pemfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "io-std", - "macros", - "net", - "rt-multi-thread" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hyper_rustls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/examples/client.rs", - "edition": "2021", - "required-features": [ - "native-tokio", - "http1" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/examples/server.rs", - "edition": "2021", - "required-features": [ - "aws-lc-rs" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "aws-lc-rs": [ - "rustls/aws_lc_rs" - ], - "default": [ - "native-tokio", - "http1", - "tls12", - "logging", - "aws-lc-rs" - ], - "fips": [ - "aws-lc-rs", - "rustls/fips" - ], - "http1": [ - "hyper-util/http1" - ], - "http2": [ - "hyper-util/http2" - ], - "log": [ - "dep:log" - ], - "logging": [ - "log", - "tokio-rustls/logging", - "rustls/logging" - ], - "native-tokio": [ - "rustls-native-certs" - ], - "ring": [ - "rustls/ring" - ], - "rustls-native-certs": [ - "dep:rustls-native-certs" - ], - "rustls-platform-verifier": [ - "dep:rustls-platform-verifier" - ], - "tls12": [ - "tokio-rustls/tls12", - "rustls/tls12" - ], - "webpki-roots": [ - "dep:webpki-roots" - ], - "webpki-tokio": [ - "webpki-roots" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "http1", - "http2", - "logging", - "native-tokio", - "ring", - "rustls-platform-verifier", - "tls12", - "webpki-tokio" - ], - "no-default-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/hyper-rustls", - "homepage": "https://github.com/rustls/hyper-rustls", - "documentation": "https://docs.rs/hyper-rustls/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "hyper-tls", - "version": "0.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Default TLS implementation for use with hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "client-legacy", - "tokio" - ], - "target": null, - "registry": null - }, - { - "name": "native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "http1" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "io-std", - "macros", - "io-util" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hyper_tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/examples/client.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alpn": [ - "native-tls/alpn" - ], - "vendored": [ - "native-tls/vendored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [], - "keywords": [ - "hyper", - "tls", - "http", - "https", - "ssl" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/hyper-tls", - "homepage": "https://hyper.rs", - "documentation": "https://docs.rs/hyper-tls", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "hyper-util", - "version": "0.1.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "license": "MIT", - "license_file": null, - "description": "hyper utilities", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.16", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "socket2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "all" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "pretty_env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "test-util", - "signal" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pnet_datalink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.35.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"linux\", target_os = \"macos\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hyper_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/client.rs", - "edition": "2021", - "required-features": [ - "client-legacy", - "http1", - "tokio" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/server.rs", - "edition": "2021", - "required-features": [ - "server", - "http1", - "tokio" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "server_graceful", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/examples/server_graceful.rs", - "edition": "2021", - "required-features": [ - "tokio", - "server-graceful", - "server-auto" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "legacy_client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/tests/legacy_client.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__internal_happy_eyeballs_tests": [], - "client": [ - "hyper/client", - "dep:tracing", - "dep:futures-channel", - "dep:tower-service" - ], - "client-legacy": [ - "client", - "dep:socket2", - "tokio/sync", - "dep:libc" - ], - "default": [], - "full": [ - "client", - "client-legacy", - "server", - "server-auto", - "server-graceful", - "service", - "http1", - "http2", - "tokio", - "tracing" - ], - "http1": [ - "hyper/http1" - ], - "http2": [ - "hyper/http2" - ], - "server": [ - "hyper/server" - ], - "server-auto": [ - "server", - "http1", - "http2" - ], - "server-graceful": [ - "server", - "tokio/sync", - "futures-util/alloc" - ], - "service": [ - "dep:tower-service" - ], - "tokio": [ - "dep:tokio", - "tokio/net", - "tokio/rt", - "tokio/time" - ], - "tracing": [ - "dep:tracing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "full" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "network-programming", - "web-programming::http-client", - "web-programming::http-server" - ], - "keywords": [ - "http", - "hyper", - "hyperium" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/hyper-util", - "homepage": "https://hyper.rs", - "documentation": "https://docs.rs/hyper-util", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "iana-time-zone", - "version": "0.1.63", - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "get the IANA time zone for the current system", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "chrono-tz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.66", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.89", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.46", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "android_system_properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"android\")", - "registry": null - }, - { - "name": "iana-time-zone-haiku", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"haiku\")", - "registry": null - }, - { - "name": "windows-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.56, <=0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"windows\")", - "registry": null - }, - { - "name": "core-foundation-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "iana_time_zone", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_timezone", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/get_timezone.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_timezone_loop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/get_timezone_loop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stress-test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/examples/stress-test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "fallback": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.63/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Straw ", - "René Kijewski ", - "Ryan Lopopolo " - ], - "categories": [ - "date-and-time", - "internationalization", - "os" - ], - "keywords": [ - "IANA", - "time" - ], - "readme": "README.md", - "repository": "https://github.com/strawlab/iana-time-zone", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.62.0" - }, - { - "name": "icu_collections", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Collection of API for use in ICU libraries.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive", - "yoke" - ], - "target": null, - "registry": null - }, - { - "name": "iai", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_collections", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "unicode_bmp_blocks_selector", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/examples/unicode_bmp_blocks_selector.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "char16trie", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/tests/char16trie.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cpt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/tests/cpt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "codepointtrie", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/codepointtrie.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iai_cpt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/iai_cpt.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "inv_list", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/benches/inv_list.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "databake": [ - "dep:databake", - "zerovec/databake" - ], - "serde": [ - "dep:serde", - "zerovec/serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_locid", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "API for managing Unicode Language and Locale Identifiers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "litemap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "writeable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "iai", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_locid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "filter_langids", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/examples/filter_langids.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "syntatically_canonicalize_locales", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/examples/syntatically_canonicalize_locales.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "langid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/tests/langid.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "locale", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/tests/locale.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iai_langid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/iai_langid.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "langid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/langid.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "locale", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/locale.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "subtags", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/benches/subtags.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [ - "serde" - ], - "databake": [ - "dep:databake" - ], - "serde": [ - "dep:serde", - "tinystr/serde" - ], - "std": [], - "zerovec": [ - "dep:zerovec" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_locid_transform", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "API for Unicode Language and Locale Identifiers canonicalization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_locid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "zerovec" - ], - "target": null, - "registry": null - }, - { - "name": "icu_locid_transform_data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "zerovec" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "yoke" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_locid_transform", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "locale_canonicalizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/tests/locale_canonicalizer.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "locale_canonicalizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/benches/locale_canonicalizer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [ - "serde" - ], - "compiled_data": [ - "dep:icu_locid_transform_data" - ], - "datagen": [ - "serde", - "dep:databake", - "zerovec/databake", - "icu_locid/databake", - "tinystr/databake" - ], - "default": [ - "compiled_data" - ], - "serde": [ - "dep:serde", - "icu_locid/serde", - "tinystr/serde", - "zerovec/serde", - "icu_provider/serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ], - "skip_optional_dependencies": true - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_locid_transform_data", - "version": "1.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", - "license": "Unicode-3.0", - "license_file": null, - "description": "Data for the icu_locid_transform crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_locid_transform_data", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locid_transform_data-1.5.1/Cargo.toml", - "metadata": { - "sources": { - "cldr": { - "tagged": "46.0.0-BETA2" - }, - "icuexport": { - "tagged": "icu4x/2024-05-16/75.x" - }, - "segmenter_lstm": { - "tagged": "v0.1.0" - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_normalizer", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "API for normalizing text into Unicode Normalization Forms", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_collections", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_normalizer_data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf16_iter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf8_iter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "write16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arraystring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "atoi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "detone", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "write16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "arrayvec" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_normalizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "canonical_composition", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/canonical_composition.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "canonical_decomposition", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/canonical_decomposition.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "composing_normalizer_nfc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/composing_normalizer_nfc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "composing_normalizer_nfkc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/composing_normalizer_nfkc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "decomposing_normalizer_nfd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "decomposing_normalizer_nfkd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfkd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiled_data": [ - "dep:icu_normalizer_data", - "icu_properties/compiled_data" - ], - "datagen": [ - "serde", - "dep:databake", - "icu_collections/databake", - "zerovec/databake", - "icu_properties/datagen" - ], - "default": [ - "compiled_data" - ], - "experimental": [], - "serde": [ - "dep:serde", - "icu_collections/serde", - "zerovec/serde", - "icu_properties/serde" - ], - "std": [ - "icu_collections/std", - "icu_properties/std", - "icu_provider/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-1.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_normalizer_data", - "version": "1.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", - "license": "Unicode-3.0", - "license_file": null, - "description": "Data for the icu_normalizer crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_normalizer_data", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-1.5.1/Cargo.toml", - "metadata": { - "sources": { - "cldr": { - "tagged": "46.0.0-BETA2" - }, - "icuexport": { - "tagged": "icu4x/2024-05-16/75.x" - }, - "segmenter_lstm": { - "tagged": "v0.1.0" - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_properties", - "version": "1.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "license": "Unicode-3.0", - "license_file": null, - "description": "Definitions for Unicode properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_collections", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_locid_transform", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "compiled_data" - ], - "target": null, - "registry": null - }, - { - "name": "icu_properties_data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "zerovec" - ], - "target": null, - "registry": null - }, - { - "name": "unicode-bidi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_properties", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-1.5.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bidi": [ - "dep:unicode-bidi" - ], - "compiled_data": [ - "dep:icu_properties_data", - "dep:icu_locid_transform" - ], - "datagen": [ - "serde", - "dep:databake", - "zerovec/databake", - "icu_collections/databake", - "tinystr/databake" - ], - "default": [ - "compiled_data" - ], - "serde": [ - "dep:serde", - "tinystr/serde", - "zerovec/serde", - "icu_collections/serde", - "icu_provider/serde" - ], - "std": [ - "icu_collections/std", - "icu_provider/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-1.5.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_properties_data", - "version": "1.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", - "license": "Unicode-3.0", - "license_file": null, - "description": "Data for the icu_properties crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_properties_data", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-1.5.1/Cargo.toml", - "metadata": { - "sources": { - "cldr": { - "tagged": "46.0.0-BETA2" - }, - "icuexport": { - "tagged": "icu4x/2024-05-16/75.x" - }, - "segmenter_lstm": { - "tagged": "v0.1.0" - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_provider", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Trait and struct definitions for the ICU data provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "erased-serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "icu_locid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "writeable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_provider", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "data_locale_bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/benches/data_locale_bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "datagen": [ - "serde", - "dep:erased-serde", - "dep:databake", - "std", - "sync" - ], - "deserialize_bincode_1": [ - "serde", - "dep:bincode", - "std" - ], - "deserialize_json": [ - "serde", - "dep:serde_json" - ], - "deserialize_postcard_1": [ - "serde", - "dep:postcard" - ], - "experimental": [], - "log_error_context": [ - "logging" - ], - "logging": [ - "dep:log" - ], - "macros": [ - "dep:icu_provider_macros" - ], - "serde": [ - "dep:serde", - "yoke/serde" - ], - "std": [ - "icu_locid/std" - ], - "sync": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "macros" - ], - "max_combination_size": 3 - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_provider_macros", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Proc macros for ICU data providers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "icu_provider_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider_macros-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider_macros-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "ident_case", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Utility for applying case rules to Rust identifiers.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ident_case", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ident_case-1.0.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ident_case-1.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/TedDriggs/ident_case", - "homepage": null, - "documentation": "https://docs.rs/ident_case/1.0.1", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "idna", - "version": "1.0.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "idna_adapter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "const_generics" - ], - "target": null, - "registry": null - }, - { - "name": "utf8_iter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "assert_matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tester", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "idna", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/unit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unitbis", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/tests/unitbis.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/benches/all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "compiled_data": [ - "idna_adapter/compiled_data" - ], - "default": [ - "std", - "compiled_data" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [], - "keywords": [ - "no_std", - "web", - "http" - ], - "readme": "README.md", - "repository": "https://github.com/servo/rust-url/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "idna_adapter", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Back end adapter for idna", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "icu_normalizer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "idna_adapter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "compiled_data": [ - "icu_normalizer/compiled_data", - "icu_properties/compiled_data" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "no-std", - "internationalization" - ], - "keywords": [ - "unicode", - "dns", - "idna" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/idna_adapter", - "homepage": "https://docs.rs/crate/idna_adapter/latest", - "documentation": "https://docs.rs/idna_adapter/latest/idna_adapter/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67.0" - }, - { - "name": "ignore", - "version": "0.4.23", - "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "A fast library for efficiently matching ignore files such as `.gitignore`\nagainst file paths.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "globset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "perf", - "syntax", - "meta", - "nfa", - "hybrid", - "dfa-onepass" - ], - "target": null, - "registry": null - }, - { - "name": "same-file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "crossbeam-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ignore", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "walk", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/examples/walk.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gitignore_matched_path_or_any_parents_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/tests/gitignore_matched_path_or_any_parents_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "simd-accel": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ignore-0.4.23/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "glob", - "ignore", - "gitignore", - "pattern", - "file" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "documentation": "https://docs.rs/ignore", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "implicit-clone", - "version": "0.3.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Immutable types and ImplicitClone trait similar to Copy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "implicit_clone", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/implicit-clone-0.3.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "indexmap": [ - "dep:indexmap" - ], - "map": [ - "indexmap" - ], - "serde": [ - "dep:serde", - "indexmap/serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/implicit-clone-0.3.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Cecile Tonglet " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "immutable", - "cheap-clone", - "copy", - "rc" - ], - "readme": "README.md", - "repository": "https://github.com/yewstack/implicit-clone", - "homepage": "https://github.com/yewstack/implicit-clone", - "documentation": "https://docs.rs/implicit-clone", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "indexmap", - "version": "1.9.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A hash table with consistent order and fast iteration.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "raw" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": "rustc-rayon", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "indexmap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_full_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/macros_full_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/quick.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "faststring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/benches/faststring.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "rustc-rayon": [ - "dep:rustc-rayon" - ], - "serde": [ - "dep:serde" - ], - "serde-1": [ - "serde" - ], - "std": [], - "test_debug": [], - "test_low_transition_point": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-1.9.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "quickcheck", - "serde-1", - "rayon" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hashmap", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/bluss/indexmap", - "homepage": null, - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "indexmap", - "version": "2.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A hash table with consistent order and fast iteration.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "indexmap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_full_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/macros_full_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/quick.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "faststring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/benches/faststring.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "borsh": [ - "dep:borsh" - ], - "default": [ - "std" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "test_debug": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.9.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "quickcheck", - "serde", - "borsh", - "rayon" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "allow-branch": [ - "main" - ], - "sign-tag": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hashmap", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/indexmap-rs/indexmap", - "homepage": null, - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "inout", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Custom reference types for code generic over in-place and buffer-to-buffer modes of operation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "block-padding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "inout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "block-padding": [ - "dep:block-padding" - ], - "std": [ - "block-padding/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [], - "keywords": [ - "custom-reference" - ], - "readme": null, - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/inout", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact/src/comp_interact_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Costin Carabas " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ipnet", - "version": "2.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "heapless", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "serde", - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ipnet", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "heapless": [ - "dep:heapless" - ], - "json": [ - "serde", - "schemars" - ], - "schemars": [ - "dep:schemars" - ], - "ser_as_str": [ - "heapless" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Kris Price " - ], - "categories": [ - "network-programming" - ], - "keywords": [ - "IP", - "CIDR", - "network", - "prefix", - "subnet" - ], - "readme": "README.md", - "repository": "https://github.com/krisprice/ipnet", - "homepage": null, - "documentation": "https://docs.rs/ipnet", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "is_terminal_polyfill", - "version": "1.70.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Polyfill for `is_terminal` stdlib feature for use with older MSRVs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "is_terminal_polyfill", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/polyfill-rs/is_terminal_polyfill/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/polyfill-rs/is_terminal_polyfill", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70.0" - }, - { - "name": "itertools", - "version": "0.13.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "permutohedron", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "itertools", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iris", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/examples/iris.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adaptors_no_collect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/adaptors_no_collect.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/flatten_ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "laziness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/laziness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_hygiene", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/macros_hygiene.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "merge_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/merge_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "peeking_take_while", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/peeking_take_while.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/quick.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/test_core.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/test_std.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/tests/zip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench1", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/bench1.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations_with_replacement", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/combinations_with_replacement.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "fold_specialization", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/fold_specialization.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "powerset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/powerset.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tree_reduce", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tree_reduce.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuple_combinations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tuple_combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/benches/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "use_std" - ], - "use_alloc": [], - "use_std": [ - "use_alloc", - "either/use_std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.13.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "algorithms", - "rust-patterns", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "iterator", - "data-structure", - "zip", - "product" - ], - "readme": "README.md", - "repository": "https://github.com/rust-itertools/itertools", - "homepage": null, - "documentation": "https://docs.rs/itertools/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.43.1" - }, - { - "name": "itertools", - "version": "0.14.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "permutohedron", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "itertools", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iris", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/examples/iris.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adaptors_no_collect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/adaptors_no_collect.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/flatten_ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "laziness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/laziness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_hygiene", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/macros_hygiene.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "merge_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/merge_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "peeking_take_while", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/peeking_take_while.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/quick.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/test_core.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/test_std.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/tests/zip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench1", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/bench1.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations_with_replacement", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/combinations_with_replacement.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "fold_specialization", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/fold_specialization.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "k_smallest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/k_smallest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "powerset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/powerset.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tree_reduce", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tree_reduce.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuple_combinations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tuple_combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/benches/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "use_std" - ], - "use_alloc": [], - "use_std": [ - "use_alloc", - "either/use_std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "algorithms", - "rust-patterns", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "iterator", - "data-structure", - "zip", - "product" - ], - "readme": "README.md", - "repository": "https://github.com/rust-itertools/itertools", - "homepage": null, - "documentation": "https://docs.rs/itertools/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "itoa", - "version": "1.0.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Fast integer primitive to string conversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "itoa", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "no-panic": [ - "dep:no-panic" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "integer" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/itoa", - "homepage": null, - "documentation": "https://docs.rs/itoa", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "jiff", - "version": "0.2.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "A date-time library that encourages you to jump into the pit of success.\n\nThis library is heavily inspired by the Temporal project.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "jiff-static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jiff-tzdb", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.21", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.203", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.38", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "chrono-tz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "humantime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.39.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.203", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.117", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_yaml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.34", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tabwriter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.36", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "local-offset", - "macros", - "parsing" - ], - "target": null, - "registry": null - }, - { - "name": "tzfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.50", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.70", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "jiff-static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - }, - { - "name": "jiff-tzdb-platform", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(any(windows, target_family = \"wasm\"))", - "registry": null - }, - { - "name": "hifitime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(target_has_atomic = \"ptr\"))", - "registry": null - }, - { - "name": "portable-atomic-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(target_has_atomic = \"ptr\"))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52.0, <=0.59", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "Win32_Foundation", - "Win32_System_Time" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "jiff", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "serde?/alloc", - "portable-atomic-util/alloc" - ], - "default": [ - "std", - "tz-system", - "tz-fat", - "tzdb-bundle-platform", - "tzdb-zoneinfo", - "tzdb-concatenated", - "perf-inline" - ], - "js": [ - "dep:wasm-bindgen", - "dep:js-sys" - ], - "logging": [ - "dep:log" - ], - "perf-inline": [], - "serde": [ - "dep:serde" - ], - "static": [ - "static-tz", - "jiff-static?/tzdb" - ], - "static-tz": [ - "dep:jiff-static" - ], - "std": [ - "alloc", - "log?/std", - "serde?/std" - ], - "tz-fat": [ - "jiff-static?/tz-fat" - ], - "tz-system": [ - "std", - "dep:windows-sys" - ], - "tzdb-bundle-always": [ - "dep:jiff-tzdb", - "alloc" - ], - "tzdb-bundle-platform": [ - "dep:jiff-tzdb-platform", - "alloc" - ], - "tzdb-concatenated": [ - "std" - ], - "tzdb-zoneinfo": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "date-and-time", - "no-std" - ], - "keywords": [ - "date", - "time", - "calendar", - "zone", - "duration" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/jiff", - "homepage": null, - "documentation": "https://docs.rs/jiff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "js-sys", - "version": "0.3.77", - "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bindings for all JS global objects and functions in all JS environments like\nNode.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "js_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.77/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "wasm-bindgen/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.77/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/js-sys", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "keccak", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Pure Rust implementation of the Keccak sponge function including the keccak-f\nand keccak-p variants\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cpufeatures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"aarch64\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "keccak", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/benches/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "asm": [], - "no_unroll": [], - "simd": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/keccak-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "sponge", - "keccak", - "keccak-f", - "keccak-p" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/sponges/tree/master/keccak", - "homepage": null, - "documentation": "https://docs.rs/keccak", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "random", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kitty", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-auction", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" - }, - { - "name": "kitty-ownership", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kitty_auction", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_auction_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/tests/kitty_auction_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_auction_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/tests/kitty_auction_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-auction-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty-auction", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "kitty-auction-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-genetic-alg", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "random", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kitty_genetic_alg", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_genetic_alg_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/tests/kitty_genetic_alg_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_genetic_alg_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/tests/kitty_genetic_alg_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-genetic-alg-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty-genetic-alg", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "kitty-genetic-alg-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-ownership", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty" - }, - { - "name": "kitty-genetic-alg", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "random", - "source": null, - "req": "^0.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kitty_ownership", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_ownership_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/tests/kitty_ownership_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "kitty_ownership_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/tests/kitty_ownership_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kitty-ownership-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "kitty-ownership", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "kitty-ownership-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "large-storage", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "large_storage", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/src/large_storage.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "large_storage_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/tests/large_storage_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "large_storage_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/tests/large_storage_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "large-storage-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "large-storage", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "large-storage-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lazy_static", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A macro for declaring lazily evaluated statics in Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "spin", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "once" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lazy_static", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "mutex_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/examples/mutex_map.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/no_std.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/test.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ui", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/tests/ui.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "spin": [ - "dep:spin" - ], - "spin_no_std": [ - "spin" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Marvin Löbel " - ], - "categories": [ - "no-std", - "rust-patterns", - "memory-management" - ], - "keywords": [ - "macro", - "lazy", - "static" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/lazy-static.rs", - "homepage": null, - "documentation": "https://docs.rs/lazy_static", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "leb128", - "version": "0.2.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "Read and write DWARF's \"Little Endian Base 128\" (LEB128) variable length integer encoding.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "leb128", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "leb128-repl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/src/bin/leb128-repl.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quickchecks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/tests/quickchecks.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "nightly": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128-0.2.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nick Fitzgerald ", - "Philip Craig " - ], - "categories": [], - "keywords": [ - "LEB128", - "DWARF", - "variable", - "length", - "encoding" - ], - "readme": "./README.md", - "repository": "https://github.com/gimli-rs/leb128", - "homepage": null, - "documentation": "https://docs.rs/leb128", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "leb128fmt", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library to encode and decode LEB128 compressed integers.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "leb128fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128fmt-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leb128fmt-0.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Bryant Luk " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc", - "compression", - "parser-implementations" - ], - "keywords": [ - "leb128", - "encoding", - "no_std", - "compression" - ], - "readme": "README.md", - "repository": "https://github.com/bluk/leb128fmt", - "homepage": null, - "documentation": "https://docs.rs/leb128fmt", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "libc", - "version": "0.2.172", - "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Raw FFI bindings to platform libraries like libc.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "const_fn", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/tests/const_fn.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "align": [], - "const-extern-fn": [], - "default": [ - "std" - ], - "extra_traits": [], - "rustc-dep-of-std": [ - "align", - "rustc-std-workspace-core" - ], - "rustc-std-workspace-core": [ - "dep:rustc-std-workspace-core" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zbuild-std=core" - ], - "default-target": "x86_64-unknown-linux-gnu", - "features": [ - "extra_traits" - ], - "targets": [ - "aarch64-apple-darwin", - "aarch64-apple-ios", - "aarch64-linux-android", - "aarch64-pc-windows-msvc", - "aarch64-unknown-freebsd", - "aarch64-unknown-fuchsia", - "aarch64-unknown-hermit", - "aarch64-unknown-linux-gnu", - "aarch64-unknown-linux-musl", - "aarch64-unknown-netbsd", - "aarch64-unknown-openbsd", - "aarch64-wrs-vxworks", - "arm-linux-androideabi", - "arm-unknown-linux-gnueabi", - "arm-unknown-linux-gnueabihf", - "arm-unknown-linux-musleabi", - "arm-unknown-linux-musleabihf", - "armebv7r-none-eabi", - "armebv7r-none-eabihf", - "armv5te-unknown-linux-gnueabi", - "armv5te-unknown-linux-musleabi", - "armv7-linux-androideabi", - "armv7-unknown-linux-gnueabihf", - "armv7-unknown-linux-musleabihf", - "armv7-wrs-vxworks-eabihf", - "armv7r-none-eabi", - "armv7r-none-eabihf", - "i586-unknown-linux-gnu", - "i586-unknown-linux-musl", - "i686-linux-android", - "i686-pc-windows-gnu", - "i686-pc-windows-msvc", - "i686-pc-windows-msvc", - "i686-unknown-freebsd", - "i686-unknown-haiku", - "i686-unknown-linux-gnu", - "i686-unknown-linux-musl", - "i686-unknown-netbsd", - "i686-unknown-openbsd", - "i686-wrs-vxworks", - "mips-unknown-linux-gnu", - "mips-unknown-linux-musl", - "mips64-unknown-linux-gnuabi64", - "mips64-unknown-linux-muslabi64", - "mips64el-unknown-linux-gnuabi64", - "mips64el-unknown-linux-muslabi64", - "mipsel-sony-psp", - "mipsel-unknown-linux-gnu", - "mipsel-unknown-linux-musl", - "nvptx64-nvidia-cuda", - "powerpc-unknown-linux-gnu", - "powerpc-unknown-linux-gnuspe", - "powerpc-unknown-netbsd", - "powerpc-wrs-vxworks", - "powerpc-wrs-vxworks-spe", - "powerpc64-unknown-freebsd", - "powerpc64-unknown-linux-gnu", - "powerpc64-wrs-vxworks", - "powerpc64le-unknown-linux-gnu", - "riscv32gc-unknown-linux-gnu", - "riscv32i-unknown-none-elf", - "riscv32imac-unknown-none-elf", - "riscv32imc-unknown-none-elf", - "riscv32-wrs-vxworks", - "riscv64gc-unknown-freebsd", - "riscv64gc-unknown-hermit", - "riscv64gc-unknown-linux-gnu", - "riscv64gc-unknown-linux-musl", - "riscv64gc-unknown-none-elf", - "riscv64imac-unknown-none-elf", - "riscv64-wrs-vxworks", - "s390x-unknown-linux-gnu", - "s390x-unknown-linux-musl", - "sparc-unknown-linux-gnu", - "sparc64-unknown-linux-gnu", - "sparc64-unknown-netbsd", - "sparcv9-sun-solaris", - "thumbv6m-none-eabi", - "thumbv7em-none-eabi", - "thumbv7em-none-eabihf", - "thumbv7m-none-eabi", - "thumbv7neon-linux-androideabi", - "thumbv7neon-unknown-linux-gnueabihf", - "wasm32-unknown-emscripten", - "wasm32-unknown-unknown", - "x86_64-apple-darwin", - "x86_64-apple-ios", - "x86_64-fortanix-unknown-sgx", - "x86_64-linux-android", - "x86_64-pc-solaris", - "x86_64-pc-windows-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-dragonfly", - "x86_64-unknown-freebsd", - "x86_64-unknown-fuchsia", - "x86_64-unknown-haiku", - "x86_64-unknown-hermit", - "x86_64-unknown-illumos", - "x86_64-unknown-l4re-uclibc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-linux-gnux32", - "x86_64-unknown-linux-musl", - "x86_64-unknown-netbsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-redox", - "x86_64-wrs-vxworks" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os" - ], - "keywords": [ - "libc", - "ffi", - "bindings", - "operating", - "system" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/libc", - "homepage": "https://github.com/rust-lang/libc", - "documentation": "https://docs.rs/libc/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "libloading", - "version": "0.7.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.7.4", - "license": "ISC", - "license_file": null, - "description": "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "errhandlingapi", - "libloaderapi" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libloading", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constants", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/constants.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "functions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/functions.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "library_filename", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/library_filename.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "markers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/markers.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "windows", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/tests/windows.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.7.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "libloading_docs" - ] - } - } - }, - "publish": null, - "authors": [ - "Simonas Kazlauskas " - ], - "categories": [ - "api-bindings" - ], - "keywords": [ - "dlopen", - "load", - "shared", - "dylib" - ], - "readme": "README.mkd", - "repository": "https://github.com/nagisa/rust_libloading/", - "homepage": null, - "documentation": "https://docs.rs/libloading/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.40.0" - }, - { - "name": "libloading", - "version": "0.8.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", - "license": "ISC", - "license_file": null, - "description": "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.48, <0.53", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <0.59", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libloading", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constants", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/constants.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "functions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/functions.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "library_filename", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/library_filename.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "markers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/markers.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "windows", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/tests/windows.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "libloading_docs" - ] - } - } - }, - "publish": null, - "authors": [ - "Simonas Kazlauskas " - ], - "categories": [ - "api-bindings" - ], - "keywords": [ - "dlopen", - "load", - "shared", - "dylib" - ], - "readme": "README.mkd", - "repository": "https://github.com/nagisa/rust_libloading/", - "homepage": null, - "documentation": "https://docs.rs/libloading/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "libunwind", - "version": "1.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", - "license": "MIT", - "license_file": null, - "description": "Rust bindings to the libunwind C library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libunwind", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libunwind-1.3.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libunwind-1.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bluefish43/libunwind-sys", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "linked-list-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "linked_list_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/src/linked_list_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "linked_list_repeat_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/linked_list_repeat_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "linked-list-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "linked-list-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "linked-list-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "linux-raw-sys", - "version": "0.4.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Generated bindings for Linux's userspace API", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.49", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.100", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "linux_raw_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bootparam": [], - "btrfs": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "elf": [], - "elf_uapi": [], - "errno": [], - "general": [], - "if_arp": [], - "if_ether": [], - "if_packet": [], - "io_uring": [], - "ioctl": [], - "landlock": [], - "loop_device": [], - "mempolicy": [], - "net": [], - "netlink": [], - "no_std": [], - "prctl": [], - "ptrace": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [], - "system": [], - "xdp": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "bootparam", - "btrfs", - "elf_uapi", - "ioctl", - "landlock", - "netlink", - "io_uring", - "if_arp", - "if_ether", - "if_packet", - "net", - "ptrace", - "prctl", - "elf", - "xdp", - "mempolicy", - "system", - "loop_device" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "homepage": null, - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "linux-raw-sys", - "version": "0.9.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Generated bindings for Linux's userspace API", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.49", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.100", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "linux_raw_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.9.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bootparam": [], - "btrfs": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "elf": [], - "elf_uapi": [], - "errno": [], - "general": [], - "if_arp": [], - "if_ether": [], - "if_packet": [], - "image": [], - "io_uring": [], - "ioctl": [], - "landlock": [], - "loop_device": [], - "mempolicy": [], - "net": [], - "netlink": [], - "no_std": [], - "prctl": [], - "ptrace": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [], - "system": [], - "xdp": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.9.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "bootparam", - "btrfs", - "elf_uapi", - "image", - "ioctl", - "landlock", - "netlink", - "io_uring", - "if_arp", - "if_ether", - "if_packet", - "net", - "ptrace", - "prctl", - "elf", - "xdp", - "mempolicy", - "system", - "loop_device" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "homepage": null, - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "litemap", - "version": "0.7.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", - "license": "Unicode-3.0", - "license_file": null, - "description": "A key-value Map implementation based on a flat, sorted Vec.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "validation" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "litemap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "language_names_hash_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/language_names_hash_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "language_names_lite_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/language_names_lite_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "litemap_bincode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/litemap_bincode.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "litemap_postcard", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/examples/litemap_postcard.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rkyv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/rkyv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "store", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/tests/store.rs", - "edition": "2021", - "required-features": [ - "testing" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "litemap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/benches/litemap.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "databake": [ - "dep:databake" - ], - "default": [ - "alloc" - ], - "serde": [ - "dep:serde" - ], - "testing": [ - "alloc" - ], - "yoke": [ - "dep:yoke" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.7.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [], - "keywords": [ - "sorted", - "vec", - "map", - "hashmap", - "btreemap" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": "https://docs.rs/litemap", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "local-esdt-and-nft", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "local_esdt_and_nft", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "local-esdt-and-nft-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "local-esdt-and-nft", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "local-esdt-and-nft-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lock_api", - "version": "0.4.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "owning_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scopeguard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.126", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lock_api", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arc_lock": [], - "atomic_usize": [], - "default": [ - "atomic_usize" - ], - "nightly": [], - "owning_ref": [ - "dep:owning_ref" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.12/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "concurrency", - "no-std" - ], - "keywords": [ - "mutex", - "rwlock", - "lock", - "no_std" - ], - "readme": null, - "repository": "https://github.com/Amanieu/parking_lot", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "log", - "version": "0.4.27", - "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A lightweight logging facade for Rust\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "value-bag", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "inline-i128" - ], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.63", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "value-bag", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "test" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "log", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "value", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/benches/value.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "kv": [], - "kv_serde": [ - "kv_std", - "value-bag/serde", - "serde" - ], - "kv_std": [ - "std", - "kv", - "value-bag/error" - ], - "kv_sval": [ - "kv", - "value-bag/sval", - "sval", - "sval_ref" - ], - "kv_unstable": [ - "kv", - "value-bag" - ], - "kv_unstable_serde": [ - "kv_serde", - "kv_unstable_std" - ], - "kv_unstable_std": [ - "kv_std", - "kv_unstable" - ], - "kv_unstable_sval": [ - "kv_sval", - "kv_unstable" - ], - "max_level_debug": [], - "max_level_error": [], - "max_level_info": [], - "max_level_off": [], - "max_level_trace": [], - "max_level_warn": [], - "release_max_level_debug": [], - "release_max_level_error": [], - "release_max_level_info": [], - "release_max_level_off": [], - "release_max_level_trace": [], - "release_max_level_warn": [], - "serde": [ - "dep:serde" - ], - "std": [], - "sval": [ - "dep:sval" - ], - "sval_ref": [ - "dep:sval_ref" - ], - "value-bag": [ - "dep:value-bag" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "serde", - "kv_std", - "kv_sval", - "kv_serde" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "logging" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/log", - "homepage": null, - "documentation": "https://docs.rs/log", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "lottery-erc20", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lottery_erc20", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/src/lottery.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lottery_erc20_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/tests/lottery_erc20_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lottery_erc20_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/tests/lottery_erc20_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lottery-erc20-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "lottery-erc20", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "lottery-erc20-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lottery-esdt", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lottery_esdt", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/src/lottery.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lottery_esdt_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/tests/lottery_esdt_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lottery_esdt_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/tests/lottery_esdt_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lottery-esdt-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "lottery-esdt", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "lottery-esdt-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "loupe", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Profiling tool for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "loupe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/tests/derive.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "derive" - ], - "derive": [ - "loupe-derive" - ], - "enable-indexmap": [ - "indexmap" - ], - "indexmap": [ - "dep:indexmap" - ], - "loupe-derive": [ - "dep:loupe-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/wasmerio/loupe", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "loupe-derive", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Profiling tool for Rust, see the `loupe` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "loupe_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-derive-0.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loupe-derive-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/wasmerio/loupe", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "managed-map-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "esdt-system-sc-mock", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "managed_map_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/src/mmap_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_map_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/tests/managed_map_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_map_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/tests/managed_map_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "managed-map-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "managed-map-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "managed-map-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "map-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "map_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/src/map_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "map-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "map-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "map-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "memchr", - "version": "2.7.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for\n1, 2 or 3 byte search and single substring search.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memchr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "libc": [], - "logging": [ - "dep:log" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [ - "alloc" - ], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant ", - "bluss" - ], - "categories": [], - "keywords": [ - "memchr", - "memmem", - "substring", - "find", - "search" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/memchr", - "homepage": "https://github.com/BurntSushi/memchr", - "documentation": "https://docs.rs/memchr/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "memmap2", - "version": "0.5.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Cross-platform Rust API for memory-mapped file IO", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "owning_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memmap2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/examples/cat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "stable_deref_trait": [ - "dep:stable_deref_trait" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.5.10/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dan Burkert ", - "Yevhenii Reizner " - ], - "categories": [], - "keywords": [ - "mmap", - "memory-map", - "io", - "file" - ], - "readme": "README.md", - "repository": "https://github.com/RazrFalcon/memmap2-rs", - "homepage": null, - "documentation": "https://docs.rs/memmap2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "memmap2", - "version": "0.6.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Cross-platform Rust API for memory-mapped file IO", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "owning_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memmap2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/examples/cat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "stable_deref_trait": [ - "dep:stable_deref_trait" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.6.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dan Burkert ", - "Yevhenii Reizner " - ], - "categories": [], - "keywords": [ - "mmap", - "memory-map", - "io", - "file" - ], - "readme": "README.md", - "repository": "https://github.com/RazrFalcon/memmap2-rs", - "homepage": null, - "documentation": "https://docs.rs/memmap2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "memoffset", - "version": "0.6.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.6.5", - "license": "MIT", - "license_file": null, - "description": "offset_of functionality for Rust structs.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memoffset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.6.5/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.6.5/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [], - "unstable_const": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.6.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Gilad Naaman " - ], - "categories": [ - "no-std" - ], - "keywords": [ - "mem", - "offset", - "offset_of", - "offsetof" - ], - "readme": "README.md", - "repository": "https://github.com/Gilnaa/memoffset", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "memoffset", - "version": "0.9.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", - "license": "MIT", - "license_file": null, - "description": "offset_of functionality for Rust structs.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memoffset", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [], - "unstable_const": [], - "unstable_offset_of": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Gilad Naaman " - ], - "categories": [ - "no-std" - ], - "keywords": [ - "mem", - "offset", - "offset_of", - "offsetof" - ], - "readme": "README.md", - "repository": "https://github.com/Gilnaa/memoffset", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "mime", - "version": "0.3.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Strongly Typed Mimes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "mime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "cmp", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/cmp.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/fmt.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/benches/parse.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [], - "keywords": [ - "mime", - "media-extensions", - "media-types" - ], - "readme": "README.md", - "repository": "https://github.com/hyperium/mime", - "homepage": null, - "documentation": "https://docs.rs/mime", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "minimal-lexical", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Fast float parsing conversion routines.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "minimal_lexical", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bellerophon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/bellerophon.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bellerophon_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/bellerophon_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/integration_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lemire_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/lemire_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "libm_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/libm_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mask_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/mask_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "number_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/number_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/parse_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rounding_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/rounding_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "slow_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/slow_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stackvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/stackvec.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "vec_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/tests/vec_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "compact": [], - "default": [ - "std" - ], - "lint": [], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Huszagh " - ], - "categories": [ - "parsing", - "no-std" - ], - "keywords": [ - "parsing", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/Alexhuszagh/minimal-lexical", - "homepage": null, - "documentation": "https://docs.rs/minimal-lexical", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "miniz_oxide", - "version": "0.8.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "license": "MIT OR Zlib OR Apache-2.0", - "license_file": null, - "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "adler2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "simd-adler32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "miniz_oxide", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [ - "dep:alloc" - ], - "block-boundary": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "with-alloc" - ], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "adler2/rustc-dep-of-std" - ], - "serde": [ - "dep:serde" - ], - "simd": [ - "simd-adler32" - ], - "simd-adler32": [ - "dep:simd-adler32" - ], - "std": [], - "with-alloc": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Frommi ", - "oyvindln ", - "Rich Geldreich richgel99@gmail.com" - ], - "categories": [ - "compression" - ], - "keywords": [ - "zlib", - "miniz", - "deflate", - "encoding" - ], - "readme": "Readme.md", - "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "homepage": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "documentation": "https://docs.rs/miniz_oxide", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "mio", - "version": "1.0.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", - "license": "MIT", - "license_file": null, - "description": "Lightweight non-blocking I/O.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.159", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"hermit\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.159", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "wasi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.159", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Wdk_Foundation", - "Wdk_Storage_FileSystem", - "Wdk_System_IO", - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_WindowsProgramming" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "mio", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_listenfd_server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/tcp_listenfd_server.rs", - "edition": "2021", - "required-features": [ - "os-poll", - "net" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/tcp_server.rs", - "edition": "2021", - "required-features": [ - "os-poll", - "net" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "udp_server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/examples/udp_server.rs", - "edition": "2021", - "required-features": [ - "os-poll", - "net" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "log" - ], - "log": [ - "dep:log" - ], - "net": [], - "os-ext": [ - "os-poll", - "windows-sys/Win32_System_Pipes", - "windows-sys/Win32_Security" - ], - "os-poll": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ], - "targets": [ - "aarch64-apple-ios", - "aarch64-linux-android", - "wasm32-wasi", - "x86_64-apple-darwin", - "x86_64-pc-windows-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-dragonfly", - "x86_64-unknown-freebsd", - "x86_64-unknown-illumos", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-netbsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-hermit" - ] - } - }, - "playground": { - "features": [ - "os-poll", - "os-ext", - "net" - ] - } - }, - "publish": null, - "authors": [ - "Carl Lerche ", - "Thomas de Zeeuw ", - "Tokio Contributors " - ], - "categories": [ - "asynchronous" - ], - "keywords": [ - "io", - "async", - "non-blocking" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/mio", - "homepage": "https://github.com/tokio-rs/mio", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "more-asserts", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "license": "CC0-1.0", - "license_file": null, - "description": "Small library providing additional assert_* and debug_assert_* macros.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "more_asserts", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/more-asserts-0.2.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/more-asserts-0.2.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Thom Chiovoloni " - ], - "categories": [], - "keywords": [ - "assert", - "debug_assert", - "debug", - "assertions", - "testing" - ], - "readme": "README.md", - "repository": "https://github.com/thomcc/rust-more-asserts", - "homepage": "https://github.com/thomcc/rust-more-asserts", - "documentation": "https://docs.rs/more-asserts", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multi-contract-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multi_contract_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/src/multi_contract_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_contract_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/tests/multi_contract_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_contract_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/tests/multi_contract_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "example_feature": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multi-contract-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multi-contract-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multi-contract-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multisig", - "version": "1.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmer-experimental" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multisig", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/src/multisig.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adder_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/adder_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multisig_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multisig_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multisig_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multisig_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/tests/multisig_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multisig-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multisig", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multisig-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact/src/multisig_interact.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multisig-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multisig", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multisig-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-core", - "version": "0.14.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX chain interfaces, constants, and base types", - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-codec", - "source": null, - "req": "=0.22.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_core", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/core/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/chain/core/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "vm", - "tools" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-scenario-format", - "version": "0.23.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "Parser/writer of the MultiversX transaction scenario format", - "source": null, - "dependencies": [ - { - "name": "bech32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_scenario_format", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "interpreter_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/tests/interpreter_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reconstructor_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/tests/reconstructor_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-vm", - "version": "0.14.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX VM implementation and tooling", - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ed25519-dalek", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-core", - "source": null, - "req": "=0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" - }, - { - "name": "multiversx-chain-vm-executor", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-vm-executor-wasmer", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-vm-executor-wasmer-experimental", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_seeder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_vm", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gas_schedule_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/tests/gas_schedule_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_crypto", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/tests/test_crypto.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "multiversx-chain-vm-executor-wasmer": [ - "dep:multiversx-chain-vm-executor-wasmer" - ], - "multiversx-chain-vm-executor-wasmer-experimental": [ - "dep:multiversx-chain-vm-executor-wasmer-experimental" - ], - "rand": [ - "dep:rand" - ], - "wasm-incompatible": [ - "rand" - ], - "wasmer-experimental": [ - "multiversx-chain-vm-executor-wasmer-experimental" - ], - "wasmer-prod": [ - "multiversx-chain-vm-executor-wasmer" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "vm", - "tools" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-vm-executor", - "version": "0.3.0", - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX VM executor interface", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_vm_executor", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deserialization_from_file_test", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/tests/deserialization_from_file_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "Ovidiu Stinga ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "blockchain", - "VM" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-vm-executor-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-vm-executor-wasmer", - "version": "0.3.0", - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer@0.3.0", - "license": null, - "license_file": null, - "description": null, - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-vm-executor", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "singlepass", - "sys", - "universal", - "wat" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-vm", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_vm_executor_wasmer", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-wasmer/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "endpoints_test", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-wasmer/tests/endpoints_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-wasmer/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-chain-vm-executor-wasmer-experimental", - "version": "0.3.0", - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", - "license": null, - "license_file": null, - "description": null, - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-vm-executor", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rc-new-cyclic-fallible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "singlepass", - "sys", - "wat" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_chain_vm_executor_wasmer_experimental", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "endpoints_test", - "src_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/tests/endpoints_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/git/checkouts/mx-vm-executor-rs-b1a7cb7da6e25bc5/9fd7896/vm-executor-experimental/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-price-aggregator-sc", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX Price aggregator Smart Contract", - "source": null, - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_price_aggregator_sc", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_stress_blackbox", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_stress_blackbox.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "price_aggregator_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/tests/price_aggregator_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Claudiu-Marcel Bruda ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-price-aggregator-sc-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-price-aggregator-sc", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multiversx-price-aggregator-sc-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX smart contract API", - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-core", - "source": null, - "req": "=0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" - }, - { - "name": "multiversx-sc-codec", - "source": null, - "req": "=0.22.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec" - }, - { - "name": "multiversx-sc-derive", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive" - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.19", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unwrap-infallible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "formatter_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/tests/formatter_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "esdt-token-payment-legacy-decode": [], - "managed-buffer-builder-cached": [], - "num-bigint": [ - "multiversx-sc-codec/num-bigint" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/base/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies", - "development-tools" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.83" - }, - { - "name": "multiversx-sc-codec", - "version": "0.22.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "Lightweight binary serializer/deserializer, written especially for MultiversX smart contracts", - "source": null, - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-codec-derive", - "source": null, - "req": "=0.22.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unwrap-infallible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-codec-derive", - "source": null, - "req": "=0.22.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_codec", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_bitflags_struct", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_bitflags_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_empty_struct_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_empty_struct_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_enum_or_default_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_or_default_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_enum_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_enum_tricky_defaults_fieldless_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_tricky_defaults_fieldless_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_enum_tricky_defaults_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_enum_tricky_defaults_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_hygiene", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_hygiene.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_struct_or_default_generic_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_or_default_generic_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_struct_or_default_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_or_default_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_struct_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_struct_with_generic_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_struct_with_generic_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_tuple_struct_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/derive_tuple_struct_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_impl_enum", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_enum.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_impl_struct", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_impl_struct_opt_field", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_struct_opt_field.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_impl_wrapped_array", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/tests/explicit_impl_wrapped_array.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "derive": [ - "multiversx-sc-codec-derive" - ], - "multiversx-sc-codec-derive": [ - "dep:multiversx-sc-codec-derive" - ], - "num-bigint": [ - "dep:num-bigint" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies", - "development-tools" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-codec-derive", - "version": "0.22.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "Macro implementations of multiversx-sc-codec #[derive(NestedEncode, NestedDecode, TopEncode, TopDecode)]", - "source": null, - "dependencies": [ - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.94", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.0.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "multiversx_sc_codec_derive", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "syn/full", - "syn/parsing", - "syn/extra-traits" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/data/codec-derive/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "dorin.iancu ", - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies", - "development-tools" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-derive", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX smart contract API procedural macros", - "source": null, - "dependencies": [ - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.94", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "radix_trie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.0.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "multiversx_sc_derive", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "syn/full", - "syn/parsing", - "syn/extra-traits" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/derive/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-meta", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX smart contract crate management standalone tool", - "source": null, - "dependencies": [ - { - "name": "bip39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "common-path", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "copy_dir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "home", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.5.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc", - "num-bigint" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "pathdiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "blocking", - "json" - ], - "target": null, - "registry": null - }, - { - "name": "ruplacer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "preserve_order" - ], - "target": null, - "registry": null - }, - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "deflate" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "sc-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "install_debugger_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/install_debugger_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stg_process_code_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/stg_process_code_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "template_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/tests/template_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "template-test-current": [], - "template-test-released": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract", - "debug" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-meta-lib", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX smart contract meta-programming tools and build system", - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc", - "num-bigint" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "preserve_order" - ], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.227", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmprinter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.227", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.217.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_meta_lib", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ei_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/tests/ei_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_contract_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/tests/multi_contract_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract", - "debug" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-modules", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX WebAssembly standard smart contract modules", - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_modules", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [ - "multiversx-sc/alloc" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-scenario", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX tools for writing and executing scenarios", - "source": null, - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bech32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-scenario-format", - "source": null, - "req": "^0.23.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format" - }, - { - "name": "multiversx-chain-vm", - "source": null, - "req": "=0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/vm" - }, - { - "name": "multiversx-chain-vm-executor", - "source": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc", - "num-bigint" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pathdiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "simple-error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unwrap-infallible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_scenario", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "address_eq_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/address_eq_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_float_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_float_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_int_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_int_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_uint_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/big_uint_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "contract_without_macros", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/contract_without_macros.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_biguint_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_biguint_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_decimal_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_decimal_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_enum_1", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_1.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_enum_2_managed", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_2_managed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_enum_simple", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_enum_simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_esdt_token_payment_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_esdt_token_payment_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_struct_1_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_1_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_struct_2_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_2_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_managed_vec_item_struct_3", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/derive_managed_vec_item_struct_3.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "esdt_token_payment_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/esdt_token_payment_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hex_call_data_arg_load", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/hex_call_data_arg_load.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_buffer_read_to_end_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_buffer_read_to_end_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_codec_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_codec_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_decimal_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_decimal_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_map_encoded_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_map_encoded_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_option_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_option_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_ref_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_ref_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_type_debug_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_type_debug_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "managed_vec_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/managed_vec_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_transfer_with_egld", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/multi_transfer_with_egld.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi_value_encoded_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/multi_value_encoded_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "path_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/path_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenarios_io_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/scenarios_io_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenarios_self_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/scenarios_self_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "single_tx_api_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/single_tx_api_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "static_buffer_ref_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/static_buffer_ref_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_bi_di_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_bi_di_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_map_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_map_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_map_storage_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_map_storage_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_set_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_set_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_hash_unordered_set_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_hash_unordered_set_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_linked_list_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_linked_list_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_print_api", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_print_api.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_queue_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_queue_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_vec_mapper", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/test_vec_mapper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_identifier_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/token_identifier_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_properties_result_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/token_properties_result_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tx_call_normalize", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/tests/tx_call_normalize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "wasm-incompatible" - ], - "run-go-tests": [], - "wasm-incompatible": [ - "multiversx-chain-vm/wasm-incompatible" - ], - "wasmer-experimental": [ - "multiversx-chain-vm/wasmer-experimental" - ], - "wasmer-prod": [ - "multiversx-chain-vm/wasmer-prod" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "development-tools::debugging" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract", - "debug" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-snippets", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX framework for building smart contract interaction snippets", - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-scenario-format", - "source": null, - "req": "^0.23.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "multiversx-sdk", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" - }, - { - "name": "multiversx-sdk-dapp", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp" - }, - { - "name": "multiversx-sdk-http", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http" - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_snippets", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_deployed_address", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_deployed_address.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_issued_token_identifier", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_issued_token_identifier.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_logs", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_logs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_multi_contract_sc_result", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_multi_contract_sc_result.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_multiple_sc_results", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_multiple_sc_results.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_tx_sc_result", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/tests/test_tx_sc_result.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "dapp": [ - "multiversx-sdk-dapp" - ], - "default": [ - "http", - "default-tls" - ], - "default-tls": [ - "multiversx-sdk-http/default-tls" - ], - "http": [ - "multiversx-sdk-http", - "tokio" - ], - "multiversx-sdk-dapp": [ - "dep:multiversx-sdk-dapp" - ], - "multiversx-sdk-http": [ - "dep:multiversx-sdk-http" - ], - "static-tls": [ - "multiversx-sdk-http/static-tls" - ], - "tokio": [ - "dep:tokio" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "blockchain", - "contract", - "snippets" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sc-wasm-adapter", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX WebAssembly VM API wrapper", - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sc_wasm_adapter", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies", - "development-tools::ffi" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sdk", - "version": "0.9.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "license": "MIT", - "license_file": null, - "description": "SDK for interacting with the MultiversX blockchain", - "source": null, - "dependencies": [ - { - "name": "aes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bech32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bip39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rand" - ], - "target": null, - "registry": null - }, - { - "name": "ctr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hmac", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-chain-core", - "source": null, - "req": "=0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/chain/core" - }, - { - "name": "pbkdf2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pem", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scrypt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.130", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.68", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "preserve_order" - ], - "target": null, - "registry": null - }, - { - "name": "serde_repr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "v4" - ], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sdk", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "generate_mnemonic", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/examples/generate_mnemonic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "retrieve_tx_on_network_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/tests/retrieve_tx_on_network_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wallet_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/tests/wallet_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "api-bindings" - ], - "keywords": [ - "multiversx", - "blockchain", - "sdk", - "api" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sdk-dapp", - "version": "0.9.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "license": "MIT", - "license_file": null, - "description": "SDK for interacting with the MultiversX blockchain for wasm-bindgen environments", - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.44", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "gloo-net", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.70", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sdk", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.93", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.43", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.70", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sdk_dapp", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/dapp/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "api-bindings" - ], - "keywords": [ - "multiversx", - "blockchain", - "sdk", - "wasm", - "wasm-bindgen" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-sdk-http", - "version": "0.9.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "license": "MIT", - "license_file": null, - "description": "SDK for interacting with the MultiversX blockchain", - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.44", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sdk", - "source": null, - "req": "=0.9.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/sdk/core" - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "blocking", - "json" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_sdk_http", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "account", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/account.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "account_storage", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/account_storage.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_esdt_tokens", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_esdt_tokens.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_hyper_block_by_hash", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_by_hash.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_hyper_block_by_nonce", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_by_nonce.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_hyper_block_latest", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_hyper_block_latest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_network_config", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_network_config.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_network_economics", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/get_network_economics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "sign_tx", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/sign_tx.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "sign_txs", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/sign_txs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tx_cost", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_cost.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tx_default_args", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_default_args.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tx_info", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/tx_info.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "vm_query", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/examples/vm_query.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "get_network_config_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/tests/get_network_config_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain_simulator": [], - "default": [ - "default-tls" - ], - "default-tls": [ - "reqwest/default-tls" - ], - "static-tls": [ - "reqwest/rustls-tls" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/sdk/http/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "MultiversX " - ], - "categories": [ - "cryptography::cryptocurrencies", - "api-bindings" - ], - "keywords": [ - "multiversx", - "blockchain", - "sdk", - "api" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-wegld-swap-sc", - "version": "0.57.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", - "license": "GPL-3.0-only", - "license_file": null, - "description": "MultiversX Wrapped EGLD Smart Contract", - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "multiversx_wegld_swap_sc", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/src/wegld.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wegld_swap_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/tests/wegld_swap_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dorin Iancu ", - "MultiversX " - ], - "categories": [ - "no-std", - "wasm", - "cryptography::cryptocurrencies" - ], - "keywords": [ - "multiversx", - "wasm", - "webassembly", - "blockchain", - "contract" - ], - "readme": "README.md", - "repository": "https://github.com/multiversx/mx-sdk-rs", - "homepage": "https://multiversx.com/", - "documentation": "https://docs.multiversx.com/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "multiversx-wegld-swap-sc-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "multiversx-wegld-swap-sc", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "multiversx-wegld-swap-sc-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "munge", - "version": "0.4.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", - "license": "MIT", - "license_file": null, - "description": "Macro for custom destructuring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "munge_macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.4.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "munge", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge-0.4.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "macro", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/djkoloski/munge", - "homepage": null, - "documentation": "https://docs.rs/munge", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "munge_macro", - "version": "0.4.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", - "license": "MIT", - "license_file": null, - "description": "Macro for custom destructuring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "full", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "munge_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge_macro-0.4.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/munge_macro-0.4.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "macro", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/djkoloski/munge", - "homepage": null, - "documentation": "https://docs.rs/munge_macro", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "mxpy-snippet-generator", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "bech32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "mxpy-snippet-generator", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator/src/mxpy_snippet_generator.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "native-tls", - "version": "0.2.14", - "id": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A wrapper over a platform's native TLS implementation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-cert-gen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", - "registry": null - }, - { - "name": "openssl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", - "registry": null - }, - { - "name": "openssl-probe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", - "registry": null - }, - { - "name": "openssl-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.81", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))", - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"macos\")", - "registry": null - }, - { - "name": "schannel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"windows\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - }, - { - "name": "security-framework", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - }, - { - "name": "security-framework-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "native_tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "google-connect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/google-connect.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple-server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/simple-server.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple-server-pkcs8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/examples/simple-server-pkcs8.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alpn": [ - "security-framework/alpn" - ], - "vendored": [ - "openssl/vendored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "alpn" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-native-tls", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.80.0" - }, - { - "name": "nft-minter", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nft_minter", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_minter_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/tests/nft_minter_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_minter_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/tests/nft_minter_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-minter-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "nft-minter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "nft-minter-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-storage-prepay", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nft_storage_prepay", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/src/nft_storage_prepay.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-storage-prepay-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "nft-storage-prepay", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "nft-storage-prepay-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-subscription", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nft_subscription", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_subscription_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/tests/nft_subscription_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nft_subscription_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/tests/nft_subscription_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Thouny " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nft-subscription-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "nft-subscription", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "nft-subscription-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Thouny " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nibble_vec", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", - "license": "MIT", - "license_file": null, - "description": "Vector data-structure for half-byte values.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nibble_vec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/examples/debug.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "nib_bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/benches/nib_bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nibble_vec-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Michael Sproul " - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "vector", - "nibble", - "slice", - "data-structure", - "collection" - ], - "readme": "README.md", - "repository": "https://github.com/michaelsproul/rust_nibble_vec", - "homepage": null, - "documentation": "https://docs.rs/rust_nibble_vec", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nom", - "version": "7.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "license": "MIT", - "license_file": null, - "description": "A byte-oriented, zero-copy, parser combinators library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "minimal-lexical", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/custom_error.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/json.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/json_iterator.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/iterator.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "s_expression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/s_expression.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/examples/string.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/arithmetic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic_ast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/arithmetic_ast.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "css", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/css.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom_errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/custom_errors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "escaped", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/escaped.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "float", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/float.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fnmut", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/fnmut.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/ini.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ini_str", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/ini_str.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issues", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/issues.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/json.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mp4", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/mp4.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiline", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/multiline.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "overflow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/overflow.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reborrow_fold", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/tests/reborrow_fold.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "docsrs": [], - "std": [ - "alloc", - "memchr/std", - "minimal-lexical/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "features": [ - "alloc", - "std", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "contact@geoffroycouprie.com" - ], - "categories": [ - "parsing" - ], - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "readme": "README.md", - "repository": "https://github.com/Geal/nom", - "homepage": null, - "documentation": "https://docs.rs/nom", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.48" - }, - { - "name": "num-bigint", - "version": "0.4.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Big integer implementation for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-integer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.46", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "i128" - ], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "i128" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "num_bigint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bigint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bigint_bitwise", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint_bitwise.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bigint_scalar", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/bigint_scalar.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "biguint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/biguint.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "biguint_scalar", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/biguint_scalar.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fuzzed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/fuzzed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "modpow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/modpow.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/tests/roots.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bigint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/bigint.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "factorial", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/factorial.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "gcd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/gcd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/roots.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "shootout-pidigits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/benches/shootout-pidigits.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "default": [ - "std" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rand": [ - "dep:rand" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "num-integer/std", - "num-traits/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "serde", - "rand", - "quickcheck", - "arbitrary" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "data-structures", - "science" - ], - "keywords": [ - "mathematics", - "numerics", - "bignum" - ], - "readme": "README.md", - "repository": "https://github.com/rust-num/num-bigint", - "homepage": "https://github.com/rust-num/num-bigint", - "documentation": "https://docs.rs/num-bigint", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "num-integer", - "version": "0.1.46", - "id": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Integer traits and functions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "i128" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "num_integer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "average", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/tests/average.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/tests/roots.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "average", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/average.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "gcd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/gcd.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/benches/roots.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "i128": [], - "std": [ - "num-traits/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "science", - "no-std" - ], - "keywords": [ - "mathematics", - "numerics" - ], - "readme": "README.md", - "repository": "https://github.com/rust-num/num-integer", - "homepage": "https://github.com/rust-num/num-integer", - "documentation": "https://docs.rs/num-integer", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "num-traits", - "version": "0.2.19", - "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Numeric traits for generic mathematics", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "num_traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/tests/cast.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "i128": [], - "libm": [ - "dep:libm" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "science", - "no-std" - ], - "keywords": [ - "mathematics", - "numerics" - ], - "readme": "README.md", - "repository": "https://github.com/rust-num/num-traits", - "homepage": "https://github.com/rust-num/num-traits", - "documentation": "https://docs.rs/num-traits", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "num_cpus", - "version": "1.16.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Get the number of CPUs on a machine.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.26", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(windows))", - "registry": null - }, - { - "name": "hermit-abi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"hermit\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "num_cpus", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "values", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/examples/values.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.16.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "hardware-support" - ], - "keywords": [ - "cpu", - "cpus", - "cores" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/num_cpus", - "homepage": null, - "documentation": "https://docs.rs/num_cpus", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "object", - "version": "0.28.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A unified interface for reading and writing object file formats.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "ahash" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.57", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "object", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.28.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.28.4/tests/integration.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse_self", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.28.4/tests/parse_self.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "all": [ - "read", - "write", - "std", - "compression", - "wasm" - ], - "alloc": [ - "dep:alloc" - ], - "archive": [], - "cargo-all": [], - "coff": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "compression": [ - "flate2", - "std" - ], - "core": [ - "dep:core" - ], - "crc32fast": [ - "dep:crc32fast" - ], - "default": [ - "read", - "compression" - ], - "doc": [ - "read_core", - "write_std", - "std", - "compression", - "archive", - "coff", - "elf", - "macho", - "pe", - "wasm" - ], - "elf": [], - "flate2": [ - "dep:flate2" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "indexmap": [ - "dep:indexmap" - ], - "macho": [], - "pe": [ - "coff" - ], - "read": [ - "read_core", - "archive", - "coff", - "elf", - "macho", - "pe", - "unaligned" - ], - "read_core": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "alloc", - "memchr/rustc-dep-of-std" - ], - "std": [ - "memchr/std" - ], - "unaligned": [], - "wasm": [ - "wasmparser" - ], - "wasmparser": [ - "dep:wasmparser" - ], - "write": [ - "write_std", - "coff", - "elf", - "macho", - "pe" - ], - "write_core": [ - "crc32fast", - "indexmap", - "hashbrown" - ], - "write_std": [ - "write_core", - "std", - "indexmap/std", - "crc32fast/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.28.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "doc" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "object", - "elf", - "mach-o", - "pe", - "coff" - ], - "readme": "README.md", - "repository": "https://github.com/gimli-rs/object", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "object", - "version": "0.32.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A unified interface for reading and writing object file formats.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "ahash" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruzstd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.118.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "object", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/tests/integration.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse_self", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/tests/parse_self.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "all": [ - "read", - "write", - "std", - "compression", - "wasm" - ], - "alloc": [ - "dep:alloc" - ], - "archive": [], - "cargo-all": [], - "coff": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "compression": [ - "dep:flate2", - "dep:ruzstd", - "std" - ], - "core": [ - "dep:core" - ], - "default": [ - "read", - "compression" - ], - "doc": [ - "read_core", - "write_std", - "std", - "compression", - "archive", - "coff", - "elf", - "macho", - "pe", - "wasm", - "xcoff" - ], - "elf": [], - "macho": [], - "pe": [ - "coff" - ], - "read": [ - "read_core", - "archive", - "coff", - "elf", - "macho", - "pe", - "xcoff", - "unaligned" - ], - "read_core": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "alloc", - "memchr/rustc-dep-of-std" - ], - "std": [ - "memchr/std" - ], - "unaligned": [], - "unstable": [], - "unstable-all": [ - "all", - "unstable" - ], - "wasm": [ - "dep:wasmparser" - ], - "write": [ - "write_std", - "coff", - "elf", - "macho", - "pe", - "xcoff" - ], - "write_core": [ - "dep:crc32fast", - "dep:indexmap", - "dep:hashbrown" - ], - "write_std": [ - "write_core", - "std", - "indexmap?/std", - "crc32fast?/std" - ], - "xcoff": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "doc" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "object", - "elf", - "mach-o", - "pe", - "coff" - ], - "readme": "README.md", - "repository": "https://github.com/gimli-rs/object", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "object", - "version": "0.36.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A unified interface for reading and writing object file formats.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruzstd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.222.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "object", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/tests/integration.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse_self", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/tests/parse_self.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "all": [ - "read", - "write", - "build", - "std", - "compression", - "wasm" - ], - "alloc": [ - "dep:alloc" - ], - "archive": [], - "build": [ - "build_core", - "write_std", - "elf" - ], - "build_core": [ - "read_core", - "write_core" - ], - "cargo-all": [], - "coff": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "compression": [ - "dep:flate2", - "dep:ruzstd", - "std" - ], - "core": [ - "dep:core" - ], - "default": [ - "read", - "compression" - ], - "doc": [ - "read_core", - "write_std", - "build_core", - "std", - "compression", - "archive", - "coff", - "elf", - "macho", - "pe", - "wasm", - "xcoff" - ], - "elf": [], - "macho": [], - "pe": [ - "coff" - ], - "read": [ - "read_core", - "archive", - "coff", - "elf", - "macho", - "pe", - "xcoff", - "unaligned" - ], - "read_core": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "alloc", - "memchr/rustc-dep-of-std" - ], - "std": [ - "memchr/std" - ], - "unaligned": [], - "unstable": [], - "unstable-all": [ - "all", - "unstable" - ], - "wasm": [ - "dep:wasmparser" - ], - "write": [ - "write_std", - "coff", - "elf", - "macho", - "pe", - "xcoff" - ], - "write_core": [ - "dep:crc32fast", - "dep:indexmap", - "dep:hashbrown" - ], - "write_std": [ - "write_core", - "std", - "indexmap?/std", - "crc32fast?/std" - ], - "xcoff": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.36.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "doc" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "object", - "elf", - "mach-o", - "pe", - "coff" - ], - "readme": "README.md", - "repository": "https://github.com/gimli-rs/object", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "once_cell", - "version": "1.21.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Single assignment cells and lazy values.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "critical-section", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "critical-section", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "once_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bench_acquire", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/bench_acquire.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lazy_static", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/lazy_static.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "reentrant_init_deadlocks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/reentrant_init_deadlocks.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "regex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/regex.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "test_synchronization", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/examples/test_synchronization.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "it", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/tests/it/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "race" - ], - "atomic-polyfill": [ - "critical-section" - ], - "critical-section": [ - "dep:critical-section", - "portable-atomic" - ], - "default": [ - "std" - ], - "parking_lot": [ - "dep:parking_lot_core" - ], - "portable-atomic": [ - "dep:portable-atomic" - ], - "race": [], - "std": [ - "alloc" - ], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "keywords": [ - "lazy", - "static" - ], - "readme": "README.md", - "repository": "https://github.com/matklad/once_cell", - "homepage": null, - "documentation": "https://docs.rs/once_cell", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "openssl", - "version": "0.10.72", - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", - "license": "Apache-2.0", - "license_file": null, - "description": "OpenSSL bindings", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "openssl-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.107", - "kind": null, - "rename": "ffi", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "foreign-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "openssl-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "openssl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "mk_certs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/examples/mk_certs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aws-lc": [ - "ffi/aws-lc" - ], - "bindgen": [ - "ffi/bindgen" - ], - "default": [], - "unstable_boringssl": [ - "ffi/unstable_boringssl" - ], - "v101": [], - "v102": [], - "v110": [], - "v111": [], - "vendored": [ - "ffi/vendored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.72/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [ - "cryptography", - "api-bindings" - ], - "keywords": [ - "crypto", - "tls", - "ssl", - "dtls" - ], - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "openssl-macros", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Internal macros used by the openssl crate.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "openssl_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "openssl-probe", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Tool for helping to find SSL certificate locations on the system for OpenSSL\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "openssl_probe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "probe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/examples/probe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/openssl-probe", - "homepage": "https://github.com/alexcrichton/openssl-probe", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "openssl-sys", - "version": "0.9.107", - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", - "license": "MIT", - "license_file": null, - "description": "FFI bindings to OpenSSL", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aws-lc-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.27", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "ssl" - ], - "target": null, - "registry": null - }, - { - "name": "bssl-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.69.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "experimental" - ], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "openssl-src", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^300.2.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "legacy" - ], - "target": null, - "registry": null - }, - { - "name": "pkg-config", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vcpkg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "openssl_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-main", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/build/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aws-lc": [ - "dep:aws-lc-sys" - ], - "bindgen": [ - "dep:bindgen" - ], - "bssl-sys": [ - "dep:bssl-sys" - ], - "openssl-src": [ - "dep:openssl-src" - ], - "unstable_boringssl": [ - "bssl-sys" - ], - "vendored": [ - "openssl-src" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.107/Cargo.toml", - "metadata": { - "pkg-config": { - "openssl": "1.0.1" - } - }, - "publish": null, - "authors": [ - "Alex Crichton ", - "Steven Fackler " - ], - "categories": [ - "cryptography", - "external-ffi-bindings" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": "openssl", - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "order-book-factory", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "order_book_factory", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "order-book-pair", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "order_book_pair", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pair_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/tests/pair_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pair_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/tests/pair_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "pair-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "order-book-pair", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "pair-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "panic-message-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasmer-experimental" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "panic_message_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/src/panic_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pmf_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pmf_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pmf_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pmf_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/tests/pmf_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "run-go-tests": [ - "multiversx-sc-scenario/run-go-tests" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "panic-message-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "panic-message-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "panic-message-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "parent", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "parent", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "parent-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "parent", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "parent-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "parking_lot", - "version": "0.12.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "More compact and efficient implementations of the standard synchronization primitives.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lock_api", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "parking_lot", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue_392", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/tests/issue_392.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue_203", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/tests/issue_203.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "arc_lock": [ - "lock_api/arc_lock" - ], - "deadlock_detection": [ - "parking_lot_core/deadlock_detection" - ], - "default": [], - "hardware-lock-elision": [], - "nightly": [ - "parking_lot_core/nightly", - "lock_api/nightly" - ], - "owning_ref": [ - "lock_api/owning_ref" - ], - "send_guard": [], - "serde": [ - "lock_api/serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arc_lock", - "serde", - "deadlock_detection" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "arc_lock", - "serde", - "deadlock_detection" - ] - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "mutex", - "condvar", - "rwlock", - "once", - "thread" - ], - "readme": "README.md", - "repository": "https://github.com/Amanieu/parking_lot", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "parking_lot_core", - "version": "0.9.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An advanced API for creating custom synchronization primitives.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.60", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "petgraph", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thread-id", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "redox_syscall", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"redox\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "parking_lot_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "backtrace": [ - "dep:backtrace" - ], - "deadlock_detection": [ - "petgraph", - "thread-id", - "backtrace" - ], - "nightly": [], - "petgraph": [ - "dep:petgraph" - ], - "thread-id": [ - "dep:thread-id" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "mutex", - "condvar", - "rwlock", - "once", - "thread" - ], - "readme": null, - "repository": "https://github.com/Amanieu/parking_lot", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "password-hash", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Traits which describe the functionality of password hashing algorithms,\nas well as a `no_std`-friendly implementation of the PHC string format\n(a well-defined subset of the Modular Crypt Format a.k.a. MCF)\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64ct", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "password_hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoding", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/encoding.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hashing", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/hashing.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "password_hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/password_hash.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_vectors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/tests/test_vectors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "base64ct/alloc" - ], - "default": [ - "rand_core" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [ - "alloc", - "base64ct/std", - "rand_core/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/password-hash-0.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "authentication", - "cryptography", - "no-std" - ], - "keywords": [ - "crypt", - "mcf", - "password", - "pbkdf", - "phc" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/password-hash", - "homepage": null, - "documentation": "https://docs.rs/password-hash", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "paste", - "version": "1.0.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Macros for all your token pasting needs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "paste-test-suite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.49", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "paste", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_item", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_item.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_attr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_attr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_doc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_doc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/tests/test_expr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "macros" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/paste", - "homepage": null, - "documentation": "https://docs.rs/paste", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "pathdiff", - "version": "0.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Library for diffing paths to obtain relative paths", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "camino", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pathdiff", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "camino": [ - "dep:camino" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "path", - "relative" - ], - "readme": null, - "repository": "https://github.com/Manishearth/pathdiff", - "homepage": null, - "documentation": "https://docs.rs/pathdiff/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "payable-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "payable_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/src/payable_features.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "payable_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "payable_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "payable_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/tests/payable_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "payable-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "payable-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "payable-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "payable-interactor", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "payable-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "payable_interactor", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/src/payable_interactor.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "payable-interactor", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/src/payable_interactor_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "payable_interactor_cs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/tests/payable_interactor_cs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "pbkdf2", - "version": "0.12.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Generic implementation of PBKDF2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "mac" - ], - "target": null, - "registry": null - }, - { - "name": "hmac", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "password-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "rand_core" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hmac", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "streebog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pbkdf2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/tests/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/benches/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "hmac" - ], - "hmac": [ - "dep:hmac" - ], - "parallel": [ - "rayon", - "std" - ], - "password-hash": [ - "dep:password-hash" - ], - "rayon": [ - "dep:rayon" - ], - "sha1": [ - "dep:sha1" - ], - "sha2": [ - "dep:sha2" - ], - "simple": [ - "hmac", - "password-hash", - "sha2" - ], - "std": [ - "password-hash/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "authentication", - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "hashing", - "password", - "phf" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2", - "homepage": null, - "documentation": "https://docs.rs/pbkdf2", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "pem", - "version": "3.0.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", - "license": "MIT", - "license_file": null, - "description": "Parse and encode PEM-encoded data.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pem", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "pem_benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/benches/pem_benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "base64/std", - "serde?/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pem-3.0.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jonathan Creekmore " - ], - "categories": [ - "cryptography" - ], - "keywords": [ - "no-std", - "no_std", - "pem" - ], - "readme": "README.md", - "repository": "https://github.com/jcreekmore/pem-rs.git", - "homepage": "https://github.com/jcreekmore/pem-rs.git", - "documentation": "https://docs.rs/pem/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "percent-encoding", - "version": "2.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Percent encoding and decoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "percent_encoding", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "no_std" - ], - "keywords": [], - "readme": null, - "repository": "https://github.com/servo/rust-url/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.51" - }, - { - "name": "pin-project", - "version": "1.1.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A crate for safe and ergonomic pin-projection.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "pin-project-internal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.1.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pin_project", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum-default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/enum-default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum-default-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/enum-default-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "not_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/not_unpin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "not_unpin-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/not_unpin-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pinned_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/pinned_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pinned_drop-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/pinned_drop-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "project_replace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/project_replace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "project_replace-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/project_replace-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "struct-default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/struct-default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "struct-default-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/struct-default-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "unsafe_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/unsafe_unpin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "unsafe_unpin-expanded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/examples/unsafe_unpin-expanded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cfg", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/cfg.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "drop_order", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/drop_order.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "expandtest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/expandtest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pin_project", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/pin_project.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pinned_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/pinned_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proper_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/proper_unpin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "repr_packed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/repr_packed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unsafe_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/tests/unsafe_unpin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "pin_project_internal::*" - ] - }, - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "pin", - "macros", - "attribute" - ], - "readme": "README.md", - "repository": "https://github.com/taiki-e/pin-project", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "pin-project-internal", - "version": "1.1.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Implementation detail of the `pin-project` crate.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "parsing", - "printing", - "clone-impls", - "proc-macro", - "full", - "visit-mut" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "pin_project_internal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "pin", - "macros", - "attribute" - ], - "readme": null, - "repository": "https://github.com/taiki-e/pin-project", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "pin-project-lite", - "version": "0.2.16", - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A lightweight version of pin-project written with declarative macros.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pin_project_lite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "drop_order", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/drop_order.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "expandtest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/expandtest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proper_unpin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/proper_unpin.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [] - }, - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "pin", - "macros" - ], - "readme": "README.md", - "repository": "https://github.com/taiki-e/pin-project-lite", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.37" - }, - { - "name": "pin-utils", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Utilities for pinning\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pin_utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "projection", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/tests/projection.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stack_pin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/tests/stack_pin.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Josef Brandl " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/pin-utils", - "homepage": null, - "documentation": "https://docs.rs/pin-utils", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ping-pong-dapp", - "version": "0.1.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "console_log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "dapp" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.210", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yew", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "csr" - ], - "target": null, - "registry": null - }, - { - "name": "yew-router", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yew_icons", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "BootstrapHeartFill" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ping-pong-dapp", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ping-pong-egld", - "version": "0.0.2", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ping_pong_egld", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/src/ping_pong.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ping_pong_egld_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/tests/ping_pong_egld_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ping_pong_egld_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/tests/ping_pong_egld_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Bruda Claudiu-Marcel " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ping-pong-egld-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "ping-pong-egld", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ping_pong_egld_interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/src/interact.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ping-pong-egld-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/src/interact_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "interact_cs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/tests/interact_cs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ping-pong-egld-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "ping-pong-egld", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ping-pong-egld-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Bruda Claudiu-Marcel " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "pinned", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Synchronisation primitives for !Send tasks.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "async-await" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.21.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pinned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pinned-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pinned-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Kaede Hoshiakwa " - ], - "categories": [ - "asynchronous" - ], - "keywords": [ - "async", - "futures", - "non-blocking" - ], - "readme": "README.md", - "repository": "https://github.com/futursolo/pinned", - "homepage": "https://github.com/futursolo/pinned", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "pkcs8", - "version": "0.10.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "der", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "oid" - ], - "target": null, - "registry": null - }, - { - "name": "pkcs5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "spki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pkcs8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encrypted_private_key", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/encrypted_private_key.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "private_key", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/private_key.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/tests/traits.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "3des": [ - "encryption", - "pkcs5/3des" - ], - "alloc": [ - "der/alloc", - "der/zeroize", - "spki/alloc" - ], - "des-insecure": [ - "encryption", - "pkcs5/des-insecure" - ], - "encryption": [ - "alloc", - "pkcs5/alloc", - "pkcs5/pbes2", - "rand_core" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "pem": [ - "alloc", - "der/pem", - "spki/pem" - ], - "pkcs5": [ - "dep:pkcs5" - ], - "rand_core": [ - "dep:rand_core" - ], - "sha1-insecure": [ - "encryption", - "pkcs5/sha1-insecure" - ], - "std": [ - "alloc", - "der/std", - "spki/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkcs8-0.10.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "keywords": [ - "crypto", - "key", - "pkcs", - "private" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/pkcs8", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "pkg-config", - "version": "0.3.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pkg_config", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "build-dependencies" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/pkg-config-rs", - "homepage": null, - "documentation": "https://docs.rs/pkg-config", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "ppv-lite86", - "version": "0.2.21", - "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Cross-platform cryptography-oriented low-level SIMD library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "simd" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ppv_lite86", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "no_simd": [], - "simd": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The CryptoCorrosion Contributors" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "simd", - "x86" - ], - "readme": null, - "repository": "https://github.com/cryptocorrosion/cryptocorrosion", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "prettyplease", - "version": "0.1.25", - "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A minimal `syn` syntax tree pretty-printer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.90", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.90", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "parsing" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "prettyplease", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "verbatim": [ - "syn/parsing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.1.25/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools" - ], - "keywords": [ - "rustfmt" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/prettyplease", - "homepage": null, - "documentation": "https://docs.rs/prettyplease", - "edition": "2021", - "links": "prettyplease01", - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "prettyplease", - "version": "0.2.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A minimal `syn` syntax tree pretty-printer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.96", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "indoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.96", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "extra-traits", - "parsing", - "printing", - "visit-mut" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "prettyplease", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_precedence", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/tests/test_precedence.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "verbatim": [ - "syn/parsing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.32/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "verbatim" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools" - ], - "keywords": [ - "rustfmt" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/prettyplease", - "homepage": null, - "documentation": "https://docs.rs/prettyplease", - "edition": "2021", - "links": "prettyplease02", - "default_run": null, - "rust_version": "1.62" - }, - { - "name": "proc-macro-error", - "version": "1.0.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Almost drop-in replacement to panics in proc-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro-error-attr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.107", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.5.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.19", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proc_macro_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro-errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/macro-errors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "runtime-errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/tests/runtime-errors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "syn-error" - ], - "syn": [ - "dep:syn" - ], - "syn-error": [ - "syn" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "CreepySkeleton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "proc-macro", - "error", - "errors" - ], - "readme": "README.md", - "repository": "https://gitlab.com/CreepySkeleton/proc-macro-error", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proc-macro-error-attr", - "version": "1.0.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Attribute macro for proc-macro-error crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "proc_macro_error_attr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "CreepySkeleton " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://gitlab.com/CreepySkeleton/proc-macro-error", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proc-macro-error-attr2", - "version": "2.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Attribute macro for the proc-macro-error2 crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "proc_macro_error_attr2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "CreepySkeleton ", - "GnomedDev " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/GnomedDev/proc-macro-error-2", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "proc-macro-error2", - "version": "2.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Almost drop-in replacement to panics in proc-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro-error-attr2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.99", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proc_macro_error2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro-errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/macro-errors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ok", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/ok.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "runtime-errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/tests/runtime-errors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "syn-error" - ], - "nightly": [], - "syn-error": [ - "dep:syn" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "CreepySkeleton ", - "GnomedDev " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "proc-macro", - "error", - "errors" - ], - "readme": "README.md", - "repository": "https://github.com/GnomedDev/proc-macro-error-2", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "proc-macro2", - "version": "1.0.94", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proc_macro2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "comments", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/comments.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "features", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/features.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "marker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/marker.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_fmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test_fmt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/tests/test_size.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "proc-macro" - ], - "nightly": [], - "proc-macro": [], - "span-locations": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.94/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg=procmacro2_semver_exempt" - ], - "rustdoc-args": [ - "--cfg=procmacro2_semver_exempt", - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "span-locations" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay ", - "Alex Crichton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/proc-macro2", - "homepage": null, - "documentation": "https://docs.rs/proc-macro2", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "prokio", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An asynchronous runtime compatible with WebAssembly and non-WebAssembly targets.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "async-await" - ], - "target": null, - "registry": null - }, - { - "name": "pin-project", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pinned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.21.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rt", - "time" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "time" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "gloo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "prokio", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prokio-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prokio-0.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "documenting" - ] - } - } - }, - "publish": null, - "authors": [ - "Kaede Hoshikawa " - ], - "categories": [ - "asynchronous" - ], - "keywords": [ - "yew", - "futures", - "async", - "io" - ], - "readme": "README.md", - "repository": "https://github.com/futursolo/prokio", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "promises-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "promises_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/src/promises_main.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "promises_features_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/tests/promises_features_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "promises-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "promises-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "promises-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-pause", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "check-pause", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proxy_pause", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/src/proxy_pause.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proxy_pause_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/tests/proxy_pause_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proxy_pause_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/tests/proxy_pause_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-pause-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "proxy-pause", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "proxy-pause-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-test-first", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proxy_test_first", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/src/proxy-test-first.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-test-first-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "proxy-test-first", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "proxy-test-first-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-test-second", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proxy_test_second", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/src/proxy-test-second.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proxy-test-second-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "proxy-test-second", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "proxy-test-second-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ptr_meta", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "license": "MIT", - "license_file": null, - "description": "A radioactive stabilization of the ptr_meta rfc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ptr_meta_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ptr_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.1.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.1.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std" - ], - "keywords": [ - "ptr", - "meta", - "no_std" - ], - "readme": "crates-io.md", - "repository": "https://github.com/djkoloski/ptr_meta", - "homepage": null, - "documentation": "https://docs.rs/ptr_meta", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ptr_meta", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "license": "MIT", - "license_file": null, - "description": "A radioactive stabilization of the ptr_meta rfc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ptr_meta_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ptr_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.3.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "derive", - "std" - ], - "derive": [ - "ptr_meta_derive" - ], - "ptr_meta_derive": [ - "dep:ptr_meta_derive" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/ptr_meta", - "homepage": null, - "documentation": "https://docs.rs/ptr_meta", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "ptr_meta_derive", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", - "license": "MIT", - "license_file": null, - "description": "Macros for ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "ptr_meta_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.1.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.1.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/djkoloski/ptr_meta", - "homepage": null, - "documentation": "https://docs.rs/ptr_meta_derive", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ptr_meta_derive", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", - "license": "MIT", - "license_file": null, - "description": "Proc macros for ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "full", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "ptr_meta_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.3.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ptr_meta_derive-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/ptr_meta", - "homepage": null, - "documentation": "https://docs.rs/ptr_meta_derive", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "queue-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "queue_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/src/queue_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "queue-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "queue-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "queue-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "quinn", - "version": "0.11.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.7", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Versatile QUIC transport protocol implementation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "async-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "async-std", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.19", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quinn-proto", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.10", - "kind": null, - "rename": "proto", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "smol", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.28.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "quinn-udp", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": "udp", - "optional": false, - "uses_default_features": false, - "features": [ - "tracing" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "crc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "directories-next", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-pemfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.28.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sync", - "rt", - "rt-multi-thread", - "time", - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std-future" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "env-filter", - "fmt", - "ansi", - "time", - "local-time" - ], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg_aliases", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "socket2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "quinn", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/client.rs", - "edition": "2021", - "required-features": [ - "rustls-ring" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "connection", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/connection.rs", - "edition": "2021", - "required-features": [ - "rustls-ring" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "insecure_connection", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/insecure_connection.rs", - "edition": "2021", - "required-features": [ - "rustls-ring" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "server", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/server.rs", - "edition": "2021", - "required-features": [ - "rustls-ring" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "single_socket", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/examples/single_socket.rs", - "edition": "2021", - "required-features": [ - "rustls-ring" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "many_connections", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/tests/many_connections.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/benches/bench.rs", - "edition": "2021", - "required-features": [ - "rustls-ring" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "async-io": [ - "dep:async-io" - ], - "async-std": [ - "dep:async-std" - ], - "aws-lc-rs": [ - "proto/aws-lc-rs" - ], - "aws-lc-rs-fips": [ - "proto/aws-lc-rs-fips" - ], - "default": [ - "log", - "platform-verifier", - "runtime-tokio", - "rustls-ring" - ], - "futures-io": [ - "dep:futures-io" - ], - "lock_tracking": [], - "log": [ - "tracing/log", - "proto/log", - "udp/log" - ], - "platform-verifier": [ - "proto/platform-verifier" - ], - "ring": [ - "proto/ring" - ], - "runtime-async-std": [ - "async-io", - "async-std" - ], - "runtime-smol": [ - "async-io", - "smol" - ], - "runtime-tokio": [ - "tokio/time", - "tokio/rt", - "tokio/net" - ], - "rustls": [ - "rustls-ring" - ], - "rustls-aws-lc-rs": [ - "dep:rustls", - "aws-lc-rs", - "proto/rustls-aws-lc-rs", - "proto/aws-lc-rs" - ], - "rustls-aws-lc-rs-fips": [ - "dep:rustls", - "aws-lc-rs-fips", - "proto/rustls-aws-lc-rs-fips", - "proto/aws-lc-rs-fips" - ], - "rustls-log": [ - "rustls?/logging" - ], - "rustls-ring": [ - "dep:rustls", - "ring", - "proto/rustls-ring", - "proto/ring" - ], - "smol": [ - "dep:smol" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-0.11.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "lock_tracking", - "rustls-aws-lc-rs", - "rustls-ring", - "runtime-tokio", - "runtime-async-std", - "runtime-smol", - "log", - "rustls-log" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "asynchronous" - ], - "keywords": [ - "quic" - ], - "readme": "README.md", - "repository": "https://github.com/quinn-rs/quinn", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "quinn-proto", - "version": "0.11.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "State machine for the QUIC transport protocol", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "aws-lc-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-platform-verifier", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinyvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "assert_matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "env-filter", - "fmt", - "ansi", - "time", - "local-time" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "wasm_js" - ], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasm32_unknown_unknown_js" - ], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "web" - ], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "web-time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "quinn_proto", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-proto-0.11.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "aws-lc-rs": [ - "dep:aws-lc-rs", - "aws-lc-rs?/aws-lc-sys", - "aws-lc-rs?/prebuilt-nasm" - ], - "aws-lc-rs-fips": [ - "aws-lc-rs", - "aws-lc-rs?/fips" - ], - "default": [ - "rustls-ring", - "log" - ], - "log": [ - "tracing/log" - ], - "platform-verifier": [ - "dep:rustls-platform-verifier" - ], - "ring": [ - "dep:ring" - ], - "rustls": [ - "rustls-ring" - ], - "rustls-aws-lc-rs": [ - "dep:rustls", - "rustls?/aws-lc-rs", - "aws-lc-rs" - ], - "rustls-aws-lc-rs-fips": [ - "rustls-aws-lc-rs", - "aws-lc-rs-fips" - ], - "rustls-log": [ - "rustls?/logging" - ], - "rustls-ring": [ - "dep:rustls", - "rustls?/ring", - "ring" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-proto-0.11.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "rustls-aws-lc-rs", - "rustls-ring", - "platform-verifier", - "log", - "rustls-log" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "asynchronous" - ], - "keywords": [ - "quic" - ], - "readme": null, - "repository": "https://github.com/quinn-rs/quinn", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "quinn-udp", - "version": "0.5.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "UDP sockets with ECN information for the QUIC transport protocol", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.158", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "async_tokio" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.28.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sync", - "rt", - "rt-multi-thread", - "net" - ], - "target": null, - "registry": null - }, - { - "name": "cfg_aliases", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "socket2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_IO", - "Win32_Networking_WinSock" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "quinn_udp", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "throughput", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/benches/throughput.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "tracing", - "log" - ], - "direct-log": [ - "dep:log" - ], - "fast-apple-datapath": [], - "log": [ - "tracing/log" - ], - "tracing": [ - "dep:tracing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quinn-udp-0.5.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "asynchronous" - ], - "keywords": [ - "quic" - ], - "readme": null, - "repository": "https://github.com/quinn-rs/quinn", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "quote", - "version": "1.0.39", - "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Quasi-quoting macro quote!(...)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.66", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "quote", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.39/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/quote", - "homepage": null, - "documentation": "https://docs.rs/quote/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "radium", - "version": "0.7.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#radium@0.7.0", - "license": "MIT", - "license_file": null, - "description": "Portable interfaces for maybe-atomic types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "radium", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radium-0.7.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radium-0.7.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radium-0.7.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nika Layzell ", - "myrrlyn " - ], - "categories": [ - "concurrency", - "no-std" - ], - "keywords": [ - "atomic", - "cell", - "sync", - "generic", - "trait" - ], - "readme": "README.md", - "repository": "https://github.com/bitvecto-rs/radium", - "homepage": "https://github.com/bitvecto-rs/radium", - "documentation": "https://docs.rs/radium", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "radix_trie", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", - "license": "MIT", - "license_file": null, - "description": "Generic radix trie data-structure.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "endian-type", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nibble_vec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "radix_trie", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "child_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/child_iter.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/debug.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "opt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/opt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string_frequency", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/examples/string_frequency.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "trie_benches", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/benches/trie_benches.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/radix_trie-0.2.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Michael Sproul " - ], - "categories": [ - "data-structures", - "text-processing" - ], - "keywords": [ - "trie", - "patricia", - "collection", - "generic", - "prefix" - ], - "readme": "README.md", - "repository": "https://github.com/michaelsproul/rust_radix_trie", - "homepage": null, - "documentation": "https://docs.rs/radix_trie/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rancor", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "license": "MIT", - "license_file": null, - "description": "Scalable and efficient error handling without type composition", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rancor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rancor-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rancor-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "keywords": [ - "error", - "error-handling", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/rancor", - "homepage": null, - "documentation": "https://docs.rs/rancor", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "rand", - "version": "0.8.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Random number generators and other randomness functionality.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "packed_simd_2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.7", - "kind": null, - "rename": "packed_simd", - "optional": true, - "uses_default_features": true, - "features": [ - "into_bits" - ], - "target": null, - "registry": null - }, - { - "name": "rand_chacha", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_pcg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [ - "rand_core/alloc" - ], - "default": [ - "std", - "std_rng" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "libc": [ - "dep:libc" - ], - "log": [ - "dep:log" - ], - "min_const_gen": [], - "nightly": [], - "packed_simd": [ - "dep:packed_simd" - ], - "rand_chacha": [ - "dep:rand_chacha" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde", - "rand_core/serde1" - ], - "simd_support": [ - "packed_simd" - ], - "small_rng": [], - "std": [ - "rand_core/std", - "rand_chacha/std", - "alloc", - "getrandom", - "libc" - ], - "std_rng": [ - "rand_chacha" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ] - } - }, - "playground": { - "features": [ - "small_rng", - "serde1" - ] - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rand", - "version": "0.9.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Random number generators and other randomness functionality.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_chacha", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_pcg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std", - "std_rng", - "os_rng", - "small_rng", - "thread_rng" - ], - "log": [ - "dep:log" - ], - "nightly": [], - "os_rng": [ - "rand_core/os_rng" - ], - "serde": [ - "dep:serde", - "rand_core/serde" - ], - "simd_support": [], - "small_rng": [], - "std": [ - "rand_core/std", - "rand_chacha?/std", - "alloc" - ], - "std_rng": [ - "dep:rand_chacha" - ], - "thread_rng": [ - "std", - "std_rng", - "os_rng" - ], - "unbiased": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "small_rng", - "serde" - ] - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rand_chacha", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "ChaCha random number generator\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ppv-lite86", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_chacha", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "simd": [], - "std": [ - "ppv-lite86/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers", - "The CryptoCorrosion Contributors" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng", - "chacha" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand_chacha", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rand_chacha", - "version": "0.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "ChaCha random number generator\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ppv-lite86", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "os_rng" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_chacha", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "os_rng": [ - "rand_core/os_rng" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "ppv-lite86/std", - "rand_core/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers", - "The CryptoCorrosion Contributors" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng", - "chacha" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand_chacha", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rand_core", - "version": "0.6.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Core random number generator traits and tools for implementation.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "getrandom": [ - "dep:getrandom" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "std": [ - "alloc", - "getrandom", - "getrandom/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ] - } - }, - "playground": { - "all-features": true - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand_core", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rand_core", - "version": "0.9.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Core random number generator traits and tools for implementation.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "os_rng": [ - "dep:getrandom" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "getrandom?/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - }, - "playground": { - "all-features": true - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand_core", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rand_seeder", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A universal random number seeder based on SipHash.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_seeder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "seedrng", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/examples/seedrng.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/benches/mod.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_seeder-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng", - "seeder" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/seeder", - "homepage": "https://rust-random.github.io/book/guide-seeding.html#a-string-or-any-hashable-data", - "documentation": "https://docs.rs/rand_seeder", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "random", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "random", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "dorin-iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rayon", - "version": "1.10.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Simple work-stealing parallelism for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm_sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rayon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chars", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/chars.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "clones", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/clones.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "collect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/collect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cross-pool", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/cross-pool.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/debug.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "drain_vec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/drain_vec.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "intersperse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/intersperse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue671", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/issue671.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue671-unzip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/issue671-unzip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "iter_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/iter_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "named-threads", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/named-threads.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "octillion", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/octillion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "par_bridge_recursion", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/par_bridge_recursion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "producer_split_at", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/producer_split_at.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sort-panic-safe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/sort-panic-safe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "str", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/tests/str.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "web_spin_lock": [ - "dep:wasm_sync", - "rayon-core/web_spin_lock" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.10.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "homepage": null, - "documentation": "https://docs.rs/rayon/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rayon-core", - "version": "1.12.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Core APIs for Rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm_sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scoped-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rayon_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "double_init_fail", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/double_init_fail.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "init_zero_threads", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/init_zero_threads.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scope_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/scope_join.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scoped_threadpool", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/scoped_threadpool.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "simple_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/simple_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stack_overflow_crash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/stack_overflow_crash.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_current_thread", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/tests/use_current_thread.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "web_spin_lock": [ - "dep:wasm_sync" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.12.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "homepage": null, - "documentation": "https://docs.rs/rayon/", - "edition": "2021", - "links": "rayon-core", - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rc-new-cyclic-fallible", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", - "license": "GPL-3.0-only", - "license_file": null, - "description": "Fallible variant of Rc::new_cyclic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rc_new_cyclic_fallible", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rc_new_cyclic_fallible_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/tests/rc_new_cyclic_fallible_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rc-new-cyclic-fallible-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrei Marinica ", - "MultiversX " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/multiversx/rc-new-cyclic-fallible", - "homepage": null, - "documentation": "https://github.com/multiversx/rc-new-cyclic-fallible/blob/main/README.md", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "recursive-caller", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "recursive_caller", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/src/recursive_caller.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "recursive-caller-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "recursive-caller", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "recursive-caller-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "regex", - "version": "1.11.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "syntax", - "meta", - "nfa-pikevm" - ], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "atty", - "humantime", - "termcolor" - ], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std", - "perf", - "unicode", - "regex-syntax/default" - ], - "logging": [ - "aho-corasick?/logging", - "memchr?/logging", - "regex-automata/logging" - ], - "pattern": [], - "perf": [ - "perf-cache", - "perf-dfa", - "perf-onepass", - "perf-backtrack", - "perf-inline", - "perf-literal" - ], - "perf-backtrack": [ - "regex-automata/nfa-backtrack" - ], - "perf-cache": [], - "perf-dfa": [ - "regex-automata/hybrid" - ], - "perf-dfa-full": [ - "regex-automata/dfa-build", - "regex-automata/dfa-search" - ], - "perf-inline": [ - "regex-automata/perf-inline" - ], - "perf-literal": [ - "dep:aho-corasick", - "dep:memchr", - "regex-automata/perf-literal" - ], - "perf-onepass": [ - "regex-automata/dfa-onepass" - ], - "std": [ - "aho-corasick?/std", - "memchr?/std", - "regex-automata/std", - "regex-syntax/std" - ], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "regex-automata/unicode", - "regex-syntax/unicode" - ], - "unicode-age": [ - "regex-automata/unicode-age", - "regex-syntax/unicode-age" - ], - "unicode-bool": [ - "regex-automata/unicode-bool", - "regex-syntax/unicode-bool" - ], - "unicode-case": [ - "regex-automata/unicode-case", - "regex-syntax/unicode-case" - ], - "unicode-gencat": [ - "regex-automata/unicode-gencat", - "regex-syntax/unicode-gencat" - ], - "unicode-perl": [ - "regex-automata/unicode-perl", - "regex-automata/unicode-word-boundary", - "regex-syntax/unicode-perl" - ], - "unicode-script": [ - "regex-automata/unicode-script", - "regex-syntax/unicode-script" - ], - "unicode-segment": [ - "regex-automata/unicode-segment", - "regex-syntax/unicode-segment" - ], - "unstable": [ - "pattern" - ], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers", - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "homepage": "https://github.com/rust-lang/regex", - "documentation": "https://docs.rs/regex", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "regex-automata", - "version": "0.4.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Automata construction and matching using regular expressions.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "atty", - "humantime", - "termcolor" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex_automata", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std", - "syntax", - "perf", - "unicode", - "meta", - "nfa", - "dfa", - "hybrid" - ], - "dfa": [ - "dfa-build", - "dfa-search", - "dfa-onepass" - ], - "dfa-build": [ - "nfa-thompson", - "dfa-search" - ], - "dfa-onepass": [ - "nfa-thompson" - ], - "dfa-search": [], - "hybrid": [ - "alloc", - "nfa-thompson" - ], - "internal-instrument": [ - "internal-instrument-pikevm" - ], - "internal-instrument-pikevm": [ - "logging", - "std" - ], - "logging": [ - "dep:log", - "aho-corasick?/logging", - "memchr?/logging" - ], - "meta": [ - "syntax", - "nfa-pikevm" - ], - "nfa": [ - "nfa-thompson", - "nfa-pikevm", - "nfa-backtrack" - ], - "nfa-backtrack": [ - "nfa-thompson" - ], - "nfa-pikevm": [ - "nfa-thompson" - ], - "nfa-thompson": [ - "alloc" - ], - "perf": [ - "perf-inline", - "perf-literal" - ], - "perf-inline": [], - "perf-literal": [ - "perf-literal-substring", - "perf-literal-multisubstring" - ], - "perf-literal-multisubstring": [ - "std", - "dep:aho-corasick" - ], - "perf-literal-substring": [ - "aho-corasick?/perf-literal", - "dep:memchr" - ], - "std": [ - "regex-syntax?/std", - "memchr?/std", - "aho-corasick?/std", - "alloc" - ], - "syntax": [ - "dep:regex-syntax", - "alloc" - ], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "unicode-word-boundary", - "regex-syntax?/unicode" - ], - "unicode-age": [ - "regex-syntax?/unicode-age" - ], - "unicode-bool": [ - "regex-syntax?/unicode-bool" - ], - "unicode-case": [ - "regex-syntax?/unicode-case" - ], - "unicode-gencat": [ - "regex-syntax?/unicode-gencat" - ], - "unicode-perl": [ - "regex-syntax?/unicode-perl" - ], - "unicode-script": [ - "regex-syntax?/unicode-script" - ], - "unicode-segment": [ - "regex-syntax?/unicode-segment" - ], - "unicode-word-boundary": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers", - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "regex", - "dfa", - "automata", - "automaton", - "nfa" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex/tree/master/regex-automata", - "homepage": null, - "documentation": "https://docs.rs/regex-automata", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "regex-syntax", - "version": "0.8.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A regular expression parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex_syntax", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "default": [ - "std", - "unicode" - ], - "std": [], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "unicode-age": [], - "unicode-bool": [], - "unicode-case": [], - "unicode-gencat": [], - "unicode-perl": [], - "unicode-script": [], - "unicode-segment": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers", - "Andrew Gallant " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex/tree/master/regex-syntax", - "homepage": null, - "documentation": "https://docs.rs/regex-syntax", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "region", - "version": "3.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "license": "MIT", - "license_file": null, - "description": "Cross-platform virtual memory API", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.153", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mach2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", - "registry": null - }, - { - "name": "mmap-fixed", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.6", - "kind": "dev", - "rename": "mmap", - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Memory", - "Win32_System_SystemInformation", - "Win32_System_Diagnostics_Debug" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "region", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/region-3.0.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/region-3.0.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Elliott Linder " - ], - "categories": [], - "keywords": [ - "region", - "page", - "lock", - "protect", - "maps" - ], - "readme": "README.md", - "repository": "https://github.com/darfink/region-rs", - "homepage": "https://github.com/darfink/region-rs", - "documentation": "https://docs.rs/region", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rend", - "version": "0.4.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.4.2", - "license": "MIT", - "license_file": null, - "description": "Endian-aware primitives for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~0.6.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rend", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.4.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.4.2/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bytecheck": [ - "dep:bytecheck" - ], - "bytemuck": [ - "dep:bytemuck" - ], - "default": [ - "std" - ], - "std": [ - "bytecheck/std" - ], - "validation": [ - "bytecheck" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.4.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std" - ], - "keywords": [ - "endian", - "no_std" - ], - "readme": "crates-io.md", - "repository": "https://github.com/djkoloski/rend", - "homepage": null, - "documentation": "https://docs.rs/rend", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rend", - "version": "0.5.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", - "license": "MIT", - "license_file": null, - "description": "Cross-platform, endian-aware primitives for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "bytemuck-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rend", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.5.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bytecheck": [ - "dep:bytecheck" - ], - "bytemuck-1": [ - "dep:bytemuck-1" - ], - "default": [], - "zerocopy-0_8": [ - "dep:zerocopy", - "dep:zerocopy-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rend-0.5.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std" - ], - "keywords": [ - "endian", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/djkoloski/rend", - "homepage": null, - "documentation": "https://docs.rs/rend", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "reqwest", - "version": "0.12.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "higher level HTTP client library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mime_guess", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sync_wrapper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures" - ], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "limit" - ], - "target": null, - "registry": null - }, - { - "name": "async-compression", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "tokio" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "cookie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.18.0", - "kind": null, - "rename": "cookie_crate", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "cookie_store", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.21.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "encoding_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "h2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "h3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "h3-quinn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hickory-resolver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.24", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "tokio-runtime" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "http-body", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "http1", - "client" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper-rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.27.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "http1", - "tls12" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "http1", - "client", - "client-legacy", - "tokio" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "ipnet", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "mime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.16", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.10", - "kind": null, - "rename": "native-tls-crate", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "quinn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "rustls", - "runtime-tokio" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "tls12" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls-native-certs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls-pemfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "net", - "time" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "tls12" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-socks", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "codec", - "io" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tower", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "timeout", - "util" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "brotli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.0", - "kind": "dev", - "rename": "brotli_crate", - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.28", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "alloc" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "http1", - "http2", - "client", - "server" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "http1", - "http2", - "client", - "client-legacy", - "server-auto", - "tokio" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "libflate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "ring" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros", - "rt-multi-thread" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "zstd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": "zstd_crate", - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.89", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-streams", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "AbortController", - "AbortSignal", - "Headers", - "Request", - "RequestInit", - "RequestMode", - "Response", - "Window", - "FormData", - "Blob", - "BlobPropertyBag", - "ServiceWorkerGlobalScope", - "RequestCredentials", - "File", - "ReadableStream" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.89", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde-serialize" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "system-configuration", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"macos\")", - "registry": null - }, - { - "name": "windows-registry", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "reqwest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "blocking", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/blocking.rs", - "edition": "2021", - "required-features": [ - "blocking" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "connect_via_lower_priority_tokio_runtime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/connect_via_lower_priority_tokio_runtime.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "form", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/form.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "h3_simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/h3_simple.rs", - "edition": "2021", - "required-features": [ - "http3", - "rustls-tls" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_dynamic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/json_dynamic.rs", - "edition": "2021", - "required-features": [ - "json" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_typed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/json_typed.rs", - "edition": "2021", - "required-features": [ - "json" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tor_socks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/examples/tor_socks.rs", - "edition": "2021", - "required-features": [ - "socks" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "badssl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/badssl.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "blocking", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/blocking.rs", - "edition": "2021", - "required-features": [ - "blocking" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "brotli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/brotli.rs", - "edition": "2021", - "required-features": [ - "brotli", - "stream" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/client.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "connector_layers", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/connector_layers.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cookie", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/cookie.rs", - "edition": "2021", - "required-features": [ - "cookies" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deflate", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/deflate.rs", - "edition": "2021", - "required-features": [ - "deflate", - "stream" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gzip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/gzip.rs", - "edition": "2021", - "required-features": [ - "gzip", - "stream" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "http3", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/http3.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multipart", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/multipart.rs", - "edition": "2021", - "required-features": [ - "multipart" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proxy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "redirect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/redirect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "timeouts", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/timeouts.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "upgrade", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/upgrade.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wasm_simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/wasm_simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zstd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/tests/zstd.rs", - "edition": "2021", - "required-features": [ - "zstd", - "stream" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__rustls": [ - "dep:hyper-rustls", - "dep:tokio-rustls", - "dep:rustls", - "__tls", - "dep:rustls-pemfile", - "dep:rustls-pki-types" - ], - "__rustls-ring": [ - "hyper-rustls?/ring", - "tokio-rustls?/ring", - "rustls?/ring", - "quinn?/ring" - ], - "__tls": [ - "dep:rustls-pemfile", - "tokio/io-util" - ], - "blocking": [ - "dep:futures-channel", - "futures-channel?/sink", - "futures-util/io", - "futures-util/sink", - "tokio/sync" - ], - "brotli": [ - "dep:async-compression", - "async-compression?/brotli", - "dep:tokio-util" - ], - "charset": [ - "dep:encoding_rs" - ], - "cookies": [ - "dep:cookie_crate", - "dep:cookie_store" - ], - "default": [ - "default-tls", - "charset", - "http2", - "macos-system-configuration" - ], - "default-tls": [ - "dep:hyper-tls", - "dep:native-tls-crate", - "__tls", - "dep:tokio-native-tls" - ], - "deflate": [ - "dep:async-compression", - "async-compression?/zlib", - "dep:tokio-util" - ], - "gzip": [ - "dep:async-compression", - "async-compression?/gzip", - "dep:tokio-util" - ], - "h2": [ - "dep:h2" - ], - "hickory-dns": [ - "dep:hickory-resolver" - ], - "http2": [ - "h2", - "hyper/http2", - "hyper-util/http2", - "hyper-rustls?/http2" - ], - "http3": [ - "rustls-tls-manual-roots", - "dep:h3", - "dep:h3-quinn", - "dep:quinn", - "dep:slab", - "dep:futures-channel" - ], - "json": [ - "dep:serde_json" - ], - "macos-system-configuration": [ - "dep:system-configuration" - ], - "multipart": [ - "dep:mime_guess" - ], - "native-tls": [ - "default-tls" - ], - "native-tls-alpn": [ - "native-tls", - "native-tls-crate?/alpn", - "hyper-tls?/alpn" - ], - "native-tls-vendored": [ - "native-tls", - "native-tls-crate?/vendored" - ], - "rustls-tls": [ - "rustls-tls-webpki-roots" - ], - "rustls-tls-manual-roots": [ - "rustls-tls-manual-roots-no-provider", - "__rustls-ring" - ], - "rustls-tls-manual-roots-no-provider": [ - "__rustls" - ], - "rustls-tls-native-roots": [ - "rustls-tls-native-roots-no-provider", - "__rustls-ring" - ], - "rustls-tls-native-roots-no-provider": [ - "dep:rustls-native-certs", - "hyper-rustls?/native-tokio", - "__rustls" - ], - "rustls-tls-no-provider": [ - "rustls-tls-manual-roots-no-provider" - ], - "rustls-tls-webpki-roots": [ - "rustls-tls-webpki-roots-no-provider", - "__rustls-ring" - ], - "rustls-tls-webpki-roots-no-provider": [ - "dep:webpki-roots", - "hyper-rustls?/webpki-tokio", - "__rustls" - ], - "socks": [ - "dep:tokio-socks" - ], - "stream": [ - "tokio/fs", - "dep:tokio-util", - "dep:wasm-streams" - ], - "trust-dns": [], - "zstd": [ - "dep:async-compression", - "async-compression?/zstd", - "dep:tokio-util" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "reqwest_unstable" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "wasm32-unknown-unknown" - ] - } - }, - "playground": { - "features": [ - "blocking", - "cookies", - "json", - "multipart" - ] - } - }, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "web-programming::http-client", - "wasm" - ], - "keywords": [ - "http", - "request", - "client" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/reqwest", - "homepage": null, - "documentation": "https://docs.rs/reqwest", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "rewards-distribution", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rewards_distribution", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/src/rewards_distribution.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mock_seed_nft_minter", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/mock_seed_nft_minter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mock_seed_nft_minter_proxy", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/mock_seed_nft_minter_proxy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rewards_distribution_integration_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/rewards_distribution_integration_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/tests/utils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rewards-distribution-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "rewards-distribution", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "rewards-distribution-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ring", - "version": "0.17.14", - "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "license": "Apache-2.0 AND ISC", - "license_file": null, - "description": "An experiment.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "untrusted", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.8", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Threading" - ], - "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.148", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.37", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.148", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(unix, windows, target_os = \"wasi\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "aead_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/aead_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "agreement_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/agreement_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constant_time_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/constant_time_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "digest_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/digest_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ecdsa_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/ecdsa_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ed25519_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/ed25519_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/error_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hkdf_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/hkdf_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hmac_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/hmac_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pbkdf2_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/pbkdf2_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quic_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/quic_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rand_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/rand_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rsa_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/rsa_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signature_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/tests/signature_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "alloc", - "dev_urandom_fallback" - ], - "dev_urandom_fallback": [], - "less-safe-getrandom-custom-or-rdrand": [], - "less-safe-getrandom-espidf": [], - "slow_tests": [], - "std": [ - "alloc" - ], - "test_logging": [], - "unstable-testing-arm-no-hw": [], - "unstable-testing-arm-no-neon": [], - "wasm32_unknown_unknown_js": [ - "getrandom/js" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "cryptography", - "rand", - "ECC", - "RSA" - ], - "readme": "README.md", - "repository": "https://github.com/briansmith/ring", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": "ring_core_0_17_14_", - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "rkyv", - "version": "0.7.45", - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "license": "MIT", - "license_file": null, - "description": "Zero-copy deserialization framework for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rend", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.45", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "seahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smol_str", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinyvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rkyv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.7.45/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.7.45/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "hashbrown", - "bitvec?/alloc", - "tinyvec?/alloc" - ], - "arbitrary_enum_discriminant": [ - "rkyv_derive/arbitrary_enum_discriminant" - ], - "archive_be": [ - "rend", - "rkyv_derive/archive_be" - ], - "archive_le": [ - "rend", - "rkyv_derive/archive_le" - ], - "arrayvec": [ - "dep:arrayvec" - ], - "bitvec": [ - "dep:bitvec" - ], - "bytecheck": [ - "dep:bytecheck" - ], - "bytes": [ - "dep:bytes" - ], - "copy": [ - "rkyv_derive/copy" - ], - "copy_unsafe": [], - "default": [ - "size_32", - "std" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "indexmap": [ - "dep:indexmap" - ], - "rend": [ - "dep:rend" - ], - "size_16": [], - "size_32": [], - "size_64": [], - "smallvec": [ - "dep:smallvec" - ], - "smol_str": [ - "dep:smol_str" - ], - "std": [ - "alloc", - "bytecheck?/std", - "ptr_meta/std", - "rend?/std", - "uuid?/std", - "bytes?/std" - ], - "strict": [ - "rkyv_derive/strict" - ], - "tinyvec": [ - "dep:tinyvec" - ], - "uuid": [ - "dep:uuid", - "bytecheck?/uuid" - ], - "validation": [ - "alloc", - "bytecheck", - "rend/validation" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.7.45/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "validation" - ] - } - } - }, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std" - ], - "keywords": [ - "archive", - "rkyv", - "serialization", - "zero-copy", - "no_std" - ], - "readme": "crates-io.md", - "repository": "https://github.com/rkyv/rkyv", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rkyv", - "version": "0.8.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "license": "MIT", - "license_file": null, - "description": "Zero-copy deserialization framework for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": "arrayvec-0_7", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "simdutf8" - ], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "bytes-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": "hashbrown-0_14", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": "indexmap-2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "munge", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ptr_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rancor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rend", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "smallvec-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smol_str", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": "smol_str-0_2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smol_str", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": "smol_str-0_3", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thin-vec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.12", - "kind": null, - "rename": "thin-vec-0_2", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinyvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "tinyvec-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "triomphe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": "triomphe-0_1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "uuid-1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "divan", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rkyv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "backwards_compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/backwards_compat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "complex_wrapper_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/complex_wrapper_types.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "derive_partial_ord", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/derive_partial_ord.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "explicit_enum_discriminants", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/explicit_enum_discriminants.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_like_schema", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/json_like_schema.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "readme", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/readme.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "remote_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/examples/remote_types.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/tests/derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ui", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/tests/ui.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "log", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/log.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mesh", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/mesh.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "minecraft_savedata", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/benches/minecraft_savedata.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aligned": [], - "alloc": [ - "dep:hashbrown", - "tinyvec-1?/alloc", - "rancor/alloc" - ], - "arrayvec-0_7": [ - "dep:arrayvec-0_7" - ], - "big_endian": [], - "bytecheck": [ - "dep:bytecheck", - "rend/bytecheck", - "rkyv_derive/bytecheck" - ], - "bytes-1": [ - "dep:bytes-1" - ], - "default": [ - "std", - "bytecheck" - ], - "hashbrown-0_14": [ - "dep:hashbrown-0_14" - ], - "hashbrown-0_15": [ - "dep:hashbrown" - ], - "indexmap-2": [ - "dep:indexmap-2", - "alloc" - ], - "little_endian": [], - "pointer_width_16": [], - "pointer_width_32": [], - "pointer_width_64": [], - "smallvec-1": [ - "dep:smallvec-1" - ], - "smol_str-0_2": [ - "dep:smol_str-0_2" - ], - "smol_str-0_3": [ - "dep:smol_str-0_3" - ], - "std": [ - "alloc", - "bytes-1?/std", - "indexmap-2?/std", - "ptr_meta/std", - "uuid-1?/std" - ], - "thin-vec-0_2": [ - "dep:thin-vec-0_2" - ], - "tinyvec-1": [ - "dep:tinyvec-1" - ], - "triomphe-0_1": [ - "dep:triomphe-0_1", - "alloc" - ], - "unaligned": [], - "uuid-1": [ - "dep:uuid-1", - "bytecheck?/uuid-1" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv-0.8.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "bytecheck" - ] - } - } - }, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "archive", - "rkyv", - "serialization", - "zero-copy", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/rkyv", - "homepage": null, - "documentation": "https://docs.rs/rkyv", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "rkyv_derive", - "version": "0.7.45", - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.7.45", - "license": "MIT", - "license_file": null, - "description": "Derive macro for rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "rkyv_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.7.45/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary_enum_discriminant": [], - "archive_be": [], - "archive_le": [], - "copy": [], - "default": [], - "strict": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.7.45/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rkyv/rkyv", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rkyv_derive", - "version": "0.8.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", - "license": "MIT", - "license_file": null, - "description": "Derive macro for rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.73", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "rkyv_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.8.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bytecheck": [], - "default": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rkyv_derive-0.8.10/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "David Koloski " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "archive", - "rkyv", - "serialization", - "zero-copy", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rkyv/rkyv", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "route-recognizer", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", - "license": "MIT", - "license_file": null, - "description": "Recognizes URL patterns with support for dynamic and wildcard segments", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "route_recognizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "nfa", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/benches/nfa.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/route-recognizer-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "wycats", - "rustasync" - ], - "categories": [], - "keywords": [ - "router", - "url" - ], - "readme": "README.md", - "repository": "https://github.com/rustasync/route-recognizer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ruplacer", - "version": "0.10.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", - "license": "BSD-3-Clause", - "license_file": null, - "description": "Find and replace text in source files", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "Inflector", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.32", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.3.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ignore", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruplacer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ruplacer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/tests/integration_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruplacer-0.10.0/Cargo.toml", - "metadata": { - "deb": { - "extended-description": "Find and replace text in source files" - } - }, - "publish": null, - "authors": [ - "Dimitri Merejkowsky " - ], - "categories": [ - "command-line-utilities" - ], - "keywords": [ - "ruplacer", - "find", - "grep", - "command", - "line" - ], - "readme": "README.md", - "repository": "https://github.com/your-tools/ruplacer", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rust-snippets-generator-test", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rust_snippets_generator_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rust-snippets-generator-test-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "rust-snippets-generator-test", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "rust-snippets-generator-test-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rust-testing-framework-tester", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "adder", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder" - }, - { - "name": "basic-features", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features" - }, - { - "name": "forwarder", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder" - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rust_testing_framework_tester", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rust_testing_framework_tester_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rust_testing_framework_tester_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tester_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/tester_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tester_whitebox_legacy_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/tests/tester_whitebox_legacy_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rust-testing-framework-tester-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "rust-testing-framework-tester", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "rust-testing-framework-tester-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustc-demangle", - "version": "0.1.24", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Rust compiler symbol demangling.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustc_demangle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-demangle-0.1.24/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-demangle-0.1.24/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/rustc-demangle", - "homepage": "https://github.com/rust-lang/rustc-demangle", - "documentation": "https://docs.rs/rustc-demangle", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustc-hash", - "version": "1.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "speed, non-cryptographic hash used in rustc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustc_hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "keywords": [ - "hash", - "fxhash", - "rustc" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/rustc-hash", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustc-hash", - "version": "2.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A speedy, non-cryptographic hashing algorithm used by rustc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustc_hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "nightly": [], - "rand": [ - "dep:rand", - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "keywords": [ - "hash", - "hasher", - "fxhash", - "rustc" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/rustc-hash", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustc_version", - "version": "0.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library for querying the version of a installed rustc compiler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustc_version", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/tests/all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "version", - "rustc" - ], - "readme": "README.md", - "repository": "https://github.com/djc/rustc-version-rs", - "homepage": null, - "documentation": "https://docs.rs/rustc_version/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.32" - }, - { - "name": "rustix", - "version": "0.38.44", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.49", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.161", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": "dev", - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "linux-raw-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "general", - "ioctl", - "no_std" - ], - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.161", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": "libc_errno", - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "linux-raw-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "general", - "errno", - "ioctl", - "no_std", - "elf" - ], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.161", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_NetworkManagement_IpHelper", - "Win32_System_Threading" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustix", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "all-apis": [ - "event", - "fs", - "io_uring", - "mm", - "mount", - "net", - "param", - "pipe", - "process", - "procfs", - "pty", - "rand", - "runtime", - "shm", - "stdio", - "system", - "termios", - "thread", - "time" - ], - "alloc": [], - "cc": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "use-libc-auxv" - ], - "event": [], - "fs": [], - "io_uring": [ - "event", - "fs", - "net", - "linux-raw-sys/io_uring" - ], - "itoa": [ - "dep:itoa" - ], - "libc": [ - "dep:libc" - ], - "libc-extra-traits": [ - "libc?/extra_traits" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "linux_4_11": [], - "linux_latest": [ - "linux_4_11" - ], - "mm": [], - "mount": [], - "net": [ - "linux-raw-sys/net", - "linux-raw-sys/netlink", - "linux-raw-sys/if_ether", - "linux-raw-sys/xdp" - ], - "once_cell": [ - "dep:once_cell" - ], - "param": [ - "fs" - ], - "pipe": [], - "process": [ - "linux-raw-sys/prctl" - ], - "procfs": [ - "once_cell", - "itoa", - "fs" - ], - "pty": [ - "itoa", - "fs" - ], - "rand": [], - "runtime": [ - "linux-raw-sys/prctl" - ], - "rustc-dep-of-std": [ - "core", - "rustc-std-workspace-alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std", - "compiler_builtins?/rustc-dep-of-std" - ], - "rustc-std-workspace-alloc": [ - "dep:rustc-std-workspace-alloc" - ], - "shm": [ - "fs" - ], - "std": [ - "bitflags/std", - "alloc", - "libc?/std", - "libc_errno?/std", - "libc-extra-traits" - ], - "stdio": [], - "system": [ - "linux-raw-sys/system" - ], - "termios": [], - "thread": [ - "linux-raw-sys/prctl" - ], - "time": [], - "try_close": [], - "use-explicitly-provided-auxv": [], - "use-libc": [ - "libc_errno", - "libc", - "libc-extra-traits" - ], - "use-libc-auxv": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc", - "x86_64-unknown-freebsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-netbsd", - "x86_64-unknown-dragonfly", - "x86_64-unknown-illumos", - "x86_64-unknown-redox", - "x86_64-unknown-haiku", - "wasm32-unknown-emscripten", - "wasm32-wasip1" - ] - } - } - }, - "publish": null, - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "homepage": null, - "documentation": "https://docs.rs/rustix", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rustix", - "version": "1.0.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.49", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": "dev", - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "linux-raw-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "general", - "ioctl", - "no_std" - ], - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": "libc_errno", - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "linux-raw-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "general", - "errno", - "ioctl", - "no_std", - "elf" - ], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock" - ], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.20.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustix", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "all-apis": [ - "event", - "fs", - "io_uring", - "mm", - "mount", - "net", - "param", - "pipe", - "process", - "pty", - "rand", - "runtime", - "shm", - "stdio", - "system", - "termios", - "thread", - "time" - ], - "alloc": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "event": [], - "fs": [], - "io_uring": [ - "event", - "fs", - "net", - "thread", - "linux-raw-sys/io_uring" - ], - "libc": [ - "dep:libc" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "linux_4_11": [], - "linux_5_1": [ - "linux_4_11" - ], - "linux_5_11": [ - "linux_5_1" - ], - "linux_latest": [ - "linux_5_11" - ], - "mm": [], - "mount": [], - "net": [ - "linux-raw-sys/net", - "linux-raw-sys/netlink", - "linux-raw-sys/if_ether", - "linux-raw-sys/xdp" - ], - "param": [], - "pipe": [], - "process": [ - "linux-raw-sys/prctl" - ], - "pty": [ - "fs" - ], - "rand": [], - "runtime": [ - "linux-raw-sys/prctl" - ], - "rustc-dep-of-std": [ - "core", - "rustc-std-workspace-alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std", - "compiler_builtins?/rustc-dep-of-std" - ], - "rustc-std-workspace-alloc": [ - "dep:rustc-std-workspace-alloc" - ], - "shm": [ - "fs" - ], - "std": [ - "bitflags/std", - "alloc", - "libc?/std", - "libc_errno?/std" - ], - "stdio": [], - "system": [ - "linux-raw-sys/system" - ], - "termios": [], - "thread": [ - "linux-raw-sys/prctl" - ], - "time": [], - "try_close": [], - "use-explicitly-provided-auxv": [], - "use-libc": [ - "libc_errno", - "libc" - ], - "use-libc-auxv": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.0.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc", - "x86_64-unknown-freebsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-netbsd", - "x86_64-unknown-dragonfly", - "x86_64-unknown-illumos", - "x86_64-unknown-redox", - "x86_64-unknown-haiku", - "wasm32-unknown-emscripten", - "wasm32-wasip1" - ] - } - } - }, - "publish": null, - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "homepage": null, - "documentation": "https://docs.rs/rustix", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rustls", - "version": "0.23.26", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "license": "Apache-2.0 OR ISC OR MIT", - "license_file": null, - "description": "Rustls is a modern TLS library written in Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aws-lc-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "brotli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "brotli-decompressor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher", - "inline-more" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.16", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "race" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-webpki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.103", - "kind": null, - "rename": "webpki", - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zlib-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "macro_rules_attribute", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "pem", - "aws_lc_rs" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "x509-parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "test_ca", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/examples/internal/test_ca.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/benches/benchmarks.rs", - "edition": "2021", - "required-features": [ - "ring" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aws-lc-rs": [ - "aws_lc_rs" - ], - "aws_lc_rs": [ - "dep:aws-lc-rs", - "webpki/aws-lc-rs", - "aws-lc-rs/aws-lc-sys", - "aws-lc-rs/prebuilt-nasm" - ], - "brotli": [ - "dep:brotli", - "dep:brotli-decompressor", - "std" - ], - "custom-provider": [], - "default": [ - "aws_lc_rs", - "logging", - "std", - "tls12" - ], - "fips": [ - "aws_lc_rs", - "aws-lc-rs?/fips", - "webpki/aws-lc-rs-fips" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "log": [ - "dep:log" - ], - "logging": [ - "log" - ], - "prefer-post-quantum": [ - "aws_lc_rs" - ], - "read_buf": [ - "rustversion", - "std" - ], - "ring": [ - "dep:ring", - "webpki/ring" - ], - "rustversion": [ - "dep:rustversion" - ], - "std": [ - "webpki/std", - "pki-types/std", - "once_cell/std" - ], - "tls12": [], - "zlib": [ - "dep:zlib-rs" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.26/Cargo.toml", - "metadata": { - "cargo-semver-checks": { - "lints": { - "enum_no_repr_variant_discriminant_changed": "warn" - } - }, - "cargo_check_external_types": { - "allowed_external_types": [ - "rustls_pki_types", - "rustls_pki_types::*" - ] - }, - "docs": { - "rs": { - "features": [ - "read_buf", - "ring" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "cryptography" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/rustls", - "homepage": "https://github.com/rustls/rustls", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "rustls-pemfile", - "version": "2.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", - "license": "Apache-2.0 OR ISC OR MIT", - "license_file": null, - "description": "Basic .pem file parser for keys and certificates", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustls_pemfile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/tests/integration.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/benches/benchmark.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "pki-types/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "cryptography" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/pemfile", - "homepage": "https://github.com/rustls/pemfile", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustls-pki-types", - "version": "1.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Shared types for the rustls PKI ecosystem", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "web-time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "crabgrind", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.1.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_os = \"linux\", target_arch = \"x86_64\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustls_pki_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dns_name", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/dns_name.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "key_type", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/key_type.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pem", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/pem.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "server_name", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/tests/server_name.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "std": [ - "alloc" - ], - "web": [ - "web-time" - ], - "web-time": [ - "dep:web-time" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "data-structures", - "cryptography" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/pki-types", - "homepage": "https://github.com/rustls/pki-types", - "documentation": "https://docs.rs/rustls-pki-types", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "rustls-webpki", - "version": "0.103.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", - "license": "ISC", - "license_file": null, - "description": "Web PKI X.509 Certificate Verification.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aws-lc-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "untrusted", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bzip2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "aws_lc_rs" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "webpki", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "amazon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/amazon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "better_tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/better_tls.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cert_v1_unsupported", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/cert_v1_unsupported.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cert_without_extensions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/cert_without_extensions.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client_auth", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/client_auth.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client_auth_revocation", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/client_auth_revocation.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crl_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/crl_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom_ekus", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/custom_ekus.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/integration.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signatures", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/signatures.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tls_server_certs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/tests/tls_server_certs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "ring?/alloc", - "pki-types/alloc" - ], - "aws-lc-rs": [ - "dep:aws-lc-rs", - "aws-lc-rs/aws-lc-sys", - "aws-lc-rs/prebuilt-nasm" - ], - "aws-lc-rs-fips": [ - "dep:aws-lc-rs", - "aws-lc-rs/fips" - ], - "default": [ - "std" - ], - "ring": [ - "dep:ring" - ], - "std": [ - "alloc", - "pki-types/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.1/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "rustls_pki_types::*", - "rustls_pki_types" - ] - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/webpki", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "rustversion", - "version": "1.0.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Conditional compilation according to rustc compiler version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.49", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "rustversion", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_const", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_const.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_eval", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_eval.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/tests/test_parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/build/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::build-utils", - "no-std", - "no-std::no-alloc" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/dtolnay/rustversion", - "homepage": null, - "documentation": "https://docs.rs/rustversion", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "ruzstd", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", - "license": "MIT", - "license_file": null, - "description": "A decoder for the zstd compression format", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "derive_more", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.99", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "display", - "from" - ], - "target": null, - "registry": null - }, - { - "name": "twox-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruzstd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "zstd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/bin/zstd.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "zstd_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/src/bin/zstd_stream.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "reversedbitreader_bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/benches/reversedbitreader_bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "derive_more/error" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ruzstd-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Moritz Borcherding " - ], - "categories": [], - "keywords": [], - "readme": "Readme.md", - "repository": "https://github.com/KillingSpark/zstd-rs", - "homepage": "https://github.com/KillingSpark/zstd-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ryu", - "version": "1.0.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "license": "Apache-2.0 OR BSL-1.0", - "license_file": null, - "description": "Fast floating point to string conversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ryu", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "upstream_benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/examples/upstream_benchmark.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "common_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/common_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "d2s_intrinsics_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_intrinsics_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "d2s_table_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_table_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "d2s_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/d2s_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "exhaustive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/exhaustive.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "f2s_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/f2s_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "s2d_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/s2d_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "s2f_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/tests/s2f_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "no-panic": [ - "dep:no-panic" - ], - "small": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "float" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/ryu", - "homepage": null, - "documentation": "https://docs.rs/ryu", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "salsa20", - "version": "0.10.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Salsa20 Stream Cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cipher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "salsa20", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "std": [ - "cipher/std" - ], - "zeroize": [ - "cipher/zeroize" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/salsa20-0.10.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "stream-cipher", - "trait", - "xsalsa20" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/stream-ciphers", - "homepage": null, - "documentation": "https://docs.rs/salsa20", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "same-file", - "version": "1.0.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "license": "Unlicense/MIT", - "license_file": null, - "description": "A simple crate for determining whether two file paths point to the same file.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "same_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "is_same_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/examples/is_same_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "is_stderr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/examples/is_stderr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "same", - "file", - "equal", - "inode" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/same-file", - "homepage": "https://github.com/BurntSushi/same-file", - "documentation": "https://docs.rs/same-file", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "scc", - "version": "2.3.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", - "license": "Apache-2.0", - "license_file": null, - "description": "High-performance containers and utilities for concurrent and asynchronous programming", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sdd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.44", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bag", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/bag.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "hash_cache", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_cache.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "hash_index", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_index.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "hash_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/hash_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tree_index", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/benches/tree_index.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "equivalent": [ - "dep:equivalent" - ], - "loom": [ - "dep:loom", - "sdd/loom" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scc-2.3.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "wvwwvwwv " - ], - "categories": [ - "asynchronous", - "caching", - "concurrency", - "data-structures" - ], - "keywords": [ - "async", - "cache", - "concurrent", - "hashmap", - "tree" - ], - "readme": "README.md", - "repository": "https://github.com/wvwwvwwv/scalable-concurrent-containers/", - "homepage": null, - "documentation": "https://docs.rs/scc", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "scenario-tester", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scenario_tester", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_chained_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_chained_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_legacy_proxy_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_legacy_proxy_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_raw_steps_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_raw_steps_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_blackbox_upgrade_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_blackbox_upgrade_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_unit_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_unit_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "st_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/tests/st_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "scenario-tester-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "scenario-tester", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "scenario-tester-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "scopeguard", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as\nshorthands for guards with one of the implemented strategies.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scopeguard", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "readme", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/examples/readme.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "use_std" - ], - "use_std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "keywords": [ - "scope-guard", - "defer", - "panic", - "unwind" - ], - "readme": "README.md", - "repository": "https://github.com/bluss/scopeguard", - "homepage": null, - "documentation": "https://docs.rs/scopeguard/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "scrypt", - "version": "0.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Scrypt password-based key derivation function", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "password-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "rand_core" - ], - "target": null, - "registry": null - }, - { - "name": "pbkdf2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "salsa20", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "password-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rand_core" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scrypt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/benches/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "simple", - "std" - ], - "password-hash": [ - "dep:password-hash" - ], - "simple": [ - "password-hash" - ], - "std": [ - "password-hash/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scrypt-0.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "authentication", - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "hashing", - "password", - "phf" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/password-hashes/tree/master/scrypt", - "homepage": null, - "documentation": "https://docs.rs/scrypt", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "sdd", - "version": "3.0.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", - "license": "Apache-2.0", - "license_file": null, - "description": "Scalable lock-free delayed memory reclaimer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sdd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ebr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/benches/ebr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "loom": [ - "dep:loom" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sdd-3.0.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "wvwwvwwv " - ], - "categories": [ - "concurrency", - "data-structures", - "memory-management" - ], - "keywords": [ - "concurrent", - "epoch", - "garbage", - "lock-free", - "memory" - ], - "readme": "README.md", - "repository": "https://github.com/wvwwvwwv/scalable-delayed-dealloc/", - "homepage": null, - "documentation": "https://docs.rs/sdd", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "seahash", - "version": "4.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", - "license": "MIT", - "license_file": null, - "description": "A blazingly fast, portable hash function with proven statistical guarantees.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "seahash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chunking", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/tests/chunking.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quickchecks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/tests/quickchecks.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/benches/bench.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [], - "use_std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "ticki ", - "Tom Almeida " - ], - "categories": [], - "keywords": [ - "hash", - "hashing", - "checksum", - "checksumming", - "portable" - ], - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/seahash", - "homepage": null, - "documentation": "https://docs.rs/seahash", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "second-contract", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "second_contract", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "second-contract-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "second-contract", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "second-contract-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "seed-nft-minter", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "seed_nft_minter", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/src/seed_nft_minter.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "seed-nft-minter-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "seed-nft-minter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "seed-nft-minter-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "self_cell", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", - "license": "Apache-2.0", - "license_file": null, - "description": "Safe-to-use proc-macro-free self-referential structs in stable Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "self_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "old_rust": [ - "rustversion" - ], - "rustversion": [ - "dep:rustversion" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Lukas Bergdoll " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "keywords": [ - "lifetime", - "borrowing", - "self", - "reference", - "intrusive" - ], - "readme": "README.md", - "repository": "https://github.com/Voultapher/self_cell", - "homepage": null, - "documentation": "https://docs.rs/self_cell", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "semver", - "version": "1.0.26", - "id": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser and evaluator for Cargo's flavor of Semantic Versioning", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.194", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "semver", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_autotrait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_autotrait.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_identifier", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_identifier.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_version", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_version.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_version_req", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/tests/test_version_req.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/benches/parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "cargo" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/semver", - "homepage": null, - "documentation": "https://docs.rs/semver", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "send-tx-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "send_tx_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/src/send_tx_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "send-tx-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "send-tx-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "send-tx-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serde", - "version": "1.0.219", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A generic serialization/deserialization framework", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.219", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "serde_derive" - ], - "rc": [], - "serde_derive": [ - "dep:serde_derive" - ], - "std": [], - "unstable": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.219/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "derive", - "rc", - "unstable" - ], - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "derive", - "rc" - ] - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "no_std" - ], - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "homepage": "https://serde.rs", - "documentation": "https://docs.rs/serde", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "serde-wasm-bindgen", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", - "license": "MIT", - "license_file": null, - "description": "Native Serde adapter for wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.83", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "maplit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.39", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.24", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_wasm_bindgen", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/tests/browser.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "node", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/tests/node.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-wasm-bindgen-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ingvar Stepanyan " - ], - "categories": [ - "development-tools::ffi", - "wasm", - "encoding" - ], - "keywords": [ - "serde", - "serialization", - "javascript", - "wasm", - "webassembly" - ], - "readme": "README.md", - "repository": "https://github.com/cloudflare/serde-wasm-bindgen", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serde_bytes", - "version": "0.11.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Optimized handling of `&[u8]` and `Vec` for Serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/tests/test_derive.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_partialeq", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/tests/test_partialeq.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/tests/test_serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "serde/alloc" - ], - "default": [ - "std" - ], - "std": [ - "serde/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_bytes-0.11.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "no_std", - "bytes" - ], - "readme": "README.md", - "repository": "https://github.com/serde-rs/bytes", - "homepage": null, - "documentation": "https://docs.rs/serde_bytes", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.68" - }, - { - "name": "serde_derive", - "version": "1.0.219", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.81", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "serde_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.219/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "deserialize_in_place": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.219/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "no_std", - "derive" - ], - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "homepage": "https://serde.rs", - "documentation": "https://serde.rs/derive.html", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "serde_json", - "version": "1.0.140", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A JSON serialization file format", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ryu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.194", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.194", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_stacker", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/debug.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lexical", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/lexical.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/regression.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "serde/alloc" - ], - "arbitrary_precision": [], - "default": [ - "std" - ], - "float_roundtrip": [], - "indexmap": [ - "dep:indexmap" - ], - "preserve_order": [ - "indexmap", - "std" - ], - "raw_value": [], - "std": [ - "memchr/std", - "serde/std" - ], - "unbounded_depth": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.140/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "preserve_order", - "raw_value", - "unbounded_depth" - ], - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "float_roundtrip", - "raw_value", - "unbounded_depth" - ] - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "parser-implementations", - "no-std" - ], - "keywords": [ - "json", - "serde", - "serialization" - ], - "readme": "README.md", - "repository": "https://github.com/serde-rs/json", - "homepage": null, - "documentation": "https://docs.rs/serde_json", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "serde_repr", - "version": "0.1.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.46", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.100", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "serde_repr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "integer" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/serde-repr", - "homepage": null, - "documentation": "https://docs.rs/serde_repr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "serde_spanned", - "version": "0.6.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Serde-compatible spanned Value", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde-untagged", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_spanned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-0.6.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-0.6.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "serde", - "span" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "serde_urlencoded", - "version": "0.7.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "`x-www-form-urlencoded` meets Serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "form_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ryu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_urlencoded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_deserialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/tests/test_deserialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_serialize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/tests/test_serialize.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Anthony Ramine " - ], - "categories": [ - "encoding", - "web-programming" - ], - "keywords": [ - "serde", - "serialization", - "urlencoded" - ], - "readme": "README.md", - "repository": "https://github.com/nox/serde_urlencoded", - "homepage": null, - "documentation": "https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serial_test", - "version": "3.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "license": "MIT", - "license_file": null, - "description": "Allows for the creation of serialised Rust tests", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "document-features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.6.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fslock", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "executor" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serial_test_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~3.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use_std" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serial_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "async": [ - "dep:futures", - "serial_test_derive/async" - ], - "default": [ - "logging", - "async" - ], - "docsrs": [ - "dep:document-features" - ], - "file_locks": [ - "dep:fslock" - ], - "logging": [ - "dep:log" - ], - "test_logging": [ - "logging", - "dep:env_logger", - "serial_test_derive/test_logging" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test-3.2.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "docsrs", - "test_logging" - ], - "skip_optional_dependencies": true - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Tom Parker-Shemilt " - ], - "categories": [ - "development-tools::testing" - ], - "keywords": [ - "sequential", - "testing", - "parallel" - ], - "readme": "README.md", - "repository": "https://github.com/palfrey/serial_test/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serial_test_derive", - "version": "3.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", - "license": "MIT", - "license_file": null, - "description": "Helper crate for serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "full", - "printing", - "parsing", - "clone-impls" - ], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "prettyplease", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "serial_test_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test_derive-3.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "async": [], - "default": [], - "test_logging": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serial_test_derive-3.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Tom Parker-Shemilt " - ], - "categories": [ - "development-tools::testing" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/palfrey/serial_test/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "set-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "set_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/src/set_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "set-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "set-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "set-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "sha2", - "version": "0.10.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cpufeatures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "registry": null - }, - { - "name": "sha2-asm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sha2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/benches/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "asm": [ - "sha2-asm" - ], - "asm-aarch64": [ - "asm" - ], - "compress": [], - "default": [ - "std" - ], - "force-soft": [], - "force-soft-compact": [], - "loongarch64_asm": [], - "oid": [ - "digest/oid" - ], - "sha2-asm": [ - "dep:sha2-asm" - ], - "std": [ - "digest/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "sha2", - "hash", - "digest" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "homepage": null, - "documentation": "https://docs.rs/sha2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "sha3", - "version": "0.10.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Pure Rust implementation of SHA-3, a family of Keccak-based hash functions\nincluding the SHAKE family of eXtendable-Output Functions (XOFs), as well as\nthe accelerated variant TurboSHAKE\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "keccak", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sha3", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "aliases", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/aliases.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cshake", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/cshake.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "turboshake", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/tests/turboshake.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/benches/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "asm": [ - "keccak/asm" - ], - "default": [ - "std" - ], - "oid": [ - "digest/oid" - ], - "reset": [], - "std": [ - "digest/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha3-0.10.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "sha3", - "keccak", - "hash", - "digest" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "homepage": null, - "documentation": "https://docs.rs/sha3", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "shared-buffer", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An abstraction over buffers backed by memory-mapped files or bytes in memory", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memmap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "shared_buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shared-buffer-0.1.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shared-buffer-0.1.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/wasmerio/shared-buffer.git", - "homepage": "https://github.com/wasmerio/shared-buffer.git", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "shlex", - "version": "1.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Split a string into shell words, like Python's shlex.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "shlex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "comex ", - "Fenhl ", - "Adrian Taylor ", - "Alex Touchet ", - "Daniel Parks ", - "Garrett Berg " - ], - "categories": [ - "command-line-interface", - "parser-implementations" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/comex/rust-shlex", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.46.0" - }, - { - "name": "signal-hook-registry", - "version": "1.4.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "Backend crate for signal-hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "signal-hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "signal_hook_registry", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unregister_signal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/tests/unregister_signal.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Michal 'vorner' Vaner ", - "Masaki Hara " - ], - "categories": [], - "keywords": [ - "signal", - "unix", - "daemon" - ], - "readme": "README.md", - "repository": "https://github.com/vorner/signal-hook", - "homepage": null, - "documentation": "https://docs.rs/signal-hook-registry", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "signature", - "version": "2.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "signature_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": "derive", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "signature", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/tests/derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "derive": [ - "dep:derive" - ], - "digest": [ - "dep:digest" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [ - "alloc", - "rand_core?/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signature-2.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "ecdsa", - "ed25519", - "signature", - "signing" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/signature", - "homepage": null, - "documentation": "https://docs.rs/signature", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "simd-adler32", - "version": "0.3.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", - "license": "MIT", - "license_file": null, - "description": "A SIMD-accelerated Adler-32 hash algorithm implementation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "adler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "adler32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "simd_adler32", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "alts", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/bench/alts.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "variants", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/bench/variants.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "const-generics": [], - "default": [ - "std", - "const-generics" - ], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Marvin Countryman " - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "simd", - "avx2", - "ssse3", - "adler", - "adler32" - ], - "readme": "README.md", - "repository": "https://github.com/mcountryman/simd-adler32", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "simdutf8", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "SIMD-accelerated UTF-8 validation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "simdutf8", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "streaming", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/examples/streaming.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "aarch64_neon": [], - "aarch64_neon_prefetch": [], - "default": [ - "std" - ], - "hints": [], - "public_imp": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simdutf8-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-unknown-linux-gnu", - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "aarch64-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasi" - ] - } - } - }, - "publish": null, - "authors": [ - "Hans Kratz " - ], - "categories": [ - "encoding", - "algorithms", - "no-std" - ], - "keywords": [ - "utf-8", - "unicode", - "string", - "validation", - "simd" - ], - "readme": "README.md", - "repository": "https://github.com/rusticstuff/simdutf8", - "homepage": "https://github.com/rusticstuff/simdutf8", - "documentation": "https://docs.rs/simdutf8/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "simple-error", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A simple error type backed by a string\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "simple_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simple-error-0.3.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simple-error-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "error", - "simple-error" - ], - "readme": "README.md", - "repository": "https://github.com/WiSaGaN/simple-error.git", - "homepage": null, - "documentation": "https://docs.rs/simple-error/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.58.0" - }, - { - "name": "single-value-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "single_value_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/src/single_value_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "single-value-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "single-value-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "single-value-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "slab", - "version": "0.4.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "license": "MIT", - "license_file": null, - "description": "Pre-allocated storage for a uniform data type", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.95", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "slab", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "slab", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/tests/slab.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.9/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Carl Lerche " - ], - "categories": [ - "memory-management", - "data-structures", - "no-std" - ], - "keywords": [ - "slab", - "allocator", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/slab", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "smallvec", - "version": "1.15.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "'Small vector' optimization: store up to a small number of items on the stack", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "malloc_size_of", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unty", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": "bincode1", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test_parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "smallvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debugger_visualizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/tests/debugger_visualizer.rs", - "edition": "2018", - "required-features": [ - "debugger_visualizer" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/tests/macro.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "bincode": [ - "dep:bincode" - ], - "const_generics": [], - "const_new": [ - "const_generics" - ], - "debugger_visualizer": [], - "drain_filter": [], - "drain_keep_rest": [ - "drain_filter" - ], - "impl_bincode": [ - "bincode", - "unty" - ], - "malloc_size_of": [ - "dep:malloc_size_of" - ], - "may_dangle": [], - "serde": [ - "dep:serde" - ], - "specialization": [], - "union": [], - "unty": [ - "dep:unty" - ], - "write": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "small", - "vec", - "vector", - "stack", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/servo/rust-smallvec", - "homepage": null, - "documentation": "https://docs.rs/smallvec/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "socket2", - "version": "0.5.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Utilities for handling networking sockets with a maximal amount of configuration\npossible intended.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.171", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_System_IO", - "Win32_System_Threading", - "Win32_System_WindowsProgramming" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "socket2", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "all": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "aarch64-apple-ios", - "aarch64-linux-android", - "x86_64-apple-darwin", - "x86_64-unknown-fuchsia", - "x86_64-pc-windows-msvc", - "x86_64-pc-solaris", - "x86_64-unknown-freebsd", - "x86_64-unknown-illumos", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-linux-musl", - "x86_64-unknown-netbsd", - "x86_64-unknown-redox", - "armv7-linux-androideabi", - "i686-linux-android" - ] - } - }, - "playground": { - "features": [ - "all" - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton ", - "Thomas de Zeeuw " - ], - "categories": [ - "api-bindings", - "network-programming" - ], - "keywords": [ - "io", - "socket", - "network" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/socket2", - "homepage": "https://github.com/rust-lang/socket2", - "documentation": "https://docs.rs/socket2", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "spki", - "version": "0.7.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "X.509 Subject Public Key Info (RFC5280) describing public keys as well as their\nassociated AlgorithmIdentifiers (i.e. OIDs)\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "base64ct", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "der", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "oid" - ], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "spki", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spki", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/tests/spki.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "traits", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/tests/traits.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "base64ct?/alloc", - "der/alloc" - ], - "arbitrary": [ - "std", - "dep:arbitrary", - "der/arbitrary" - ], - "base64": [ - "dep:base64ct" - ], - "fingerprint": [ - "sha2" - ], - "pem": [ - "alloc", - "der/pem" - ], - "sha2": [ - "dep:sha2" - ], - "std": [ - "der/std", - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spki-0.7.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std" - ], - "keywords": [ - "crypto", - "x509" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/spki", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "stable_deref_trait", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "stable_deref_trait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Robert Grosse " - ], - "categories": [ - "memory-management", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/storyyeller/stable_deref_trait", - "homepage": null, - "documentation": "https://docs.rs/stable_deref_trait/1.2.0/stable_deref_trait", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "static_assertions", - "version": "1.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Compile-time assertions to ensure that invariants are met.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "static_assertions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "nightly": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nikolai Vazquez" - ], - "categories": [ - "no-std", - "rust-patterns", - "development-tools::testing" - ], - "keywords": [ - "assert", - "static", - "testing" - ], - "readme": "README.md", - "repository": "https://github.com/nvzqz/static-assertions-rs", - "homepage": "https://github.com/nvzqz/static-assertions-rs", - "documentation": "https://docs.rs/static_assertions/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "str-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "str_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/src/str_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "managed-buffer-builder-cached": [ - "multiversx-sc/managed-buffer-builder-cached" - ] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "str-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "str-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "str-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "strsim", - "version": "0.11.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "license": "MIT", - "license_file": null, - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "strsim", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/tests/lib.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/benches/benches.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Danny Guo ", - "maxbachmann " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "string", - "similarity", - "Hamming", - "Levenshtein", - "Jaro" - ], - "readme": "README.md", - "repository": "https://github.com/rapidfuzz/strsim-rs", - "homepage": "https://github.com/rapidfuzz/strsim-rs", - "documentation": "https://docs.rs/strsim/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "subtle", - "version": "2.6.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "license": "BSD-3-Clause", - "license_file": null, - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "subtle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "const-generics": [], - "core_hint_black_box": [], - "default": [ - "std", - "i128" - ], - "i128": [], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Isis Lovecruft ", - "Henry de Valence " - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "cryptography", - "crypto", - "constant-time", - "utilities" - ], - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/subtle", - "homepage": "https://dalek.rs/", - "documentation": "https://docs.rs/subtle", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "syn", - "version": "1.0.109", - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser for Rust source code", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.46", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "blocking" - ], - "target": null, - "registry": null - }, - { - "name": "syn-test-suite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "termcolor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "syn", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/regression.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_asyncness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_asyncness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_attribute", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_attribute.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_derive_input", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_derive_input.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_expr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_generics.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_grouping", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_grouping.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ident", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_ident.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_item", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_item.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_iterators", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_iterators.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_lit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_meta.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_parse_buffer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_parse_stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_pat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_pat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_path.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_precedence", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_precedence.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_receiver", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_receiver.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_round_trip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_round_trip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_shebang", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_shebang.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_should_parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_should_parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_size.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_stmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_stmt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_token_trees", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_token_trees.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ty", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_ty.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_visibility", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/test_visibility.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zzz_stable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/tests/zzz_stable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/benches/file.rs", - "edition": "2018", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "rust", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/benches/rust.rs", - "edition": "2018", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "homepage": null, - "documentation": "https://docs.rs/syn", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "syn", - "version": "2.0.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser for Rust source code", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.91", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn-test-suite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "termcolor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "blocking" - ], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "syn", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/regression.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_asyncness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_asyncness.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_attribute", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_attribute.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_derive_input", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_derive_input.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_expr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_grouping", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_grouping.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ident", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_ident.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_item", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_item.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_iterators", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_iterators.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_lit.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_meta", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_meta.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_buffer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_quote", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_quote.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_parse_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_pat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_pat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_precedence", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_precedence.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_receiver", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_receiver.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_round_trip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_round_trip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_shebang", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_shebang.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_size.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_stmt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_stmt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_token_trees", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_token_trees.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ty", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_ty.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_unparenthesize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_unparenthesize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_visibility", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/test_visibility.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zzz_stable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/tests/zzz_stable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/benches/file.rs", - "edition": "2021", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "rust", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/benches/rust.rs", - "edition": "2021", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "dep:quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote?/proc-macro" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.100/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--generate-link-to-definition", - "--extend-css=src/gen/token.css", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "homepage": null, - "documentation": "https://docs.rs/syn", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "sync_wrapper", - "version": "1.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "license": "Apache-2.0", - "license_file": null, - "description": "A tool for enlisting the compiler's help in proving the absence of concurrency", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sync_wrapper", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "futures": [ - "futures-core" - ], - "futures-core": [ - "dep:futures-core" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Actyx AG " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "concurrency" - ], - "readme": "README.md", - "repository": "https://github.com/Actyx/sync_wrapper", - "homepage": "https://docs.rs/sync_wrapper", - "documentation": "https://docs.rs/sync_wrapper", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "synstructure", - "version": "0.13.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "license": "MIT", - "license_file": null, - "description": "Helper methods and macros for custom derives", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive", - "parsing", - "printing", - "clone-impls", - "visit", - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure_test_traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "synstructure", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "syn/proc-macro", - "quote/proc-macro" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nika Layzell " - ], - "categories": [], - "keywords": [ - "syn", - "macros", - "derive", - "expand_substructure", - "enum" - ], - "readme": "README.md", - "repository": "https://github.com/mystor/synstructure", - "homepage": null, - "documentation": "https://docs.rs/synstructure", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "system-sc-interact", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.4.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "multiversx-sc-snippets", - "source": null, - "req": "=0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/snippets" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "system_sc_interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/src/system_sc_interact.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "system-sc-interact", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/src/system_sc_main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chain_simulator_token_tests", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/tests/chain_simulator_token_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chain-simulator-tests": [] - }, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tap", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", - "license": "MIT", - "license_file": null, - "description": "Generic extensions for tapping values in Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tap-1.0.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tap-1.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Elliott Linder ", - "myrrlyn " - ], - "categories": [ - "no-std", - "rust-patterns" - ], - "keywords": [ - "tap", - "pipe", - "functional", - "tap_ok", - "tap_some" - ], - "readme": "README.md", - "repository": "https://github.com/myrrlyn/tap", - "homepage": "https://github.com/myrrlyn/tap", - "documentation": "https://docs.rs/tap", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tar", - "version": "0.4.44", - "id": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust implementation of a TAR file reader and writer. This library does not\ncurrently handle compression, but it is abstract over all I/O readers and\nwriters. Additionally, great lengths are taken to ensure that the entire\ncontents are never required to be entirely resident in memory all at once.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "filetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "xattr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tar", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "extract_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/extract_file.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "list", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/list.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "raw_list", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/raw_list.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/examples/write.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/tests/all.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "entry", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/tests/entry.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "xattr" - ], - "xattr": [ - "dep:xattr" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tar-0.4.44/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "tar", - "tarfile", - "encoding" - ], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/tar-rs", - "homepage": "https://github.com/alexcrichton/tar-rs", - "documentation": "https://docs.rs/tar", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "target-lexicon", - "version": "0.12.16", - "id": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "license": "Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "Targeting utilities for compilers and related tools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "target_lexicon", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "host", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/examples/host.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "misc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/examples/misc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arch_zkasm": [], - "default": [], - "serde": [ - "dep:serde" - ], - "serde_support": [ - "serde", - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/target-lexicon-0.12.16/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dan Gohman " - ], - "categories": [ - "no-std" - ], - "keywords": [ - "target", - "host", - "triple", - "compiler", - "jit" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/target-lexicon", - "homepage": null, - "documentation": "https://docs.rs/target-lexicon/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tempfile", - "version": "3.19.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library for managing temporary files and directories.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "fastrand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fs" - ], - "target": "cfg(any(unix, target_os = \"wasi\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(any(unix, windows, target_os = \"wasi\"))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tempfile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "env", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/env.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "namedtempfile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/namedtempfile.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spooled", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/spooled.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tempdir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/tempdir.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tempfile", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/tests/tempfile.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "getrandom" - ], - "getrandom": [ - "dep:getrandom" - ], - "nightly": [], - "unstable-windows-keep-open-tempfile": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.19.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Allen ", - "The Rust Project Developers", - "Ashley Mannix ", - "Jason White " - ], - "categories": [], - "keywords": [ - "tempfile", - "tmpfile", - "filesystem" - ], - "readme": "README.md", - "repository": "https://github.com/Stebalien/tempfile", - "homepage": "https://stebalien.com/projects/tempfile-rs/", - "documentation": "https://docs.rs/tempfile", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "termcolor", - "version": "1.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "A simple cross platform library for writing colored text to a terminal.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "termcolor", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "windows", - "win", - "color", - "ansi", - "console" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/termcolor", - "homepage": "https://github.com/BurntSushi/termcolor", - "documentation": "https://docs.rs/termcolor", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "thiserror", - "version": "1.0.69", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "derive(Error)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "thiserror-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.73", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "thiserror", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_backtrace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_deprecated", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_deprecated.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_display", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_display.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_expr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_from.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lints", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_lints.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_option", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_option.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_source", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_source.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_transparent", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/tests/test_transparent.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "error", - "error-handling", - "derive" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": "https://docs.rs/thiserror", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thiserror", - "version": "2.0.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "derive(Error)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "thiserror-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.73", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "thiserror", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_backtrace", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_backtrace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_display", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_display.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_expr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_from.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lints", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_lints.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_option", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_option.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_source", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_source.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_transparent", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/tests/test_transparent.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.12/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "error", - "error-handling", - "derive" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": "https://docs.rs/thiserror", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thiserror-impl", - "version": "1.0.69", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Implementation detail of the `thiserror` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.87", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "thiserror_impl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thiserror-impl", - "version": "2.0.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Implementation detail of the `thiserror` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.87", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "thiserror_impl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.12/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org", - "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "tinystr", - "version": "0.7.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "license": "Unicode-3.0", - "license_file": null, - "description": "A small ASCII-only bounded length string representation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinystr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/tests/serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "construct", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/construct.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "overview", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/overview.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/read.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/benches/serde.rs", - "edition": "2021", - "required-features": [ - "bench", - "serde" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "bench": [], - "databake": [ - "dep:databake" - ], - "default": [ - "alloc" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "zerovec": [ - "dep:zerovec" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.7.6/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "string", - "str", - "small", - "tiny", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "tinyvec", - "version": "1.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "license": "Zlib OR Apache-2.0 OR MIT", - "license_file": null, - "description": "`tinyvec` provides 100% safe vec-like data structures.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinyvec_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test_parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinyvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arrayvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/arrayvec.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debugger_visualizer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/debugger_visualizer.rs", - "edition": "2018", - "required-features": [ - "debugger_visualizer" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tinyvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/tests/tinyvec.rs", - "edition": "2018", - "required-features": [ - "alloc", - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/benches/macros.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "smallvec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/benches/smallvec.rs", - "edition": "2018", - "required-features": [ - "alloc", - "real_blackbox" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "tinyvec_macros" - ], - "arbitrary": [ - "dep:arbitrary" - ], - "borsh": [ - "dep:borsh" - ], - "debugger_visualizer": [], - "default": [], - "experimental_write_impl": [], - "generic-array": [ - "dep:generic-array" - ], - "grab_spare_slice": [], - "latest_stable_rust": [ - "rustc_1_61" - ], - "nightly_slice_partition_dedup": [], - "real_blackbox": [ - "criterion/real_blackbox" - ], - "rustc_1_40": [], - "rustc_1_55": [ - "rustc_1_40" - ], - "rustc_1_57": [ - "rustc_1_55" - ], - "rustc_1_61": [ - "rustc_1_57" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "tinyvec_macros": [ - "dep:tinyvec_macros" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.9.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "latest_stable_rust", - "serde", - "borsh" - ], - "rustdoc-args": [ - "--cfg", - "docs_rs" - ] - } - }, - "playground": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "latest_stable_rust", - "serde", - "borsh" - ] - } - }, - "publish": null, - "authors": [ - "Lokathor " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "vec", - "no_std", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/Lokathor/tinyvec", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tinyvec_macros", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "license": "MIT OR Apache-2.0 OR Zlib", - "license_file": null, - "description": "Some macros for tiny containers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinyvec_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Soveu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/Soveu/tinyvec_macros", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "token-release", - "version": "0.0.1", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "token_release", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/src/token_release.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_release_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/tests/token_release_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_release_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/tests/token_release_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "you" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "token-release-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "token-release", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "token-release-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tokio", - "version": "1.44.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "license": "MIT", - "license_file": null, - "description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O\nbacked applications.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~2.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "async-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "async-await" - ], - "target": null, - "registry": null - }, - { - "name": "futures-concurrency", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.6.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "mockall", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_family = \"wasm\", not(target_os = \"wasi\")))", - "registry": null - }, - { - "name": "tracing-mock", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.1.0-beta.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(tokio_unstable, target_has_atomic = \"64\"))", - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures", - "checkpoint" - ], - "target": "cfg(loom)", - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))", - "registry": null - }, - { - "name": "socket2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "all" - ], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "socket2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "mio-aio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "tokio" - ], - "target": "cfg(target_os = \"freebsd\")", - "registry": null - }, - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.58", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(tokio_taskdump)", - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.29", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": "cfg(tokio_unstable)", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "signal-hook-registry", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.168", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "nix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.29.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "aio", - "fs", - "socket" - ], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Security_Authorization" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "_require_full", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/_require_full.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async_send_sync", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/async_send_sync.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "buffered", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/buffered.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "coop_budget", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/coop_budget.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dump", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/dump.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "duplex_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/duplex_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_canonicalize_dir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_canonicalize_dir.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_copy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_copy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_dir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_dir.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_file.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_link", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_link.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_open_options", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_open_options.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_open_options_windows", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_open_options_windows.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_remove_dir_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_remove_dir_all.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_remove_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_remove_file.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_rename", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_rename.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_symlink_dir_windows", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_symlink_dir_windows.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_symlink_file_windows", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_symlink_file_windows.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fs_try_exists", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/fs_try_exists.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_async_fd", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_async_fd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_async_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_async_read.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_buf_reader", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_buf_reader.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_buf_writer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_buf_writer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_chain", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_chain.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_copy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_copy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_copy_bidirectional", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_copy_bidirectional.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_driver", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_driver.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_driver_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_driver_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_fill_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_fill_buf.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_join.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_lines", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_lines.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_mem_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_mem_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_poll_aio", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_poll_aio.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_buf.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_exact", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_exact.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_line", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_line.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_to_end", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_to_end.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_to_string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_to_string.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_read_until", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_read_until.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_repeat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_repeat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_sink", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_sink.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_split.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_take", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_take.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_util_empty", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_util_empty.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write_all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_all.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write_all_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_all_buf.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write_buf", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_buf.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_write_int", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/io_write_int.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "join_handle_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/join_handle_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_join.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_pin", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_pin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_rename_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_rename_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_select", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_select.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_try_join", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/macros_try_join.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_bind_resource", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_bind_resource.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_lookup_host", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_lookup_host.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_named_pipe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_named_pipe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "net_unix_pipe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/net_unix_pipe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/no_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_arg0", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_arg0.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_change_of_runtime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_change_of_runtime.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_issue_2174", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_issue_2174.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_issue_42", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_issue_42.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_kill_after_wait", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_kill_after_wait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_kill_on_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_kill_on_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_raw_handle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_raw_handle.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_smoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/process_smoke.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_common", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_common.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_handle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_handle.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_handle_block_on", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_handle_block_on.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_local", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_local.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_metrics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_metrics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_poll_callbacks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_poll_callbacks.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_threaded", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_threaded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_threaded_alt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_threaded_alt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_time_start_paused", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_time_start_paused.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt_unstable_metrics", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/rt_unstable_metrics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_ctrl_c", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_ctrl_c.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_drop_recv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_recv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_drop_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_drop_signal", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_drop_signal.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_info", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_info.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_multi_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_multi_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_no_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_no_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_notify_both", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_notify_both.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_realtime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_realtime.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_twice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_twice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signal_usr1", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/signal_usr1.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_barrier", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_barrier.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_broadcast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_broadcast.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_broadcast_weak", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_broadcast_weak.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_errors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_errors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mpsc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mpsc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mpsc_weak", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mpsc_weak.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mutex", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mutex.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_mutex_owned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_mutex_owned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_notify", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_notify.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_once_cell", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_once_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_oneshot", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_oneshot.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_rwlock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_rwlock.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_semaphore", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_semaphore.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_semaphore_owned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_semaphore_owned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_watch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/sync_watch.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_abort", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_abort.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_blocking", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_blocking.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_builder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_builder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_hooks", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_hooks.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_id", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_id.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_join_set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_join_set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_local", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_local.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_local_set", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_local_set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_trace_self", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_trace_self.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_yield_now", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/task_yield_now.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_accept", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_accept.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_connect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_connect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_echo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_echo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_into_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_into_split.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_into_std", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_into_std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_peek", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_peek.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_shutdown", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_shutdown.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_socket", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_socket.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_split.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tcp_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_clock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/test_clock.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_interval", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_interval.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_pause", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_pause.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_sleep", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_sleep.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_timeout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/time_timeout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracing_sync", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_sync.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracing_task", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_task.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracing_time", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/tracing_time.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "udp", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/udp.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_cred", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_cred.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_datagram", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_datagram.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_socket", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_socket.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_split", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_split.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uds_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/uds_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unwindsafe", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/tests/unwindsafe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "bytes": [ - "dep:bytes" - ], - "default": [], - "fs": [], - "full": [ - "fs", - "io-util", - "io-std", - "macros", - "net", - "parking_lot", - "process", - "rt", - "rt-multi-thread", - "signal", - "sync", - "time" - ], - "io-std": [], - "io-util": [ - "bytes" - ], - "libc": [ - "dep:libc" - ], - "macros": [ - "tokio-macros" - ], - "mio": [ - "dep:mio" - ], - "net": [ - "libc", - "mio/os-poll", - "mio/os-ext", - "mio/net", - "socket2", - "windows-sys/Win32_Foundation", - "windows-sys/Win32_Security", - "windows-sys/Win32_Storage_FileSystem", - "windows-sys/Win32_System_Pipes", - "windows-sys/Win32_System_SystemServices" - ], - "parking_lot": [ - "dep:parking_lot" - ], - "process": [ - "bytes", - "libc", - "mio/os-poll", - "mio/os-ext", - "mio/net", - "signal-hook-registry", - "windows-sys/Win32_Foundation", - "windows-sys/Win32_System_Threading", - "windows-sys/Win32_System_WindowsProgramming" - ], - "rt": [], - "rt-multi-thread": [ - "rt" - ], - "signal": [ - "libc", - "mio/os-poll", - "mio/net", - "mio/os-ext", - "signal-hook-registry", - "windows-sys/Win32_Foundation", - "windows-sys/Win32_System_Console" - ], - "signal-hook-registry": [ - "dep:signal-hook-registry" - ], - "socket2": [ - "dep:socket2" - ], - "sync": [], - "test-util": [ - "rt", - "sync", - "time" - ], - "time": [], - "tokio-macros": [ - "dep:tokio-macros" - ], - "tracing": [ - "dep:tracing" - ], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.44.2/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "bytes::buf::buf_impl::Buf", - "bytes::buf::buf_mut::BufMut", - "tokio_macros::*" - ] - }, - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "tokio_unstable", - "--cfg", - "tokio_taskdump" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tokio_unstable", - "--cfg", - "tokio_taskdump" - ] - } - }, - "playground": { - "features": [ - "full", - "test-util" - ] - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [ - "io", - "async", - "non-blocking", - "futures" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tokio", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "tokio-macros", - "version": "2.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", - "license": "MIT", - "license_file": null, - "description": "Tokio's proc macros.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "tokio_macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tokio", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "tokio-native-tls", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "license": "MIT", - "license_file": null, - "description": "An implementation of TLS/SSL streams for Tokio using native-tls giving an implementation of TLS\nfor nonblocking I/O streams.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "async-await" - ], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "rt", - "rt-multi-thread", - "io-util", - "net" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "openssl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(not(target_os = \"macos\"), not(windows), not(target_os = \"ios\")))", - "registry": null - }, - { - "name": "security-framework", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", - "registry": null - }, - { - "name": "schannel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "lmcons", - "basetsd", - "minwinbase", - "minwindef", - "ntdef", - "sysinfoapi", - "timezoneapi", - "wincrypt", - "winerror" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio_native_tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "download-rust-lang", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/examples/download-rust-lang.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "echo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/examples/echo.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bad", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/bad.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "google", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/google.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/tests/smoke.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "vendored": [ - "native-tls/vendored" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tls", - "homepage": "https://tokio.rs", - "documentation": "https://docs.rs/tokio-native-tls", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tokio-rustls", - "version": "0.26.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Asynchronous TLS/SSL streams for Tokio using Rustls.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "argh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "pem" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio_rustls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "badssl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/badssl.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "certs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/certs/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "early-data", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/early-data.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/tests/utils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "aws-lc-rs": [ - "aws_lc_rs" - ], - "aws_lc_rs": [ - "rustls/aws_lc_rs" - ], - "default": [ - "logging", - "tls12", - "aws_lc_rs" - ], - "early-data": [], - "fips": [ - "rustls/fips" - ], - "logging": [ - "rustls/logging" - ], - "ring": [ - "rustls/ring" - ], - "tls12": [ - "rustls/tls12" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "asynchronous", - "cryptography", - "network-programming" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/tokio-rustls", - "homepage": "https://github.com/rustls/tokio-rustls", - "documentation": "https://docs.rs/tokio-rustls", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "tokio-stream", - "version": "0.1.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", - "license": "MIT", - "license_file": null, - "description": "Utilities to work with `Stream` and `tokio`.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.15.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "async-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "test-util" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async_send_sync", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/async_send_sync.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chunks_timeout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/chunks_timeout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_chain", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_chain.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_close", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_close.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_collect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_collect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_empty", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_empty.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_fuse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_fuse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_iter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_merge", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_merge.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_once", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_once.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_pending", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_pending.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_stream_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_stream_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream_timeout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/stream_timeout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_throttle", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/time_throttle.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "watch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/tests/watch.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "time" - ], - "fs": [ - "tokio/fs" - ], - "full": [ - "time", - "net", - "io-util", - "fs", - "sync", - "signal" - ], - "io-util": [ - "tokio/io-util" - ], - "net": [ - "tokio/net" - ], - "signal": [ - "tokio/signal" - ], - "sync": [ - "tokio/sync", - "tokio-util" - ], - "time": [ - "tokio/time" - ], - "tokio-util": [ - "dep:tokio-util" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "docsrs" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tokio", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "tokio-util", - "version": "0.7.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", - "license": "MIT", - "license_file": null, - "description": "Additional utilities for working with Tokio.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-sink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.28.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.29", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "async-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "raw-entry" - ], - "target": "cfg(tokio_unstable)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tokio_util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "_require_full", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/_require_full.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "abort_on_drop", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/abort_on_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "codecs", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/codecs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/compat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "context", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/context.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "framed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "framed_read", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_read.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "framed_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "framed_write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/framed_write.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_inspect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_inspect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_reader_stream", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_reader_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_sink_writer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_sink_writer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_stream_reader", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_stream_reader.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "io_sync_bridge", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/io_sync_bridge.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "length_delimited", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/length_delimited.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mpsc", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/mpsc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "panic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "poll_semaphore", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/poll_semaphore.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reusable_box", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/reusable_box.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spawn_pinned", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/spawn_pinned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sync_cancellation_token", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/sync_cancellation_token.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_join_map", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/task_join_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "task_tracker", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/task_tracker.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_delay_queue", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/time_delay_queue.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "udp", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/tests/udp.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__docs_rs": [ - "futures-util" - ], - "codec": [], - "compat": [ - "futures-io" - ], - "default": [], - "full": [ - "codec", - "compat", - "io-util", - "time", - "net", - "rt" - ], - "futures-io": [ - "dep:futures-io" - ], - "futures-util": [ - "dep:futures-util" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "io": [], - "io-util": [ - "io", - "tokio/rt", - "tokio/io-util" - ], - "net": [ - "tokio/net" - ], - "rt": [ - "tokio/rt", - "tokio/sync", - "futures-util", - "hashbrown" - ], - "slab": [ - "dep:slab" - ], - "time": [ - "tokio/time", - "slab" - ], - "tracing": [ - "dep:tracing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tokio_unstable" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tokio_unstable" - ] - } - }, - "playground": { - "features": [ - "full" - ] - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "asynchronous" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tokio", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "toml", - "version": "0.7.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_edit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.19.15", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.160", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.96", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/decode.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum_external", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/enum_external.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "toml2json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/examples/toml2json.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/decoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/decoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/encoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/encoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/tests/testsuite/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_edit" - ], - "indexmap": [ - "dep:indexmap" - ], - "parse": [ - "dep:toml_edit" - ], - "preserve_order": [ - "indexmap" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.7.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "toml", - "version": "0.8.22", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_edit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.199", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.116", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "snapshot" - ], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/decode.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum_external", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/enum_external.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "toml2json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/examples/toml2json.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/compliance/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/decoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/decoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/encoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/encoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/serde/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/tests/testsuite/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_edit", - "toml_edit?/display" - ], - "indexmap": [ - "dep:indexmap" - ], - "parse": [ - "dep:toml_edit", - "toml_edit?/parse" - ], - "preserve_order": [ - "indexmap" - ], - "unbounded": [ - "toml_edit?/unbounded" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.8.22/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66" - }, - { - "name": "toml_datetime", - "version": "0.6.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A TOML-compatible datetime type", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_datetime", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.6.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66" - }, - { - "name": "toml_edit", - "version": "0.19.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Yet another format-preserving TOML parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "kstring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "max_inline" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winnow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libtest-mimic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.96", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "harness" - ], - "target": null, - "registry": null - }, - { - "name": "toml-test-data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_edit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "visit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/examples/visit.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/decoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/decoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/encoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/encoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "invalid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/invalid.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/tests/testsuite/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.19.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "tag-name": "v{{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66.0" - }, - { - "name": "toml_edit", - "version": "0.22.26", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Yet another format-preserving TOML parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "kstring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "max_inline" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml_write", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winnow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.199", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.116", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "snapshot" - ], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_edit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "visit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/examples/visit.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/compliance/main.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/decoder_compliance.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/encoder_compliance.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/serde/main.rs", - "edition": "2021", - "required-features": [ - "parse", - "display", - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/tests/testsuite/main.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_write" - ], - "parse": [ - "dep:winnow" - ], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.22.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "tag-name": "v{{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66" - }, - { - "name": "toml_write", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A low-level interface for writing out TOML\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.10", - "kind": "dev", - "rename": "toml_old", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_write", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "float", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/tests/float.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/tests/string.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_write-0.1.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "encoding" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.66" - }, - { - "name": "tower", - "version": "0.5.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", - "license": "MIT", - "license_file": null, - "description": "Tower is a library of modular and reusable components for building robust\nclients and servers.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "hdrhistogram", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sync_wrapper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "sync" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-layer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-service", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hdrhistogram", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "sync", - "test-util", - "rt-multi-thread" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-stream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tower-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "fmt", - "ansi" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tower", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tower-balance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/examples/tower-balance.rs", - "edition": "2018", - "required-features": [ - "full" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "balance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/balance/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "buffer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/buffer/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "builder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/builder.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hedge", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/hedge/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "limit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/limit/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "load_shed", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/load_shed/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ready_cache", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/ready_cache/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "retry", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/retry/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spawn_ready", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/spawn_ready/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "steer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/steer/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "support", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/support.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "util", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/tests/util/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__common": [ - "futures-core", - "pin-project-lite" - ], - "balance": [ - "discover", - "load", - "ready-cache", - "make", - "slab", - "util" - ], - "buffer": [ - "__common", - "tokio/sync", - "tokio/rt", - "tokio-util", - "tracing" - ], - "discover": [ - "__common" - ], - "filter": [ - "__common", - "futures-util" - ], - "full": [ - "balance", - "buffer", - "discover", - "filter", - "hedge", - "limit", - "load", - "load-shed", - "make", - "ready-cache", - "reconnect", - "retry", - "spawn-ready", - "steer", - "timeout", - "util" - ], - "futures-core": [ - "dep:futures-core" - ], - "futures-util": [ - "dep:futures-util" - ], - "hdrhistogram": [ - "dep:hdrhistogram" - ], - "hedge": [ - "util", - "filter", - "futures-util", - "hdrhistogram", - "tokio/time", - "tracing" - ], - "indexmap": [ - "dep:indexmap" - ], - "limit": [ - "__common", - "tokio/time", - "tokio/sync", - "tokio-util", - "tracing" - ], - "load": [ - "__common", - "tokio/time", - "tracing" - ], - "load-shed": [ - "__common" - ], - "log": [ - "tracing/log" - ], - "make": [ - "futures-util", - "pin-project-lite", - "tokio/io-std" - ], - "pin-project-lite": [ - "dep:pin-project-lite" - ], - "ready-cache": [ - "futures-core", - "futures-util", - "indexmap", - "tokio/sync", - "tracing", - "pin-project-lite" - ], - "reconnect": [ - "make", - "tokio/io-std", - "tracing" - ], - "retry": [ - "__common", - "tokio/time", - "util" - ], - "slab": [ - "dep:slab" - ], - "spawn-ready": [ - "__common", - "futures-util", - "tokio/sync", - "tokio/rt", - "util", - "tracing" - ], - "steer": [], - "sync_wrapper": [ - "dep:sync_wrapper" - ], - "timeout": [ - "pin-project-lite", - "tokio/time" - ], - "tokio": [ - "dep:tokio" - ], - "tokio-stream": [ - "dep:tokio-stream" - ], - "tokio-util": [ - "dep:tokio-util" - ], - "tracing": [ - "dep:tracing" - ], - "util": [ - "__common", - "futures-util", - "pin-project-lite", - "sync_wrapper" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "full" - ] - } - }, - "publish": null, - "authors": [ - "Tower Maintainers " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [ - "io", - "async", - "non-blocking", - "futures", - "service" - ], - "readme": "README.md", - "repository": "https://github.com/tower-rs/tower", - "homepage": "https://github.com/tower-rs/tower", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "tower-layer", - "version": "0.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "license": "MIT", - "license_file": null, - "description": "Decorates a `Service` to allow easy composition between `Service`s.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tower_layer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Tower Maintainers " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tower-rs/tower", - "homepage": "https://github.com/tower-rs/tower", - "documentation": "https://docs.rs/tower-layer/0.3.3", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tower-service", - "version": "0.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "license": "MIT", - "license_file": null, - "description": "Trait representing an asynchronous, request / response based, client or server.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "time" - ], - "target": null, - "registry": null - }, - { - "name": "tower-layer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tower_service", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Tower Maintainers " - ], - "categories": [ - "asynchronous", - "network-programming" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/tower-rs/tower", - "homepage": "https://github.com/tower-rs/tower", - "documentation": "https://docs.rs/tower-service/0.3.3", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tracing", - "version": "0.1.41", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "license": "MIT", - "license_file": null, - "description": "Application-level tracing for Rust.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-attributes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.28", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.33", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.21", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.38", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enabled", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/enabled.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "event", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/event.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filter_caching_is_lexically_scoped", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filter_caching_is_lexically_scoped.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filters_are_not_reevaluated_for_the_same_span", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_are_not_reevaluated_for_the_same_span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filters_are_reevaluated_for_different_call_sites", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_are_reevaluated_for_different_call_sites.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filters_dont_leak", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/filters_dont_leak.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_send", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/future_send.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "instrument", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/instrument.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro_imports", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macro_imports.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_incompatible_concat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/macros_incompatible_concat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "max_level_hint", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/max_level_hint.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "missed_register_callsite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/missed_register_callsite.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiple_max_level_hints", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/multiple_max_level_hints.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_subscriber", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/no_subscriber.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "register_callsite_deadlock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/register_callsite_deadlock.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scoped_clobbers_default", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/scoped_clobbers_default.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "span", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "subscriber", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/tests/subscriber.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "baseline", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/baseline.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "dispatch_get_clone", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/dispatch_get_clone.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "dispatch_get_ref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/dispatch_get_ref.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "empty_span", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/empty_span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "enter_span", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/enter_span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "event", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/event.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "shared", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/shared.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "span_fields", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "span_no_fields", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_no_fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "span_repeated", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/benches/span_repeated.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "async-await": [], - "attributes": [ - "tracing-attributes" - ], - "default": [ - "std", - "attributes" - ], - "log": [ - "dep:log" - ], - "log-always": [ - "log" - ], - "max_level_debug": [], - "max_level_error": [], - "max_level_info": [], - "max_level_off": [], - "max_level_trace": [], - "max_level_warn": [], - "release_max_level_debug": [], - "release_max_level_error": [], - "release_max_level_info": [], - "release_max_level_off": [], - "release_max_level_trace": [], - "release_max_level_warn": [], - "std": [ - "tracing-core/std" - ], - "tracing-attributes": [ - "dep:tracing-attributes" - ], - "valuable": [ - "tracing-core/valuable" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "tracing_unstable" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tracing_unstable" - ] - } - } - }, - "publish": null, - "authors": [ - "Eliza Weisman ", - "Tokio Contributors " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous", - "no-std" - ], - "keywords": [ - "logging", - "tracing", - "metrics", - "async" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "tracing-attributes", - "version": "0.1.28", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", - "license": "MIT", - "license_file": null, - "description": "Procedural macro attributes for automatically instrumenting functions.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "full", - "parsing", - "printing", - "visit-mut", - "clone-impls", - "extra-traits", - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "async-trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.67", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.35", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "env-filter" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.64", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "tracing_attributes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async_fn", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/async_fn.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "destructuring", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/destructuring.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "err", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/err.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fields", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "follows_from", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/follows_from.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "instrument", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/instrument.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "levels", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/levels.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "names", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/names.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parents", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/parents.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ret", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/ret.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "targets", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/targets.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ui", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/tests/ui.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "async-await": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Tokio Contributors ", - "Eliza Weisman ", - "David Barsky " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous" - ], - "keywords": [ - "logging", - "tracing", - "macro", - "instrument", - "log" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "tracing-core", - "version": "0.1.33", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", - "license": "MIT", - "license_file": null, - "description": "Core primitives for application-level tracing.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "valuable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(tracing_unstable)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing_core", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dispatch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/dispatch.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "global_dispatch", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/global_dispatch.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "local_dispatch_before_init", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/local_dispatch_before_init.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "missed_register_callsite", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/tests/missed_register_callsite.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std", - "valuable?/std" - ], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "once_cell" - ], - "valuable": [ - "dep:valuable" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "tracing_unstable" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tracing_unstable" - ] - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous" - ], - "keywords": [ - "logging", - "tracing", - "profiling" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "transfer-role-features", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "transfer_role_features", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "transfer_role_blackbox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/tests/transfer_role_blackbox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "transfer_role_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/tests/transfer_role_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Dorin Marian Iancu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "transfer-role-features-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "transfer-role-features", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "transfer-role-features-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "try-lock", - "version": "0.2.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "license": "MIT", - "license_file": null, - "description": "A lightweight atomic lock.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "try_lock", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [ - "concurrency", - "no-std" - ], - "keywords": [ - "lock", - "atomic" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/try-lock", - "homepage": "https://github.com/seanmonstar/try-lock", - "documentation": "https://docs.rs/try-lock", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "twox-hash", - "version": "1.6.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", - "license": "MIT", - "license_file": null, - "description": "A Rust implementation of the XXHash and XXH3 algorithms", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.1, <2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": "digest", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": "digest_0_10", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": "digest_0_9", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.3.10, <0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "twox_hash", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "hash_file", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/src/bin/hash_file.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "digest": [ - "dep:digest" - ], - "digest_0_10": [ - "dep:digest_0_10" - ], - "digest_0_9": [ - "dep:digest_0_9" - ], - "rand": [ - "dep:rand" - ], - "serde": [ - "dep:serde" - ], - "serialize": [ - "serde" - ], - "std": [ - "rand" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/twox-hash-1.6.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jake Goulding " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "hash", - "hasher", - "xxhash", - "xxh3" - ], - "readme": "README.md", - "repository": "https://github.com/shepmaster/twox-hash", - "homepage": null, - "documentation": "https://docs.rs/twox-hash/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "typenum", - "version": "1.18.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Typenum is a Rust library for type-level numbers evaluated at\n compile time. It currently supports bits, unsigned integers, and signed\n integers. It also provides a type-level array of type-level numbers, but its\n implementation is incomplete.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "scale-info", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "typenum", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "const-generics": [], - "force_unix_path_separator": [], - "i128": [], - "no_std": [], - "scale-info": [ - "dep:scale-info" - ], - "scale_info": [ - "scale-info/derive" - ], - "strict": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.18.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "i128", - "const-generics" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "i128", - "const-generics" - ] - } - }, - "publish": null, - "authors": [ - "Paho Lurie-Gregg ", - "Andre Bogus " - ], - "categories": [ - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/paholg/typenum", - "homepage": null, - "documentation": "https://docs.rs/typenum", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.37.0" - }, - { - "name": "unicode-ident", - "version": "1.0.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "license": "(MIT OR Apache-2.0) AND Unicode-3.0", - "license_file": null, - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fst", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "roaring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ucd-trie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-xid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_ident", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compare", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/tests/compare.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "static_size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/tests/static_size.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "xid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/benches/xid.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition", - "--extern-html-root-url=core=https://doc.rust-lang.org", - "--extern-html-root-url=alloc=https://doc.rust-lang.org", - "--extern-html-root-url=std=https://doc.rust-lang.org" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "unicode", - "xid" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/unicode-ident", - "homepage": null, - "documentation": "https://docs.rs/unicode-ident", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "unicode-normalization", - "version": "0.1.22", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "This crate provides functions for normalization of\nUnicode strings, including Canonical and Compatible\nDecomposition and Recomposition, as described in\nUnicode Standard Annex #15.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tinyvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_normalization", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-normalization-0.1.22/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "text", - "unicode", - "normalization", - "decomposition", - "recomposition" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-normalization", - "homepage": "https://github.com/unicode-rs/unicode-normalization", - "documentation": "https://docs.rs/unicode-normalization/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unicode-segmentation", - "version": "1.12.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "This crate provides Grapheme Cluster, Word and Sentence boundaries\naccording to Unicode Standard Annex #29 rules.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_segmentation", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "chars", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/chars.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "word_bounds", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/word_bounds.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "words", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/benches/words.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "no_std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "text", - "unicode", - "grapheme", - "word", - "boundary" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-segmentation", - "homepage": "https://github.com/unicode-rs/unicode-segmentation", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unicode-width", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-std", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "std", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_width", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/benches/benches.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "cjk": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "cjk" - ], - "no_std": [], - "rustc-dep-of-std": [ - "std", - "core", - "compiler_builtins" - ], - "std": [ - "dep:std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [ - "command-line-interface", - "internationalization", - "no-std::no-alloc", - "text-processing" - ], - "keywords": [ - "text", - "width", - "unicode" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-width", - "homepage": "https://github.com/unicode-rs/unicode-width", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unicode-xid", - "version": "0.2.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_xid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "exhaustive_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/tests/exhaustive_tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "xid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/benches/xid.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "default": [], - "no_std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "erick.tryzelaar ", - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "text", - "unicode", - "xid" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-xid", - "homepage": "https://github.com/unicode-rs/unicode-xid", - "documentation": "https://unicode-rs.github.io/unicode-xid", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.17" - }, - { - "name": "untrusted", - "version": "0.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "license": "ISC", - "license_file": null, - "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "untrusted", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Brian Smith " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/briansmith/untrusted", - "homepage": null, - "documentation": "https://briansmith.org/rustdoc/untrusted/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unwrap-infallible", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Unwrapping Result values with compile-time guarantee of infallibility", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unwrap_infallible", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "blanket_impl", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/tests/blanket_impl.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "blanket_impl": [ - "never_type" - ], - "default": [], - "never_type": [], - "unstable": [ - "never_type", - "blanket_impl" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unwrap-infallible-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Mikhail Zabaluev " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "infallible", - "never-type", - "conversion", - "maintainability", - "refactoring" - ], - "readme": "README.md", - "repository": "https://github.com/mzabaluev/unwrap-infallible", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ureq", - "version": "2.12.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Simple, safe HTTP client", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "brotli-decompressor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cookie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.18", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cookie_store", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.21.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "preserve_order", - "serde_json" - ], - "target": null, - "registry": null - }, - { - "name": "encoding_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hootbin", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": "http-02", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.19", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "ring", - "logging", - "std", - "tls12" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-native-certs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.97", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "socks", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "<=0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "humantime" - ], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "ring" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pemfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ureq", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "count-bytes", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/count-bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cureq", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/cureq/main.rs", - "edition": "2018", - "required-features": [ - "charset", - "cookies", - "socks-proxy", - "native-tls" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom-tls", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/custom-tls.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ipv6", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/ipv6.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "smoke-test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/smoke-test/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tls_config", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/examples/tls_config.rs", - "edition": "2018", - "required-features": [ - "tls", - "native-tls" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "https-agent", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/tests/https-agent.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "brotli": [ - "dep:brotli-decompressor" - ], - "charset": [ - "dep:encoding_rs" - ], - "cookies": [ - "dep:cookie", - "dep:cookie_store" - ], - "default": [ - "tls", - "gzip" - ], - "gzip": [ - "dep:flate2" - ], - "http-crate": [ - "dep:http" - ], - "http-interop": [ - "dep:http-02" - ], - "json": [ - "dep:serde", - "dep:serde_json" - ], - "native-certs": [ - "dep:rustls-native-certs" - ], - "native-tls": [ - "dep:native-tls" - ], - "proxy-from-env": [], - "socks-proxy": [ - "dep:socks" - ], - "testdeps": [ - "dep:hootbin" - ], - "tls": [ - "dep:webpki-roots", - "dep:rustls", - "dep:rustls-pki-types" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ureq-2.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "tls", - "native-tls", - "json", - "charset", - "cookies", - "socks-proxy", - "gzip", - "brotli", - "http-interop", - "http-crate" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Martin Algesten ", - "Jacob Hoffman-Andrews " - ], - "categories": [ - "web-programming::http-client" - ], - "keywords": [ - "web", - "request", - "https", - "http", - "client" - ], - "readme": "README.md", - "repository": "https://github.com/algesten/ureq", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "url", - "version": "2.5.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "URL library for Rust, based on the WHATWG URL Standard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "form_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "idna", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "compiled_data" - ], - "target": null, - "registry": null - }, - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "url", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unit", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/tests/unit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "url_wpt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/tests/wpt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "debugger_visualizer": [], - "default": [ - "std" - ], - "expose_internals": [], - "serde": [ - "dep:serde" - ], - "std": [ - "idna/std", - "percent-encoding/std", - "form_urlencoded/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "parser-implementations", - "web-programming", - "encoding", - "no-std" - ], - "keywords": [ - "url", - "parser" - ], - "readme": "README.md", - "repository": "https://github.com/servo/rust-url", - "homepage": null, - "documentation": "https://docs.rs/url", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "use-module", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-modules", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/modules" - }, - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "use_module", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/src/use_module.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gov_module_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/gov_module_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "staking_module_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/staking_module_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "token_merge_module_whitebox_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/token_merge_module_whitebox_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_module_abi_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_abi_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_module_scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_module_scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_module_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/tests/use_module_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "use-module-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "use-module", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "use-module-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "utf16_iter", - "version": "1.0.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Iterator by char over potentially-invalid UTF-16 in &[u16]", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "utf16_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf16_iter-1.0.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf16_iter-1.0.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Henri Sivonen " - ], - "categories": [ - "text-processing", - "encoding", - "internationalization" - ], - "keywords": [ - "encoding", - "UTF-16", - "unicode", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/utf16_iter", - "homepage": "https://docs.rs/utf16_iter/", - "documentation": "https://docs.rs/utf16_iter/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "utf8_iter", - "version": "1.0.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "utf8_iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Henri Sivonen " - ], - "categories": [ - "text-processing", - "encoding", - "internationalization" - ], - "keywords": [ - "encoding", - "UTF-8", - "unicode", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/utf8_iter", - "homepage": "https://docs.rs/utf8_iter/", - "documentation": "https://docs.rs/utf8_iter/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "utf8parse", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Table-driven UTF-8 parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "utf8parse", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utf-8-demo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/tests/utf-8-demo.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "nightly": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "keywords": [ - "utf8", - "parse", - "table" - ], - "readme": null, - "repository": "https://github.com/alacritty/vte", - "homepage": null, - "documentation": "https://docs.rs/utf8parse/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "uuid", - "version": "1.16.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A library to generate and parse UUIDs.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.16.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "md-5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.56", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1_smol", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid-macro-internal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.16.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.79", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.56", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.52", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid-rng-internal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.16.0", - "kind": null, - "rename": "uuid-rng-internal-lib", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_feature = \"atomics\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))", - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "uuid", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.16.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "atomic": [ - "dep:atomic" - ], - "borsh": [ - "dep:borsh", - "dep:borsh-derive" - ], - "bytemuck": [ - "dep:bytemuck" - ], - "default": [ - "std" - ], - "fast-rng": [ - "rng", - "dep:rand" - ], - "js": [ - "dep:wasm-bindgen", - "dep:js-sys" - ], - "macro-diagnostics": [ - "dep:uuid-macro-internal" - ], - "md5": [ - "dep:md-5" - ], - "rng": [ - "dep:getrandom" - ], - "rng-getrandom": [ - "rng", - "dep:getrandom", - "uuid-rng-internal-lib", - "uuid-rng-internal-lib/getrandom" - ], - "rng-rand": [ - "rng", - "dep:rand", - "uuid-rng-internal-lib", - "uuid-rng-internal-lib/rand" - ], - "serde": [ - "dep:serde" - ], - "sha1": [ - "dep:sha1_smol" - ], - "slog": [ - "dep:slog" - ], - "std": [], - "uuid-rng-internal-lib": [ - "dep:uuid-rng-internal-lib" - ], - "v1": [ - "atomic" - ], - "v3": [ - "md5" - ], - "v4": [ - "rng" - ], - "v5": [ - "sha1" - ], - "v6": [ - "atomic" - ], - "v7": [ - "rng" - ], - "v8": [], - "zerocopy": [ - "dep:zerocopy" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.16.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "arbitrary", - "slog", - "borsh", - "v1", - "v3", - "v4", - "v5", - "v6", - "v7", - "v8" - ], - "rustc-args": [ - "--cfg", - "uuid_unstable" - ], - "rustdoc-args": [ - "--cfg", - "uuid_unstable" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "serde", - "v1", - "v3", - "v4", - "v5", - "v6", - "v7", - "v8" - ] - } - }, - "publish": null, - "authors": [ - "Ashley Mannix", - "Dylan DPC", - "Hunar Roop Kahlon" - ], - "categories": [ - "data-structures", - "no-std", - "parser-implementations", - "wasm" - ], - "keywords": [ - "guid", - "unique", - "uuid" - ], - "readme": "README.md", - "repository": "https://github.com/uuid-rs/uuid", - "homepage": "https://github.com/uuid-rs/uuid", - "documentation": "https://docs.rs/uuid", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "vault", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "vault", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/src/vault.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Andrei Marinica " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vault-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "vault", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "vault-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vcpkg", - "version": "0.2.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A library to find native dependencies in a vcpkg tree at build\ntime in order to be used in Cargo build scripts.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "vcpkg", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jim McGrath " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "build-dependencies", - "windows", - "macos", - "linux" - ], - "readme": "README.md", - "repository": "https://github.com/mcgoo/vcpkg-rs", - "homepage": null, - "documentation": "https://docs.rs/vcpkg", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vec-repeat", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "benchmark-common", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common" - }, - { - "name": "multiversx-sc", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/base" - }, - { - "name": "multiversx-sc-scenario", - "source": null, - "req": "^0.57.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/scenario" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "vec_repeat", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/src/vec_repeat.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_go_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/tests/scenario_go_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scenario_rs_test", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/tests/scenario_rs_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Claudiu-Marcel Bruda " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vec-repeat-meta", - "version": "0.0.0", - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "multiversx-sc-meta-lib", - "source": null, - "req": "^0.57.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib" - }, - { - "name": "vec-repeat", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat" - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "vec-repeat-meta", - "src_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "version_check", - "version": "0.9.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Tiny crate to check the version of the installed/running rustc.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "version_check", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sergio Benitez " - ], - "categories": [], - "keywords": [ - "version", - "rustc", - "minimum", - "check" - ], - "readme": "README.md", - "repository": "https://github.com/SergioBenitez/version_check", - "homepage": null, - "documentation": "https://docs.rs/version_check/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "walkdir", - "version": "2.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "license": "Unlicense/MIT", - "license_file": null, - "description": "Recursively walk a directory.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "same-file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "walkdir", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "filesystem" - ], - "keywords": [ - "directory", - "recursive", - "walk", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/walkdir", - "homepage": "https://github.com/BurntSushi/walkdir", - "documentation": "https://docs.rs/walkdir/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "want", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "license": "MIT", - "license_file": null, - "description": "Detect when another Future wants a result.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "try-lock", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-executor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0-alpha.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0-alpha.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "want", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "throughput", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/benches/throughput.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean McArthur " - ], - "categories": [], - "keywords": [ - "futures", - "channel", - "async" - ], - "readme": "README.md", - "repository": "https://github.com/seanmonstar/want", - "homepage": null, - "documentation": "https://docs.rs/want", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasm-bindgen", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Easy support for interacting between JS and Rust.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std", - "msrv" - ], - "enable-interning": [ - "std" - ], - "gg-alloc": [], - "msrv": [ - "rustversion" - ], - "rustversion": [ - "dep:rustversion" - ], - "serde": [ - "dep:serde" - ], - "serde-serialize": [ - "serde", - "serde_json", - "std" - ], - "serde_json": [ - "dep:serde_json" - ], - "spans": [], - "std": [], - "strict-macro": [ - "wasm-bindgen-macro/strict-macro" - ], - "xxx_debug_only_print_generated_code": [ - "wasm-bindgen-macro/xxx_debug_only_print_generated_code" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.100/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde-serialize" - ] - } - } - }, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen", - "homepage": "https://rustwasm.github.io/", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-backend", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Backend code generation of the wasm-bindgen tool\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_backend", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-backend-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "extra-traits": [ - "syn/extra-traits" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-backend-0.2.100/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen-backend", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-futures", - "version": "0.4.50", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bridging the gap between Rust Futures and JavaScript Promises", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "futures-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "MessageEvent", - "Worker" - ], - "target": "cfg(target_feature = \"atomics\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_futures", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.50/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "futures-core": [ - "dep:futures-core" - ], - "futures-core-03-stream": [ - "futures-core" - ], - "std": [ - "wasm-bindgen/std", - "js-sys/std", - "web-sys/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.50/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen-futures", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-macro", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-macro-support", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "wasm_bindgen_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "strict-macro": [ - "wasm-bindgen-macro-support/strict-macro" - ], - "xxx_debug_only_print_generated_code": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.100/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-macro-support", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "visit", - "visit-mut", - "full" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-backend", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_macro_support", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "strict-macro": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.100/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-shared", - "version": "0.2.100", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_shared", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.100/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen-shared", - "edition": "2021", - "links": "wasm_bindgen", - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-encoder", - "version": "0.229.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "A low-level WebAssembly encoder.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "leb128fmt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.229.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "simd", - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmprinter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.229.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_encoder", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "component-model": [ - "wasmparser?/component-model" - ], - "default": [ - "std", - "component-model" - ], - "std": [ - "wasmparser?/std" - ], - "wasmparser": [ - "dep:wasmparser" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-encoder-0.229.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Nick Fitzgerald " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", - "documentation": "https://docs.rs/wasm-encoder", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wasmer", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#2.2.1", - "license": "MIT", - "license_file": null, - "description": "High-performance WebAssembly runtime", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde-1" - ], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(not(target_arch = \"wasm32\"), target_os = \"windows\"))", - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler-cranelift", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler-llvm", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler-singlepass", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-derive", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-engine", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-engine-dylib", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-engine-universal", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-vm", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.51", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmer-derive", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmparser", - "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18", - "req": "*", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "js_externals", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/js_externals.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "js_instance", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/js_instance.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "js_module", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/js_module.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sys_export", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_export.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sys_externals", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_externals.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sys_instance", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_instance.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sys_module", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_module.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sys_reference_types", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/tests/sys_reference_types.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "compiler": [ - "sys", - "wasmer-compiler/translator", - "wasmer-engine-universal/compiler", - "wasmer-engine-dylib/compiler" - ], - "core": [ - "hashbrown" - ], - "cranelift": [ - "compiler", - "wasmer-compiler-cranelift" - ], - "default": [ - "sys-default" - ], - "default-compiler": [], - "default-cranelift": [ - "default-compiler", - "cranelift" - ], - "default-dylib": [ - "default-engine", - "dylib" - ], - "default-engine": [], - "default-llvm": [ - "default-compiler", - "llvm" - ], - "default-singlepass": [ - "default-compiler", - "singlepass" - ], - "default-universal": [ - "default-engine", - "universal" - ], - "dylib": [ - "engine", - "wasmer-engine-dylib" - ], - "engine": [ - "sys" - ], - "experimental-reference-types-extern-ref": [ - "sys", - "wasmer-types/experimental-reference-types-extern-ref" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "jit": [ - "universal" - ], - "js": [], - "js-default": [ - "js", - "std", - "wasm-types-polyfill" - ], - "llvm": [ - "compiler", - "wasmer-compiler-llvm" - ], - "native": [ - "dylib" - ], - "singlepass": [ - "compiler", - "wasmer-compiler-singlepass" - ], - "std": [], - "sys": [], - "sys-default": [ - "sys", - "wat", - "default-cranelift", - "default-universal" - ], - "universal": [ - "engine", - "wasmer-engine-universal" - ], - "wasm-types-polyfill": [ - "js", - "wasmparser" - ], - "wasmer-compiler-cranelift": [ - "dep:wasmer-compiler-cranelift" - ], - "wasmer-compiler-llvm": [ - "dep:wasmer-compiler-llvm" - ], - "wasmer-compiler-singlepass": [ - "dep:wasmer-compiler-singlepass" - ], - "wasmer-engine-dylib": [ - "dep:wasmer-engine-dylib" - ], - "wasmer-engine-universal": [ - "dep:wasmer-engine-universal" - ], - "wasmparser": [ - "dep:wasmparser" - ], - "wat": [ - "dep:wat" - ] - }, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/api/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "compiler", - "core", - "cranelift", - "default-compiler", - "default-dylib", - "default-engine", - "dylib", - "engine", - "jit", - "native", - "singlepass", - "sys", - "sys-default", - "universal" - ] - } - }, - "wasm-pack": { - "profile": { - "release": { - "wasm-opt": false - } - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly", - "runtime", - "vm" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", - "license": "MIT", - "license_file": null, - "description": "High-performance WebAssembly runtime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "derive_more", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "from", - "debug" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "indexmap", - "enable-indexmap" - ], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shared-buffer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmi_c_api_impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.40.0", - "kind": null, - "rename": "wasmi_c_api", - "optional": true, - "uses_default_features": true, - "features": [ - "prefix-symbols" - ], - "target": null, - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.216.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cmake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.50", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.42", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ureq", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.10.1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "which", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.0.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "xz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2.0", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(not(target_arch = \"wasm32\"), target_os = \"windows\"))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.51", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "rusty_jsc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.74", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler-cranelift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler-llvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-compiler-singlepass", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-vm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.224.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "validate", - "features", - "simd" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "macro-wasmer-universal-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.70.1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_env = \"musl\"))", - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "serde-wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmer-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.224.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "validate", - "features", - "simd" - ], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "macro-wasmer-universal-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.70.1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "static", - "logging", - "prettyplease" - ], - "target": "cfg(target_env = \"musl\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "externals", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/externals.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "function_env", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/function_env.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "import_function", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/import_function.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "instance", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/instance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "memory", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/memory.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "module", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/module.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reference_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/reference_types.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rt", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/rt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "typed_functions", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/tests/typed_functions.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "artifact-size": [ - "dep:loupe", - "wasmer-vm/artifact-size", - "wasmer-compiler/artifact-size" - ], - "compiler": [ - "sys", - "dep:wasmer-compiler", - "wasmer-compiler/translator", - "wasmer-compiler/compiler" - ], - "core": [ - "hashbrown" - ], - "cranelift": [ - "compiler", - "wasmer-compiler-cranelift" - ], - "default": [ - "sys-default" - ], - "enable-serde": [ - "wasmer-vm/enable-serde", - "wasmer-compiler/enable-serde", - "wasmer-types/enable-serde" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "js": [ - "wasm-bindgen", - "js-sys" - ], - "js-default": [ - "js", - "std", - "wasm-types-polyfill" - ], - "js-serializable-module": [], - "js-sys": [ - "dep:js-sys" - ], - "jsc": [ - "rusty_jsc", - "wasm-types-polyfill", - "wasmparser" - ], - "jsc-default": [ - "jsc" - ], - "llvm": [ - "compiler", - "wasmer-compiler-llvm" - ], - "rusty_jsc": [ - "dep:rusty_jsc" - ], - "singlepass": [ - "compiler", - "wasmer-compiler-singlepass" - ], - "static-artifact-create": [ - "wasmer-compiler/static-artifact-create" - ], - "static-artifact-load": [ - "wasmer-compiler/static-artifact-load" - ], - "std": [], - "sys": [ - "std", - "dep:wasmer-vm", - "dep:wasmer-compiler" - ], - "sys-default": [ - "sys", - "wat", - "cranelift" - ], - "v8": [ - "wasm-c-api", - "std", - "dep:which", - "dep:xz" - ], - "v8-default": [ - "v8", - "wat" - ], - "wamr": [ - "wasm-c-api", - "std", - "dep:which", - "dep:zip" - ], - "wamr-default": [ - "wamr", - "wat" - ], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ], - "wasm-c-api": [ - "wasm-types-polyfill" - ], - "wasm-types-polyfill": [ - "wasmparser" - ], - "wasmer-artifact-create": [ - "wasmer-compiler/wasmer-artifact-create" - ], - "wasmer-artifact-load": [ - "wasmer-compiler/wasmer-artifact-load" - ], - "wasmer-compiler-cranelift": [ - "dep:wasmer-compiler-cranelift" - ], - "wasmer-compiler-llvm": [ - "dep:wasmer-compiler-llvm" - ], - "wasmer-compiler-singlepass": [ - "dep:wasmer-compiler-singlepass" - ], - "wasmi": [ - "wasm-c-api", - "std", - "dep:wasmi_c_api" - ], - "wasmi-default": [ - "wasmi", - "wat" - ], - "wasmparser": [ - "dep:wasmparser" - ], - "wat": [ - "dep:wat", - "wasmparser" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "compiler", - "core", - "cranelift", - "singlepass", - "static-artifact-create", - "static-artifact-load", - "sys", - "sys-default", - "wasmer-artifact-create", - "wasmer-artifact-load" - ], - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "wasm-pack": { - "profile": { - "release": { - "wasm-opt": false - } - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly", - "runtime", - "vm" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-compiler", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "license": "MIT OR Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "Base compiler abstraction for Wasmer WebAssembly runtime", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-vm", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18", - "req": "*", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_compiler", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/compiler/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "core": [ - "hashbrown", - "wasmer-types/core" - ], - "default": [ - "std", - "enable-serde", - "enable-rkyv" - ], - "enable-rkyv": [ - "rkyv", - "wasmer-vm/enable-rkyv", - "wasmer-types/enable-rkyv" - ], - "enable-serde": [ - "serde", - "serde_bytes", - "wasmer-types/enable-serde" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "rkyv": [ - "dep:rkyv" - ], - "serde": [ - "dep:serde" - ], - "serde_bytes": [ - "dep:serde_bytes" - ], - "std": [ - "wasmer-types/std" - ], - "translator": [ - "wasmparser" - ], - "wasmparser": [ - "dep:wasmparser" - ] - }, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/compiler/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm", - "no-std" - ], - "keywords": [ - "wasm", - "webassembly", - "compiler" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer-compiler", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "license": "MIT", - "license_file": null, - "description": "Base compiler abstraction for Wasmer WebAssembly runtime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "leb128", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "indexmap", - "enable-indexmap" - ], - "target": null, - "registry": null - }, - { - "name": "memmap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "object", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.32.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "write" - ], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "indexmap-2", - "bytes-1" - ], - "target": null, - "registry": null - }, - { - "name": "self_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shared-buffer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.224.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "validate", - "features", - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "xxhash-rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "xxh64" - ], - "target": null, - "registry": null - }, - { - "name": "macho-unwind-info", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_os = \"macos\", target_arch = \"aarch64\"))", - "registry": null - }, - { - "name": "region", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasmer-vm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Diagnostics_Debug" - ], - "target": "cfg(target_os = \"windows\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_compiler", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "artifact-size": [ - "dep:loupe" - ], - "compiler": [ - "translator" - ], - "core": [ - "hashbrown", - "wasmer-types/core" - ], - "default": [ - "std" - ], - "enable-serde": [ - "serde", - "serde_bytes", - "wasmer-types/enable-serde" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "serde": [ - "dep:serde" - ], - "serde_bytes": [ - "dep:serde_bytes" - ], - "static-artifact-create": [ - "translator", - "compiler" - ], - "static-artifact-load": [], - "std": [ - "wasmer-types/std" - ], - "translator": [ - "wasmparser" - ], - "wasmer-artifact-create": [], - "wasmer-artifact-load": [], - "wasmparser": [ - "dep:wasmparser" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "static-artifact-create", - "static-artifact-load", - "wasmer-artifact-create", - "wasmer-artifact-load" - ], - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm", - "no-std" - ], - "keywords": [ - "wasm", - "webassembly", - "compiler" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-compiler-singlepass", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler-singlepass@2.2.1", - "license": "MIT", - "license_file": null, - "description": "Singlepass compiler for Wasmer WebAssembly runtime", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dynasm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dynasmrt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "translator" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-vm", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_compiler_singlepass", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/compiler-singlepass/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "avx": [], - "core": [ - "hashbrown", - "wasmer-types/core" - ], - "default": [ - "std", - "rayon", - "avx" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "rayon": [ - "dep:rayon" - ], - "sse": [], - "std": [ - "wasmer-compiler/std", - "wasmer-types/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/compiler-singlepass/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly", - "compiler", - "singlepass" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": "https://docs.rs/wasmer-compiler-singlepass/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer-compiler-singlepass", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", - "license": null, - "license_file": "LICENSE", - "description": "Singlepass compiler for Wasmer WebAssembly runtime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dynasm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dynasmrt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gimli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.28.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "translator", - "compiler" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_compiler_singlepass", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-singlepass-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "avx": [], - "core": [ - "hashbrown", - "wasmer-types/core" - ], - "default": [ - "std", - "rayon", - "unwind", - "avx" - ], - "enable-serde": [], - "gimli": [ - "dep:gimli" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "rayon": [ - "dep:rayon" - ], - "sse": [], - "std": [ - "wasmer-compiler/std", - "wasmer-types/std" - ], - "unwind": [ - "gimli" - ], - "wasm": [ - "std", - "unwind", - "avx" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-compiler-singlepass-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly", - "compiler", - "singlepass" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": "https://docs.rs/wasmer-compiler-singlepass/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-derive", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-derive@2.2.1", - "license": "MIT", - "license_file": null, - "description": "Wasmer derive macros", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "proc-macro-error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.72", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "compiletest_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "wasmer_derive", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/derive/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/derive/tests/basic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/derive/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/derive/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer-derive", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", - "license": "MIT", - "license_file": null, - "description": "Wasmer derive macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro-error2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.72", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "compiletest_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "wasmer_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-derive-6.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-engine", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", - "license": "MIT OR Apache-2.0 WITH LLVM-exception ", - "license_file": null, - "description": "Wasmer Engine abstraction", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memmap2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-demangle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive", - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-vm", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_engine", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly", - "engine" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer-engine-dylib", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-dylib@2.2.1", - "license": "MIT", - "license_file": null, - "description": "Wasmer Dylib Engine", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "leb128", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libloading", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "object", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.28.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "write" - ], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive", - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "log" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-engine", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-object", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-vm", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "enable-rkyv" - ], - "target": null, - "registry": null - }, - { - "name": "which", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_engine_dylib", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine-dylib/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "compiler": [ - "wasmer-compiler/translator" - ] - }, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine-dylib/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly", - "engine", - "dylib" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer-engine-universal", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-universal@2.2.1", - "license": "MIT OR Apache-2.0 WITH LLVM-exception ", - "license_file": null, - "description": "Wasmer Universal Engine", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "leb128", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "region", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "translator", - "enable-rkyv" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-engine", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "enable-rkyv" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-vm", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "enable-rkyv" - ], - "target": null, - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "winnt", - "impl-default" - ], - "target": "cfg(target_os = \"windows\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_engine_universal", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine-universal/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "compiler": [ - "wasmer-compiler/translator" - ] - }, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/engine-universal/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly", - "engine", - "universal" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer-object", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-object@2.2.1", - "license": "MIT", - "license_file": null, - "description": "Wasmer Native Object generator", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "object", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.28.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "write" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-compiler", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "translator" - ], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_object", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/object/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/object/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer-types", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "license": "MIT OR Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "Wasmer Common Types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde-1" - ], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "enable-indexmap" - ], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_types", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/types/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "core": [], - "default": [ - "std", - "enable-serde", - "enable-rkyv" - ], - "enable-rkyv": [ - "rkyv" - ], - "enable-serde": [ - "serde", - "serde/std" - ], - "experimental-reference-types-extern-ref": [], - "rkyv": [ - "dep:rkyv" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/types/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm", - "no-std", - "data-structures" - ], - "keywords": [ - "wasm", - "webassembly", - "types" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer-types", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "license": "MIT OR Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "Wasmer Common Types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytecheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "indexmap-2", - "bytes-1" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "target-lexicon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.224.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "validate", - "features", - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "xxhash-rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "xxh64" - ], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_types", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-types-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "artifact-size": [ - "dep:loupe" - ], - "core": [], - "default": [ - "std" - ], - "detect-wasm-features": [ - "dep:wasmparser" - ], - "enable-serde": [ - "serde", - "serde/std", - "serde_bytes", - "indexmap/serde" - ], - "serde": [ - "dep:serde" - ], - "serde_bytes": [ - "dep:serde_bytes" - ], - "std": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-types-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm", - "no-std", - "data-structures" - ], - "keywords": [ - "wasm", - "webassembly", - "types" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmer-vm", - "version": "2.2.1", - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "license": "MIT OR Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "Runtime library support for Wasmer", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde-1" - ], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "enable-indexmap" - ], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "region", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive", - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#090ad17927fd1cbecb253a7b123d21e453fa13df", - "req": "=2.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "winbase", - "memoryapi", - "errhandlingapi" - ], - "target": "cfg(target_os = \"windows\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_vm", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/vm/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/vm/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [], - "enable-rkyv": [ - "rkyv" - ], - "rkyv": [ - "dep:rkyv" - ] - }, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasmer-52ccfc6469b47946/090ad17/lib/vm/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmer-vm", - "version": "6.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "license": "MIT OR Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "Runtime library support for Wasmer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "corosensei", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-queue", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dashmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loupe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "more-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "region", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scopeguard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive", - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmer-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=6.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libunwind", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_family = \"unix\", all(target_family = \"windows\", target_env = \"gnu\")))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Diagnostics_Debug", - "Win32_System_Threading", - "Win32_System_Kernel", - "Win32_System_Memory" - ], - "target": "cfg(target_os = \"windows\")", - "registry": null - }, - { - "name": "mach2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmer_vm", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-vm-6.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "artifact-size": [ - "dep:loupe", - "wasmer-types/artifact-size" - ], - "default": [], - "enable-serde": [ - "serde", - "indexmap/serde", - "wasmer-types/enable-serde" - ], - "serde": [ - "dep:serde" - ], - "tracing": [ - "dep:tracing" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmer-vm-6.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Wasmer Engineering Team " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "wasm", - "webassembly" - ], - "readme": "README.md", - "repository": "https://github.com/wasmerio/wasmer", - "homepage": "https://wasmer.io/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "wasmparser", - "version": "0.78.2", - "id": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#wasmparser@0.78.2", - "license": "Apache-2.0 WITH LLVM-exception", - "license_file": null, - "description": "A simple event-driven library for parsing WebAssembly binary files.\n", - "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#90d489e90781320bdb6cffcb0a796138242c5a18", - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getopts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser-dump", - "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#90d489e90781320bdb6cffcb0a796138242c5a18", - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wast", - "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#90d489e90781320bdb6cffcb0a796138242c5a18", - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wat", - "source": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#90d489e90781320bdb6cffcb0a796138242c5a18", - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmparser", - "src_path": "/home/bibi/.cargo/git/checkouts/wasm-tools-65202373170ae4e8/90d489e/crates/wasmparser/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/git/checkouts/wasm-tools-65202373170ae4e8/90d489e/crates/wasmparser/examples/simple.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/bibi/.cargo/git/checkouts/wasm-tools-65202373170ae4e8/90d489e/crates/wasmparser/benches/benchmark.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "deterministic": [] - }, - "manifest_path": "/home/bibi/.cargo/git/checkouts/wasm-tools-65202373170ae4e8/90d489e/crates/wasmparser/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Yury Delendik " - ], - "categories": [], - "keywords": [ - "parser", - "WebAssembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasmparser", - "version": "0.224.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "A simple event-driven library for parsing WebAssembly binary files.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmparser", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big-module", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/tests/big-module.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/benches/benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "component-model": [ - "dep:semver" - ], - "default": [ - "std", - "validate", - "serde", - "features", - "component-model", - "hash-collections", - "simd" - ], - "features": [], - "hash-collections": [ - "dep:hashbrown", - "dep:indexmap" - ], - "prefer-btree-collections": [], - "serde": [ - "dep:serde", - "indexmap?/serde", - "hashbrown?/serde" - ], - "simd": [], - "std": [ - "indexmap?/std" - ], - "validate": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.224.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Yury Delendik " - ], - "categories": [], - "keywords": [ - "parser", - "WebAssembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wasmparser", - "version": "0.227.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "A simple event-driven library for parsing WebAssembly binary files.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmparser", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big-module", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/tests/big-module.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/benches/benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "component-model": [ - "dep:semver" - ], - "default": [ - "std", - "validate", - "serde", - "features", - "component-model", - "hash-collections", - "simd" - ], - "features": [], - "hash-collections": [ - "dep:hashbrown", - "dep:indexmap" - ], - "prefer-btree-collections": [], - "serde": [ - "dep:serde", - "indexmap?/serde", - "hashbrown?/serde" - ], - "simd": [], - "std": [ - "indexmap?/std" - ], - "validate": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.227.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Yury Delendik " - ], - "categories": [], - "keywords": [ - "parser", - "WebAssembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wasmparser", - "version": "0.229.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "A simple event-driven library for parsing WebAssembly binary files.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "default-hasher" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmparser", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big-module", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/tests/big-module.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/benches/benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "component-model": [ - "dep:semver" - ], - "default": [ - "std", - "validate", - "serde", - "features", - "component-model", - "hash-collections", - "simd" - ], - "features": [], - "hash-collections": [ - "dep:hashbrown", - "dep:indexmap" - ], - "prefer-btree-collections": [], - "serde": [ - "dep:serde", - "indexmap?/serde", - "hashbrown?/serde" - ], - "simd": [], - "std": [ - "indexmap?/std" - ], - "validate": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmparser-0.229.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Yury Delendik " - ], - "categories": [], - "keywords": [ - "parser", - "WebAssembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wasmprinter", - "version": "0.227.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Rust converter from the WebAssembly binary format to the text format.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "termcolor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasmparser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.227.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "simd", - "std", - "simd" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasmprinter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "all", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/tests/all.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "component-model": [ - "wasmparser/component-model" - ], - "default": [ - "component-model" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasmprinter-0.227.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter", - "documentation": "https://docs.rs/wasmprinter", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wast", - "version": "229.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Customizable Rust parsers for the WebAssembly Text formats WAT and WAST\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gimli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.31.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "leb128fmt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-encoder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.229.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.58", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libtest-mimic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wast", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "annotations", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/annotations.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "comments", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/comments.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse-fail", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/parse-fail.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "recursive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/tests/recursive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "component-model": [ - "wasm-module", - "wasm-encoder/component-model" - ], - "default": [ - "wasm-module", - "component-model" - ], - "dwarf": [ - "dep:gimli" - ], - "wasm-module": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wast-229.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wast", - "documentation": "https://docs.rs/wast", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "wat", - "version": "1.229.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Rust parser for the WebAssembly Text format, WAT\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "wast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^229.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "wasm-module" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wat", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wat-1.229.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "component-model": [ - "wast/component-model" - ], - "default": [ - "component-model" - ], - "dwarf": [ - "wast/dwarf" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wat-1.229.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", - "homepage": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat", - "documentation": "https://docs.rs/wat", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.76.0" - }, - { - "name": "web-sys", - "version": "0.3.77", - "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bindings for all Web APIs, a procedurally generated crate from WebIDL\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.77", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "web_sys", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.77/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": false - } - ], - "features": { - "AbortController": [], - "AbortSignal": [ - "EventTarget" - ], - "AddEventListenerOptions": [], - "AesCbcParams": [], - "AesCtrParams": [], - "AesDerivedKeyParams": [], - "AesGcmParams": [], - "AesKeyAlgorithm": [], - "AesKeyGenParams": [], - "Algorithm": [], - "AlignSetting": [], - "AllowedBluetoothDevice": [], - "AllowedUsbDevice": [], - "AlphaOption": [], - "AnalyserNode": [ - "AudioNode", - "EventTarget" - ], - "AnalyserOptions": [], - "AngleInstancedArrays": [], - "Animation": [ - "EventTarget" - ], - "AnimationEffect": [], - "AnimationEvent": [ - "Event" - ], - "AnimationEventInit": [], - "AnimationPlayState": [], - "AnimationPlaybackEvent": [ - "Event" - ], - "AnimationPlaybackEventInit": [], - "AnimationPropertyDetails": [], - "AnimationPropertyValueDetails": [], - "AnimationTimeline": [], - "AssignedNodesOptions": [], - "AttestationConveyancePreference": [], - "Attr": [ - "EventTarget", - "Node" - ], - "AttributeNameValue": [], - "AudioBuffer": [], - "AudioBufferOptions": [], - "AudioBufferSourceNode": [ - "AudioNode", - "AudioScheduledSourceNode", - "EventTarget" - ], - "AudioBufferSourceOptions": [], - "AudioConfiguration": [], - "AudioContext": [ - "BaseAudioContext", - "EventTarget" - ], - "AudioContextLatencyCategory": [], - "AudioContextOptions": [], - "AudioContextState": [], - "AudioData": [], - "AudioDataCopyToOptions": [], - "AudioDataInit": [], - "AudioDecoder": [], - "AudioDecoderConfig": [], - "AudioDecoderInit": [], - "AudioDecoderSupport": [], - "AudioDestinationNode": [ - "AudioNode", - "EventTarget" - ], - "AudioEncoder": [], - "AudioEncoderConfig": [], - "AudioEncoderInit": [], - "AudioEncoderSupport": [], - "AudioListener": [], - "AudioNode": [ - "EventTarget" - ], - "AudioNodeOptions": [], - "AudioParam": [], - "AudioParamMap": [], - "AudioProcessingEvent": [ - "Event" - ], - "AudioSampleFormat": [], - "AudioScheduledSourceNode": [ - "AudioNode", - "EventTarget" - ], - "AudioSinkInfo": [], - "AudioSinkOptions": [], - "AudioSinkType": [], - "AudioStreamTrack": [ - "EventTarget", - "MediaStreamTrack" - ], - "AudioTrack": [], - "AudioTrackList": [ - "EventTarget" - ], - "AudioWorklet": [ - "Worklet" - ], - "AudioWorkletGlobalScope": [ - "WorkletGlobalScope" - ], - "AudioWorkletNode": [ - "AudioNode", - "EventTarget" - ], - "AudioWorkletNodeOptions": [], - "AudioWorkletProcessor": [], - "AuthenticationExtensionsClientInputs": [], - "AuthenticationExtensionsClientInputsJson": [], - "AuthenticationExtensionsClientOutputs": [], - "AuthenticationExtensionsClientOutputsJson": [], - "AuthenticationExtensionsDevicePublicKeyInputs": [], - "AuthenticationExtensionsDevicePublicKeyOutputs": [], - "AuthenticationExtensionsLargeBlobInputs": [], - "AuthenticationExtensionsLargeBlobOutputs": [], - "AuthenticationExtensionsPrfInputs": [], - "AuthenticationExtensionsPrfOutputs": [], - "AuthenticationExtensionsPrfValues": [], - "AuthenticationResponseJson": [], - "AuthenticatorAssertionResponse": [ - "AuthenticatorResponse" - ], - "AuthenticatorAssertionResponseJson": [], - "AuthenticatorAttachment": [], - "AuthenticatorAttestationResponse": [ - "AuthenticatorResponse" - ], - "AuthenticatorAttestationResponseJson": [], - "AuthenticatorResponse": [], - "AuthenticatorSelectionCriteria": [], - "AuthenticatorTransport": [], - "AutoKeyword": [], - "AutocompleteInfo": [], - "BarProp": [], - "BaseAudioContext": [ - "EventTarget" - ], - "BaseComputedKeyframe": [], - "BaseKeyframe": [], - "BasePropertyIndexedKeyframe": [], - "BasicCardRequest": [], - "BasicCardResponse": [], - "BasicCardType": [], - "BatteryManager": [ - "EventTarget" - ], - "BeforeUnloadEvent": [ - "Event" - ], - "BinaryType": [], - "BiquadFilterNode": [ - "AudioNode", - "EventTarget" - ], - "BiquadFilterOptions": [], - "BiquadFilterType": [], - "Blob": [], - "BlobEvent": [ - "Event" - ], - "BlobEventInit": [], - "BlobPropertyBag": [], - "BlockParsingOptions": [], - "Bluetooth": [ - "EventTarget" - ], - "BluetoothAdvertisingEvent": [ - "Event" - ], - "BluetoothAdvertisingEventInit": [], - "BluetoothCharacteristicProperties": [], - "BluetoothDataFilterInit": [], - "BluetoothDevice": [ - "EventTarget" - ], - "BluetoothLeScanFilterInit": [], - "BluetoothManufacturerDataMap": [], - "BluetoothPermissionDescriptor": [], - "BluetoothPermissionResult": [ - "EventTarget", - "PermissionStatus" - ], - "BluetoothPermissionStorage": [], - "BluetoothRemoteGattCharacteristic": [ - "EventTarget" - ], - "BluetoothRemoteGattDescriptor": [], - "BluetoothRemoteGattServer": [], - "BluetoothRemoteGattService": [ - "EventTarget" - ], - "BluetoothServiceDataMap": [], - "BluetoothUuid": [], - "BoxQuadOptions": [], - "BroadcastChannel": [ - "EventTarget" - ], - "BrowserElementDownloadOptions": [], - "BrowserElementExecuteScriptOptions": [], - "BrowserFeedWriter": [], - "BrowserFindCaseSensitivity": [], - "BrowserFindDirection": [], - "ByteLengthQueuingStrategy": [], - "Cache": [], - "CacheBatchOperation": [], - "CacheQueryOptions": [], - "CacheStorage": [], - "CacheStorageNamespace": [], - "CanvasCaptureMediaStream": [ - "EventTarget", - "MediaStream" - ], - "CanvasCaptureMediaStreamTrack": [ - "EventTarget", - "MediaStreamTrack" - ], - "CanvasGradient": [], - "CanvasPattern": [], - "CanvasRenderingContext2d": [], - "CanvasWindingRule": [], - "CaretChangedReason": [], - "CaretPosition": [], - "CaretStateChangedEventInit": [], - "CdataSection": [ - "CharacterData", - "EventTarget", - "Node", - "Text" - ], - "ChannelCountMode": [], - "ChannelInterpretation": [], - "ChannelMergerNode": [ - "AudioNode", - "EventTarget" - ], - "ChannelMergerOptions": [], - "ChannelSplitterNode": [ - "AudioNode", - "EventTarget" - ], - "ChannelSplitterOptions": [], - "CharacterData": [ - "EventTarget", - "Node" - ], - "CheckerboardReason": [], - "CheckerboardReport": [], - "CheckerboardReportService": [], - "ChromeFilePropertyBag": [], - "ChromeWorker": [ - "EventTarget", - "Worker" - ], - "Client": [], - "ClientQueryOptions": [], - "ClientRectsAndTexts": [], - "ClientType": [], - "Clients": [], - "Clipboard": [ - "EventTarget" - ], - "ClipboardEvent": [ - "Event" - ], - "ClipboardEventInit": [], - "ClipboardItem": [], - "ClipboardItemOptions": [], - "ClipboardPermissionDescriptor": [], - "ClipboardUnsanitizedFormats": [], - "CloseEvent": [ - "Event" - ], - "CloseEventInit": [], - "CodecState": [], - "CollectedClientData": [], - "ColorSpaceConversion": [], - "Comment": [ - "CharacterData", - "EventTarget", - "Node" - ], - "CompositeOperation": [], - "CompositionEvent": [ - "Event", - "UiEvent" - ], - "CompositionEventInit": [], - "CompressionFormat": [], - "CompressionStream": [], - "ComputedEffectTiming": [], - "ConnStatusDict": [], - "ConnectionType": [], - "ConsoleCounter": [], - "ConsoleCounterError": [], - "ConsoleEvent": [], - "ConsoleInstance": [], - "ConsoleInstanceOptions": [], - "ConsoleLevel": [], - "ConsoleLogLevel": [], - "ConsoleProfileEvent": [], - "ConsoleStackEntry": [], - "ConsoleTimerError": [], - "ConsoleTimerLogOrEnd": [], - "ConsoleTimerStart": [], - "ConstantSourceNode": [ - "AudioNode", - "AudioScheduledSourceNode", - "EventTarget" - ], - "ConstantSourceOptions": [], - "ConstrainBooleanParameters": [], - "ConstrainDomStringParameters": [], - "ConstrainDoubleRange": [], - "ConstrainLongRange": [], - "ContextAttributes2d": [], - "ConvertCoordinateOptions": [], - "ConvolverNode": [ - "AudioNode", - "EventTarget" - ], - "ConvolverOptions": [], - "Coordinates": [], - "CountQueuingStrategy": [], - "Credential": [], - "CredentialCreationOptions": [], - "CredentialPropertiesOutput": [], - "CredentialRequestOptions": [], - "CredentialsContainer": [], - "Crypto": [], - "CryptoKey": [], - "CryptoKeyPair": [], - "CssAnimation": [ - "Animation", - "EventTarget" - ], - "CssBoxType": [], - "CssConditionRule": [ - "CssGroupingRule", - "CssRule" - ], - "CssCounterStyleRule": [ - "CssRule" - ], - "CssFontFaceRule": [ - "CssRule" - ], - "CssFontFeatureValuesRule": [ - "CssRule" - ], - "CssGroupingRule": [ - "CssRule" - ], - "CssImportRule": [ - "CssRule" - ], - "CssKeyframeRule": [ - "CssRule" - ], - "CssKeyframesRule": [ - "CssRule" - ], - "CssMediaRule": [ - "CssConditionRule", - "CssGroupingRule", - "CssRule" - ], - "CssNamespaceRule": [ - "CssRule" - ], - "CssPageRule": [ - "CssRule" - ], - "CssPseudoElement": [], - "CssRule": [], - "CssRuleList": [], - "CssStyleDeclaration": [], - "CssStyleRule": [ - "CssRule" - ], - "CssStyleSheet": [ - "StyleSheet" - ], - "CssStyleSheetParsingMode": [], - "CssSupportsRule": [ - "CssConditionRule", - "CssGroupingRule", - "CssRule" - ], - "CssTransition": [ - "Animation", - "EventTarget" - ], - "CustomElementRegistry": [], - "CustomEvent": [ - "Event" - ], - "CustomEventInit": [], - "DataTransfer": [], - "DataTransferItem": [], - "DataTransferItemList": [], - "DateTimeValue": [], - "DecoderDoctorNotification": [], - "DecoderDoctorNotificationType": [], - "DecompressionStream": [], - "DedicatedWorkerGlobalScope": [ - "EventTarget", - "WorkerGlobalScope" - ], - "DelayNode": [ - "AudioNode", - "EventTarget" - ], - "DelayOptions": [], - "DeviceAcceleration": [], - "DeviceAccelerationInit": [], - "DeviceLightEvent": [ - "Event" - ], - "DeviceLightEventInit": [], - "DeviceMotionEvent": [ - "Event" - ], - "DeviceMotionEventInit": [], - "DeviceOrientationEvent": [ - "Event" - ], - "DeviceOrientationEventInit": [], - "DeviceProximityEvent": [ - "Event" - ], - "DeviceProximityEventInit": [], - "DeviceRotationRate": [], - "DeviceRotationRateInit": [], - "DhKeyDeriveParams": [], - "DirectionSetting": [], - "Directory": [], - "DirectoryPickerOptions": [], - "DisplayMediaStreamConstraints": [], - "DisplayNameOptions": [], - "DisplayNameResult": [], - "DistanceModelType": [], - "DnsCacheDict": [], - "DnsCacheEntry": [], - "DnsLookupDict": [], - "Document": [ - "EventTarget", - "Node" - ], - "DocumentFragment": [ - "EventTarget", - "Node" - ], - "DocumentTimeline": [ - "AnimationTimeline" - ], - "DocumentTimelineOptions": [], - "DocumentType": [ - "EventTarget", - "Node" - ], - "DomError": [], - "DomException": [], - "DomImplementation": [], - "DomMatrix": [ - "DomMatrixReadOnly" - ], - "DomMatrix2dInit": [], - "DomMatrixInit": [], - "DomMatrixReadOnly": [], - "DomParser": [], - "DomPoint": [ - "DomPointReadOnly" - ], - "DomPointInit": [], - "DomPointReadOnly": [], - "DomQuad": [], - "DomQuadInit": [], - "DomQuadJson": [], - "DomRect": [ - "DomRectReadOnly" - ], - "DomRectInit": [], - "DomRectList": [], - "DomRectReadOnly": [], - "DomRequest": [ - "EventTarget" - ], - "DomRequestReadyState": [], - "DomStringList": [], - "DomStringMap": [], - "DomTokenList": [], - "DomWindowResizeEventDetail": [], - "DoubleRange": [], - "DragEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "DragEventInit": [], - "DynamicsCompressorNode": [ - "AudioNode", - "EventTarget" - ], - "DynamicsCompressorOptions": [], - "EcKeyAlgorithm": [], - "EcKeyGenParams": [], - "EcKeyImportParams": [], - "EcdhKeyDeriveParams": [], - "EcdsaParams": [], - "EffectTiming": [], - "Element": [ - "EventTarget", - "Node" - ], - "ElementCreationOptions": [], - "ElementDefinitionOptions": [], - "EncodedAudioChunk": [], - "EncodedAudioChunkInit": [], - "EncodedAudioChunkMetadata": [], - "EncodedAudioChunkType": [], - "EncodedVideoChunk": [], - "EncodedVideoChunkInit": [], - "EncodedVideoChunkMetadata": [], - "EncodedVideoChunkType": [], - "EndingTypes": [], - "ErrorCallback": [], - "ErrorEvent": [ - "Event" - ], - "ErrorEventInit": [], - "Event": [], - "EventInit": [], - "EventListener": [], - "EventListenerOptions": [], - "EventModifierInit": [], - "EventSource": [ - "EventTarget" - ], - "EventSourceInit": [], - "EventTarget": [], - "Exception": [], - "ExtBlendMinmax": [], - "ExtColorBufferFloat": [], - "ExtColorBufferHalfFloat": [], - "ExtDisjointTimerQuery": [], - "ExtFragDepth": [], - "ExtSRgb": [], - "ExtShaderTextureLod": [], - "ExtTextureFilterAnisotropic": [], - "ExtTextureNorm16": [], - "ExtendableEvent": [ - "Event" - ], - "ExtendableEventInit": [], - "ExtendableMessageEvent": [ - "Event", - "ExtendableEvent" - ], - "ExtendableMessageEventInit": [], - "External": [], - "FakePluginMimeEntry": [], - "FakePluginTagInit": [], - "FetchEvent": [ - "Event", - "ExtendableEvent" - ], - "FetchEventInit": [], - "FetchObserver": [ - "EventTarget" - ], - "FetchReadableStreamReadDataArray": [], - "FetchReadableStreamReadDataDone": [], - "FetchState": [], - "File": [ - "Blob" - ], - "FileCallback": [], - "FileList": [], - "FilePickerAcceptType": [], - "FilePickerOptions": [], - "FilePropertyBag": [], - "FileReader": [ - "EventTarget" - ], - "FileReaderSync": [], - "FileSystem": [], - "FileSystemCreateWritableOptions": [], - "FileSystemDirectoryEntry": [ - "FileSystemEntry" - ], - "FileSystemDirectoryHandle": [ - "FileSystemHandle" - ], - "FileSystemDirectoryReader": [], - "FileSystemEntriesCallback": [], - "FileSystemEntry": [], - "FileSystemEntryCallback": [], - "FileSystemFileEntry": [ - "FileSystemEntry" - ], - "FileSystemFileHandle": [ - "FileSystemHandle" - ], - "FileSystemFlags": [], - "FileSystemGetDirectoryOptions": [], - "FileSystemGetFileOptions": [], - "FileSystemHandle": [], - "FileSystemHandleKind": [], - "FileSystemHandlePermissionDescriptor": [], - "FileSystemPermissionDescriptor": [], - "FileSystemPermissionMode": [], - "FileSystemReadWriteOptions": [], - "FileSystemRemoveOptions": [], - "FileSystemSyncAccessHandle": [], - "FileSystemWritableFileStream": [ - "WritableStream" - ], - "FillMode": [], - "FlashClassification": [], - "FlowControlType": [], - "FocusEvent": [ - "Event", - "UiEvent" - ], - "FocusEventInit": [], - "FocusOptions": [], - "FontData": [], - "FontFace": [], - "FontFaceDescriptors": [], - "FontFaceLoadStatus": [], - "FontFaceSet": [ - "EventTarget" - ], - "FontFaceSetIterator": [], - "FontFaceSetIteratorResult": [], - "FontFaceSetLoadEvent": [ - "Event" - ], - "FontFaceSetLoadEventInit": [], - "FontFaceSetLoadStatus": [], - "FormData": [], - "FrameType": [], - "FuzzingFunctions": [], - "GainNode": [ - "AudioNode", - "EventTarget" - ], - "GainOptions": [], - "Gamepad": [], - "GamepadButton": [], - "GamepadEffectParameters": [], - "GamepadEvent": [ - "Event" - ], - "GamepadEventInit": [], - "GamepadHand": [], - "GamepadHapticActuator": [], - "GamepadHapticActuatorType": [], - "GamepadHapticEffectType": [], - "GamepadHapticsResult": [], - "GamepadMappingType": [], - "GamepadPose": [], - "GamepadTouch": [], - "Geolocation": [], - "GetAnimationsOptions": [], - "GetRootNodeOptions": [], - "GetUserMediaRequest": [], - "Gpu": [], - "GpuAdapter": [], - "GpuAdapterInfo": [], - "GpuAddressMode": [], - "GpuAutoLayoutMode": [], - "GpuBindGroup": [], - "GpuBindGroupDescriptor": [], - "GpuBindGroupEntry": [], - "GpuBindGroupLayout": [], - "GpuBindGroupLayoutDescriptor": [], - "GpuBindGroupLayoutEntry": [], - "GpuBlendComponent": [], - "GpuBlendFactor": [], - "GpuBlendOperation": [], - "GpuBlendState": [], - "GpuBuffer": [], - "GpuBufferBinding": [], - "GpuBufferBindingLayout": [], - "GpuBufferBindingType": [], - "GpuBufferDescriptor": [], - "GpuBufferMapState": [], - "GpuCanvasAlphaMode": [], - "GpuCanvasConfiguration": [], - "GpuCanvasContext": [], - "GpuCanvasToneMapping": [], - "GpuCanvasToneMappingMode": [], - "GpuColorDict": [], - "GpuColorTargetState": [], - "GpuCommandBuffer": [], - "GpuCommandBufferDescriptor": [], - "GpuCommandEncoder": [], - "GpuCommandEncoderDescriptor": [], - "GpuCompareFunction": [], - "GpuCompilationInfo": [], - "GpuCompilationMessage": [], - "GpuCompilationMessageType": [], - "GpuComputePassDescriptor": [], - "GpuComputePassEncoder": [], - "GpuComputePassTimestampWrites": [], - "GpuComputePipeline": [], - "GpuComputePipelineDescriptor": [], - "GpuCopyExternalImageDestInfo": [], - "GpuCopyExternalImageSourceInfo": [], - "GpuCullMode": [], - "GpuDepthStencilState": [], - "GpuDevice": [ - "EventTarget" - ], - "GpuDeviceDescriptor": [], - "GpuDeviceLostInfo": [], - "GpuDeviceLostReason": [], - "GpuError": [], - "GpuErrorFilter": [], - "GpuExtent3dDict": [], - "GpuExternalTexture": [], - "GpuExternalTextureBindingLayout": [], - "GpuExternalTextureDescriptor": [], - "GpuFeatureName": [], - "GpuFilterMode": [], - "GpuFragmentState": [], - "GpuFrontFace": [], - "GpuIndexFormat": [], - "GpuInternalError": [ - "GpuError" - ], - "GpuLoadOp": [], - "GpuMipmapFilterMode": [], - "GpuMultisampleState": [], - "GpuObjectDescriptorBase": [], - "GpuOrigin2dDict": [], - "GpuOrigin3dDict": [], - "GpuOutOfMemoryError": [ - "GpuError" - ], - "GpuPipelineDescriptorBase": [], - "GpuPipelineError": [ - "DomException" - ], - "GpuPipelineErrorInit": [], - "GpuPipelineErrorReason": [], - "GpuPipelineLayout": [], - "GpuPipelineLayoutDescriptor": [], - "GpuPowerPreference": [], - "GpuPrimitiveState": [], - "GpuPrimitiveTopology": [], - "GpuProgrammableStage": [], - "GpuQuerySet": [], - "GpuQuerySetDescriptor": [], - "GpuQueryType": [], - "GpuQueue": [], - "GpuQueueDescriptor": [], - "GpuRenderBundle": [], - "GpuRenderBundleDescriptor": [], - "GpuRenderBundleEncoder": [], - "GpuRenderBundleEncoderDescriptor": [], - "GpuRenderPassColorAttachment": [], - "GpuRenderPassDepthStencilAttachment": [], - "GpuRenderPassDescriptor": [], - "GpuRenderPassEncoder": [], - "GpuRenderPassLayout": [], - "GpuRenderPassTimestampWrites": [], - "GpuRenderPipeline": [], - "GpuRenderPipelineDescriptor": [], - "GpuRequestAdapterOptions": [], - "GpuSampler": [], - "GpuSamplerBindingLayout": [], - "GpuSamplerBindingType": [], - "GpuSamplerDescriptor": [], - "GpuShaderModule": [], - "GpuShaderModuleCompilationHint": [], - "GpuShaderModuleDescriptor": [], - "GpuStencilFaceState": [], - "GpuStencilOperation": [], - "GpuStorageTextureAccess": [], - "GpuStorageTextureBindingLayout": [], - "GpuStoreOp": [], - "GpuSupportedFeatures": [], - "GpuSupportedLimits": [], - "GpuTexelCopyBufferInfo": [], - "GpuTexelCopyBufferLayout": [], - "GpuTexelCopyTextureInfo": [], - "GpuTexture": [], - "GpuTextureAspect": [], - "GpuTextureBindingLayout": [], - "GpuTextureDescriptor": [], - "GpuTextureDimension": [], - "GpuTextureFormat": [], - "GpuTextureSampleType": [], - "GpuTextureView": [], - "GpuTextureViewDescriptor": [], - "GpuTextureViewDimension": [], - "GpuUncapturedErrorEvent": [ - "Event" - ], - "GpuUncapturedErrorEventInit": [], - "GpuValidationError": [ - "GpuError" - ], - "GpuVertexAttribute": [], - "GpuVertexBufferLayout": [], - "GpuVertexFormat": [], - "GpuVertexState": [], - "GpuVertexStepMode": [], - "GroupedHistoryEventInit": [], - "HalfOpenInfoDict": [], - "HardwareAcceleration": [], - "HashChangeEvent": [ - "Event" - ], - "HashChangeEventInit": [], - "Headers": [], - "HeadersGuardEnum": [], - "Hid": [ - "EventTarget" - ], - "HidCollectionInfo": [], - "HidConnectionEvent": [ - "Event" - ], - "HidConnectionEventInit": [], - "HidDevice": [ - "EventTarget" - ], - "HidDeviceFilter": [], - "HidDeviceRequestOptions": [], - "HidInputReportEvent": [ - "Event" - ], - "HidInputReportEventInit": [], - "HidReportInfo": [], - "HidReportItem": [], - "HidUnitSystem": [], - "HiddenPluginEventInit": [], - "History": [], - "HitRegionOptions": [], - "HkdfParams": [], - "HmacDerivedKeyParams": [], - "HmacImportParams": [], - "HmacKeyAlgorithm": [], - "HmacKeyGenParams": [], - "HtmlAllCollection": [], - "HtmlAnchorElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlAreaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlAudioElement": [ - "Element", - "EventTarget", - "HtmlElement", - "HtmlMediaElement", - "Node" - ], - "HtmlBaseElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlBodyElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlBrElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlButtonElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlCanvasElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlCollection": [], - "HtmlDListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDataElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDataListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDetailsElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDialogElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDirectoryElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDivElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDocument": [ - "Document", - "EventTarget", - "Node" - ], - "HtmlElement": [ - "Element", - "EventTarget", - "Node" - ], - "HtmlEmbedElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFieldSetElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFontElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFormControlsCollection": [ - "HtmlCollection" - ], - "HtmlFormElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFrameElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFrameSetElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHeadElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHeadingElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHrElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHtmlElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlIFrameElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlImageElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlInputElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLabelElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLegendElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLiElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLinkElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMapElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMediaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMenuElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMenuItemElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMetaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMeterElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlModElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlObjectElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOptGroupElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOptionElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOptionsCollection": [ - "HtmlCollection" - ], - "HtmlOutputElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlParagraphElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlParamElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlPictureElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlPreElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlProgressElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlQuoteElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlScriptElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSelectElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSlotElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSourceElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSpanElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlStyleElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableCaptionElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableCellElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableColElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableRowElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableSectionElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTemplateElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTextAreaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTimeElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTitleElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTrackElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlUListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlUnknownElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlVideoElement": [ - "Element", - "EventTarget", - "HtmlElement", - "HtmlMediaElement", - "Node" - ], - "HttpConnDict": [], - "HttpConnInfo": [], - "HttpConnectionElement": [], - "IdbCursor": [], - "IdbCursorDirection": [], - "IdbCursorWithValue": [ - "IdbCursor" - ], - "IdbDatabase": [ - "EventTarget" - ], - "IdbFactory": [], - "IdbFileHandle": [ - "EventTarget" - ], - "IdbFileMetadataParameters": [], - "IdbFileRequest": [ - "DomRequest", - "EventTarget" - ], - "IdbIndex": [], - "IdbIndexParameters": [], - "IdbKeyRange": [], - "IdbLocaleAwareKeyRange": [ - "IdbKeyRange" - ], - "IdbMutableFile": [ - "EventTarget" - ], - "IdbObjectStore": [], - "IdbObjectStoreParameters": [], - "IdbOpenDbOptions": [], - "IdbOpenDbRequest": [ - "EventTarget", - "IdbRequest" - ], - "IdbRequest": [ - "EventTarget" - ], - "IdbRequestReadyState": [], - "IdbTransaction": [ - "EventTarget" - ], - "IdbTransactionDurability": [], - "IdbTransactionMode": [], - "IdbTransactionOptions": [], - "IdbVersionChangeEvent": [ - "Event" - ], - "IdbVersionChangeEventInit": [], - "IdleDeadline": [], - "IdleRequestOptions": [], - "IirFilterNode": [ - "AudioNode", - "EventTarget" - ], - "IirFilterOptions": [], - "ImageBitmap": [], - "ImageBitmapOptions": [], - "ImageBitmapRenderingContext": [], - "ImageCapture": [], - "ImageCaptureError": [], - "ImageCaptureErrorEvent": [ - "Event" - ], - "ImageCaptureErrorEventInit": [], - "ImageData": [], - "ImageDecodeOptions": [], - "ImageDecodeResult": [], - "ImageDecoder": [], - "ImageDecoderInit": [], - "ImageEncodeOptions": [], - "ImageOrientation": [], - "ImageTrack": [ - "EventTarget" - ], - "ImageTrackList": [], - "InputDeviceInfo": [ - "MediaDeviceInfo" - ], - "InputEvent": [ - "Event", - "UiEvent" - ], - "InputEventInit": [], - "IntersectionObserver": [], - "IntersectionObserverEntry": [], - "IntersectionObserverEntryInit": [], - "IntersectionObserverInit": [], - "IntlUtils": [], - "IsInputPendingOptions": [], - "IterableKeyAndValueResult": [], - "IterableKeyOrValueResult": [], - "IterationCompositeOperation": [], - "JsonWebKey": [], - "KeyAlgorithm": [], - "KeyEvent": [], - "KeyFrameRequestEvent": [ - "Event" - ], - "KeyIdsInitData": [], - "KeyboardEvent": [ - "Event", - "UiEvent" - ], - "KeyboardEventInit": [], - "KeyframeAnimationOptions": [], - "KeyframeEffect": [ - "AnimationEffect" - ], - "KeyframeEffectOptions": [], - "L10nElement": [], - "L10nValue": [], - "LargeBlobSupport": [], - "LatencyMode": [], - "LifecycleCallbacks": [], - "LineAlignSetting": [], - "ListBoxObject": [], - "LocalMediaStream": [ - "EventTarget", - "MediaStream" - ], - "LocaleInfo": [], - "Location": [], - "Lock": [], - "LockInfo": [], - "LockManager": [], - "LockManagerSnapshot": [], - "LockMode": [], - "LockOptions": [], - "MathMlElement": [ - "Element", - "EventTarget", - "Node" - ], - "MediaCapabilities": [], - "MediaCapabilitiesInfo": [], - "MediaConfiguration": [], - "MediaDecodingConfiguration": [], - "MediaDecodingType": [], - "MediaDeviceInfo": [], - "MediaDeviceKind": [], - "MediaDevices": [ - "EventTarget" - ], - "MediaElementAudioSourceNode": [ - "AudioNode", - "EventTarget" - ], - "MediaElementAudioSourceOptions": [], - "MediaEncodingConfiguration": [], - "MediaEncodingType": [], - "MediaEncryptedEvent": [ - "Event" - ], - "MediaError": [], - "MediaImage": [], - "MediaKeyError": [ - "Event" - ], - "MediaKeyMessageEvent": [ - "Event" - ], - "MediaKeyMessageEventInit": [], - "MediaKeyMessageType": [], - "MediaKeyNeededEventInit": [], - "MediaKeySession": [ - "EventTarget" - ], - "MediaKeySessionType": [], - "MediaKeyStatus": [], - "MediaKeyStatusMap": [], - "MediaKeySystemAccess": [], - "MediaKeySystemConfiguration": [], - "MediaKeySystemMediaCapability": [], - "MediaKeySystemStatus": [], - "MediaKeys": [], - "MediaKeysPolicy": [], - "MediaKeysRequirement": [], - "MediaList": [], - "MediaMetadata": [], - "MediaMetadataInit": [], - "MediaPositionState": [], - "MediaQueryList": [ - "EventTarget" - ], - "MediaQueryListEvent": [ - "Event" - ], - "MediaQueryListEventInit": [], - "MediaRecorder": [ - "EventTarget" - ], - "MediaRecorderErrorEvent": [ - "Event" - ], - "MediaRecorderErrorEventInit": [], - "MediaRecorderOptions": [], - "MediaSession": [], - "MediaSessionAction": [], - "MediaSessionActionDetails": [], - "MediaSessionPlaybackState": [], - "MediaSource": [ - "EventTarget" - ], - "MediaSourceEndOfStreamError": [], - "MediaSourceEnum": [], - "MediaSourceReadyState": [], - "MediaStream": [ - "EventTarget" - ], - "MediaStreamAudioDestinationNode": [ - "AudioNode", - "EventTarget" - ], - "MediaStreamAudioSourceNode": [ - "AudioNode", - "EventTarget" - ], - "MediaStreamAudioSourceOptions": [], - "MediaStreamConstraints": [], - "MediaStreamError": [], - "MediaStreamEvent": [ - "Event" - ], - "MediaStreamEventInit": [], - "MediaStreamTrack": [ - "EventTarget" - ], - "MediaStreamTrackEvent": [ - "Event" - ], - "MediaStreamTrackEventInit": [], - "MediaStreamTrackGenerator": [ - "EventTarget", - "MediaStreamTrack" - ], - "MediaStreamTrackGeneratorInit": [], - "MediaStreamTrackProcessor": [], - "MediaStreamTrackProcessorInit": [], - "MediaStreamTrackState": [], - "MediaTrackCapabilities": [], - "MediaTrackConstraintSet": [], - "MediaTrackConstraints": [], - "MediaTrackSettings": [], - "MediaTrackSupportedConstraints": [], - "MemoryAttribution": [], - "MemoryAttributionContainer": [], - "MemoryBreakdownEntry": [], - "MemoryMeasurement": [], - "MessageChannel": [], - "MessageEvent": [ - "Event" - ], - "MessageEventInit": [], - "MessagePort": [ - "EventTarget" - ], - "MidiAccess": [ - "EventTarget" - ], - "MidiConnectionEvent": [ - "Event" - ], - "MidiConnectionEventInit": [], - "MidiInput": [ - "EventTarget", - "MidiPort" - ], - "MidiInputMap": [], - "MidiMessageEvent": [ - "Event" - ], - "MidiMessageEventInit": [], - "MidiOptions": [], - "MidiOutput": [ - "EventTarget", - "MidiPort" - ], - "MidiOutputMap": [], - "MidiPort": [ - "EventTarget" - ], - "MidiPortConnectionState": [], - "MidiPortDeviceState": [], - "MidiPortType": [], - "MimeType": [], - "MimeTypeArray": [], - "MouseEvent": [ - "Event", - "UiEvent" - ], - "MouseEventInit": [], - "MouseScrollEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "MozDebug": [], - "MutationEvent": [ - "Event" - ], - "MutationObserver": [], - "MutationObserverInit": [], - "MutationObservingInfo": [], - "MutationRecord": [], - "NamedNodeMap": [], - "NativeOsFileReadOptions": [], - "NativeOsFileWriteAtomicOptions": [], - "NavigationType": [], - "Navigator": [], - "NavigatorAutomationInformation": [], - "NavigatorUaBrandVersion": [], - "NavigatorUaData": [], - "NetworkCommandOptions": [], - "NetworkInformation": [ - "EventTarget" - ], - "NetworkResultOptions": [], - "Node": [ - "EventTarget" - ], - "NodeFilter": [], - "NodeIterator": [], - "NodeList": [], - "Notification": [ - "EventTarget" - ], - "NotificationAction": [], - "NotificationDirection": [], - "NotificationEvent": [ - "Event", - "ExtendableEvent" - ], - "NotificationEventInit": [], - "NotificationOptions": [], - "NotificationPermission": [], - "ObserverCallback": [], - "OesElementIndexUint": [], - "OesStandardDerivatives": [], - "OesTextureFloat": [], - "OesTextureFloatLinear": [], - "OesTextureHalfFloat": [], - "OesTextureHalfFloatLinear": [], - "OesVertexArrayObject": [], - "OfflineAudioCompletionEvent": [ - "Event" - ], - "OfflineAudioCompletionEventInit": [], - "OfflineAudioContext": [ - "BaseAudioContext", - "EventTarget" - ], - "OfflineAudioContextOptions": [], - "OfflineResourceList": [ - "EventTarget" - ], - "OffscreenCanvas": [ - "EventTarget" - ], - "OffscreenCanvasRenderingContext2d": [], - "OpenFilePickerOptions": [], - "OpenWindowEventDetail": [], - "OptionalEffectTiming": [], - "OrientationLockType": [], - "OrientationType": [], - "OscillatorNode": [ - "AudioNode", - "AudioScheduledSourceNode", - "EventTarget" - ], - "OscillatorOptions": [], - "OscillatorType": [], - "OverSampleType": [], - "OvrMultiview2": [], - "PageTransitionEvent": [ - "Event" - ], - "PageTransitionEventInit": [], - "PaintRequest": [], - "PaintRequestList": [], - "PaintWorkletGlobalScope": [ - "WorkletGlobalScope" - ], - "PannerNode": [ - "AudioNode", - "EventTarget" - ], - "PannerOptions": [], - "PanningModelType": [], - "ParityType": [], - "Path2d": [], - "PaymentAddress": [], - "PaymentComplete": [], - "PaymentMethodChangeEvent": [ - "Event", - "PaymentRequestUpdateEvent" - ], - "PaymentMethodChangeEventInit": [], - "PaymentRequestUpdateEvent": [ - "Event" - ], - "PaymentRequestUpdateEventInit": [], - "PaymentResponse": [], - "Pbkdf2Params": [], - "PcImplIceConnectionState": [], - "PcImplIceGatheringState": [], - "PcImplSignalingState": [], - "PcObserverStateType": [], - "Performance": [ - "EventTarget" - ], - "PerformanceEntry": [], - "PerformanceEntryEventInit": [], - "PerformanceEntryFilterOptions": [], - "PerformanceMark": [ - "PerformanceEntry" - ], - "PerformanceMeasure": [ - "PerformanceEntry" - ], - "PerformanceNavigation": [], - "PerformanceNavigationTiming": [ - "PerformanceEntry", - "PerformanceResourceTiming" - ], - "PerformanceObserver": [], - "PerformanceObserverEntryList": [], - "PerformanceObserverInit": [], - "PerformanceResourceTiming": [ - "PerformanceEntry" - ], - "PerformanceServerTiming": [], - "PerformanceTiming": [], - "PeriodicWave": [], - "PeriodicWaveConstraints": [], - "PeriodicWaveOptions": [], - "PermissionDescriptor": [], - "PermissionName": [], - "PermissionState": [], - "PermissionStatus": [ - "EventTarget" - ], - "Permissions": [], - "PlaneLayout": [], - "PlaybackDirection": [], - "Plugin": [], - "PluginArray": [], - "PluginCrashedEventInit": [], - "PointerEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "PointerEventInit": [], - "PopStateEvent": [ - "Event" - ], - "PopStateEventInit": [], - "PopupBlockedEvent": [ - "Event" - ], - "PopupBlockedEventInit": [], - "Position": [], - "PositionAlignSetting": [], - "PositionError": [], - "PositionOptions": [], - "PremultiplyAlpha": [], - "Presentation": [], - "PresentationAvailability": [ - "EventTarget" - ], - "PresentationConnection": [ - "EventTarget" - ], - "PresentationConnectionAvailableEvent": [ - "Event" - ], - "PresentationConnectionAvailableEventInit": [], - "PresentationConnectionBinaryType": [], - "PresentationConnectionCloseEvent": [ - "Event" - ], - "PresentationConnectionCloseEventInit": [], - "PresentationConnectionClosedReason": [], - "PresentationConnectionList": [ - "EventTarget" - ], - "PresentationConnectionState": [], - "PresentationReceiver": [], - "PresentationRequest": [ - "EventTarget" - ], - "PresentationStyle": [], - "ProcessingInstruction": [ - "CharacterData", - "EventTarget", - "Node" - ], - "ProfileTimelineLayerRect": [], - "ProfileTimelineMarker": [], - "ProfileTimelineMessagePortOperationType": [], - "ProfileTimelineStackFrame": [], - "ProfileTimelineWorkerOperationType": [], - "ProgressEvent": [ - "Event" - ], - "ProgressEventInit": [], - "PromiseNativeHandler": [], - "PromiseRejectionEvent": [ - "Event" - ], - "PromiseRejectionEventInit": [], - "PublicKeyCredential": [ - "Credential" - ], - "PublicKeyCredentialCreationOptions": [], - "PublicKeyCredentialCreationOptionsJson": [], - "PublicKeyCredentialDescriptor": [], - "PublicKeyCredentialDescriptorJson": [], - "PublicKeyCredentialEntity": [], - "PublicKeyCredentialHints": [], - "PublicKeyCredentialParameters": [], - "PublicKeyCredentialRequestOptions": [], - "PublicKeyCredentialRequestOptionsJson": [], - "PublicKeyCredentialRpEntity": [], - "PublicKeyCredentialType": [], - "PublicKeyCredentialUserEntity": [], - "PublicKeyCredentialUserEntityJson": [], - "PushEncryptionKeyName": [], - "PushEvent": [ - "Event", - "ExtendableEvent" - ], - "PushEventInit": [], - "PushManager": [], - "PushMessageData": [], - "PushPermissionState": [], - "PushSubscription": [], - "PushSubscriptionInit": [], - "PushSubscriptionJson": [], - "PushSubscriptionKeys": [], - "PushSubscriptionOptions": [], - "PushSubscriptionOptionsInit": [], - "QueryOptions": [], - "QueuingStrategy": [], - "QueuingStrategyInit": [], - "RadioNodeList": [ - "NodeList" - ], - "Range": [], - "RcwnPerfStats": [], - "RcwnStatus": [], - "ReadableByteStreamController": [], - "ReadableStream": [], - "ReadableStreamByobReader": [], - "ReadableStreamByobRequest": [], - "ReadableStreamDefaultController": [], - "ReadableStreamDefaultReader": [], - "ReadableStreamGetReaderOptions": [], - "ReadableStreamIteratorOptions": [], - "ReadableStreamReadResult": [], - "ReadableStreamReaderMode": [], - "ReadableStreamType": [], - "ReadableWritablePair": [], - "RecordingState": [], - "ReferrerPolicy": [], - "RegisterRequest": [], - "RegisterResponse": [], - "RegisteredKey": [], - "RegistrationOptions": [], - "RegistrationResponseJson": [], - "Request": [], - "RequestCache": [], - "RequestCredentials": [], - "RequestDestination": [], - "RequestDeviceOptions": [], - "RequestInit": [], - "RequestMediaKeySystemAccessNotification": [], - "RequestMode": [], - "RequestRedirect": [], - "ResidentKeyRequirement": [], - "ResizeObserver": [], - "ResizeObserverBoxOptions": [], - "ResizeObserverEntry": [], - "ResizeObserverOptions": [], - "ResizeObserverSize": [], - "ResizeQuality": [], - "Response": [], - "ResponseInit": [], - "ResponseType": [], - "RsaHashedImportParams": [], - "RsaOaepParams": [], - "RsaOtherPrimesInfo": [], - "RsaPssParams": [], - "RtcAnswerOptions": [], - "RtcBundlePolicy": [], - "RtcCertificate": [], - "RtcCertificateExpiration": [], - "RtcCodecStats": [], - "RtcConfiguration": [], - "RtcDataChannel": [ - "EventTarget" - ], - "RtcDataChannelEvent": [ - "Event" - ], - "RtcDataChannelEventInit": [], - "RtcDataChannelInit": [], - "RtcDataChannelState": [], - "RtcDataChannelType": [], - "RtcDegradationPreference": [], - "RtcEncodedAudioFrame": [], - "RtcEncodedAudioFrameMetadata": [], - "RtcEncodedAudioFrameOptions": [], - "RtcEncodedVideoFrame": [], - "RtcEncodedVideoFrameMetadata": [], - "RtcEncodedVideoFrameOptions": [], - "RtcEncodedVideoFrameType": [], - "RtcFecParameters": [], - "RtcIceCandidate": [], - "RtcIceCandidateInit": [], - "RtcIceCandidatePairStats": [], - "RtcIceCandidateStats": [], - "RtcIceComponentStats": [], - "RtcIceConnectionState": [], - "RtcIceCredentialType": [], - "RtcIceGatheringState": [], - "RtcIceServer": [], - "RtcIceTransportPolicy": [], - "RtcIdentityAssertion": [], - "RtcIdentityAssertionResult": [], - "RtcIdentityProvider": [], - "RtcIdentityProviderDetails": [], - "RtcIdentityProviderOptions": [], - "RtcIdentityProviderRegistrar": [], - "RtcIdentityValidationResult": [], - "RtcInboundRtpStreamStats": [], - "RtcMediaStreamStats": [], - "RtcMediaStreamTrackStats": [], - "RtcOfferAnswerOptions": [], - "RtcOfferOptions": [], - "RtcOutboundRtpStreamStats": [], - "RtcPeerConnection": [ - "EventTarget" - ], - "RtcPeerConnectionIceErrorEvent": [ - "Event" - ], - "RtcPeerConnectionIceEvent": [ - "Event" - ], - "RtcPeerConnectionIceEventInit": [], - "RtcPeerConnectionState": [], - "RtcPriorityType": [], - "RtcRtcpParameters": [], - "RtcRtpCapabilities": [], - "RtcRtpCodecCapability": [], - "RtcRtpCodecParameters": [], - "RtcRtpContributingSource": [], - "RtcRtpEncodingParameters": [], - "RtcRtpHeaderExtensionCapability": [], - "RtcRtpHeaderExtensionParameters": [], - "RtcRtpParameters": [], - "RtcRtpReceiver": [], - "RtcRtpScriptTransform": [], - "RtcRtpScriptTransformer": [ - "EventTarget" - ], - "RtcRtpSender": [], - "RtcRtpSourceEntry": [], - "RtcRtpSourceEntryType": [], - "RtcRtpSynchronizationSource": [], - "RtcRtpTransceiver": [], - "RtcRtpTransceiverDirection": [], - "RtcRtpTransceiverInit": [], - "RtcRtxParameters": [], - "RtcSdpType": [], - "RtcSessionDescription": [], - "RtcSessionDescriptionInit": [], - "RtcSignalingState": [], - "RtcStats": [], - "RtcStatsIceCandidatePairState": [], - "RtcStatsIceCandidateType": [], - "RtcStatsReport": [], - "RtcStatsReportInternal": [], - "RtcStatsType": [], - "RtcTrackEvent": [ - "Event" - ], - "RtcTrackEventInit": [], - "RtcTransformEvent": [ - "Event" - ], - "RtcTransportStats": [], - "RtcdtmfSender": [ - "EventTarget" - ], - "RtcdtmfToneChangeEvent": [ - "Event" - ], - "RtcdtmfToneChangeEventInit": [], - "RtcrtpContributingSourceStats": [], - "RtcrtpStreamStats": [], - "SFrameTransform": [ - "EventTarget" - ], - "SFrameTransformErrorEvent": [ - "Event" - ], - "SFrameTransformErrorEventInit": [], - "SFrameTransformErrorEventType": [], - "SFrameTransformOptions": [], - "SFrameTransformRole": [], - "SaveFilePickerOptions": [], - "Scheduler": [], - "SchedulerPostTaskOptions": [], - "Scheduling": [], - "Screen": [ - "EventTarget" - ], - "ScreenColorGamut": [], - "ScreenLuminance": [], - "ScreenOrientation": [ - "EventTarget" - ], - "ScriptProcessorNode": [ - "AudioNode", - "EventTarget" - ], - "ScrollAreaEvent": [ - "Event", - "UiEvent" - ], - "ScrollBehavior": [], - "ScrollBoxObject": [], - "ScrollIntoViewOptions": [], - "ScrollLogicalPosition": [], - "ScrollOptions": [], - "ScrollRestoration": [], - "ScrollSetting": [], - "ScrollState": [], - "ScrollToOptions": [], - "ScrollViewChangeEventInit": [], - "SecurityPolicyViolationEvent": [ - "Event" - ], - "SecurityPolicyViolationEventDisposition": [], - "SecurityPolicyViolationEventInit": [], - "Selection": [], - "SelectionMode": [], - "Serial": [ - "EventTarget" - ], - "SerialInputSignals": [], - "SerialOptions": [], - "SerialOutputSignals": [], - "SerialPort": [ - "EventTarget" - ], - "SerialPortFilter": [], - "SerialPortInfo": [], - "SerialPortRequestOptions": [], - "ServerSocketOptions": [], - "ServiceWorker": [ - "EventTarget" - ], - "ServiceWorkerContainer": [ - "EventTarget" - ], - "ServiceWorkerGlobalScope": [ - "EventTarget", - "WorkerGlobalScope" - ], - "ServiceWorkerRegistration": [ - "EventTarget" - ], - "ServiceWorkerState": [], - "ServiceWorkerUpdateViaCache": [], - "ShadowRoot": [ - "DocumentFragment", - "EventTarget", - "Node" - ], - "ShadowRootInit": [], - "ShadowRootMode": [], - "ShareData": [], - "SharedWorker": [ - "EventTarget" - ], - "SharedWorkerGlobalScope": [ - "EventTarget", - "WorkerGlobalScope" - ], - "SignResponse": [], - "SocketElement": [], - "SocketOptions": [], - "SocketReadyState": [], - "SocketsDict": [], - "SourceBuffer": [ - "EventTarget" - ], - "SourceBufferAppendMode": [], - "SourceBufferList": [ - "EventTarget" - ], - "SpeechGrammar": [], - "SpeechGrammarList": [], - "SpeechRecognition": [ - "EventTarget" - ], - "SpeechRecognitionAlternative": [], - "SpeechRecognitionError": [ - "Event" - ], - "SpeechRecognitionErrorCode": [], - "SpeechRecognitionErrorInit": [], - "SpeechRecognitionEvent": [ - "Event" - ], - "SpeechRecognitionEventInit": [], - "SpeechRecognitionResult": [], - "SpeechRecognitionResultList": [], - "SpeechSynthesis": [ - "EventTarget" - ], - "SpeechSynthesisErrorCode": [], - "SpeechSynthesisErrorEvent": [ - "Event", - "SpeechSynthesisEvent" - ], - "SpeechSynthesisErrorEventInit": [], - "SpeechSynthesisEvent": [ - "Event" - ], - "SpeechSynthesisEventInit": [], - "SpeechSynthesisUtterance": [ - "EventTarget" - ], - "SpeechSynthesisVoice": [], - "StereoPannerNode": [ - "AudioNode", - "EventTarget" - ], - "StereoPannerOptions": [], - "Storage": [], - "StorageEstimate": [], - "StorageEvent": [ - "Event" - ], - "StorageEventInit": [], - "StorageManager": [], - "StorageType": [], - "StreamPipeOptions": [], - "StyleRuleChangeEventInit": [], - "StyleSheet": [], - "StyleSheetApplicableStateChangeEventInit": [], - "StyleSheetChangeEventInit": [], - "StyleSheetList": [], - "SubmitEvent": [ - "Event" - ], - "SubmitEventInit": [], - "SubtleCrypto": [], - "SupportedType": [], - "SvcOutputMetadata": [], - "SvgAngle": [], - "SvgAnimateElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgAnimateMotionElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgAnimateTransformElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgAnimatedAngle": [], - "SvgAnimatedBoolean": [], - "SvgAnimatedEnumeration": [], - "SvgAnimatedInteger": [], - "SvgAnimatedLength": [], - "SvgAnimatedLengthList": [], - "SvgAnimatedNumber": [], - "SvgAnimatedNumberList": [], - "SvgAnimatedPreserveAspectRatio": [], - "SvgAnimatedRect": [], - "SvgAnimatedString": [], - "SvgAnimatedTransformList": [], - "SvgAnimationElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgBoundingBoxOptions": [], - "SvgCircleElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgClipPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgComponentTransferFunctionElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgDefsElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgDescElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgElement": [ - "Element", - "EventTarget", - "Node" - ], - "SvgEllipseElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgFilterElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgForeignObjectElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgGeometryElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgGradientElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgGraphicsElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgImageElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgLength": [], - "SvgLengthList": [], - "SvgLineElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgLinearGradientElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGradientElement" - ], - "SvgMarkerElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgMaskElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgMatrix": [], - "SvgMetadataElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgNumber": [], - "SvgNumberList": [], - "SvgPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgPathSeg": [], - "SvgPathSegArcAbs": [ - "SvgPathSeg" - ], - "SvgPathSegArcRel": [ - "SvgPathSeg" - ], - "SvgPathSegClosePath": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicRel": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicSmoothAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicSmoothRel": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticRel": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticSmoothAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticSmoothRel": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoAbs": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoHorizontalAbs": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoHorizontalRel": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoRel": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoVerticalAbs": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoVerticalRel": [ - "SvgPathSeg" - ], - "SvgPathSegList": [], - "SvgPathSegMovetoAbs": [ - "SvgPathSeg" - ], - "SvgPathSegMovetoRel": [ - "SvgPathSeg" - ], - "SvgPatternElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgPoint": [], - "SvgPointList": [], - "SvgPolygonElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgPolylineElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgPreserveAspectRatio": [], - "SvgRadialGradientElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGradientElement" - ], - "SvgRect": [], - "SvgRectElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgScriptElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgSetElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgStopElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgStringList": [], - "SvgStyleElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgSwitchElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgSymbolElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgTextContentElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgTextElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement", - "SvgTextPositioningElement" - ], - "SvgTextPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement" - ], - "SvgTextPositioningElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement" - ], - "SvgTitleElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgTransform": [], - "SvgTransformList": [], - "SvgUnitTypes": [], - "SvgUseElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgViewElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgZoomAndPan": [], - "SvgaElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgfeBlendElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeColorMatrixElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeComponentTransferElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeCompositeElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeConvolveMatrixElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDiffuseLightingElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDisplacementMapElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDistantLightElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDropShadowElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeFloodElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeFuncAElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeFuncBElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeFuncGElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeFuncRElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeGaussianBlurElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeImageElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeMergeElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeMergeNodeElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeMorphologyElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeOffsetElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfePointLightElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeSpecularLightingElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeSpotLightElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeTileElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeTurbulenceElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvggElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgmPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgsvgElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgtSpanElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement", - "SvgTextPositioningElement" - ], - "TaskController": [ - "AbortController" - ], - "TaskControllerInit": [], - "TaskPriority": [], - "TaskPriorityChangeEvent": [ - "Event" - ], - "TaskPriorityChangeEventInit": [], - "TaskSignal": [ - "AbortSignal", - "EventTarget" - ], - "TaskSignalAnyInit": [], - "TcpReadyState": [], - "TcpServerSocket": [ - "EventTarget" - ], - "TcpServerSocketEvent": [ - "Event" - ], - "TcpServerSocketEventInit": [], - "TcpSocket": [ - "EventTarget" - ], - "TcpSocketBinaryType": [], - "TcpSocketErrorEvent": [ - "Event" - ], - "TcpSocketErrorEventInit": [], - "TcpSocketEvent": [ - "Event" - ], - "TcpSocketEventInit": [], - "Text": [ - "CharacterData", - "EventTarget", - "Node" - ], - "TextDecodeOptions": [], - "TextDecoder": [], - "TextDecoderOptions": [], - "TextEncoder": [], - "TextMetrics": [], - "TextTrack": [ - "EventTarget" - ], - "TextTrackCue": [ - "EventTarget" - ], - "TextTrackCueList": [], - "TextTrackKind": [], - "TextTrackList": [ - "EventTarget" - ], - "TextTrackMode": [], - "TimeEvent": [ - "Event" - ], - "TimeRanges": [], - "ToggleEvent": [ - "Event" - ], - "ToggleEventInit": [], - "TokenBinding": [], - "TokenBindingStatus": [], - "Touch": [], - "TouchEvent": [ - "Event", - "UiEvent" - ], - "TouchEventInit": [], - "TouchInit": [], - "TouchList": [], - "TrackEvent": [ - "Event" - ], - "TrackEventInit": [], - "TransformStream": [], - "TransformStreamDefaultController": [], - "Transformer": [], - "TransitionEvent": [ - "Event" - ], - "TransitionEventInit": [], - "Transport": [], - "TreeBoxObject": [], - "TreeCellInfo": [], - "TreeView": [], - "TreeWalker": [], - "U2f": [], - "U2fClientData": [], - "ULongRange": [], - "UaDataValues": [], - "UaLowEntropyJson": [], - "UdpMessageEventInit": [], - "UdpOptions": [], - "UiEvent": [ - "Event" - ], - "UiEventInit": [], - "UnderlyingSink": [], - "UnderlyingSource": [], - "Url": [], - "UrlSearchParams": [], - "Usb": [ - "EventTarget" - ], - "UsbAlternateInterface": [], - "UsbConfiguration": [], - "UsbConnectionEvent": [ - "Event" - ], - "UsbConnectionEventInit": [], - "UsbControlTransferParameters": [], - "UsbDevice": [], - "UsbDeviceFilter": [], - "UsbDeviceRequestOptions": [], - "UsbDirection": [], - "UsbEndpoint": [], - "UsbEndpointType": [], - "UsbInTransferResult": [], - "UsbInterface": [], - "UsbIsochronousInTransferPacket": [], - "UsbIsochronousInTransferResult": [], - "UsbIsochronousOutTransferPacket": [], - "UsbIsochronousOutTransferResult": [], - "UsbOutTransferResult": [], - "UsbPermissionDescriptor": [], - "UsbPermissionResult": [ - "EventTarget", - "PermissionStatus" - ], - "UsbPermissionStorage": [], - "UsbRecipient": [], - "UsbRequestType": [], - "UsbTransferStatus": [], - "UserActivation": [], - "UserProximityEvent": [ - "Event" - ], - "UserProximityEventInit": [], - "UserVerificationRequirement": [], - "ValidityState": [], - "ValueEvent": [ - "Event" - ], - "ValueEventInit": [], - "VideoColorPrimaries": [], - "VideoColorSpace": [], - "VideoColorSpaceInit": [], - "VideoConfiguration": [], - "VideoDecoder": [], - "VideoDecoderConfig": [], - "VideoDecoderInit": [], - "VideoDecoderSupport": [], - "VideoEncoder": [], - "VideoEncoderConfig": [], - "VideoEncoderEncodeOptions": [], - "VideoEncoderInit": [], - "VideoEncoderSupport": [], - "VideoFacingModeEnum": [], - "VideoFrame": [], - "VideoFrameBufferInit": [], - "VideoFrameCopyToOptions": [], - "VideoFrameInit": [], - "VideoMatrixCoefficients": [], - "VideoPixelFormat": [], - "VideoPlaybackQuality": [], - "VideoStreamTrack": [ - "EventTarget", - "MediaStreamTrack" - ], - "VideoTrack": [], - "VideoTrackList": [ - "EventTarget" - ], - "VideoTransferCharacteristics": [], - "ViewTransition": [], - "VisibilityState": [], - "VisualViewport": [ - "EventTarget" - ], - "VoidCallback": [], - "VrDisplay": [ - "EventTarget" - ], - "VrDisplayCapabilities": [], - "VrEye": [], - "VrEyeParameters": [], - "VrFieldOfView": [], - "VrFrameData": [], - "VrLayer": [], - "VrMockController": [], - "VrMockDisplay": [], - "VrPose": [], - "VrServiceTest": [], - "VrStageParameters": [], - "VrSubmitFrameResult": [], - "VttCue": [ - "EventTarget", - "TextTrackCue" - ], - "VttRegion": [], - "WakeLock": [], - "WakeLockSentinel": [ - "EventTarget" - ], - "WakeLockType": [], - "WatchAdvertisementsOptions": [], - "WaveShaperNode": [ - "AudioNode", - "EventTarget" - ], - "WaveShaperOptions": [], - "WebGl2RenderingContext": [], - "WebGlActiveInfo": [], - "WebGlBuffer": [], - "WebGlContextAttributes": [], - "WebGlContextEvent": [ - "Event" - ], - "WebGlContextEventInit": [], - "WebGlFramebuffer": [], - "WebGlPowerPreference": [], - "WebGlProgram": [], - "WebGlQuery": [], - "WebGlRenderbuffer": [], - "WebGlRenderingContext": [], - "WebGlSampler": [], - "WebGlShader": [], - "WebGlShaderPrecisionFormat": [], - "WebGlSync": [], - "WebGlTexture": [], - "WebGlTransformFeedback": [], - "WebGlUniformLocation": [], - "WebGlVertexArrayObject": [], - "WebKitCssMatrix": [ - "DomMatrix", - "DomMatrixReadOnly" - ], - "WebSocket": [ - "EventTarget" - ], - "WebSocketDict": [], - "WebSocketElement": [], - "WebTransport": [], - "WebTransportBidirectionalStream": [], - "WebTransportCloseInfo": [], - "WebTransportCongestionControl": [], - "WebTransportDatagramDuplexStream": [], - "WebTransportDatagramStats": [], - "WebTransportError": [ - "DomException" - ], - "WebTransportErrorOptions": [], - "WebTransportErrorSource": [], - "WebTransportHash": [], - "WebTransportOptions": [], - "WebTransportReceiveStream": [ - "ReadableStream" - ], - "WebTransportReceiveStreamStats": [], - "WebTransportReliabilityMode": [], - "WebTransportSendStream": [ - "WritableStream" - ], - "WebTransportSendStreamOptions": [], - "WebTransportSendStreamStats": [], - "WebTransportStats": [], - "WebglColorBufferFloat": [], - "WebglCompressedTextureAstc": [], - "WebglCompressedTextureAtc": [], - "WebglCompressedTextureEtc": [], - "WebglCompressedTextureEtc1": [], - "WebglCompressedTexturePvrtc": [], - "WebglCompressedTextureS3tc": [], - "WebglCompressedTextureS3tcSrgb": [], - "WebglDebugRendererInfo": [], - "WebglDebugShaders": [], - "WebglDepthTexture": [], - "WebglDrawBuffers": [], - "WebglLoseContext": [], - "WebglMultiDraw": [], - "WellKnownDirectory": [], - "WgslLanguageFeatures": [], - "WheelEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "WheelEventInit": [], - "WidevineCdmManifest": [], - "Window": [ - "EventTarget" - ], - "WindowClient": [ - "Client" - ], - "Worker": [ - "EventTarget" - ], - "WorkerDebuggerGlobalScope": [ - "EventTarget" - ], - "WorkerGlobalScope": [ - "EventTarget" - ], - "WorkerLocation": [], - "WorkerNavigator": [], - "WorkerOptions": [], - "WorkerType": [], - "Worklet": [], - "WorkletGlobalScope": [], - "WorkletOptions": [], - "WritableStream": [], - "WritableStreamDefaultController": [], - "WritableStreamDefaultWriter": [], - "WriteCommandType": [], - "WriteParams": [], - "XPathExpression": [], - "XPathNsResolver": [], - "XPathResult": [], - "XmlDocument": [ - "Document", - "EventTarget", - "Node" - ], - "XmlHttpRequest": [ - "EventTarget", - "XmlHttpRequestEventTarget" - ], - "XmlHttpRequestEventTarget": [ - "EventTarget" - ], - "XmlHttpRequestResponseType": [], - "XmlHttpRequestUpload": [ - "EventTarget", - "XmlHttpRequestEventTarget" - ], - "XmlSerializer": [], - "XrBoundedReferenceSpace": [ - "EventTarget", - "XrReferenceSpace", - "XrSpace" - ], - "XrEye": [], - "XrFrame": [], - "XrHand": [], - "XrHandJoint": [], - "XrHandedness": [], - "XrInputSource": [], - "XrInputSourceArray": [], - "XrInputSourceEvent": [ - "Event" - ], - "XrInputSourceEventInit": [], - "XrInputSourcesChangeEvent": [ - "Event" - ], - "XrInputSourcesChangeEventInit": [], - "XrJointPose": [ - "XrPose" - ], - "XrJointSpace": [ - "EventTarget", - "XrSpace" - ], - "XrLayer": [ - "EventTarget" - ], - "XrPermissionDescriptor": [], - "XrPermissionStatus": [ - "EventTarget", - "PermissionStatus" - ], - "XrPose": [], - "XrReferenceSpace": [ - "EventTarget", - "XrSpace" - ], - "XrReferenceSpaceEvent": [ - "Event" - ], - "XrReferenceSpaceEventInit": [], - "XrReferenceSpaceType": [], - "XrRenderState": [], - "XrRenderStateInit": [], - "XrRigidTransform": [], - "XrSession": [ - "EventTarget" - ], - "XrSessionEvent": [ - "Event" - ], - "XrSessionEventInit": [], - "XrSessionInit": [], - "XrSessionMode": [], - "XrSessionSupportedPermissionDescriptor": [], - "XrSpace": [ - "EventTarget" - ], - "XrSystem": [ - "EventTarget" - ], - "XrTargetRayMode": [], - "XrView": [], - "XrViewerPose": [ - "XrPose" - ], - "XrViewport": [], - "XrVisibilityState": [], - "XrWebGlLayer": [ - "EventTarget", - "XrLayer" - ], - "XrWebGlLayerInit": [], - "XsltProcessor": [], - "console": [], - "css": [], - "default": [ - "std" - ], - "gpu_buffer_usage": [], - "gpu_color_write": [], - "gpu_map_mode": [], - "gpu_shader_stage": [], - "gpu_texture_usage": [], - "std": [ - "wasm-bindgen/std", - "js-sys/std" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.77/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg=web_sys_unstable_apis" - ] - } - } - }, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", - "homepage": "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html", - "documentation": "https://rustwasm.github.io/wasm-bindgen/api/web_sys/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "webpki-roots", - "version": "0.26.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", - "license": "CDLA-Permissive-2.0", - "license_file": null, - "description": "Mozilla's CA root certificates for use with webpki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "rt-multi-thread" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-webpki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.102", - "kind": "dev", - "rename": "webpki", - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "x509-parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yasna", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "webpki_roots", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "codegen", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/tests/codegen.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "verify", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/tests/verify.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.10/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/webpki-roots", - "homepage": "https://github.com/rustls/webpki-roots", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "which", - "version": "4.4.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#which@4.4.2", - "license": "MIT", - "license_file": null, - "description": "A Rust equivalent of Unix command \"which\". Locate installed executable in cross platforms.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.38.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "fs", - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "home", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(windows, unix, target_os = \"redox\"))", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "which", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/which-4.4.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/which-4.4.2/tests/basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "regex": [ - "dep:regex" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/which-4.4.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Harry Fei " - ], - "categories": [ - "os", - "filesystem" - ], - "keywords": [ - "which", - "which-rs", - "unix", - "command" - ], - "readme": "README.md", - "repository": "https://github.com/harryfei/which-rs.git", - "homepage": null, - "documentation": "https://docs.rs/which/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "winnow", - "version": "0.5.40", - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", - "license": "MIT", - "license_file": null, - "description": "A byte-oriented, zero-copy, parser combinators library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "terminal_size", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "circular", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "escargot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "examples" - ], - "target": null, - "registry": null - }, - { - "name": "term-transcript", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winnow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/arithmetic/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "css", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/css/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/custom_error.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/http/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ini/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/iterator.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json_iterator.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ndjson", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ndjson/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "s_expression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/s_expression/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/string/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/arithmetic/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "contains_token", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/contains_token.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "find_slice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/find_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/http/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/ini/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/iter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/examples/json/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "next_slice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/next_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "number", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/benches/number.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "debug": [ - "dep:anstream", - "dep:anstyle", - "dep:is-terminal", - "dep:terminal_size" - ], - "default": [ - "std" - ], - "simd": [ - "dep:memchr" - ], - "std": [ - "alloc", - "memchr?/std" - ], - "unstable-doc": [ - "alloc", - "std", - "simd", - "unstable-recover" - ], - "unstable-recover": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.5.40/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "blob/v{{version}}/CHANGELOG.md", - "search": "blob/v.+\\..+\\..+/CHANGELOG.md" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "parsing" - ], - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "readme": "README.md", - "repository": "https://github.com/winnow-rs/winnow", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "winnow", - "version": "0.7.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", - "license": "MIT", - "license_file": null, - "description": "A byte-oriented, zero-copy, parser combinators library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "terminal_size", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "annotate-snippets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.86", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "circular", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.21", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "examples" - ], - "target": null, - "registry": null - }, - { - "name": "term-transcript", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winnow", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/arithmetic/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "css", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/css/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_error", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/custom_error.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/http/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ini/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/iterator.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_iterator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json_iterator.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ndjson", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ndjson/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "s_expression", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/s_expression/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/string/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/arithmetic/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "contains_token", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/contains_token.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "find_slice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/find_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/http/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/ini/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iter", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/iter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/examples/json/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "next_slice", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/next_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "number", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/benches/number.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "debug": [ - "std", - "dep:anstream", - "dep:anstyle", - "dep:is-terminal", - "dep:terminal_size" - ], - "default": [ - "std" - ], - "simd": [ - "dep:memchr" - ], - "std": [ - "alloc", - "memchr?/std" - ], - "unstable-doc": [ - "alloc", - "std", - "simd", - "unstable-recover" - ], - "unstable-recover": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "blob/v{{version}}/CHANGELOG.md", - "search": "blob/v.+\\..+\\..+/CHANGELOG.md" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "parsing" - ], - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "readme": "README.md", - "repository": "https://github.com/winnow-rs/winnow", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "write16", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A UTF-16 analog of the Write trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "write16", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/write16-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "arrayvec": [ - "dep:arrayvec" - ], - "smallvec": [ - "dep:smallvec" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/write16-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "text-processing", - "internationalization" - ], - "keywords": [ - "unicode", - "utf-16" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/write16", - "homepage": "https://docs.rs/write16/", - "documentation": "https://docs.rs/write16/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "writeable", - "version": "0.5.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "license": "Unicode-3.0", - "license_file": null, - "description": "A more efficient alternative to fmt::Display", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "writeable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "writeable_message", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/examples/writeable_message.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "writeable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/tests/writeable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "writeable", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/benches/writeable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "either": [ - "dep:either" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.5.5/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "wyz", - "version": "0.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wyz@0.5.1", - "license": "MIT", - "license_file": null, - "description": "myrrlyn’s utility collection", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typemap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wyz", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wyz-0.5.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "garbage": [ - "once_cell", - "typemap" - ], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "alloc" - ], - "typemap": [ - "dep:typemap" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wyz-0.5.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "myrrlyn " - ], - "categories": [ - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/myrrlyn/wyz", - "homepage": "https://myrrlyn.net/crates/wyz", - "documentation": "https://docs.rs/wyz", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "xattr", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "unix extended filesystem attributes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "fs", - "std" - ], - "target": "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.150", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "xattr", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/tests/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "unsupported" - ], - "unsupported": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Allen " - ], - "categories": [], - "keywords": [ - "xattr", - "filesystem", - "unix" - ], - "readme": "README.md", - "repository": "https://github.com/Stebalien/xattr", - "homepage": null, - "documentation": "https://docs.rs/xattr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "xxhash-rust", - "version": "0.8.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", - "license": "BSL-1.0", - "license_file": null, - "description": "Implementation of xxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "xxhash-c-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "xxhash_rust", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "assert_correctness", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/assert_correctness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "assert_correctness_miri", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/assert_correctness_miri.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "size", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/size.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test-vectors", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/tests/test-vectors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "const_xxh3": [], - "const_xxh32": [], - "const_xxh64": [], - "std": [], - "xxh3": [], - "xxh32": [], - "xxh64": [] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "xxh32", - "const_xxh32", - "xxh64", - "const_xxh64", - "xxh3", - "const_xxh3" - ] - } - } - }, - "publish": null, - "authors": [ - "Douman " - ], - "categories": [ - "algorithms", - "no-std::no-alloc" - ], - "keywords": [ - "hash", - "xxhash", - "xxh3", - "hasher", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/DoumanAsh/xxhash-rust", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "yew", - "version": "0.20.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A framework for creating reliable and efficient web applications", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64ct", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "console_error_panic_hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "gloo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "html-escape", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "implicit-clone", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "map" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "prokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.36", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "AnimationEvent", - "Document", - "DragEvent", - "Element", - "ErrorEvent", - "Event", - "EventInit", - "EventTarget", - "FocusEvent", - "HtmlElement", - "HtmlInputElement", - "HtmlCollection", - "HtmlTextAreaElement", - "InputEvent", - "InputEventInit", - "KeyboardEvent", - "Location", - "MouseEvent", - "Node", - "NodeList", - "PointerEvent", - "ProgressEvent", - "ShadowRoot", - "Text", - "TouchEvent", - "TransitionEvent", - "UiEvent", - "WheelEvent", - "Window", - "HtmlScriptElement", - "SubmitEvent" - ], - "target": null, - "registry": null - }, - { - "name": "yew-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gloo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "ShadowRootInit", - "ShadowRootMode", - "HtmlButtonElement" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rt" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yew", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hydration", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/hydration.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "layout", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/layout.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "raw_html", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/raw_html.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "suspense", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/suspense.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_callback", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_callback.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_context", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_context.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_effect", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_effect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_memo", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_memo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_prepared_state", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_prepared_state.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_reducer", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_reducer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_ref", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_ref.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_state", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_state.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_transitive_state", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/tests/use_transitive_state.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "csr": [], - "default": [], - "hydration": [ - "csr", - "dep:bincode" - ], - "ssr": [ - "dep:html-escape", - "dep:base64ct", - "dep:bincode" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-0.20.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "documenting" - ] - } - } - }, - "publish": null, - "authors": [ - "Denis Kolodin ", - "Justin Starry " - ], - "categories": [ - "gui", - "wasm", - "web-programming" - ], - "keywords": [ - "web", - "webasm", - "javascript" - ], - "readme": "README.md", - "repository": "https://github.com/yewstack/yew", - "homepage": "https://yew.rs", - "documentation": "https://docs.rs/yew/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "yew-macro", - "version": "0.20.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A framework for making client-side single-page apps", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "boolinator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "prettyplease", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro-error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits", - "visit-mut" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "yew_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "classes_macro_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/classes_macro_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derive_props_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/derive_props_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "function_attr_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/function_attr_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hook_attr_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/hook_attr_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hook_macro_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/hook_macro_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "html_lints_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/html_lints_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "html_macro_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/html_macro_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "props_macro_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/tests/props_macro_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-macro-0.20.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Justin Starry " - ], - "categories": [ - "gui", - "web-programming", - "wasm" - ], - "keywords": [ - "web", - "wasm", - "frontend", - "webasm", - "webassembly" - ], - "readme": null, - "repository": "https://github.com/yewstack/yew", - "homepage": "https://github.com/yewstack/yew", - "documentation": "https://docs.rs/yew-macro/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "yew-router", - "version": "0.17.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A router implementation for the Yew framework", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "gloo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "futures" - ], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "route-recognizer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.36", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Document", - "HtmlBaseElement", - "Window" - ], - "target": null, - "registry": null - }, - { - "name": "yew", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yew-router-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "HtmlHeadElement" - ], - "target": null, - "registry": null - }, - { - "name": "yew", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "csr" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yew_router", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basename", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/basename.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser_router", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/browser_router.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_router", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/hash_router.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "link", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/link.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "router_unit_tests", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/router_unit_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/tests/utils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-0.17.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Hamza " - ], - "categories": [ - "gui", - "web-programming" - ], - "keywords": [ - "web", - "yew", - "router" - ], - "readme": "README.md", - "repository": "https://github.com/yewstack/yew", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "yew-router-macro", - "version": "0.17.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Contains macros used with yew-router", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "yew_router_macro", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "routable_derive_test", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/tests/routable_derive_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew-router-macro-0.17.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Hamza " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/yewstack/yew", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "yew_icons", - "version": "0.7.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", - "license": "MIT", - "license_file": null, - "description": "Easily include a variety of SVG icons into your Yew app", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "convert_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enum-iterator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yew", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "csr" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rt", - "macros" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yew_icons", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "generator", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/src/generator.rs", - "edition": "2021", - "required-features": [ - "generator" - ], - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "Bootstrap0Circle": [], - "Bootstrap0CircleFill": [], - "Bootstrap0Square": [], - "Bootstrap0SquareFill": [], - "Bootstrap123": [], - "Bootstrap1Circle": [], - "Bootstrap1CircleFill": [], - "Bootstrap1Square": [], - "Bootstrap1SquareFill": [], - "Bootstrap2Circle": [], - "Bootstrap2CircleFill": [], - "Bootstrap2Square": [], - "Bootstrap2SquareFill": [], - "Bootstrap3Circle": [], - "Bootstrap3CircleFill": [], - "Bootstrap3Square": [], - "Bootstrap3SquareFill": [], - "Bootstrap4Circle": [], - "Bootstrap4CircleFill": [], - "Bootstrap4Square": [], - "Bootstrap4SquareFill": [], - "Bootstrap5Circle": [], - "Bootstrap5CircleFill": [], - "Bootstrap5Square": [], - "Bootstrap5SquareFill": [], - "Bootstrap6Circle": [], - "Bootstrap6CircleFill": [], - "Bootstrap6Square": [], - "Bootstrap6SquareFill": [], - "Bootstrap7Circle": [], - "Bootstrap7CircleFill": [], - "Bootstrap7Square": [], - "Bootstrap7SquareFill": [], - "Bootstrap8Circle": [], - "Bootstrap8CircleFill": [], - "Bootstrap8Square": [], - "Bootstrap8SquareFill": [], - "Bootstrap9Circle": [], - "Bootstrap9CircleFill": [], - "Bootstrap9Square": [], - "Bootstrap9SquareFill": [], - "BootstrapActivity": [], - "BootstrapAirplane": [], - "BootstrapAirplaneEngines": [], - "BootstrapAirplaneEnginesFill": [], - "BootstrapAirplaneFill": [], - "BootstrapAlarm": [], - "BootstrapAlarmFill": [], - "BootstrapAlexa": [], - "BootstrapAlignBottom": [], - "BootstrapAlignCenter": [], - "BootstrapAlignEnd": [], - "BootstrapAlignMiddle": [], - "BootstrapAlignStart": [], - "BootstrapAlignTop": [], - "BootstrapAlipay": [], - "BootstrapAlt": [], - "BootstrapAmd": [], - "BootstrapAndroid": [], - "BootstrapAndroid2": [], - "BootstrapApp": [], - "BootstrapAppIndicator": [], - "BootstrapApple": [], - "BootstrapArchive": [], - "BootstrapArchiveFill": [], - "BootstrapArrow90DegDown": [], - "BootstrapArrow90DegLeft": [], - "BootstrapArrow90DegRight": [], - "BootstrapArrow90DegUp": [], - "BootstrapArrowBarDown": [], - "BootstrapArrowBarLeft": [], - "BootstrapArrowBarRight": [], - "BootstrapArrowBarUp": [], - "BootstrapArrowClockwise": [], - "BootstrapArrowCounterclockwise": [], - "BootstrapArrowDown": [], - "BootstrapArrowDownCircle": [], - "BootstrapArrowDownCircleFill": [], - "BootstrapArrowDownLeft": [], - "BootstrapArrowDownLeftCircle": [], - "BootstrapArrowDownLeftCircleFill": [], - "BootstrapArrowDownLeftSquare": [], - "BootstrapArrowDownLeftSquareFill": [], - "BootstrapArrowDownRight": [], - "BootstrapArrowDownRightCircle": [], - "BootstrapArrowDownRightCircleFill": [], - "BootstrapArrowDownRightSquare": [], - "BootstrapArrowDownRightSquareFill": [], - "BootstrapArrowDownShort": [], - "BootstrapArrowDownSquare": [], - "BootstrapArrowDownSquareFill": [], - "BootstrapArrowDownUp": [], - "BootstrapArrowLeft": [], - "BootstrapArrowLeftCircle": [], - "BootstrapArrowLeftCircleFill": [], - "BootstrapArrowLeftRight": [], - "BootstrapArrowLeftShort": [], - "BootstrapArrowLeftSquare": [], - "BootstrapArrowLeftSquareFill": [], - "BootstrapArrowRepeat": [], - "BootstrapArrowReturnLeft": [], - "BootstrapArrowReturnRight": [], - "BootstrapArrowRight": [], - "BootstrapArrowRightCircle": [], - "BootstrapArrowRightCircleFill": [], - "BootstrapArrowRightShort": [], - "BootstrapArrowRightSquare": [], - "BootstrapArrowRightSquareFill": [], - "BootstrapArrowThroughHeart": [], - "BootstrapArrowThroughHeartFill": [], - "BootstrapArrowUp": [], - "BootstrapArrowUpCircle": [], - "BootstrapArrowUpCircleFill": [], - "BootstrapArrowUpLeft": [], - "BootstrapArrowUpLeftCircle": [], - "BootstrapArrowUpLeftCircleFill": [], - "BootstrapArrowUpLeftSquare": [], - "BootstrapArrowUpLeftSquareFill": [], - "BootstrapArrowUpRight": [], - "BootstrapArrowUpRightCircle": [], - "BootstrapArrowUpRightCircleFill": [], - "BootstrapArrowUpRightSquare": [], - "BootstrapArrowUpRightSquareFill": [], - "BootstrapArrowUpShort": [], - "BootstrapArrowUpSquare": [], - "BootstrapArrowUpSquareFill": [], - "BootstrapArrowsAngleContract": [], - "BootstrapArrowsAngleExpand": [], - "BootstrapArrowsCollapse": [], - "BootstrapArrowsExpand": [], - "BootstrapArrowsFullscreen": [], - "BootstrapArrowsMove": [], - "BootstrapAspectRatio": [], - "BootstrapAspectRatioFill": [], - "BootstrapAsterisk": [], - "BootstrapAt": [], - "BootstrapAward": [], - "BootstrapAwardFill": [], - "BootstrapBack": [], - "BootstrapBackspace": [], - "BootstrapBackspaceFill": [], - "BootstrapBackspaceReverse": [], - "BootstrapBackspaceReverseFill": [], - "BootstrapBadge3D": [], - "BootstrapBadge3DFill": [], - "BootstrapBadge4K": [], - "BootstrapBadge4KFill": [], - "BootstrapBadge8K": [], - "BootstrapBadge8KFill": [], - "BootstrapBadgeAd": [], - "BootstrapBadgeAdFill": [], - "BootstrapBadgeAr": [], - "BootstrapBadgeArFill": [], - "BootstrapBadgeCc": [], - "BootstrapBadgeCcFill": [], - "BootstrapBadgeHd": [], - "BootstrapBadgeHdFill": [], - "BootstrapBadgeSd": [], - "BootstrapBadgeSdFill": [], - "BootstrapBadgeTm": [], - "BootstrapBadgeTmFill": [], - "BootstrapBadgeVo": [], - "BootstrapBadgeVoFill": [], - "BootstrapBadgeVr": [], - "BootstrapBadgeVrFill": [], - "BootstrapBadgeWc": [], - "BootstrapBadgeWcFill": [], - "BootstrapBag": [], - "BootstrapBagCheck": [], - "BootstrapBagCheckFill": [], - "BootstrapBagDash": [], - "BootstrapBagDashFill": [], - "BootstrapBagFill": [], - "BootstrapBagHeart": [], - "BootstrapBagHeartFill": [], - "BootstrapBagPlus": [], - "BootstrapBagPlusFill": [], - "BootstrapBagX": [], - "BootstrapBagXFill": [], - "BootstrapBalloon": [], - "BootstrapBalloonFill": [], - "BootstrapBalloonHeart": [], - "BootstrapBalloonHeartFill": [], - "BootstrapBandaid": [], - "BootstrapBandaidFill": [], - "BootstrapBank": [], - "BootstrapBank2": [], - "BootstrapBarChart": [], - "BootstrapBarChartFill": [], - "BootstrapBarChartLine": [], - "BootstrapBarChartLineFill": [], - "BootstrapBarChartSteps": [], - "BootstrapBasket": [], - "BootstrapBasket2": [], - "BootstrapBasket2Fill": [], - "BootstrapBasket3": [], - "BootstrapBasket3Fill": [], - "BootstrapBasketFill": [], - "BootstrapBattery": [], - "BootstrapBatteryCharging": [], - "BootstrapBatteryFull": [], - "BootstrapBatteryHalf": [], - "BootstrapBehance": [], - "BootstrapBell": [], - "BootstrapBellFill": [], - "BootstrapBellSlash": [], - "BootstrapBellSlashFill": [], - "BootstrapBezier": [], - "BootstrapBezier2": [], - "BootstrapBicycle": [], - "BootstrapBinoculars": [], - "BootstrapBinocularsFill": [], - "BootstrapBlockquoteLeft": [], - "BootstrapBlockquoteRight": [], - "BootstrapBluetooth": [], - "BootstrapBodyText": [], - "BootstrapBook": [], - "BootstrapBookFill": [], - "BootstrapBookHalf": [], - "BootstrapBookmark": [], - "BootstrapBookmarkCheck": [], - "BootstrapBookmarkCheckFill": [], - "BootstrapBookmarkDash": [], - "BootstrapBookmarkDashFill": [], - "BootstrapBookmarkFill": [], - "BootstrapBookmarkHeart": [], - "BootstrapBookmarkHeartFill": [], - "BootstrapBookmarkPlus": [], - "BootstrapBookmarkPlusFill": [], - "BootstrapBookmarkStar": [], - "BootstrapBookmarkStarFill": [], - "BootstrapBookmarkX": [], - "BootstrapBookmarkXFill": [], - "BootstrapBookmarks": [], - "BootstrapBookmarksFill": [], - "BootstrapBookshelf": [], - "BootstrapBoombox": [], - "BootstrapBoomboxFill": [], - "BootstrapBootstrap": [], - "BootstrapBootstrapFill": [], - "BootstrapBootstrapReboot": [], - "BootstrapBorder": [], - "BootstrapBorderAll": [], - "BootstrapBorderBottom": [], - "BootstrapBorderCenter": [], - "BootstrapBorderInner": [], - "BootstrapBorderLeft": [], - "BootstrapBorderMiddle": [], - "BootstrapBorderOuter": [], - "BootstrapBorderRight": [], - "BootstrapBorderStyle": [], - "BootstrapBorderTop": [], - "BootstrapBorderWidth": [], - "BootstrapBoundingBox": [], - "BootstrapBoundingBoxCircles": [], - "BootstrapBox": [], - "BootstrapBox2": [], - "BootstrapBox2Fill": [], - "BootstrapBox2Heart": [], - "BootstrapBox2HeartFill": [], - "BootstrapBoxArrowDown": [], - "BootstrapBoxArrowDownLeft": [], - "BootstrapBoxArrowDownRight": [], - "BootstrapBoxArrowInDown": [], - "BootstrapBoxArrowInDownLeft": [], - "BootstrapBoxArrowInDownRight": [], - "BootstrapBoxArrowInLeft": [], - "BootstrapBoxArrowInRight": [], - "BootstrapBoxArrowInUp": [], - "BootstrapBoxArrowInUpLeft": [], - "BootstrapBoxArrowInUpRight": [], - "BootstrapBoxArrowLeft": [], - "BootstrapBoxArrowRight": [], - "BootstrapBoxArrowUp": [], - "BootstrapBoxArrowUpLeft": [], - "BootstrapBoxArrowUpRight": [], - "BootstrapBoxFill": [], - "BootstrapBoxSeam": [], - "BootstrapBoxSeamFill": [], - "BootstrapBoxes": [], - "BootstrapBraces": [], - "BootstrapBracesAsterisk": [], - "BootstrapBricks": [], - "BootstrapBriefcase": [], - "BootstrapBriefcaseFill": [], - "BootstrapBrightnessAltHigh": [], - "BootstrapBrightnessAltHighFill": [], - "BootstrapBrightnessAltLow": [], - "BootstrapBrightnessAltLowFill": [], - "BootstrapBrightnessHigh": [], - "BootstrapBrightnessHighFill": [], - "BootstrapBrightnessLow": [], - "BootstrapBrightnessLowFill": [], - "BootstrapBroadcast": [], - "BootstrapBroadcastPin": [], - "BootstrapBrowserChrome": [], - "BootstrapBrowserEdge": [], - "BootstrapBrowserFirefox": [], - "BootstrapBrowserSafari": [], - "BootstrapBrush": [], - "BootstrapBrushFill": [], - "BootstrapBucket": [], - "BootstrapBucketFill": [], - "BootstrapBug": [], - "BootstrapBugFill": [], - "BootstrapBuilding": [], - "BootstrapBuildingAdd": [], - "BootstrapBuildingCheck": [], - "BootstrapBuildingDash": [], - "BootstrapBuildingDown": [], - "BootstrapBuildingExclamation": [], - "BootstrapBuildingFill": [], - "BootstrapBuildingFillAdd": [], - "BootstrapBuildingFillCheck": [], - "BootstrapBuildingFillDash": [], - "BootstrapBuildingFillDown": [], - "BootstrapBuildingFillExclamation": [], - "BootstrapBuildingFillGear": [], - "BootstrapBuildingFillLock": [], - "BootstrapBuildingFillSlash": [], - "BootstrapBuildingFillUp": [], - "BootstrapBuildingFillX": [], - "BootstrapBuildingGear": [], - "BootstrapBuildingLock": [], - "BootstrapBuildingSlash": [], - "BootstrapBuildingUp": [], - "BootstrapBuildingX": [], - "BootstrapBuildings": [], - "BootstrapBuildingsFill": [], - "BootstrapBullseye": [], - "BootstrapBusFront": [], - "BootstrapBusFrontFill": [], - "BootstrapCCircle": [], - "BootstrapCCircleFill": [], - "BootstrapCSquare": [], - "BootstrapCSquareFill": [], - "BootstrapCalculator": [], - "BootstrapCalculatorFill": [], - "BootstrapCalendar": [], - "BootstrapCalendar2": [], - "BootstrapCalendar2Check": [], - "BootstrapCalendar2CheckFill": [], - "BootstrapCalendar2Date": [], - "BootstrapCalendar2DateFill": [], - "BootstrapCalendar2Day": [], - "BootstrapCalendar2DayFill": [], - "BootstrapCalendar2Event": [], - "BootstrapCalendar2EventFill": [], - "BootstrapCalendar2Fill": [], - "BootstrapCalendar2Heart": [], - "BootstrapCalendar2HeartFill": [], - "BootstrapCalendar2Minus": [], - "BootstrapCalendar2MinusFill": [], - "BootstrapCalendar2Month": [], - "BootstrapCalendar2MonthFill": [], - "BootstrapCalendar2Plus": [], - "BootstrapCalendar2PlusFill": [], - "BootstrapCalendar2Range": [], - "BootstrapCalendar2RangeFill": [], - "BootstrapCalendar2Week": [], - "BootstrapCalendar2WeekFill": [], - "BootstrapCalendar2X": [], - "BootstrapCalendar2XFill": [], - "BootstrapCalendar3": [], - "BootstrapCalendar3Event": [], - "BootstrapCalendar3EventFill": [], - "BootstrapCalendar3Fill": [], - "BootstrapCalendar3Range": [], - "BootstrapCalendar3RangeFill": [], - "BootstrapCalendar3Week": [], - "BootstrapCalendar3WeekFill": [], - "BootstrapCalendar4": [], - "BootstrapCalendar4Event": [], - "BootstrapCalendar4Range": [], - "BootstrapCalendar4Week": [], - "BootstrapCalendarCheck": [], - "BootstrapCalendarCheckFill": [], - "BootstrapCalendarDate": [], - "BootstrapCalendarDateFill": [], - "BootstrapCalendarDay": [], - "BootstrapCalendarDayFill": [], - "BootstrapCalendarEvent": [], - "BootstrapCalendarEventFill": [], - "BootstrapCalendarFill": [], - "BootstrapCalendarHeart": [], - "BootstrapCalendarHeartFill": [], - "BootstrapCalendarMinus": [], - "BootstrapCalendarMinusFill": [], - "BootstrapCalendarMonth": [], - "BootstrapCalendarMonthFill": [], - "BootstrapCalendarPlus": [], - "BootstrapCalendarPlusFill": [], - "BootstrapCalendarRange": [], - "BootstrapCalendarRangeFill": [], - "BootstrapCalendarWeek": [], - "BootstrapCalendarWeekFill": [], - "BootstrapCalendarX": [], - "BootstrapCalendarXFill": [], - "BootstrapCamera": [], - "BootstrapCamera2": [], - "BootstrapCameraFill": [], - "BootstrapCameraReels": [], - "BootstrapCameraReelsFill": [], - "BootstrapCameraVideo": [], - "BootstrapCameraVideoFill": [], - "BootstrapCameraVideoOff": [], - "BootstrapCameraVideoOffFill": [], - "BootstrapCapslock": [], - "BootstrapCapslockFill": [], - "BootstrapCapsule": [], - "BootstrapCapsulePill": [], - "BootstrapCarFront": [], - "BootstrapCarFrontFill": [], - "BootstrapCardChecklist": [], - "BootstrapCardHeading": [], - "BootstrapCardImage": [], - "BootstrapCardList": [], - "BootstrapCardText": [], - "BootstrapCaretDown": [], - "BootstrapCaretDownFill": [], - "BootstrapCaretDownSquare": [], - "BootstrapCaretDownSquareFill": [], - "BootstrapCaretLeft": [], - "BootstrapCaretLeftFill": [], - "BootstrapCaretLeftSquare": [], - "BootstrapCaretLeftSquareFill": [], - "BootstrapCaretRight": [], - "BootstrapCaretRightFill": [], - "BootstrapCaretRightSquare": [], - "BootstrapCaretRightSquareFill": [], - "BootstrapCaretUp": [], - "BootstrapCaretUpFill": [], - "BootstrapCaretUpSquare": [], - "BootstrapCaretUpSquareFill": [], - "BootstrapCart": [], - "BootstrapCart2": [], - "BootstrapCart3": [], - "BootstrapCart4": [], - "BootstrapCartCheck": [], - "BootstrapCartCheckFill": [], - "BootstrapCartDash": [], - "BootstrapCartDashFill": [], - "BootstrapCartFill": [], - "BootstrapCartPlus": [], - "BootstrapCartPlusFill": [], - "BootstrapCartX": [], - "BootstrapCartXFill": [], - "BootstrapCash": [], - "BootstrapCashCoin": [], - "BootstrapCashStack": [], - "BootstrapCassette": [], - "BootstrapCassetteFill": [], - "BootstrapCast": [], - "BootstrapCcCircle": [], - "BootstrapCcCircleFill": [], - "BootstrapCcSquare": [], - "BootstrapCcSquareFill": [], - "BootstrapChat": [], - "BootstrapChatDots": [], - "BootstrapChatDotsFill": [], - "BootstrapChatFill": [], - "BootstrapChatHeart": [], - "BootstrapChatHeartFill": [], - "BootstrapChatLeft": [], - "BootstrapChatLeftDots": [], - "BootstrapChatLeftDotsFill": [], - "BootstrapChatLeftFill": [], - "BootstrapChatLeftHeart": [], - "BootstrapChatLeftHeartFill": [], - "BootstrapChatLeftQuote": [], - "BootstrapChatLeftQuoteFill": [], - "BootstrapChatLeftText": [], - "BootstrapChatLeftTextFill": [], - "BootstrapChatQuote": [], - "BootstrapChatQuoteFill": [], - "BootstrapChatRight": [], - "BootstrapChatRightDots": [], - "BootstrapChatRightDotsFill": [], - "BootstrapChatRightFill": [], - "BootstrapChatRightHeart": [], - "BootstrapChatRightHeartFill": [], - "BootstrapChatRightQuote": [], - "BootstrapChatRightQuoteFill": [], - "BootstrapChatRightText": [], - "BootstrapChatRightTextFill": [], - "BootstrapChatSquare": [], - "BootstrapChatSquareDots": [], - "BootstrapChatSquareDotsFill": [], - "BootstrapChatSquareFill": [], - "BootstrapChatSquareHeart": [], - "BootstrapChatSquareHeartFill": [], - "BootstrapChatSquareQuote": [], - "BootstrapChatSquareQuoteFill": [], - "BootstrapChatSquareText": [], - "BootstrapChatSquareTextFill": [], - "BootstrapChatText": [], - "BootstrapChatTextFill": [], - "BootstrapCheck": [], - "BootstrapCheck2": [], - "BootstrapCheck2All": [], - "BootstrapCheck2Circle": [], - "BootstrapCheck2Square": [], - "BootstrapCheckAll": [], - "BootstrapCheckCircle": [], - "BootstrapCheckCircleFill": [], - "BootstrapCheckLg": [], - "BootstrapCheckSquare": [], - "BootstrapCheckSquareFill": [], - "BootstrapChevronBarContract": [], - "BootstrapChevronBarDown": [], - "BootstrapChevronBarExpand": [], - "BootstrapChevronBarLeft": [], - "BootstrapChevronBarRight": [], - "BootstrapChevronBarUp": [], - "BootstrapChevronCompactDown": [], - "BootstrapChevronCompactLeft": [], - "BootstrapChevronCompactRight": [], - "BootstrapChevronCompactUp": [], - "BootstrapChevronContract": [], - "BootstrapChevronDoubleDown": [], - "BootstrapChevronDoubleLeft": [], - "BootstrapChevronDoubleRight": [], - "BootstrapChevronDoubleUp": [], - "BootstrapChevronDown": [], - "BootstrapChevronExpand": [], - "BootstrapChevronLeft": [], - "BootstrapChevronRight": [], - "BootstrapChevronUp": [], - "BootstrapCircle": [], - "BootstrapCircleFill": [], - "BootstrapCircleHalf": [], - "BootstrapCircleSquare": [], - "BootstrapClipboard": [], - "BootstrapClipboard2": [], - "BootstrapClipboard2Check": [], - "BootstrapClipboard2CheckFill": [], - "BootstrapClipboard2Data": [], - "BootstrapClipboard2DataFill": [], - "BootstrapClipboard2Fill": [], - "BootstrapClipboard2Heart": [], - "BootstrapClipboard2HeartFill": [], - "BootstrapClipboard2Minus": [], - "BootstrapClipboard2MinusFill": [], - "BootstrapClipboard2Plus": [], - "BootstrapClipboard2PlusFill": [], - "BootstrapClipboard2Pulse": [], - "BootstrapClipboard2PulseFill": [], - "BootstrapClipboard2X": [], - "BootstrapClipboard2XFill": [], - "BootstrapClipboardCheck": [], - "BootstrapClipboardCheckFill": [], - "BootstrapClipboardData": [], - "BootstrapClipboardDataFill": [], - "BootstrapClipboardFill": [], - "BootstrapClipboardHeart": [], - "BootstrapClipboardHeartFill": [], - "BootstrapClipboardMinus": [], - "BootstrapClipboardMinusFill": [], - "BootstrapClipboardPlus": [], - "BootstrapClipboardPlusFill": [], - "BootstrapClipboardPulse": [], - "BootstrapClipboardX": [], - "BootstrapClipboardXFill": [], - "BootstrapClock": [], - "BootstrapClockFill": [], - "BootstrapClockHistory": [], - "BootstrapCloud": [], - "BootstrapCloudArrowDown": [], - "BootstrapCloudArrowDownFill": [], - "BootstrapCloudArrowUp": [], - "BootstrapCloudArrowUpFill": [], - "BootstrapCloudCheck": [], - "BootstrapCloudCheckFill": [], - "BootstrapCloudDownload": [], - "BootstrapCloudDownloadFill": [], - "BootstrapCloudDrizzle": [], - "BootstrapCloudDrizzleFill": [], - "BootstrapCloudFill": [], - "BootstrapCloudFog": [], - "BootstrapCloudFog2": [], - "BootstrapCloudFog2Fill": [], - "BootstrapCloudFogFill": [], - "BootstrapCloudHail": [], - "BootstrapCloudHailFill": [], - "BootstrapCloudHaze": [], - "BootstrapCloudHaze2": [], - "BootstrapCloudHaze2Fill": [], - "BootstrapCloudHazeFill": [], - "BootstrapCloudLightning": [], - "BootstrapCloudLightningFill": [], - "BootstrapCloudLightningRain": [], - "BootstrapCloudLightningRainFill": [], - "BootstrapCloudMinus": [], - "BootstrapCloudMinusFill": [], - "BootstrapCloudMoon": [], - "BootstrapCloudMoonFill": [], - "BootstrapCloudPlus": [], - "BootstrapCloudPlusFill": [], - "BootstrapCloudRain": [], - "BootstrapCloudRainFill": [], - "BootstrapCloudRainHeavy": [], - "BootstrapCloudRainHeavyFill": [], - "BootstrapCloudSlash": [], - "BootstrapCloudSlashFill": [], - "BootstrapCloudSleet": [], - "BootstrapCloudSleetFill": [], - "BootstrapCloudSnow": [], - "BootstrapCloudSnowFill": [], - "BootstrapCloudSun": [], - "BootstrapCloudSunFill": [], - "BootstrapCloudUpload": [], - "BootstrapCloudUploadFill": [], - "BootstrapClouds": [], - "BootstrapCloudsFill": [], - "BootstrapCloudy": [], - "BootstrapCloudyFill": [], - "BootstrapCode": [], - "BootstrapCodeSlash": [], - "BootstrapCodeSquare": [], - "BootstrapCoin": [], - "BootstrapCollection": [], - "BootstrapCollectionFill": [], - "BootstrapCollectionPlay": [], - "BootstrapCollectionPlayFill": [], - "BootstrapColumns": [], - "BootstrapColumnsGap": [], - "BootstrapCommand": [], - "BootstrapCompass": [], - "BootstrapCompassFill": [], - "BootstrapCone": [], - "BootstrapConeStriped": [], - "BootstrapController": [], - "BootstrapCpu": [], - "BootstrapCpuFill": [], - "BootstrapCreditCard": [], - "BootstrapCreditCard2Back": [], - "BootstrapCreditCard2BackFill": [], - "BootstrapCreditCard2Front": [], - "BootstrapCreditCard2FrontFill": [], - "BootstrapCreditCardFill": [], - "BootstrapCrop": [], - "BootstrapCup": [], - "BootstrapCupFill": [], - "BootstrapCupHot": [], - "BootstrapCupHotFill": [], - "BootstrapCupStraw": [], - "BootstrapCurrencyBitcoin": [], - "BootstrapCurrencyDollar": [], - "BootstrapCurrencyEuro": [], - "BootstrapCurrencyExchange": [], - "BootstrapCurrencyPound": [], - "BootstrapCurrencyRupee": [], - "BootstrapCurrencyYen": [], - "BootstrapCursor": [], - "BootstrapCursorFill": [], - "BootstrapCursorText": [], - "BootstrapDash": [], - "BootstrapDashCircle": [], - "BootstrapDashCircleDotted": [], - "BootstrapDashCircleFill": [], - "BootstrapDashLg": [], - "BootstrapDashSquare": [], - "BootstrapDashSquareDotted": [], - "BootstrapDashSquareFill": [], - "BootstrapDatabase": [], - "BootstrapDatabaseAdd": [], - "BootstrapDatabaseCheck": [], - "BootstrapDatabaseDash": [], - "BootstrapDatabaseDown": [], - "BootstrapDatabaseExclamation": [], - "BootstrapDatabaseFill": [], - "BootstrapDatabaseFillAdd": [], - "BootstrapDatabaseFillCheck": [], - "BootstrapDatabaseFillDash": [], - "BootstrapDatabaseFillDown": [], - "BootstrapDatabaseFillExclamation": [], - "BootstrapDatabaseFillGear": [], - "BootstrapDatabaseFillLock": [], - "BootstrapDatabaseFillSlash": [], - "BootstrapDatabaseFillUp": [], - "BootstrapDatabaseFillX": [], - "BootstrapDatabaseGear": [], - "BootstrapDatabaseLock": [], - "BootstrapDatabaseSlash": [], - "BootstrapDatabaseUp": [], - "BootstrapDatabaseX": [], - "BootstrapDeviceHdd": [], - "BootstrapDeviceHddFill": [], - "BootstrapDeviceSsd": [], - "BootstrapDeviceSsdFill": [], - "BootstrapDiagram2": [], - "BootstrapDiagram2Fill": [], - "BootstrapDiagram3": [], - "BootstrapDiagram3Fill": [], - "BootstrapDiamond": [], - "BootstrapDiamondFill": [], - "BootstrapDiamondHalf": [], - "BootstrapDice1": [], - "BootstrapDice1Fill": [], - "BootstrapDice2": [], - "BootstrapDice2Fill": [], - "BootstrapDice3": [], - "BootstrapDice3Fill": [], - "BootstrapDice4": [], - "BootstrapDice4Fill": [], - "BootstrapDice5": [], - "BootstrapDice5Fill": [], - "BootstrapDice6": [], - "BootstrapDice6Fill": [], - "BootstrapDisc": [], - "BootstrapDiscFill": [], - "BootstrapDiscord": [], - "BootstrapDisplay": [], - "BootstrapDisplayFill": [], - "BootstrapDisplayport": [], - "BootstrapDisplayportFill": [], - "BootstrapDistributeHorizontal": [], - "BootstrapDistributeVertical": [], - "BootstrapDoorClosed": [], - "BootstrapDoorClosedFill": [], - "BootstrapDoorOpen": [], - "BootstrapDoorOpenFill": [], - "BootstrapDot": [], - "BootstrapDownload": [], - "BootstrapDpad": [], - "BootstrapDpadFill": [], - "BootstrapDribbble": [], - "BootstrapDropbox": [], - "BootstrapDroplet": [], - "BootstrapDropletFill": [], - "BootstrapDropletHalf": [], - "BootstrapEar": [], - "BootstrapEarFill": [], - "BootstrapEarbuds": [], - "BootstrapEasel": [], - "BootstrapEasel2": [], - "BootstrapEasel2Fill": [], - "BootstrapEasel3": [], - "BootstrapEasel3Fill": [], - "BootstrapEaselFill": [], - "BootstrapEgg": [], - "BootstrapEggFill": [], - "BootstrapEggFried": [], - "BootstrapEject": [], - "BootstrapEjectFill": [], - "BootstrapEmojiAngry": [], - "BootstrapEmojiAngryFill": [], - "BootstrapEmojiDizzy": [], - "BootstrapEmojiDizzyFill": [], - "BootstrapEmojiExpressionless": [], - "BootstrapEmojiExpressionlessFill": [], - "BootstrapEmojiFrown": [], - "BootstrapEmojiFrownFill": [], - "BootstrapEmojiHeartEyes": [], - "BootstrapEmojiHeartEyesFill": [], - "BootstrapEmojiKiss": [], - "BootstrapEmojiKissFill": [], - "BootstrapEmojiLaughing": [], - "BootstrapEmojiLaughingFill": [], - "BootstrapEmojiNeutral": [], - "BootstrapEmojiNeutralFill": [], - "BootstrapEmojiSmile": [], - "BootstrapEmojiSmileFill": [], - "BootstrapEmojiSmileUpsideDown": [], - "BootstrapEmojiSmileUpsideDownFill": [], - "BootstrapEmojiSunglasses": [], - "BootstrapEmojiSunglassesFill": [], - "BootstrapEmojiWink": [], - "BootstrapEmojiWinkFill": [], - "BootstrapEnvelope": [], - "BootstrapEnvelopeAt": [], - "BootstrapEnvelopeAtFill": [], - "BootstrapEnvelopeCheck": [], - "BootstrapEnvelopeCheckFill": [], - "BootstrapEnvelopeDash": [], - "BootstrapEnvelopeDashFill": [], - "BootstrapEnvelopeExclamation": [], - "BootstrapEnvelopeExclamationFill": [], - "BootstrapEnvelopeFill": [], - "BootstrapEnvelopeHeart": [], - "BootstrapEnvelopeHeartFill": [], - "BootstrapEnvelopeOpen": [], - "BootstrapEnvelopeOpenFill": [], - "BootstrapEnvelopeOpenHeart": [], - "BootstrapEnvelopeOpenHeartFill": [], - "BootstrapEnvelopePaper": [], - "BootstrapEnvelopePaperFill": [], - "BootstrapEnvelopePaperHeart": [], - "BootstrapEnvelopePaperHeartFill": [], - "BootstrapEnvelopePlus": [], - "BootstrapEnvelopePlusFill": [], - "BootstrapEnvelopeSlash": [], - "BootstrapEnvelopeSlashFill": [], - "BootstrapEnvelopeX": [], - "BootstrapEnvelopeXFill": [], - "BootstrapEraser": [], - "BootstrapEraserFill": [], - "BootstrapEscape": [], - "BootstrapEthernet": [], - "BootstrapEvFront": [], - "BootstrapEvFrontFill": [], - "BootstrapEvStation": [], - "BootstrapEvStationFill": [], - "BootstrapExclamation": [], - "BootstrapExclamationCircle": [], - "BootstrapExclamationCircleFill": [], - "BootstrapExclamationDiamond": [], - "BootstrapExclamationDiamondFill": [], - "BootstrapExclamationLg": [], - "BootstrapExclamationOctagon": [], - "BootstrapExclamationOctagonFill": [], - "BootstrapExclamationSquare": [], - "BootstrapExclamationSquareFill": [], - "BootstrapExclamationTriangle": [], - "BootstrapExclamationTriangleFill": [], - "BootstrapExclude": [], - "BootstrapExplicit": [], - "BootstrapExplicitFill": [], - "BootstrapEye": [], - "BootstrapEyeFill": [], - "BootstrapEyeSlash": [], - "BootstrapEyeSlashFill": [], - "BootstrapEyedropper": [], - "BootstrapEyeglasses": [], - "BootstrapFacebook": [], - "BootstrapFan": [], - "BootstrapFastForward": [], - "BootstrapFastForwardBtn": [], - "BootstrapFastForwardBtnFill": [], - "BootstrapFastForwardCircle": [], - "BootstrapFastForwardCircleFill": [], - "BootstrapFastForwardFill": [], - "BootstrapFile": [], - "BootstrapFileArrowDown": [], - "BootstrapFileArrowDownFill": [], - "BootstrapFileArrowUp": [], - "BootstrapFileArrowUpFill": [], - "BootstrapFileBarGraph": [], - "BootstrapFileBarGraphFill": [], - "BootstrapFileBinary": [], - "BootstrapFileBinaryFill": [], - "BootstrapFileBreak": [], - "BootstrapFileBreakFill": [], - "BootstrapFileCheck": [], - "BootstrapFileCheckFill": [], - "BootstrapFileCode": [], - "BootstrapFileCodeFill": [], - "BootstrapFileDiff": [], - "BootstrapFileDiffFill": [], - "BootstrapFileEarmark": [], - "BootstrapFileEarmarkArrowDown": [], - "BootstrapFileEarmarkArrowDownFill": [], - "BootstrapFileEarmarkArrowUp": [], - "BootstrapFileEarmarkArrowUpFill": [], - "BootstrapFileEarmarkBarGraph": [], - "BootstrapFileEarmarkBarGraphFill": [], - "BootstrapFileEarmarkBinary": [], - "BootstrapFileEarmarkBinaryFill": [], - "BootstrapFileEarmarkBreak": [], - "BootstrapFileEarmarkBreakFill": [], - "BootstrapFileEarmarkCheck": [], - "BootstrapFileEarmarkCheckFill": [], - "BootstrapFileEarmarkCode": [], - "BootstrapFileEarmarkCodeFill": [], - "BootstrapFileEarmarkDiff": [], - "BootstrapFileEarmarkDiffFill": [], - "BootstrapFileEarmarkEasel": [], - "BootstrapFileEarmarkEaselFill": [], - "BootstrapFileEarmarkExcel": [], - "BootstrapFileEarmarkExcelFill": [], - "BootstrapFileEarmarkFill": [], - "BootstrapFileEarmarkFont": [], - "BootstrapFileEarmarkFontFill": [], - "BootstrapFileEarmarkImage": [], - "BootstrapFileEarmarkImageFill": [], - "BootstrapFileEarmarkLock": [], - "BootstrapFileEarmarkLock2": [], - "BootstrapFileEarmarkLock2Fill": [], - "BootstrapFileEarmarkLockFill": [], - "BootstrapFileEarmarkMedical": [], - "BootstrapFileEarmarkMedicalFill": [], - "BootstrapFileEarmarkMinus": [], - "BootstrapFileEarmarkMinusFill": [], - "BootstrapFileEarmarkMusic": [], - "BootstrapFileEarmarkMusicFill": [], - "BootstrapFileEarmarkPdf": [], - "BootstrapFileEarmarkPdfFill": [], - "BootstrapFileEarmarkPerson": [], - "BootstrapFileEarmarkPersonFill": [], - "BootstrapFileEarmarkPlay": [], - "BootstrapFileEarmarkPlayFill": [], - "BootstrapFileEarmarkPlus": [], - "BootstrapFileEarmarkPlusFill": [], - "BootstrapFileEarmarkPost": [], - "BootstrapFileEarmarkPostFill": [], - "BootstrapFileEarmarkPpt": [], - "BootstrapFileEarmarkPptFill": [], - "BootstrapFileEarmarkRichtext": [], - "BootstrapFileEarmarkRichtextFill": [], - "BootstrapFileEarmarkRuled": [], - "BootstrapFileEarmarkRuledFill": [], - "BootstrapFileEarmarkSlides": [], - "BootstrapFileEarmarkSlidesFill": [], - "BootstrapFileEarmarkSpreadsheet": [], - "BootstrapFileEarmarkSpreadsheetFill": [], - "BootstrapFileEarmarkText": [], - "BootstrapFileEarmarkTextFill": [], - "BootstrapFileEarmarkWord": [], - "BootstrapFileEarmarkWordFill": [], - "BootstrapFileEarmarkX": [], - "BootstrapFileEarmarkXFill": [], - "BootstrapFileEarmarkZip": [], - "BootstrapFileEarmarkZipFill": [], - "BootstrapFileEasel": [], - "BootstrapFileEaselFill": [], - "BootstrapFileExcel": [], - "BootstrapFileExcelFill": [], - "BootstrapFileFill": [], - "BootstrapFileFont": [], - "BootstrapFileFontFill": [], - "BootstrapFileImage": [], - "BootstrapFileImageFill": [], - "BootstrapFileLock": [], - "BootstrapFileLock2": [], - "BootstrapFileLock2Fill": [], - "BootstrapFileLockFill": [], - "BootstrapFileMedical": [], - "BootstrapFileMedicalFill": [], - "BootstrapFileMinus": [], - "BootstrapFileMinusFill": [], - "BootstrapFileMusic": [], - "BootstrapFileMusicFill": [], - "BootstrapFilePdf": [], - "BootstrapFilePdfFill": [], - "BootstrapFilePerson": [], - "BootstrapFilePersonFill": [], - "BootstrapFilePlay": [], - "BootstrapFilePlayFill": [], - "BootstrapFilePlus": [], - "BootstrapFilePlusFill": [], - "BootstrapFilePost": [], - "BootstrapFilePostFill": [], - "BootstrapFilePpt": [], - "BootstrapFilePptFill": [], - "BootstrapFileRichtext": [], - "BootstrapFileRichtextFill": [], - "BootstrapFileRuled": [], - "BootstrapFileRuledFill": [], - "BootstrapFileSlides": [], - "BootstrapFileSlidesFill": [], - "BootstrapFileSpreadsheet": [], - "BootstrapFileSpreadsheetFill": [], - "BootstrapFileText": [], - "BootstrapFileTextFill": [], - "BootstrapFileWord": [], - "BootstrapFileWordFill": [], - "BootstrapFileX": [], - "BootstrapFileXFill": [], - "BootstrapFileZip": [], - "BootstrapFileZipFill": [], - "BootstrapFiles": [], - "BootstrapFilesAlt": [], - "BootstrapFiletypeAac": [], - "BootstrapFiletypeAi": [], - "BootstrapFiletypeBmp": [], - "BootstrapFiletypeCs": [], - "BootstrapFiletypeCss": [], - "BootstrapFiletypeCsv": [], - "BootstrapFiletypeDoc": [], - "BootstrapFiletypeDocx": [], - "BootstrapFiletypeExe": [], - "BootstrapFiletypeGif": [], - "BootstrapFiletypeHeic": [], - "BootstrapFiletypeHtml": [], - "BootstrapFiletypeJava": [], - "BootstrapFiletypeJpg": [], - "BootstrapFiletypeJs": [], - "BootstrapFiletypeJson": [], - "BootstrapFiletypeJsx": [], - "BootstrapFiletypeKey": [], - "BootstrapFiletypeM4P": [], - "BootstrapFiletypeMd": [], - "BootstrapFiletypeMdx": [], - "BootstrapFiletypeMov": [], - "BootstrapFiletypeMp3": [], - "BootstrapFiletypeMp4": [], - "BootstrapFiletypeOtf": [], - "BootstrapFiletypePdf": [], - "BootstrapFiletypePhp": [], - "BootstrapFiletypePng": [], - "BootstrapFiletypePpt": [], - "BootstrapFiletypePptx": [], - "BootstrapFiletypePsd": [], - "BootstrapFiletypePy": [], - "BootstrapFiletypeRaw": [], - "BootstrapFiletypeRb": [], - "BootstrapFiletypeSass": [], - "BootstrapFiletypeScss": [], - "BootstrapFiletypeSh": [], - "BootstrapFiletypeSql": [], - "BootstrapFiletypeSvg": [], - "BootstrapFiletypeTiff": [], - "BootstrapFiletypeTsx": [], - "BootstrapFiletypeTtf": [], - "BootstrapFiletypeTxt": [], - "BootstrapFiletypeWav": [], - "BootstrapFiletypeWoff": [], - "BootstrapFiletypeXls": [], - "BootstrapFiletypeXlsx": [], - "BootstrapFiletypeXml": [], - "BootstrapFiletypeYml": [], - "BootstrapFilm": [], - "BootstrapFilter": [], - "BootstrapFilterCircle": [], - "BootstrapFilterCircleFill": [], - "BootstrapFilterLeft": [], - "BootstrapFilterRight": [], - "BootstrapFilterSquare": [], - "BootstrapFilterSquareFill": [], - "BootstrapFingerprint": [], - "BootstrapFire": [], - "BootstrapFlag": [], - "BootstrapFlagFill": [], - "BootstrapFlower1": [], - "BootstrapFlower2": [], - "BootstrapFlower3": [], - "BootstrapFolder": [], - "BootstrapFolder2": [], - "BootstrapFolder2Open": [], - "BootstrapFolderCheck": [], - "BootstrapFolderFill": [], - "BootstrapFolderMinus": [], - "BootstrapFolderPlus": [], - "BootstrapFolderSymlink": [], - "BootstrapFolderSymlinkFill": [], - "BootstrapFolderX": [], - "BootstrapFonts": [], - "BootstrapForward": [], - "BootstrapForwardFill": [], - "BootstrapFront": [], - "BootstrapFuelPump": [], - "BootstrapFuelPumpDiesel": [], - "BootstrapFuelPumpDieselFill": [], - "BootstrapFuelPumpFill": [], - "BootstrapFullscreen": [], - "BootstrapFullscreenExit": [], - "BootstrapFunnel": [], - "BootstrapFunnelFill": [], - "BootstrapGear": [], - "BootstrapGearFill": [], - "BootstrapGearWide": [], - "BootstrapGearWideConnected": [], - "BootstrapGem": [], - "BootstrapGenderAmbiguous": [], - "BootstrapGenderFemale": [], - "BootstrapGenderMale": [], - "BootstrapGenderTrans": [], - "BootstrapGeo": [], - "BootstrapGeoAlt": [], - "BootstrapGeoAltFill": [], - "BootstrapGeoFill": [], - "BootstrapGift": [], - "BootstrapGiftFill": [], - "BootstrapGit": [], - "BootstrapGithub": [], - "BootstrapGlobe": [], - "BootstrapGlobe2": [], - "BootstrapGlobeAmericas": [], - "BootstrapGlobeAsiaAustralia": [], - "BootstrapGlobeCentralSouthAsia": [], - "BootstrapGlobeEuropeAfrica": [], - "BootstrapGoogle": [], - "BootstrapGooglePlay": [], - "BootstrapGpuCard": [], - "BootstrapGraphDown": [], - "BootstrapGraphDownArrow": [], - "BootstrapGraphUp": [], - "BootstrapGraphUpArrow": [], - "BootstrapGrid": [], - "BootstrapGrid1X2": [], - "BootstrapGrid1X2Fill": [], - "BootstrapGrid3X2": [], - "BootstrapGrid3X2Gap": [], - "BootstrapGrid3X2GapFill": [], - "BootstrapGrid3X3": [], - "BootstrapGrid3X3Gap": [], - "BootstrapGrid3X3GapFill": [], - "BootstrapGridFill": [], - "BootstrapGripHorizontal": [], - "BootstrapGripVertical": [], - "BootstrapHCircle": [], - "BootstrapHCircleFill": [], - "BootstrapHSquare": [], - "BootstrapHSquareFill": [], - "BootstrapHammer": [], - "BootstrapHandIndex": [], - "BootstrapHandIndexFill": [], - "BootstrapHandIndexThumb": [], - "BootstrapHandIndexThumbFill": [], - "BootstrapHandThumbsDown": [], - "BootstrapHandThumbsDownFill": [], - "BootstrapHandThumbsUp": [], - "BootstrapHandThumbsUpFill": [], - "BootstrapHandbag": [], - "BootstrapHandbagFill": [], - "BootstrapHash": [], - "BootstrapHdd": [], - "BootstrapHddFill": [], - "BootstrapHddNetwork": [], - "BootstrapHddNetworkFill": [], - "BootstrapHddRack": [], - "BootstrapHddRackFill": [], - "BootstrapHddStack": [], - "BootstrapHddStackFill": [], - "BootstrapHdmi": [], - "BootstrapHdmiFill": [], - "BootstrapHeadphones": [], - "BootstrapHeadset": [], - "BootstrapHeadsetVr": [], - "BootstrapHeart": [], - "BootstrapHeartArrow": [], - "BootstrapHeartFill": [], - "BootstrapHeartHalf": [], - "BootstrapHeartPulse": [], - "BootstrapHeartPulseFill": [], - "BootstrapHeartbreak": [], - "BootstrapHeartbreakFill": [], - "BootstrapHearts": [], - "BootstrapHeptagon": [], - "BootstrapHeptagonFill": [], - "BootstrapHeptagonHalf": [], - "BootstrapHexagon": [], - "BootstrapHexagonFill": [], - "BootstrapHexagonHalf": [], - "BootstrapHospital": [], - "BootstrapHospitalFill": [], - "BootstrapHourglass": [], - "BootstrapHourglassBottom": [], - "BootstrapHourglassSplit": [], - "BootstrapHourglassTop": [], - "BootstrapHouse": [], - "BootstrapHouseAdd": [], - "BootstrapHouseAddFill": [], - "BootstrapHouseCheck": [], - "BootstrapHouseCheckFill": [], - "BootstrapHouseDash": [], - "BootstrapHouseDashFill": [], - "BootstrapHouseDoor": [], - "BootstrapHouseDoorFill": [], - "BootstrapHouseDown": [], - "BootstrapHouseDownFill": [], - "BootstrapHouseExclamation": [], - "BootstrapHouseExclamationFill": [], - "BootstrapHouseFill": [], - "BootstrapHouseGear": [], - "BootstrapHouseGearFill": [], - "BootstrapHouseHeart": [], - "BootstrapHouseHeartFill": [], - "BootstrapHouseLock": [], - "BootstrapHouseLockFill": [], - "BootstrapHouseSlash": [], - "BootstrapHouseSlashFill": [], - "BootstrapHouseUp": [], - "BootstrapHouseUpFill": [], - "BootstrapHouseX": [], - "BootstrapHouseXFill": [], - "BootstrapHouses": [], - "BootstrapHousesFill": [], - "BootstrapHr": [], - "BootstrapHurricane": [], - "BootstrapHypnotize": [], - "BootstrapImage": [], - "BootstrapImageAlt": [], - "BootstrapImageFill": [], - "BootstrapImages": [], - "BootstrapInbox": [], - "BootstrapInboxFill": [], - "BootstrapInboxes": [], - "BootstrapInboxesFill": [], - "BootstrapIncognito": [], - "BootstrapIndent": [], - "BootstrapInfinity": [], - "BootstrapInfo": [], - "BootstrapInfoCircle": [], - "BootstrapInfoCircleFill": [], - "BootstrapInfoLg": [], - "BootstrapInfoSquare": [], - "BootstrapInfoSquareFill": [], - "BootstrapInputCursor": [], - "BootstrapInputCursorText": [], - "BootstrapInstagram": [], - "BootstrapIntersect": [], - "BootstrapJournal": [], - "BootstrapJournalAlbum": [], - "BootstrapJournalArrowDown": [], - "BootstrapJournalArrowUp": [], - "BootstrapJournalBookmark": [], - "BootstrapJournalBookmarkFill": [], - "BootstrapJournalCheck": [], - "BootstrapJournalCode": [], - "BootstrapJournalMedical": [], - "BootstrapJournalMinus": [], - "BootstrapJournalPlus": [], - "BootstrapJournalRichtext": [], - "BootstrapJournalText": [], - "BootstrapJournalX": [], - "BootstrapJournals": [], - "BootstrapJoystick": [], - "BootstrapJustify": [], - "BootstrapJustifyLeft": [], - "BootstrapJustifyRight": [], - "BootstrapKanban": [], - "BootstrapKanbanFill": [], - "BootstrapKey": [], - "BootstrapKeyFill": [], - "BootstrapKeyboard": [], - "BootstrapKeyboardFill": [], - "BootstrapLadder": [], - "BootstrapLamp": [], - "BootstrapLampFill": [], - "BootstrapLaptop": [], - "BootstrapLaptopFill": [], - "BootstrapLayerBackward": [], - "BootstrapLayerForward": [], - "BootstrapLayers": [], - "BootstrapLayersFill": [], - "BootstrapLayersHalf": [], - "BootstrapLayoutSidebar": [], - "BootstrapLayoutSidebarInset": [], - "BootstrapLayoutSidebarInsetReverse": [], - "BootstrapLayoutSidebarReverse": [], - "BootstrapLayoutSplit": [], - "BootstrapLayoutTextSidebar": [], - "BootstrapLayoutTextSidebarReverse": [], - "BootstrapLayoutTextWindow": [], - "BootstrapLayoutTextWindowReverse": [], - "BootstrapLayoutThreeColumns": [], - "BootstrapLayoutWtf": [], - "BootstrapLifePreserver": [], - "BootstrapLightbulb": [], - "BootstrapLightbulbFill": [], - "BootstrapLightbulbOff": [], - "BootstrapLightbulbOffFill": [], - "BootstrapLightning": [], - "BootstrapLightningCharge": [], - "BootstrapLightningChargeFill": [], - "BootstrapLightningFill": [], - "BootstrapLine": [], - "BootstrapLink": [], - "BootstrapLink45Deg": [], - "BootstrapLinkedin": [], - "BootstrapList": [], - "BootstrapListCheck": [], - "BootstrapListColumns": [], - "BootstrapListColumnsReverse": [], - "BootstrapListNested": [], - "BootstrapListOl": [], - "BootstrapListStars": [], - "BootstrapListTask": [], - "BootstrapListUl": [], - "BootstrapLock": [], - "BootstrapLockFill": [], - "BootstrapLungs": [], - "BootstrapLungsFill": [], - "BootstrapMagic": [], - "BootstrapMagnet": [], - "BootstrapMagnetFill": [], - "BootstrapMailbox": [], - "BootstrapMailbox2": [], - "BootstrapMap": [], - "BootstrapMapFill": [], - "BootstrapMarkdown": [], - "BootstrapMarkdownFill": [], - "BootstrapMask": [], - "BootstrapMastodon": [], - "BootstrapMedium": [], - "BootstrapMegaphone": [], - "BootstrapMegaphoneFill": [], - "BootstrapMemory": [], - "BootstrapMenuApp": [], - "BootstrapMenuAppFill": [], - "BootstrapMenuButton": [], - "BootstrapMenuButtonFill": [], - "BootstrapMenuButtonWide": [], - "BootstrapMenuButtonWideFill": [], - "BootstrapMenuDown": [], - "BootstrapMenuUp": [], - "BootstrapMessenger": [], - "BootstrapMeta": [], - "BootstrapMic": [], - "BootstrapMicFill": [], - "BootstrapMicMute": [], - "BootstrapMicMuteFill": [], - "BootstrapMicrosoft": [], - "BootstrapMicrosoftTeams": [], - "BootstrapMinecart": [], - "BootstrapMinecartLoaded": [], - "BootstrapModem": [], - "BootstrapModemFill": [], - "BootstrapMoisture": [], - "BootstrapMoon": [], - "BootstrapMoonFill": [], - "BootstrapMoonStars": [], - "BootstrapMoonStarsFill": [], - "BootstrapMortarboard": [], - "BootstrapMortarboardFill": [], - "BootstrapMotherboard": [], - "BootstrapMotherboardFill": [], - "BootstrapMouse": [], - "BootstrapMouse2": [], - "BootstrapMouse2Fill": [], - "BootstrapMouse3": [], - "BootstrapMouse3Fill": [], - "BootstrapMouseFill": [], - "BootstrapMusicNote": [], - "BootstrapMusicNoteBeamed": [], - "BootstrapMusicNoteList": [], - "BootstrapMusicPlayer": [], - "BootstrapMusicPlayerFill": [], - "BootstrapNewspaper": [], - "BootstrapNintendoSwitch": [], - "BootstrapNodeMinus": [], - "BootstrapNodeMinusFill": [], - "BootstrapNodePlus": [], - "BootstrapNodePlusFill": [], - "BootstrapNut": [], - "BootstrapNutFill": [], - "BootstrapNvidia": [], - "BootstrapOctagon": [], - "BootstrapOctagonFill": [], - "BootstrapOctagonHalf": [], - "BootstrapOpticalAudio": [], - "BootstrapOpticalAudioFill": [], - "BootstrapOption": [], - "BootstrapOutlet": [], - "BootstrapPCircle": [], - "BootstrapPCircleFill": [], - "BootstrapPSquare": [], - "BootstrapPSquareFill": [], - "BootstrapPaintBucket": [], - "BootstrapPalette": [], - "BootstrapPalette2": [], - "BootstrapPaletteFill": [], - "BootstrapPaperclip": [], - "BootstrapParagraph": [], - "BootstrapPass": [], - "BootstrapPassFill": [], - "BootstrapPatchCheck": [], - "BootstrapPatchCheckFill": [], - "BootstrapPatchExclamation": [], - "BootstrapPatchExclamationFill": [], - "BootstrapPatchMinus": [], - "BootstrapPatchMinusFill": [], - "BootstrapPatchPlus": [], - "BootstrapPatchPlusFill": [], - "BootstrapPatchQuestion": [], - "BootstrapPatchQuestionFill": [], - "BootstrapPause": [], - "BootstrapPauseBtn": [], - "BootstrapPauseBtnFill": [], - "BootstrapPauseCircle": [], - "BootstrapPauseCircleFill": [], - "BootstrapPauseFill": [], - "BootstrapPaypal": [], - "BootstrapPc": [], - "BootstrapPcDisplay": [], - "BootstrapPcDisplayHorizontal": [], - "BootstrapPcHorizontal": [], - "BootstrapPciCard": [], - "BootstrapPeace": [], - "BootstrapPeaceFill": [], - "BootstrapPen": [], - "BootstrapPenFill": [], - "BootstrapPencil": [], - "BootstrapPencilFill": [], - "BootstrapPencilSquare": [], - "BootstrapPentagon": [], - "BootstrapPentagonFill": [], - "BootstrapPentagonHalf": [], - "BootstrapPeople": [], - "BootstrapPeopleFill": [], - "BootstrapPercent": [], - "BootstrapPerson": [], - "BootstrapPersonAdd": [], - "BootstrapPersonBadge": [], - "BootstrapPersonBadgeFill": [], - "BootstrapPersonBoundingBox": [], - "BootstrapPersonCheck": [], - "BootstrapPersonCheckFill": [], - "BootstrapPersonCircle": [], - "BootstrapPersonDash": [], - "BootstrapPersonDashFill": [], - "BootstrapPersonDown": [], - "BootstrapPersonExclamation": [], - "BootstrapPersonFill": [], - "BootstrapPersonFillAdd": [], - "BootstrapPersonFillCheck": [], - "BootstrapPersonFillDash": [], - "BootstrapPersonFillDown": [], - "BootstrapPersonFillExclamation": [], - "BootstrapPersonFillGear": [], - "BootstrapPersonFillLock": [], - "BootstrapPersonFillSlash": [], - "BootstrapPersonFillUp": [], - "BootstrapPersonFillX": [], - "BootstrapPersonGear": [], - "BootstrapPersonHeart": [], - "BootstrapPersonHearts": [], - "BootstrapPersonLinesFill": [], - "BootstrapPersonLock": [], - "BootstrapPersonPlus": [], - "BootstrapPersonPlusFill": [], - "BootstrapPersonRolodex": [], - "BootstrapPersonSlash": [], - "BootstrapPersonSquare": [], - "BootstrapPersonUp": [], - "BootstrapPersonVcard": [], - "BootstrapPersonVcardFill": [], - "BootstrapPersonVideo": [], - "BootstrapPersonVideo2": [], - "BootstrapPersonVideo3": [], - "BootstrapPersonWorkspace": [], - "BootstrapPersonX": [], - "BootstrapPersonXFill": [], - "BootstrapPhone": [], - "BootstrapPhoneFill": [], - "BootstrapPhoneFlip": [], - "BootstrapPhoneLandscape": [], - "BootstrapPhoneLandscapeFill": [], - "BootstrapPhoneVibrate": [], - "BootstrapPhoneVibrateFill": [], - "BootstrapPieChart": [], - "BootstrapPieChartFill": [], - "BootstrapPiggyBank": [], - "BootstrapPiggyBankFill": [], - "BootstrapPin": [], - "BootstrapPinAngle": [], - "BootstrapPinAngleFill": [], - "BootstrapPinFill": [], - "BootstrapPinMap": [], - "BootstrapPinMapFill": [], - "BootstrapPinterest": [], - "BootstrapPip": [], - "BootstrapPipFill": [], - "BootstrapPlay": [], - "BootstrapPlayBtn": [], - "BootstrapPlayBtnFill": [], - "BootstrapPlayCircle": [], - "BootstrapPlayCircleFill": [], - "BootstrapPlayFill": [], - "BootstrapPlaystation": [], - "BootstrapPlug": [], - "BootstrapPlugFill": [], - "BootstrapPlugin": [], - "BootstrapPlus": [], - "BootstrapPlusCircle": [], - "BootstrapPlusCircleDotted": [], - "BootstrapPlusCircleFill": [], - "BootstrapPlusLg": [], - "BootstrapPlusSlashMinus": [], - "BootstrapPlusSquare": [], - "BootstrapPlusSquareDotted": [], - "BootstrapPlusSquareFill": [], - "BootstrapPostage": [], - "BootstrapPostageFill": [], - "BootstrapPostageHeart": [], - "BootstrapPostageHeartFill": [], - "BootstrapPostcard": [], - "BootstrapPostcardFill": [], - "BootstrapPostcardHeart": [], - "BootstrapPostcardHeartFill": [], - "BootstrapPower": [], - "BootstrapPrescription": [], - "BootstrapPrescription2": [], - "BootstrapPrinter": [], - "BootstrapPrinterFill": [], - "BootstrapProjector": [], - "BootstrapProjectorFill": [], - "BootstrapPuzzle": [], - "BootstrapPuzzleFill": [], - "BootstrapQrCode": [], - "BootstrapQrCodeScan": [], - "BootstrapQuestion": [], - "BootstrapQuestionCircle": [], - "BootstrapQuestionCircleFill": [], - "BootstrapQuestionDiamond": [], - "BootstrapQuestionDiamondFill": [], - "BootstrapQuestionLg": [], - "BootstrapQuestionOctagon": [], - "BootstrapQuestionOctagonFill": [], - "BootstrapQuestionSquare": [], - "BootstrapQuestionSquareFill": [], - "BootstrapQuora": [], - "BootstrapQuote": [], - "BootstrapRCircle": [], - "BootstrapRCircleFill": [], - "BootstrapRSquare": [], - "BootstrapRSquareFill": [], - "BootstrapRadioactive": [], - "BootstrapRainbow": [], - "BootstrapReceipt": [], - "BootstrapReceiptCutoff": [], - "BootstrapReception0": [], - "BootstrapReception1": [], - "BootstrapReception2": [], - "BootstrapReception3": [], - "BootstrapReception4": [], - "BootstrapRecord": [], - "BootstrapRecord2": [], - "BootstrapRecord2Fill": [], - "BootstrapRecordBtn": [], - "BootstrapRecordBtnFill": [], - "BootstrapRecordCircle": [], - "BootstrapRecordCircleFill": [], - "BootstrapRecordFill": [], - "BootstrapRecycle": [], - "BootstrapReddit": [], - "BootstrapRegex": [], - "BootstrapRepeat": [], - "BootstrapRepeat1": [], - "BootstrapReply": [], - "BootstrapReplyAll": [], - "BootstrapReplyAllFill": [], - "BootstrapReplyFill": [], - "BootstrapRewind": [], - "BootstrapRewindBtn": [], - "BootstrapRewindBtnFill": [], - "BootstrapRewindCircle": [], - "BootstrapRewindCircleFill": [], - "BootstrapRewindFill": [], - "BootstrapRobot": [], - "BootstrapRocket": [], - "BootstrapRocketFill": [], - "BootstrapRocketTakeoff": [], - "BootstrapRocketTakeoffFill": [], - "BootstrapRouter": [], - "BootstrapRouterFill": [], - "BootstrapRss": [], - "BootstrapRssFill": [], - "BootstrapRulers": [], - "BootstrapSafe": [], - "BootstrapSafe2": [], - "BootstrapSafe2Fill": [], - "BootstrapSafeFill": [], - "BootstrapSave": [], - "BootstrapSave2": [], - "BootstrapSave2Fill": [], - "BootstrapSaveFill": [], - "BootstrapScissors": [], - "BootstrapScooter": [], - "BootstrapScrewdriver": [], - "BootstrapSdCard": [], - "BootstrapSdCardFill": [], - "BootstrapSearch": [], - "BootstrapSearchHeart": [], - "BootstrapSearchHeartFill": [], - "BootstrapSegmentedNav": [], - "BootstrapSend": [], - "BootstrapSendCheck": [], - "BootstrapSendCheckFill": [], - "BootstrapSendDash": [], - "BootstrapSendDashFill": [], - "BootstrapSendExclamation": [], - "BootstrapSendExclamationFill": [], - "BootstrapSendFill": [], - "BootstrapSendPlus": [], - "BootstrapSendPlusFill": [], - "BootstrapSendSlash": [], - "BootstrapSendSlashFill": [], - "BootstrapSendX": [], - "BootstrapSendXFill": [], - "BootstrapServer": [], - "BootstrapShare": [], - "BootstrapShareFill": [], - "BootstrapShield": [], - "BootstrapShieldCheck": [], - "BootstrapShieldExclamation": [], - "BootstrapShieldFill": [], - "BootstrapShieldFillCheck": [], - "BootstrapShieldFillExclamation": [], - "BootstrapShieldFillMinus": [], - "BootstrapShieldFillPlus": [], - "BootstrapShieldFillX": [], - "BootstrapShieldLock": [], - "BootstrapShieldLockFill": [], - "BootstrapShieldMinus": [], - "BootstrapShieldPlus": [], - "BootstrapShieldShaded": [], - "BootstrapShieldSlash": [], - "BootstrapShieldSlashFill": [], - "BootstrapShieldX": [], - "BootstrapShift": [], - "BootstrapShiftFill": [], - "BootstrapShop": [], - "BootstrapShopWindow": [], - "BootstrapShuffle": [], - "BootstrapSignDeadEnd": [], - "BootstrapSignDeadEndFill": [], - "BootstrapSignDoNotEnter": [], - "BootstrapSignDoNotEnterFill": [], - "BootstrapSignIntersection": [], - "BootstrapSignIntersectionFill": [], - "BootstrapSignIntersectionSide": [], - "BootstrapSignIntersectionSideFill": [], - "BootstrapSignIntersectionT": [], - "BootstrapSignIntersectionTFill": [], - "BootstrapSignIntersectionY": [], - "BootstrapSignIntersectionYFill": [], - "BootstrapSignMergeLeft": [], - "BootstrapSignMergeLeftFill": [], - "BootstrapSignMergeRight": [], - "BootstrapSignMergeRightFill": [], - "BootstrapSignNoLeftTurn": [], - "BootstrapSignNoLeftTurnFill": [], - "BootstrapSignNoParking": [], - "BootstrapSignNoParkingFill": [], - "BootstrapSignNoRightTurn": [], - "BootstrapSignNoRightTurnFill": [], - "BootstrapSignRailroad": [], - "BootstrapSignRailroadFill": [], - "BootstrapSignStop": [], - "BootstrapSignStopFill": [], - "BootstrapSignStopLights": [], - "BootstrapSignStopLightsFill": [], - "BootstrapSignTurnLeft": [], - "BootstrapSignTurnLeftFill": [], - "BootstrapSignTurnRight": [], - "BootstrapSignTurnRightFill": [], - "BootstrapSignTurnSlightLeft": [], - "BootstrapSignTurnSlightLeftFill": [], - "BootstrapSignTurnSlightRight": [], - "BootstrapSignTurnSlightRightFill": [], - "BootstrapSignYield": [], - "BootstrapSignYieldFill": [], - "BootstrapSignal": [], - "BootstrapSignpost": [], - "BootstrapSignpost2": [], - "BootstrapSignpost2Fill": [], - "BootstrapSignpostFill": [], - "BootstrapSignpostSplit": [], - "BootstrapSignpostSplitFill": [], - "BootstrapSim": [], - "BootstrapSimFill": [], - "BootstrapSinaWeibo": [], - "BootstrapSkipBackward": [], - "BootstrapSkipBackwardBtn": [], - "BootstrapSkipBackwardBtnFill": [], - "BootstrapSkipBackwardCircle": [], - "BootstrapSkipBackwardCircleFill": [], - "BootstrapSkipBackwardFill": [], - "BootstrapSkipEnd": [], - "BootstrapSkipEndBtn": [], - "BootstrapSkipEndBtnFill": [], - "BootstrapSkipEndCircle": [], - "BootstrapSkipEndCircleFill": [], - "BootstrapSkipEndFill": [], - "BootstrapSkipForward": [], - "BootstrapSkipForwardBtn": [], - "BootstrapSkipForwardBtnFill": [], - "BootstrapSkipForwardCircle": [], - "BootstrapSkipForwardCircleFill": [], - "BootstrapSkipForwardFill": [], - "BootstrapSkipStart": [], - "BootstrapSkipStartBtn": [], - "BootstrapSkipStartBtnFill": [], - "BootstrapSkipStartCircle": [], - "BootstrapSkipStartCircleFill": [], - "BootstrapSkipStartFill": [], - "BootstrapSkype": [], - "BootstrapSlack": [], - "BootstrapSlash": [], - "BootstrapSlashCircle": [], - "BootstrapSlashCircleFill": [], - "BootstrapSlashLg": [], - "BootstrapSlashSquare": [], - "BootstrapSlashSquareFill": [], - "BootstrapSliders": [], - "BootstrapSliders2": [], - "BootstrapSliders2Vertical": [], - "BootstrapSmartwatch": [], - "BootstrapSnapchat": [], - "BootstrapSnow": [], - "BootstrapSnow2": [], - "BootstrapSnow3": [], - "BootstrapSortAlphaDown": [], - "BootstrapSortAlphaDownAlt": [], - "BootstrapSortAlphaUp": [], - "BootstrapSortAlphaUpAlt": [], - "BootstrapSortDown": [], - "BootstrapSortDownAlt": [], - "BootstrapSortNumericDown": [], - "BootstrapSortNumericDownAlt": [], - "BootstrapSortNumericUp": [], - "BootstrapSortNumericUpAlt": [], - "BootstrapSortUp": [], - "BootstrapSortUpAlt": [], - "BootstrapSoundwave": [], - "BootstrapSpeaker": [], - "BootstrapSpeakerFill": [], - "BootstrapSpeedometer": [], - "BootstrapSpeedometer2": [], - "BootstrapSpellcheck": [], - "BootstrapSpotify": [], - "BootstrapSquare": [], - "BootstrapSquareFill": [], - "BootstrapSquareHalf": [], - "BootstrapStack": [], - "BootstrapStackOverflow": [], - "BootstrapStar": [], - "BootstrapStarFill": [], - "BootstrapStarHalf": [], - "BootstrapStars": [], - "BootstrapSteam": [], - "BootstrapStickies": [], - "BootstrapStickiesFill": [], - "BootstrapSticky": [], - "BootstrapStickyFill": [], - "BootstrapStop": [], - "BootstrapStopBtn": [], - "BootstrapStopBtnFill": [], - "BootstrapStopCircle": [], - "BootstrapStopCircleFill": [], - "BootstrapStopFill": [], - "BootstrapStoplights": [], - "BootstrapStoplightsFill": [], - "BootstrapStopwatch": [], - "BootstrapStopwatchFill": [], - "BootstrapStrava": [], - "BootstrapStripe": [], - "BootstrapSubscript": [], - "BootstrapSubtract": [], - "BootstrapSuitClub": [], - "BootstrapSuitClubFill": [], - "BootstrapSuitDiamond": [], - "BootstrapSuitDiamondFill": [], - "BootstrapSuitHeart": [], - "BootstrapSuitHeartFill": [], - "BootstrapSuitSpade": [], - "BootstrapSuitSpadeFill": [], - "BootstrapSun": [], - "BootstrapSunFill": [], - "BootstrapSunglasses": [], - "BootstrapSunrise": [], - "BootstrapSunriseFill": [], - "BootstrapSunset": [], - "BootstrapSunsetFill": [], - "BootstrapSuperscript": [], - "BootstrapSymmetryHorizontal": [], - "BootstrapSymmetryVertical": [], - "BootstrapTable": [], - "BootstrapTablet": [], - "BootstrapTabletFill": [], - "BootstrapTabletLandscape": [], - "BootstrapTabletLandscapeFill": [], - "BootstrapTag": [], - "BootstrapTagFill": [], - "BootstrapTags": [], - "BootstrapTagsFill": [], - "BootstrapTaxiFront": [], - "BootstrapTaxiFrontFill": [], - "BootstrapTelegram": [], - "BootstrapTelephone": [], - "BootstrapTelephoneFill": [], - "BootstrapTelephoneForward": [], - "BootstrapTelephoneForwardFill": [], - "BootstrapTelephoneInbound": [], - "BootstrapTelephoneInboundFill": [], - "BootstrapTelephoneMinus": [], - "BootstrapTelephoneMinusFill": [], - "BootstrapTelephoneOutbound": [], - "BootstrapTelephoneOutboundFill": [], - "BootstrapTelephonePlus": [], - "BootstrapTelephonePlusFill": [], - "BootstrapTelephoneX": [], - "BootstrapTelephoneXFill": [], - "BootstrapTencentQq": [], - "BootstrapTerminal": [], - "BootstrapTerminalDash": [], - "BootstrapTerminalFill": [], - "BootstrapTerminalPlus": [], - "BootstrapTerminalSplit": [], - "BootstrapTerminalX": [], - "BootstrapTextCenter": [], - "BootstrapTextIndentLeft": [], - "BootstrapTextIndentRight": [], - "BootstrapTextLeft": [], - "BootstrapTextParagraph": [], - "BootstrapTextRight": [], - "BootstrapTextWrap": [], - "BootstrapTextarea": [], - "BootstrapTextareaResize": [], - "BootstrapTextareaT": [], - "BootstrapThermometer": [], - "BootstrapThermometerHalf": [], - "BootstrapThermometerHigh": [], - "BootstrapThermometerLow": [], - "BootstrapThermometerSnow": [], - "BootstrapThermometerSun": [], - "BootstrapThreeDots": [], - "BootstrapThreeDotsVertical": [], - "BootstrapThunderbolt": [], - "BootstrapThunderboltFill": [], - "BootstrapTicket": [], - "BootstrapTicketDetailed": [], - "BootstrapTicketDetailedFill": [], - "BootstrapTicketFill": [], - "BootstrapTicketPerforated": [], - "BootstrapTicketPerforatedFill": [], - "BootstrapTiktok": [], - "BootstrapToggle2Off": [], - "BootstrapToggle2On": [], - "BootstrapToggleOff": [], - "BootstrapToggleOn": [], - "BootstrapToggles": [], - "BootstrapToggles2": [], - "BootstrapTools": [], - "BootstrapTornado": [], - "BootstrapTrainFreightFront": [], - "BootstrapTrainFreightFrontFill": [], - "BootstrapTrainFront": [], - "BootstrapTrainFrontFill": [], - "BootstrapTrainLightrailFront": [], - "BootstrapTrainLightrailFrontFill": [], - "BootstrapTranslate": [], - "BootstrapTrash": [], - "BootstrapTrash2": [], - "BootstrapTrash2Fill": [], - "BootstrapTrash3": [], - "BootstrapTrash3Fill": [], - "BootstrapTrashFill": [], - "BootstrapTree": [], - "BootstrapTreeFill": [], - "BootstrapTrello": [], - "BootstrapTriangle": [], - "BootstrapTriangleFill": [], - "BootstrapTriangleHalf": [], - "BootstrapTrophy": [], - "BootstrapTrophyFill": [], - "BootstrapTropicalStorm": [], - "BootstrapTruck": [], - "BootstrapTruckFlatbed": [], - "BootstrapTruckFront": [], - "BootstrapTruckFrontFill": [], - "BootstrapTsunami": [], - "BootstrapTv": [], - "BootstrapTvFill": [], - "BootstrapTwitch": [], - "BootstrapTwitter": [], - "BootstrapType": [], - "BootstrapTypeBold": [], - "BootstrapTypeH1": [], - "BootstrapTypeH2": [], - "BootstrapTypeH3": [], - "BootstrapTypeItalic": [], - "BootstrapTypeStrikethrough": [], - "BootstrapTypeUnderline": [], - "BootstrapUbuntu": [], - "BootstrapUiChecks": [], - "BootstrapUiChecksGrid": [], - "BootstrapUiRadios": [], - "BootstrapUiRadiosGrid": [], - "BootstrapUmbrella": [], - "BootstrapUmbrellaFill": [], - "BootstrapUnindent": [], - "BootstrapUnion": [], - "BootstrapUnity": [], - "BootstrapUniversalAccess": [], - "BootstrapUniversalAccessCircle": [], - "BootstrapUnlock": [], - "BootstrapUnlockFill": [], - "BootstrapUpc": [], - "BootstrapUpcScan": [], - "BootstrapUpload": [], - "BootstrapUsb": [], - "BootstrapUsbC": [], - "BootstrapUsbCFill": [], - "BootstrapUsbDrive": [], - "BootstrapUsbDriveFill": [], - "BootstrapUsbFill": [], - "BootstrapUsbMicro": [], - "BootstrapUsbMicroFill": [], - "BootstrapUsbMini": [], - "BootstrapUsbMiniFill": [], - "BootstrapUsbPlug": [], - "BootstrapUsbPlugFill": [], - "BootstrapUsbSymbol": [], - "BootstrapValentine": [], - "BootstrapValentine2": [], - "BootstrapVectorPen": [], - "BootstrapViewList": [], - "BootstrapViewStacked": [], - "BootstrapVimeo": [], - "BootstrapVinyl": [], - "BootstrapVinylFill": [], - "BootstrapVirus": [], - "BootstrapVirus2": [], - "BootstrapVoicemail": [], - "BootstrapVolumeDown": [], - "BootstrapVolumeDownFill": [], - "BootstrapVolumeMute": [], - "BootstrapVolumeMuteFill": [], - "BootstrapVolumeOff": [], - "BootstrapVolumeOffFill": [], - "BootstrapVolumeUp": [], - "BootstrapVolumeUpFill": [], - "BootstrapVr": [], - "BootstrapWallet": [], - "BootstrapWallet2": [], - "BootstrapWalletFill": [], - "BootstrapWatch": [], - "BootstrapWater": [], - "BootstrapWebcam": [], - "BootstrapWebcamFill": [], - "BootstrapWechat": [], - "BootstrapWhatsapp": [], - "BootstrapWifi": [], - "BootstrapWifi1": [], - "BootstrapWifi2": [], - "BootstrapWifiOff": [], - "BootstrapWikipedia": [], - "BootstrapWind": [], - "BootstrapWindow": [], - "BootstrapWindowDash": [], - "BootstrapWindowDesktop": [], - "BootstrapWindowDock": [], - "BootstrapWindowFullscreen": [], - "BootstrapWindowPlus": [], - "BootstrapWindowSidebar": [], - "BootstrapWindowSplit": [], - "BootstrapWindowStack": [], - "BootstrapWindowX": [], - "BootstrapWindows": [], - "BootstrapWordpress": [], - "BootstrapWrench": [], - "BootstrapWrenchAdjustable": [], - "BootstrapWrenchAdjustableCircle": [], - "BootstrapWrenchAdjustableCircleFill": [], - "BootstrapX": [], - "BootstrapXCircle": [], - "BootstrapXCircleFill": [], - "BootstrapXDiamond": [], - "BootstrapXDiamondFill": [], - "BootstrapXLg": [], - "BootstrapXOctagon": [], - "BootstrapXOctagonFill": [], - "BootstrapXSquare": [], - "BootstrapXSquareFill": [], - "BootstrapXbox": [], - "BootstrapYelp": [], - "BootstrapYinYang": [], - "BootstrapYoutube": [], - "BootstrapZoomIn": [], - "BootstrapZoomOut": [], - "ExtraGooglePlay": [], - "FeatherActivity": [], - "FeatherAirplay": [], - "FeatherAlertCircle": [], - "FeatherAlertOctagon": [], - "FeatherAlertTriangle": [], - "FeatherAlignCenter": [], - "FeatherAlignJustify": [], - "FeatherAlignLeft": [], - "FeatherAlignRight": [], - "FeatherAnchor": [], - "FeatherAperture": [], - "FeatherArchive": [], - "FeatherArrowDown": [], - "FeatherArrowDownCircle": [], - "FeatherArrowDownLeft": [], - "FeatherArrowDownRight": [], - "FeatherArrowLeft": [], - "FeatherArrowLeftCircle": [], - "FeatherArrowRight": [], - "FeatherArrowRightCircle": [], - "FeatherArrowUp": [], - "FeatherArrowUpCircle": [], - "FeatherArrowUpLeft": [], - "FeatherArrowUpRight": [], - "FeatherAtSign": [], - "FeatherAward": [], - "FeatherBarChart": [], - "FeatherBarChart2": [], - "FeatherBattery": [], - "FeatherBatteryCharging": [], - "FeatherBell": [], - "FeatherBellOff": [], - "FeatherBluetooth": [], - "FeatherBold": [], - "FeatherBook": [], - "FeatherBookOpen": [], - "FeatherBookmark": [], - "FeatherBox": [], - "FeatherBriefcase": [], - "FeatherCalendar": [], - "FeatherCamera": [], - "FeatherCameraOff": [], - "FeatherCast": [], - "FeatherCheck": [], - "FeatherCheckCircle": [], - "FeatherCheckSquare": [], - "FeatherChevronDown": [], - "FeatherChevronLeft": [], - "FeatherChevronRight": [], - "FeatherChevronUp": [], - "FeatherChevronsDown": [], - "FeatherChevronsLeft": [], - "FeatherChevronsRight": [], - "FeatherChevronsUp": [], - "FeatherChrome": [], - "FeatherCircle": [], - "FeatherClipboard": [], - "FeatherClock": [], - "FeatherCloud": [], - "FeatherCloudDrizzle": [], - "FeatherCloudLightning": [], - "FeatherCloudOff": [], - "FeatherCloudRain": [], - "FeatherCloudSnow": [], - "FeatherCode": [], - "FeatherCodepen": [], - "FeatherCodesandbox": [], - "FeatherCoffee": [], - "FeatherColumns": [], - "FeatherCommand": [], - "FeatherCompass": [], - "FeatherCopy": [], - "FeatherCornerDownLeft": [], - "FeatherCornerDownRight": [], - "FeatherCornerLeftDown": [], - "FeatherCornerLeftUp": [], - "FeatherCornerRightDown": [], - "FeatherCornerRightUp": [], - "FeatherCornerUpLeft": [], - "FeatherCornerUpRight": [], - "FeatherCpu": [], - "FeatherCreditCard": [], - "FeatherCrop": [], - "FeatherCrosshair": [], - "FeatherDatabase": [], - "FeatherDelete": [], - "FeatherDisc": [], - "FeatherDivide": [], - "FeatherDivideCircle": [], - "FeatherDivideSquare": [], - "FeatherDollarSign": [], - "FeatherDownload": [], - "FeatherDownloadCloud": [], - "FeatherDribbble": [], - "FeatherDroplet": [], - "FeatherEdit": [], - "FeatherEdit2": [], - "FeatherEdit3": [], - "FeatherExternalLink": [], - "FeatherEye": [], - "FeatherEyeOff": [], - "FeatherFacebook": [], - "FeatherFastForward": [], - "FeatherFeather": [], - "FeatherFigma": [], - "FeatherFile": [], - "FeatherFileMinus": [], - "FeatherFilePlus": [], - "FeatherFileText": [], - "FeatherFilm": [], - "FeatherFilter": [], - "FeatherFlag": [], - "FeatherFolder": [], - "FeatherFolderMinus": [], - "FeatherFolderPlus": [], - "FeatherFramer": [], - "FeatherFrown": [], - "FeatherGift": [], - "FeatherGitBranch": [], - "FeatherGitCommit": [], - "FeatherGitMerge": [], - "FeatherGitPullRequest": [], - "FeatherGithub": [], - "FeatherGitlab": [], - "FeatherGlobe": [], - "FeatherGrid": [], - "FeatherHardDrive": [], - "FeatherHash": [], - "FeatherHeadphones": [], - "FeatherHeart": [], - "FeatherHelpCircle": [], - "FeatherHexagon": [], - "FeatherHome": [], - "FeatherImage": [], - "FeatherInbox": [], - "FeatherInfo": [], - "FeatherInstagram": [], - "FeatherItalic": [], - "FeatherKey": [], - "FeatherLayers": [], - "FeatherLayout": [], - "FeatherLifeBuoy": [], - "FeatherLink": [], - "FeatherLink2": [], - "FeatherLinkedin": [], - "FeatherList": [], - "FeatherLoader": [], - "FeatherLock": [], - "FeatherLogIn": [], - "FeatherLogOut": [], - "FeatherMail": [], - "FeatherMap": [], - "FeatherMapPin": [], - "FeatherMaximize": [], - "FeatherMaximize2": [], - "FeatherMeh": [], - "FeatherMenu": [], - "FeatherMessageCircle": [], - "FeatherMessageSquare": [], - "FeatherMic": [], - "FeatherMicOff": [], - "FeatherMinimize": [], - "FeatherMinimize2": [], - "FeatherMinus": [], - "FeatherMinusCircle": [], - "FeatherMinusSquare": [], - "FeatherMonitor": [], - "FeatherMoon": [], - "FeatherMoreHorizontal": [], - "FeatherMoreVertical": [], - "FeatherMousePointer": [], - "FeatherMove": [], - "FeatherMusic": [], - "FeatherNavigation": [], - "FeatherNavigation2": [], - "FeatherOctagon": [], - "FeatherPackage": [], - "FeatherPaperclip": [], - "FeatherPause": [], - "FeatherPauseCircle": [], - "FeatherPenTool": [], - "FeatherPercent": [], - "FeatherPhone": [], - "FeatherPhoneCall": [], - "FeatherPhoneForwarded": [], - "FeatherPhoneIncoming": [], - "FeatherPhoneMissed": [], - "FeatherPhoneOff": [], - "FeatherPhoneOutgoing": [], - "FeatherPieChart": [], - "FeatherPlay": [], - "FeatherPlayCircle": [], - "FeatherPlus": [], - "FeatherPlusCircle": [], - "FeatherPlusSquare": [], - "FeatherPocket": [], - "FeatherPower": [], - "FeatherPrinter": [], - "FeatherRadio": [], - "FeatherRefreshCcw": [], - "FeatherRefreshCw": [], - "FeatherRepeat": [], - "FeatherRewind": [], - "FeatherRotateCcw": [], - "FeatherRotateCw": [], - "FeatherRss": [], - "FeatherSave": [], - "FeatherScissors": [], - "FeatherSearch": [], - "FeatherSend": [], - "FeatherServer": [], - "FeatherSettings": [], - "FeatherShare": [], - "FeatherShare2": [], - "FeatherShield": [], - "FeatherShieldOff": [], - "FeatherShoppingBag": [], - "FeatherShoppingCart": [], - "FeatherShuffle": [], - "FeatherSidebar": [], - "FeatherSkipBack": [], - "FeatherSkipForward": [], - "FeatherSlack": [], - "FeatherSlash": [], - "FeatherSliders": [], - "FeatherSmartphone": [], - "FeatherSmile": [], - "FeatherSpeaker": [], - "FeatherSquare": [], - "FeatherStar": [], - "FeatherStopCircle": [], - "FeatherSun": [], - "FeatherSunrise": [], - "FeatherSunset": [], - "FeatherTable": [], - "FeatherTablet": [], - "FeatherTag": [], - "FeatherTarget": [], - "FeatherTerminal": [], - "FeatherThermometer": [], - "FeatherThumbsDown": [], - "FeatherThumbsUp": [], - "FeatherToggleLeft": [], - "FeatherToggleRight": [], - "FeatherTool": [], - "FeatherTrash": [], - "FeatherTrash2": [], - "FeatherTrello": [], - "FeatherTrendingDown": [], - "FeatherTrendingUp": [], - "FeatherTriangle": [], - "FeatherTruck": [], - "FeatherTv": [], - "FeatherTwitch": [], - "FeatherTwitter": [], - "FeatherType": [], - "FeatherUmbrella": [], - "FeatherUnderline": [], - "FeatherUnlock": [], - "FeatherUpload": [], - "FeatherUploadCloud": [], - "FeatherUser": [], - "FeatherUserCheck": [], - "FeatherUserMinus": [], - "FeatherUserPlus": [], - "FeatherUserX": [], - "FeatherUsers": [], - "FeatherVideo": [], - "FeatherVideoOff": [], - "FeatherVoicemail": [], - "FeatherVolume": [], - "FeatherVolume1": [], - "FeatherVolume2": [], - "FeatherVolumeX": [], - "FeatherWatch": [], - "FeatherWifi": [], - "FeatherWifiOff": [], - "FeatherWind": [], - "FeatherX": [], - "FeatherXCircle": [], - "FeatherXOctagon": [], - "FeatherXSquare": [], - "FeatherYoutube": [], - "FeatherZap": [], - "FeatherZapOff": [], - "FeatherZoomIn": [], - "FeatherZoomOut": [], - "FontAwesomeRegularAddressBook": [], - "FontAwesomeRegularAddressCard": [], - "FontAwesomeRegularBell": [], - "FontAwesomeRegularBellSlash": [], - "FontAwesomeRegularBookmark": [], - "FontAwesomeRegularBuilding": [], - "FontAwesomeRegularCalendar": [], - "FontAwesomeRegularCalendarCheck": [], - "FontAwesomeRegularCalendarDays": [], - "FontAwesomeRegularCalendarMinus": [], - "FontAwesomeRegularCalendarPlus": [], - "FontAwesomeRegularCalendarXmark": [], - "FontAwesomeRegularChartBar": [], - "FontAwesomeRegularChessBishop": [], - "FontAwesomeRegularChessKing": [], - "FontAwesomeRegularChessKnight": [], - "FontAwesomeRegularChessPawn": [], - "FontAwesomeRegularChessQueen": [], - "FontAwesomeRegularChessRook": [], - "FontAwesomeRegularCircle": [], - "FontAwesomeRegularCircleCheck": [], - "FontAwesomeRegularCircleDot": [], - "FontAwesomeRegularCircleDown": [], - "FontAwesomeRegularCircleLeft": [], - "FontAwesomeRegularCirclePause": [], - "FontAwesomeRegularCirclePlay": [], - "FontAwesomeRegularCircleQuestion": [], - "FontAwesomeRegularCircleRight": [], - "FontAwesomeRegularCircleStop": [], - "FontAwesomeRegularCircleUp": [], - "FontAwesomeRegularCircleUser": [], - "FontAwesomeRegularCircleXmark": [], - "FontAwesomeRegularClipboard": [], - "FontAwesomeRegularClock": [], - "FontAwesomeRegularClone": [], - "FontAwesomeRegularClosedCaptioning": [], - "FontAwesomeRegularComment": [], - "FontAwesomeRegularCommentDots": [], - "FontAwesomeRegularComments": [], - "FontAwesomeRegularCompass": [], - "FontAwesomeRegularCopy": [], - "FontAwesomeRegularCopyright": [], - "FontAwesomeRegularCreditCard": [], - "FontAwesomeRegularEnvelope": [], - "FontAwesomeRegularEnvelopeOpen": [], - "FontAwesomeRegularEye": [], - "FontAwesomeRegularEyeSlash": [], - "FontAwesomeRegularFaceAngry": [], - "FontAwesomeRegularFaceDizzy": [], - "FontAwesomeRegularFaceFlushed": [], - "FontAwesomeRegularFaceFrown": [], - "FontAwesomeRegularFaceFrownOpen": [], - "FontAwesomeRegularFaceGrimace": [], - "FontAwesomeRegularFaceGrin": [], - "FontAwesomeRegularFaceGrinBeam": [], - "FontAwesomeRegularFaceGrinBeamSweat": [], - "FontAwesomeRegularFaceGrinHearts": [], - "FontAwesomeRegularFaceGrinSquint": [], - "FontAwesomeRegularFaceGrinSquintTears": [], - "FontAwesomeRegularFaceGrinStars": [], - "FontAwesomeRegularFaceGrinTears": [], - "FontAwesomeRegularFaceGrinTongue": [], - "FontAwesomeRegularFaceGrinTongueSquint": [], - "FontAwesomeRegularFaceGrinTongueWink": [], - "FontAwesomeRegularFaceGrinWide": [], - "FontAwesomeRegularFaceGrinWink": [], - "FontAwesomeRegularFaceKiss": [], - "FontAwesomeRegularFaceKissBeam": [], - "FontAwesomeRegularFaceKissWinkHeart": [], - "FontAwesomeRegularFaceLaugh": [], - "FontAwesomeRegularFaceLaughBeam": [], - "FontAwesomeRegularFaceLaughSquint": [], - "FontAwesomeRegularFaceLaughWink": [], - "FontAwesomeRegularFaceMeh": [], - "FontAwesomeRegularFaceMehBlank": [], - "FontAwesomeRegularFaceRollingEyes": [], - "FontAwesomeRegularFaceSadCry": [], - "FontAwesomeRegularFaceSadTear": [], - "FontAwesomeRegularFaceSmile": [], - "FontAwesomeRegularFaceSmileBeam": [], - "FontAwesomeRegularFaceSmileWink": [], - "FontAwesomeRegularFaceSurprise": [], - "FontAwesomeRegularFaceTired": [], - "FontAwesomeRegularFile": [], - "FontAwesomeRegularFileAudio": [], - "FontAwesomeRegularFileCode": [], - "FontAwesomeRegularFileExcel": [], - "FontAwesomeRegularFileImage": [], - "FontAwesomeRegularFileLines": [], - "FontAwesomeRegularFilePdf": [], - "FontAwesomeRegularFilePowerpoint": [], - "FontAwesomeRegularFileVideo": [], - "FontAwesomeRegularFileWord": [], - "FontAwesomeRegularFileZipper": [], - "FontAwesomeRegularFlag": [], - "FontAwesomeRegularFloppyDisk": [], - "FontAwesomeRegularFolder": [], - "FontAwesomeRegularFolderClosed": [], - "FontAwesomeRegularFolderOpen": [], - "FontAwesomeRegularFontAwesome": [], - "FontAwesomeRegularFutbol": [], - "FontAwesomeRegularGem": [], - "FontAwesomeRegularHand": [], - "FontAwesomeRegularHandBackFist": [], - "FontAwesomeRegularHandLizard": [], - "FontAwesomeRegularHandPeace": [], - "FontAwesomeRegularHandPointDown": [], - "FontAwesomeRegularHandPointLeft": [], - "FontAwesomeRegularHandPointRight": [], - "FontAwesomeRegularHandPointUp": [], - "FontAwesomeRegularHandPointer": [], - "FontAwesomeRegularHandScissors": [], - "FontAwesomeRegularHandSpock": [], - "FontAwesomeRegularHandshake": [], - "FontAwesomeRegularHardDrive": [], - "FontAwesomeRegularHeart": [], - "FontAwesomeRegularHospital": [], - "FontAwesomeRegularHourglass": [], - "FontAwesomeRegularIdBadge": [], - "FontAwesomeRegularIdCard": [], - "FontAwesomeRegularImage": [], - "FontAwesomeRegularImages": [], - "FontAwesomeRegularKeyboard": [], - "FontAwesomeRegularLemon": [], - "FontAwesomeRegularLifeRing": [], - "FontAwesomeRegularLightbulb": [], - "FontAwesomeRegularMap": [], - "FontAwesomeRegularMessage": [], - "FontAwesomeRegularMoneyBill1": [], - "FontAwesomeRegularMoon": [], - "FontAwesomeRegularNewspaper": [], - "FontAwesomeRegularNoteSticky": [], - "FontAwesomeRegularObjectGroup": [], - "FontAwesomeRegularObjectUngroup": [], - "FontAwesomeRegularPaperPlane": [], - "FontAwesomeRegularPaste": [], - "FontAwesomeRegularPenToSquare": [], - "FontAwesomeRegularRectangleList": [], - "FontAwesomeRegularRectangleXmark": [], - "FontAwesomeRegularRegistered": [], - "FontAwesomeRegularShareFromSquare": [], - "FontAwesomeRegularSnowflake": [], - "FontAwesomeRegularSquare": [], - "FontAwesomeRegularSquareCaretDown": [], - "FontAwesomeRegularSquareCaretLeft": [], - "FontAwesomeRegularSquareCaretRight": [], - "FontAwesomeRegularSquareCaretUp": [], - "FontAwesomeRegularSquareCheck": [], - "FontAwesomeRegularSquareFull": [], - "FontAwesomeRegularSquareMinus": [], - "FontAwesomeRegularSquarePlus": [], - "FontAwesomeRegularStar": [], - "FontAwesomeRegularStarHalf": [], - "FontAwesomeRegularStarHalfStroke": [], - "FontAwesomeRegularSun": [], - "FontAwesomeRegularThumbsDown": [], - "FontAwesomeRegularThumbsUp": [], - "FontAwesomeRegularTrashCan": [], - "FontAwesomeRegularUser": [], - "FontAwesomeRegularWindowMaximize": [], - "FontAwesomeRegularWindowMinimize": [], - "FontAwesomeRegularWindowRestore": [], - "FontAwesomeSolid0": [], - "FontAwesomeSolid1": [], - "FontAwesomeSolid2": [], - "FontAwesomeSolid3": [], - "FontAwesomeSolid4": [], - "FontAwesomeSolid5": [], - "FontAwesomeSolid6": [], - "FontAwesomeSolid7": [], - "FontAwesomeSolid8": [], - "FontAwesomeSolid9": [], - "FontAwesomeSolidA": [], - "FontAwesomeSolidAddressBook": [], - "FontAwesomeSolidAddressCard": [], - "FontAwesomeSolidAlignCenter": [], - "FontAwesomeSolidAlignJustify": [], - "FontAwesomeSolidAlignLeft": [], - "FontAwesomeSolidAlignRight": [], - "FontAwesomeSolidAnchor": [], - "FontAwesomeSolidAnchorCircleCheck": [], - "FontAwesomeSolidAnchorCircleExclamation": [], - "FontAwesomeSolidAnchorCircleXmark": [], - "FontAwesomeSolidAnchorLock": [], - "FontAwesomeSolidAngleDown": [], - "FontAwesomeSolidAngleLeft": [], - "FontAwesomeSolidAngleRight": [], - "FontAwesomeSolidAngleUp": [], - "FontAwesomeSolidAnglesDown": [], - "FontAwesomeSolidAnglesLeft": [], - "FontAwesomeSolidAnglesRight": [], - "FontAwesomeSolidAnglesUp": [], - "FontAwesomeSolidAnkh": [], - "FontAwesomeSolidAppleWhole": [], - "FontAwesomeSolidArchway": [], - "FontAwesomeSolidArrowDown": [], - "FontAwesomeSolidArrowDown19": [], - "FontAwesomeSolidArrowDown91": [], - "FontAwesomeSolidArrowDownAZ": [], - "FontAwesomeSolidArrowDownLong": [], - "FontAwesomeSolidArrowDownShortWide": [], - "FontAwesomeSolidArrowDownUpAcrossLine": [], - "FontAwesomeSolidArrowDownUpLock": [], - "FontAwesomeSolidArrowDownWideShort": [], - "FontAwesomeSolidArrowDownZA": [], - "FontAwesomeSolidArrowLeft": [], - "FontAwesomeSolidArrowLeftLong": [], - "FontAwesomeSolidArrowPointer": [], - "FontAwesomeSolidArrowRight": [], - "FontAwesomeSolidArrowRightArrowLeft": [], - "FontAwesomeSolidArrowRightFromBracket": [], - "FontAwesomeSolidArrowRightLong": [], - "FontAwesomeSolidArrowRightToBracket": [], - "FontAwesomeSolidArrowRightToCity": [], - "FontAwesomeSolidArrowRotateLeft": [], - "FontAwesomeSolidArrowRotateRight": [], - "FontAwesomeSolidArrowTrendDown": [], - "FontAwesomeSolidArrowTrendUp": [], - "FontAwesomeSolidArrowTurnDown": [], - "FontAwesomeSolidArrowTurnUp": [], - "FontAwesomeSolidArrowUp": [], - "FontAwesomeSolidArrowUp19": [], - "FontAwesomeSolidArrowUp91": [], - "FontAwesomeSolidArrowUpAZ": [], - "FontAwesomeSolidArrowUpFromBracket": [], - "FontAwesomeSolidArrowUpFromGroundWater": [], - "FontAwesomeSolidArrowUpFromWaterPump": [], - "FontAwesomeSolidArrowUpLong": [], - "FontAwesomeSolidArrowUpRightDots": [], - "FontAwesomeSolidArrowUpRightFromSquare": [], - "FontAwesomeSolidArrowUpShortWide": [], - "FontAwesomeSolidArrowUpWideShort": [], - "FontAwesomeSolidArrowUpZA": [], - "FontAwesomeSolidArrowsDownToLine": [], - "FontAwesomeSolidArrowsDownToPeople": [], - "FontAwesomeSolidArrowsLeftRight": [], - "FontAwesomeSolidArrowsLeftRightToLine": [], - "FontAwesomeSolidArrowsRotate": [], - "FontAwesomeSolidArrowsSpin": [], - "FontAwesomeSolidArrowsSplitUpAndLeft": [], - "FontAwesomeSolidArrowsToCircle": [], - "FontAwesomeSolidArrowsToDot": [], - "FontAwesomeSolidArrowsToEye": [], - "FontAwesomeSolidArrowsTurnRight": [], - "FontAwesomeSolidArrowsTurnToDots": [], - "FontAwesomeSolidArrowsUpDown": [], - "FontAwesomeSolidArrowsUpDownLeftRight": [], - "FontAwesomeSolidArrowsUpToLine": [], - "FontAwesomeSolidAsterisk": [], - "FontAwesomeSolidAt": [], - "FontAwesomeSolidAtom": [], - "FontAwesomeSolidAudioDescription": [], - "FontAwesomeSolidAustralSign": [], - "FontAwesomeSolidAward": [], - "FontAwesomeSolidB": [], - "FontAwesomeSolidBaby": [], - "FontAwesomeSolidBabyCarriage": [], - "FontAwesomeSolidBackward": [], - "FontAwesomeSolidBackwardFast": [], - "FontAwesomeSolidBackwardStep": [], - "FontAwesomeSolidBacon": [], - "FontAwesomeSolidBacteria": [], - "FontAwesomeSolidBacterium": [], - "FontAwesomeSolidBagShopping": [], - "FontAwesomeSolidBahai": [], - "FontAwesomeSolidBahtSign": [], - "FontAwesomeSolidBan": [], - "FontAwesomeSolidBanSmoking": [], - "FontAwesomeSolidBandage": [], - "FontAwesomeSolidBarcode": [], - "FontAwesomeSolidBars": [], - "FontAwesomeSolidBarsProgress": [], - "FontAwesomeSolidBarsStaggered": [], - "FontAwesomeSolidBaseball": [], - "FontAwesomeSolidBaseballBatBall": [], - "FontAwesomeSolidBasketShopping": [], - "FontAwesomeSolidBasketball": [], - "FontAwesomeSolidBath": [], - "FontAwesomeSolidBatteryEmpty": [], - "FontAwesomeSolidBatteryFull": [], - "FontAwesomeSolidBatteryHalf": [], - "FontAwesomeSolidBatteryQuarter": [], - "FontAwesomeSolidBatteryThreeQuarters": [], - "FontAwesomeSolidBed": [], - "FontAwesomeSolidBedPulse": [], - "FontAwesomeSolidBeerMugEmpty": [], - "FontAwesomeSolidBell": [], - "FontAwesomeSolidBellConcierge": [], - "FontAwesomeSolidBellSlash": [], - "FontAwesomeSolidBezierCurve": [], - "FontAwesomeSolidBicycle": [], - "FontAwesomeSolidBinoculars": [], - "FontAwesomeSolidBiohazard": [], - "FontAwesomeSolidBitcoinSign": [], - "FontAwesomeSolidBlender": [], - "FontAwesomeSolidBlenderPhone": [], - "FontAwesomeSolidBlog": [], - "FontAwesomeSolidBold": [], - "FontAwesomeSolidBolt": [], - "FontAwesomeSolidBoltLightning": [], - "FontAwesomeSolidBomb": [], - "FontAwesomeSolidBone": [], - "FontAwesomeSolidBong": [], - "FontAwesomeSolidBook": [], - "FontAwesomeSolidBookAtlas": [], - "FontAwesomeSolidBookBible": [], - "FontAwesomeSolidBookBookmark": [], - "FontAwesomeSolidBookJournalWhills": [], - "FontAwesomeSolidBookMedical": [], - "FontAwesomeSolidBookOpen": [], - "FontAwesomeSolidBookOpenReader": [], - "FontAwesomeSolidBookQuran": [], - "FontAwesomeSolidBookSkull": [], - "FontAwesomeSolidBookmark": [], - "FontAwesomeSolidBorderAll": [], - "FontAwesomeSolidBorderNone": [], - "FontAwesomeSolidBorderTopLeft": [], - "FontAwesomeSolidBoreHole": [], - "FontAwesomeSolidBottleDroplet": [], - "FontAwesomeSolidBottleWater": [], - "FontAwesomeSolidBowlFood": [], - "FontAwesomeSolidBowlRice": [], - "FontAwesomeSolidBowlingBall": [], - "FontAwesomeSolidBox": [], - "FontAwesomeSolidBoxArchive": [], - "FontAwesomeSolidBoxOpen": [], - "FontAwesomeSolidBoxTissue": [], - "FontAwesomeSolidBoxesPacking": [], - "FontAwesomeSolidBoxesStacked": [], - "FontAwesomeSolidBraille": [], - "FontAwesomeSolidBrain": [], - "FontAwesomeSolidBrazilianRealSign": [], - "FontAwesomeSolidBreadSlice": [], - "FontAwesomeSolidBridge": [], - "FontAwesomeSolidBridgeCircleCheck": [], - "FontAwesomeSolidBridgeCircleExclamation": [], - "FontAwesomeSolidBridgeCircleXmark": [], - "FontAwesomeSolidBridgeLock": [], - "FontAwesomeSolidBridgeWater": [], - "FontAwesomeSolidBriefcase": [], - "FontAwesomeSolidBriefcaseMedical": [], - "FontAwesomeSolidBroom": [], - "FontAwesomeSolidBroomBall": [], - "FontAwesomeSolidBrush": [], - "FontAwesomeSolidBucket": [], - "FontAwesomeSolidBug": [], - "FontAwesomeSolidBugSlash": [], - "FontAwesomeSolidBugs": [], - "FontAwesomeSolidBuilding": [], - "FontAwesomeSolidBuildingCircleArrowRight": [], - "FontAwesomeSolidBuildingCircleCheck": [], - "FontAwesomeSolidBuildingCircleExclamation": [], - "FontAwesomeSolidBuildingCircleXmark": [], - "FontAwesomeSolidBuildingColumns": [], - "FontAwesomeSolidBuildingFlag": [], - "FontAwesomeSolidBuildingLock": [], - "FontAwesomeSolidBuildingNgo": [], - "FontAwesomeSolidBuildingShield": [], - "FontAwesomeSolidBuildingUn": [], - "FontAwesomeSolidBuildingUser": [], - "FontAwesomeSolidBuildingWheat": [], - "FontAwesomeSolidBullhorn": [], - "FontAwesomeSolidBullseye": [], - "FontAwesomeSolidBurger": [], - "FontAwesomeSolidBurst": [], - "FontAwesomeSolidBus": [], - "FontAwesomeSolidBusSimple": [], - "FontAwesomeSolidBusinessTime": [], - "FontAwesomeSolidC": [], - "FontAwesomeSolidCakeCandles": [], - "FontAwesomeSolidCalculator": [], - "FontAwesomeSolidCalendar": [], - "FontAwesomeSolidCalendarCheck": [], - "FontAwesomeSolidCalendarDay": [], - "FontAwesomeSolidCalendarDays": [], - "FontAwesomeSolidCalendarMinus": [], - "FontAwesomeSolidCalendarPlus": [], - "FontAwesomeSolidCalendarWeek": [], - "FontAwesomeSolidCalendarXmark": [], - "FontAwesomeSolidCamera": [], - "FontAwesomeSolidCameraRetro": [], - "FontAwesomeSolidCameraRotate": [], - "FontAwesomeSolidCampground": [], - "FontAwesomeSolidCandyCane": [], - "FontAwesomeSolidCannabis": [], - "FontAwesomeSolidCapsules": [], - "FontAwesomeSolidCar": [], - "FontAwesomeSolidCarBattery": [], - "FontAwesomeSolidCarBurst": [], - "FontAwesomeSolidCarCrash": [], - "FontAwesomeSolidCarOn": [], - "FontAwesomeSolidCarRear": [], - "FontAwesomeSolidCarSide": [], - "FontAwesomeSolidCarTunnel": [], - "FontAwesomeSolidCaravan": [], - "FontAwesomeSolidCaretDown": [], - "FontAwesomeSolidCaretLeft": [], - "FontAwesomeSolidCaretRight": [], - "FontAwesomeSolidCaretUp": [], - "FontAwesomeSolidCarrot": [], - "FontAwesomeSolidCartArrowDown": [], - "FontAwesomeSolidCartFlatbed": [], - "FontAwesomeSolidCartFlatbedSuitcase": [], - "FontAwesomeSolidCartPlus": [], - "FontAwesomeSolidCartShopping": [], - "FontAwesomeSolidCashRegister": [], - "FontAwesomeSolidCat": [], - "FontAwesomeSolidCediSign": [], - "FontAwesomeSolidCentSign": [], - "FontAwesomeSolidCertificate": [], - "FontAwesomeSolidChair": [], - "FontAwesomeSolidChalkboard": [], - "FontAwesomeSolidChalkboardUser": [], - "FontAwesomeSolidChampagneGlasses": [], - "FontAwesomeSolidChargingStation": [], - "FontAwesomeSolidChartArea": [], - "FontAwesomeSolidChartBar": [], - "FontAwesomeSolidChartColumn": [], - "FontAwesomeSolidChartGantt": [], - "FontAwesomeSolidChartLine": [], - "FontAwesomeSolidChartPie": [], - "FontAwesomeSolidChartSimple": [], - "FontAwesomeSolidCheck": [], - "FontAwesomeSolidCheckDouble": [], - "FontAwesomeSolidCheckToSlot": [], - "FontAwesomeSolidCheese": [], - "FontAwesomeSolidChess": [], - "FontAwesomeSolidChessBishop": [], - "FontAwesomeSolidChessBoard": [], - "FontAwesomeSolidChessKing": [], - "FontAwesomeSolidChessKnight": [], - "FontAwesomeSolidChessPawn": [], - "FontAwesomeSolidChessQueen": [], - "FontAwesomeSolidChessRook": [], - "FontAwesomeSolidChevronDown": [], - "FontAwesomeSolidChevronLeft": [], - "FontAwesomeSolidChevronRight": [], - "FontAwesomeSolidChevronUp": [], - "FontAwesomeSolidChild": [], - "FontAwesomeSolidChildDress": [], - "FontAwesomeSolidChildReaching": [], - "FontAwesomeSolidChildRifle": [], - "FontAwesomeSolidChildren": [], - "FontAwesomeSolidChurch": [], - "FontAwesomeSolidCircle": [], - "FontAwesomeSolidCircleArrowDown": [], - "FontAwesomeSolidCircleArrowLeft": [], - "FontAwesomeSolidCircleArrowRight": [], - "FontAwesomeSolidCircleArrowUp": [], - "FontAwesomeSolidCircleCheck": [], - "FontAwesomeSolidCircleChevronDown": [], - "FontAwesomeSolidCircleChevronLeft": [], - "FontAwesomeSolidCircleChevronRight": [], - "FontAwesomeSolidCircleChevronUp": [], - "FontAwesomeSolidCircleDollarToSlot": [], - "FontAwesomeSolidCircleDot": [], - "FontAwesomeSolidCircleDown": [], - "FontAwesomeSolidCircleExclamation": [], - "FontAwesomeSolidCircleH": [], - "FontAwesomeSolidCircleHalfStroke": [], - "FontAwesomeSolidCircleInfo": [], - "FontAwesomeSolidCircleLeft": [], - "FontAwesomeSolidCircleMinus": [], - "FontAwesomeSolidCircleNodes": [], - "FontAwesomeSolidCircleNotch": [], - "FontAwesomeSolidCirclePause": [], - "FontAwesomeSolidCirclePlay": [], - "FontAwesomeSolidCirclePlus": [], - "FontAwesomeSolidCircleQuestion": [], - "FontAwesomeSolidCircleRadiation": [], - "FontAwesomeSolidCircleRight": [], - "FontAwesomeSolidCircleStop": [], - "FontAwesomeSolidCircleUp": [], - "FontAwesomeSolidCircleUser": [], - "FontAwesomeSolidCircleXmark": [], - "FontAwesomeSolidCity": [], - "FontAwesomeSolidClapperboard": [], - "FontAwesomeSolidClipboard": [], - "FontAwesomeSolidClipboardCheck": [], - "FontAwesomeSolidClipboardList": [], - "FontAwesomeSolidClipboardQuestion": [], - "FontAwesomeSolidClipboardUser": [], - "FontAwesomeSolidClock": [], - "FontAwesomeSolidClockRotateLeft": [], - "FontAwesomeSolidClone": [], - "FontAwesomeSolidClosedCaptioning": [], - "FontAwesomeSolidCloud": [], - "FontAwesomeSolidCloudArrowDown": [], - "FontAwesomeSolidCloudArrowUp": [], - "FontAwesomeSolidCloudBolt": [], - "FontAwesomeSolidCloudMeatball": [], - "FontAwesomeSolidCloudMoon": [], - "FontAwesomeSolidCloudMoonRain": [], - "FontAwesomeSolidCloudRain": [], - "FontAwesomeSolidCloudShowersHeavy": [], - "FontAwesomeSolidCloudShowersWater": [], - "FontAwesomeSolidCloudSun": [], - "FontAwesomeSolidCloudSunRain": [], - "FontAwesomeSolidClover": [], - "FontAwesomeSolidCode": [], - "FontAwesomeSolidCodeBranch": [], - "FontAwesomeSolidCodeCommit": [], - "FontAwesomeSolidCodeCompare": [], - "FontAwesomeSolidCodeFork": [], - "FontAwesomeSolidCodeMerge": [], - "FontAwesomeSolidCodePullRequest": [], - "FontAwesomeSolidCoins": [], - "FontAwesomeSolidColonSign": [], - "FontAwesomeSolidComment": [], - "FontAwesomeSolidCommentDollar": [], - "FontAwesomeSolidCommentDots": [], - "FontAwesomeSolidCommentMedical": [], - "FontAwesomeSolidCommentSlash": [], - "FontAwesomeSolidCommentSms": [], - "FontAwesomeSolidComments": [], - "FontAwesomeSolidCommentsDollar": [], - "FontAwesomeSolidCompactDisc": [], - "FontAwesomeSolidCompass": [], - "FontAwesomeSolidCompassDrafting": [], - "FontAwesomeSolidCompress": [], - "FontAwesomeSolidComputer": [], - "FontAwesomeSolidComputerMouse": [], - "FontAwesomeSolidCookie": [], - "FontAwesomeSolidCookieBite": [], - "FontAwesomeSolidCopy": [], - "FontAwesomeSolidCopyright": [], - "FontAwesomeSolidCouch": [], - "FontAwesomeSolidCow": [], - "FontAwesomeSolidCreditCard": [], - "FontAwesomeSolidCrop": [], - "FontAwesomeSolidCropSimple": [], - "FontAwesomeSolidCross": [], - "FontAwesomeSolidCrosshairs": [], - "FontAwesomeSolidCrow": [], - "FontAwesomeSolidCrown": [], - "FontAwesomeSolidCrutch": [], - "FontAwesomeSolidCruzeiroSign": [], - "FontAwesomeSolidCube": [], - "FontAwesomeSolidCubes": [], - "FontAwesomeSolidCubesStacked": [], - "FontAwesomeSolidD": [], - "FontAwesomeSolidDatabase": [], - "FontAwesomeSolidDeleteLeft": [], - "FontAwesomeSolidDemocrat": [], - "FontAwesomeSolidDesktop": [], - "FontAwesomeSolidDharmachakra": [], - "FontAwesomeSolidDiagramNext": [], - "FontAwesomeSolidDiagramPredecessor": [], - "FontAwesomeSolidDiagramProject": [], - "FontAwesomeSolidDiagramSuccessor": [], - "FontAwesomeSolidDiamond": [], - "FontAwesomeSolidDiamondTurnRight": [], - "FontAwesomeSolidDice": [], - "FontAwesomeSolidDiceD20": [], - "FontAwesomeSolidDiceD6": [], - "FontAwesomeSolidDiceFive": [], - "FontAwesomeSolidDiceFour": [], - "FontAwesomeSolidDiceOne": [], - "FontAwesomeSolidDiceSix": [], - "FontAwesomeSolidDiceThree": [], - "FontAwesomeSolidDiceTwo": [], - "FontAwesomeSolidDisease": [], - "FontAwesomeSolidDisplay": [], - "FontAwesomeSolidDivide": [], - "FontAwesomeSolidDna": [], - "FontAwesomeSolidDog": [], - "FontAwesomeSolidDollarSign": [], - "FontAwesomeSolidDolly": [], - "FontAwesomeSolidDongSign": [], - "FontAwesomeSolidDoorClosed": [], - "FontAwesomeSolidDoorOpen": [], - "FontAwesomeSolidDove": [], - "FontAwesomeSolidDownLeftAndUpRightToCenter": [], - "FontAwesomeSolidDownLong": [], - "FontAwesomeSolidDownload": [], - "FontAwesomeSolidDragon": [], - "FontAwesomeSolidDrawPolygon": [], - "FontAwesomeSolidDroplet": [], - "FontAwesomeSolidDropletSlash": [], - "FontAwesomeSolidDrum": [], - "FontAwesomeSolidDrumSteelpan": [], - "FontAwesomeSolidDrumstickBite": [], - "FontAwesomeSolidDumbbell": [], - "FontAwesomeSolidDumpster": [], - "FontAwesomeSolidDumpsterFire": [], - "FontAwesomeSolidDungeon": [], - "FontAwesomeSolidE": [], - "FontAwesomeSolidEarDeaf": [], - "FontAwesomeSolidEarListen": [], - "FontAwesomeSolidEarthAfrica": [], - "FontAwesomeSolidEarthAmericas": [], - "FontAwesomeSolidEarthAsia": [], - "FontAwesomeSolidEarthEurope": [], - "FontAwesomeSolidEarthOceania": [], - "FontAwesomeSolidEgg": [], - "FontAwesomeSolidEject": [], - "FontAwesomeSolidElevator": [], - "FontAwesomeSolidEllipsis": [], - "FontAwesomeSolidEllipsisVertical": [], - "FontAwesomeSolidEnvelope": [], - "FontAwesomeSolidEnvelopeCircleCheck": [], - "FontAwesomeSolidEnvelopeOpen": [], - "FontAwesomeSolidEnvelopeOpenText": [], - "FontAwesomeSolidEnvelopesBulk": [], - "FontAwesomeSolidEquals": [], - "FontAwesomeSolidEraser": [], - "FontAwesomeSolidEthernet": [], - "FontAwesomeSolidEuroSign": [], - "FontAwesomeSolidExclamation": [], - "FontAwesomeSolidExpand": [], - "FontAwesomeSolidExplosion": [], - "FontAwesomeSolidEye": [], - "FontAwesomeSolidEyeDropper": [], - "FontAwesomeSolidEyeLowVision": [], - "FontAwesomeSolidEyeSlash": [], - "FontAwesomeSolidF": [], - "FontAwesomeSolidFaceAngry": [], - "FontAwesomeSolidFaceDizzy": [], - "FontAwesomeSolidFaceFlushed": [], - "FontAwesomeSolidFaceFrown": [], - "FontAwesomeSolidFaceFrownOpen": [], - "FontAwesomeSolidFaceGrimace": [], - "FontAwesomeSolidFaceGrin": [], - "FontAwesomeSolidFaceGrinBeam": [], - "FontAwesomeSolidFaceGrinBeamSweat": [], - "FontAwesomeSolidFaceGrinHearts": [], - "FontAwesomeSolidFaceGrinSquint": [], - "FontAwesomeSolidFaceGrinSquintTears": [], - "FontAwesomeSolidFaceGrinStars": [], - "FontAwesomeSolidFaceGrinTears": [], - "FontAwesomeSolidFaceGrinTongue": [], - "FontAwesomeSolidFaceGrinTongueSquint": [], - "FontAwesomeSolidFaceGrinTongueWink": [], - "FontAwesomeSolidFaceGrinWide": [], - "FontAwesomeSolidFaceGrinWink": [], - "FontAwesomeSolidFaceKiss": [], - "FontAwesomeSolidFaceKissBeam": [], - "FontAwesomeSolidFaceKissWinkHeart": [], - "FontAwesomeSolidFaceLaugh": [], - "FontAwesomeSolidFaceLaughBeam": [], - "FontAwesomeSolidFaceLaughSquint": [], - "FontAwesomeSolidFaceLaughWink": [], - "FontAwesomeSolidFaceMeh": [], - "FontAwesomeSolidFaceMehBlank": [], - "FontAwesomeSolidFaceRollingEyes": [], - "FontAwesomeSolidFaceSadCry": [], - "FontAwesomeSolidFaceSadTear": [], - "FontAwesomeSolidFaceSmile": [], - "FontAwesomeSolidFaceSmileBeam": [], - "FontAwesomeSolidFaceSmileWink": [], - "FontAwesomeSolidFaceSurprise": [], - "FontAwesomeSolidFaceTired": [], - "FontAwesomeSolidFan": [], - "FontAwesomeSolidFaucet": [], - "FontAwesomeSolidFaucetDrip": [], - "FontAwesomeSolidFax": [], - "FontAwesomeSolidFeather": [], - "FontAwesomeSolidFeatherPointed": [], - "FontAwesomeSolidFerry": [], - "FontAwesomeSolidFile": [], - "FontAwesomeSolidFileArrowDown": [], - "FontAwesomeSolidFileArrowUp": [], - "FontAwesomeSolidFileAudio": [], - "FontAwesomeSolidFileCircleCheck": [], - "FontAwesomeSolidFileCircleExclamation": [], - "FontAwesomeSolidFileCircleMinus": [], - "FontAwesomeSolidFileCirclePlus": [], - "FontAwesomeSolidFileCircleQuestion": [], - "FontAwesomeSolidFileCircleXmark": [], - "FontAwesomeSolidFileCode": [], - "FontAwesomeSolidFileContract": [], - "FontAwesomeSolidFileCsv": [], - "FontAwesomeSolidFileExcel": [], - "FontAwesomeSolidFileExport": [], - "FontAwesomeSolidFileImage": [], - "FontAwesomeSolidFileImport": [], - "FontAwesomeSolidFileInvoice": [], - "FontAwesomeSolidFileInvoiceDollar": [], - "FontAwesomeSolidFileLines": [], - "FontAwesomeSolidFileMedical": [], - "FontAwesomeSolidFilePdf": [], - "FontAwesomeSolidFilePen": [], - "FontAwesomeSolidFilePowerpoint": [], - "FontAwesomeSolidFilePrescription": [], - "FontAwesomeSolidFileShield": [], - "FontAwesomeSolidFileSignature": [], - "FontAwesomeSolidFileVideo": [], - "FontAwesomeSolidFileWaveform": [], - "FontAwesomeSolidFileWord": [], - "FontAwesomeSolidFileZipper": [], - "FontAwesomeSolidFill": [], - "FontAwesomeSolidFillDrip": [], - "FontAwesomeSolidFilm": [], - "FontAwesomeSolidFilter": [], - "FontAwesomeSolidFilterCircleDollar": [], - "FontAwesomeSolidFilterCircleXmark": [], - "FontAwesomeSolidFingerprint": [], - "FontAwesomeSolidFire": [], - "FontAwesomeSolidFireBurner": [], - "FontAwesomeSolidFireExtinguisher": [], - "FontAwesomeSolidFireFlameCurved": [], - "FontAwesomeSolidFireFlameSimple": [], - "FontAwesomeSolidFish": [], - "FontAwesomeSolidFishFins": [], - "FontAwesomeSolidFlag": [], - "FontAwesomeSolidFlagCheckered": [], - "FontAwesomeSolidFlagUsa": [], - "FontAwesomeSolidFlask": [], - "FontAwesomeSolidFlaskVial": [], - "FontAwesomeSolidFloppyDisk": [], - "FontAwesomeSolidFlorinSign": [], - "FontAwesomeSolidFolder": [], - "FontAwesomeSolidFolderClosed": [], - "FontAwesomeSolidFolderMinus": [], - "FontAwesomeSolidFolderOpen": [], - "FontAwesomeSolidFolderPlus": [], - "FontAwesomeSolidFolderTree": [], - "FontAwesomeSolidFont": [], - "FontAwesomeSolidFontAwesome": [], - "FontAwesomeSolidFootball": [], - "FontAwesomeSolidForward": [], - "FontAwesomeSolidForwardFast": [], - "FontAwesomeSolidForwardStep": [], - "FontAwesomeSolidFrancSign": [], - "FontAwesomeSolidFrog": [], - "FontAwesomeSolidFutbol": [], - "FontAwesomeSolidG": [], - "FontAwesomeSolidGamepad": [], - "FontAwesomeSolidGasPump": [], - "FontAwesomeSolidGauge": [], - "FontAwesomeSolidGaugeHigh": [], - "FontAwesomeSolidGaugeSimple": [], - "FontAwesomeSolidGaugeSimpleHigh": [], - "FontAwesomeSolidGavel": [], - "FontAwesomeSolidGear": [], - "FontAwesomeSolidGears": [], - "FontAwesomeSolidGem": [], - "FontAwesomeSolidGenderless": [], - "FontAwesomeSolidGhost": [], - "FontAwesomeSolidGift": [], - "FontAwesomeSolidGifts": [], - "FontAwesomeSolidGlassWater": [], - "FontAwesomeSolidGlassWaterDroplet": [], - "FontAwesomeSolidGlasses": [], - "FontAwesomeSolidGlobe": [], - "FontAwesomeSolidGolfBallTee": [], - "FontAwesomeSolidGopuram": [], - "FontAwesomeSolidGraduationCap": [], - "FontAwesomeSolidGreaterThan": [], - "FontAwesomeSolidGreaterThanEqual": [], - "FontAwesomeSolidGrip": [], - "FontAwesomeSolidGripLines": [], - "FontAwesomeSolidGripLinesVertical": [], - "FontAwesomeSolidGripVertical": [], - "FontAwesomeSolidGroupArrowsRotate": [], - "FontAwesomeSolidGuaraniSign": [], - "FontAwesomeSolidGuitar": [], - "FontAwesomeSolidGun": [], - "FontAwesomeSolidH": [], - "FontAwesomeSolidHammer": [], - "FontAwesomeSolidHamsa": [], - "FontAwesomeSolidHand": [], - "FontAwesomeSolidHandBackFist": [], - "FontAwesomeSolidHandDots": [], - "FontAwesomeSolidHandFist": [], - "FontAwesomeSolidHandHolding": [], - "FontAwesomeSolidHandHoldingDollar": [], - "FontAwesomeSolidHandHoldingDroplet": [], - "FontAwesomeSolidHandHoldingHand": [], - "FontAwesomeSolidHandHoldingHeart": [], - "FontAwesomeSolidHandHoldingMedical": [], - "FontAwesomeSolidHandLizard": [], - "FontAwesomeSolidHandMiddleFinger": [], - "FontAwesomeSolidHandPeace": [], - "FontAwesomeSolidHandPointDown": [], - "FontAwesomeSolidHandPointLeft": [], - "FontAwesomeSolidHandPointRight": [], - "FontAwesomeSolidHandPointUp": [], - "FontAwesomeSolidHandPointer": [], - "FontAwesomeSolidHandScissors": [], - "FontAwesomeSolidHandSparkles": [], - "FontAwesomeSolidHandSpock": [], - "FontAwesomeSolidHandcuffs": [], - "FontAwesomeSolidHands": [], - "FontAwesomeSolidHandsAslInterpreting": [], - "FontAwesomeSolidHandsBound": [], - "FontAwesomeSolidHandsBubbles": [], - "FontAwesomeSolidHandsClapping": [], - "FontAwesomeSolidHandsHolding": [], - "FontAwesomeSolidHandsHoldingChild": [], - "FontAwesomeSolidHandsHoldingCircle": [], - "FontAwesomeSolidHandsPraying": [], - "FontAwesomeSolidHandshake": [], - "FontAwesomeSolidHandshakeAngle": [], - "FontAwesomeSolidHandshakeSimple": [], - "FontAwesomeSolidHandshakeSimpleSlash": [], - "FontAwesomeSolidHandshakeSlash": [], - "FontAwesomeSolidHanukiah": [], - "FontAwesomeSolidHardDrive": [], - "FontAwesomeSolidHashtag": [], - "FontAwesomeSolidHatCowboy": [], - "FontAwesomeSolidHatCowboySide": [], - "FontAwesomeSolidHatWizard": [], - "FontAwesomeSolidHeadSideCough": [], - "FontAwesomeSolidHeadSideCoughSlash": [], - "FontAwesomeSolidHeadSideMask": [], - "FontAwesomeSolidHeadSideVirus": [], - "FontAwesomeSolidHeading": [], - "FontAwesomeSolidHeadphones": [], - "FontAwesomeSolidHeadphonesSimple": [], - "FontAwesomeSolidHeadset": [], - "FontAwesomeSolidHeart": [], - "FontAwesomeSolidHeartCircleBolt": [], - "FontAwesomeSolidHeartCircleCheck": [], - "FontAwesomeSolidHeartCircleExclamation": [], - "FontAwesomeSolidHeartCircleMinus": [], - "FontAwesomeSolidHeartCirclePlus": [], - "FontAwesomeSolidHeartCircleXmark": [], - "FontAwesomeSolidHeartCrack": [], - "FontAwesomeSolidHeartPulse": [], - "FontAwesomeSolidHelicopter": [], - "FontAwesomeSolidHelicopterSymbol": [], - "FontAwesomeSolidHelmetSafety": [], - "FontAwesomeSolidHelmetUn": [], - "FontAwesomeSolidHighlighter": [], - "FontAwesomeSolidHillAvalanche": [], - "FontAwesomeSolidHillRockslide": [], - "FontAwesomeSolidHippo": [], - "FontAwesomeSolidHockeyPuck": [], - "FontAwesomeSolidHollyBerry": [], - "FontAwesomeSolidHorse": [], - "FontAwesomeSolidHorseHead": [], - "FontAwesomeSolidHospital": [], - "FontAwesomeSolidHospitalUser": [], - "FontAwesomeSolidHotTubPerson": [], - "FontAwesomeSolidHotdog": [], - "FontAwesomeSolidHotel": [], - "FontAwesomeSolidHourglass": [], - "FontAwesomeSolidHourglassEmpty": [], - "FontAwesomeSolidHourglassEnd": [], - "FontAwesomeSolidHourglassStart": [], - "FontAwesomeSolidHouse": [], - "FontAwesomeSolidHouseChimney": [], - "FontAwesomeSolidHouseChimneyCrack": [], - "FontAwesomeSolidHouseChimneyMedical": [], - "FontAwesomeSolidHouseChimneyUser": [], - "FontAwesomeSolidHouseChimneyWindow": [], - "FontAwesomeSolidHouseCircleCheck": [], - "FontAwesomeSolidHouseCircleExclamation": [], - "FontAwesomeSolidHouseCircleXmark": [], - "FontAwesomeSolidHouseCrack": [], - "FontAwesomeSolidHouseFire": [], - "FontAwesomeSolidHouseFlag": [], - "FontAwesomeSolidHouseFloodWater": [], - "FontAwesomeSolidHouseFloodWaterCircleArrowRight": [], - "FontAwesomeSolidHouseLaptop": [], - "FontAwesomeSolidHouseLock": [], - "FontAwesomeSolidHouseMedical": [], - "FontAwesomeSolidHouseMedicalCircleCheck": [], - "FontAwesomeSolidHouseMedicalCircleExclamation": [], - "FontAwesomeSolidHouseMedicalCircleXmark": [], - "FontAwesomeSolidHouseMedicalFlag": [], - "FontAwesomeSolidHouseSignal": [], - "FontAwesomeSolidHouseTsunami": [], - "FontAwesomeSolidHouseUser": [], - "FontAwesomeSolidHryvniaSign": [], - "FontAwesomeSolidHurricane": [], - "FontAwesomeSolidI": [], - "FontAwesomeSolidICursor": [], - "FontAwesomeSolidIceCream": [], - "FontAwesomeSolidIcicles": [], - "FontAwesomeSolidIcons": [], - "FontAwesomeSolidIdBadge": [], - "FontAwesomeSolidIdCard": [], - "FontAwesomeSolidIdCardClip": [], - "FontAwesomeSolidIgloo": [], - "FontAwesomeSolidImage": [], - "FontAwesomeSolidImagePortrait": [], - "FontAwesomeSolidImages": [], - "FontAwesomeSolidInbox": [], - "FontAwesomeSolidIndent": [], - "FontAwesomeSolidIndianRupeeSign": [], - "FontAwesomeSolidIndustry": [], - "FontAwesomeSolidInfinity": [], - "FontAwesomeSolidInfo": [], - "FontAwesomeSolidItalic": [], - "FontAwesomeSolidJ": [], - "FontAwesomeSolidJar": [], - "FontAwesomeSolidJarWheat": [], - "FontAwesomeSolidJedi": [], - "FontAwesomeSolidJetFighter": [], - "FontAwesomeSolidJetFighterUp": [], - "FontAwesomeSolidJoint": [], - "FontAwesomeSolidJugDetergent": [], - "FontAwesomeSolidK": [], - "FontAwesomeSolidKaaba": [], - "FontAwesomeSolidKey": [], - "FontAwesomeSolidKeyboard": [], - "FontAwesomeSolidKhanda": [], - "FontAwesomeSolidKipSign": [], - "FontAwesomeSolidKitMedical": [], - "FontAwesomeSolidKitchenSet": [], - "FontAwesomeSolidKiwiBird": [], - "FontAwesomeSolidL": [], - "FontAwesomeSolidLandMineOn": [], - "FontAwesomeSolidLandmark": [], - "FontAwesomeSolidLandmarkDome": [], - "FontAwesomeSolidLandmarkFlag": [], - "FontAwesomeSolidLanguage": [], - "FontAwesomeSolidLaptop": [], - "FontAwesomeSolidLaptopCode": [], - "FontAwesomeSolidLaptopFile": [], - "FontAwesomeSolidLaptopMedical": [], - "FontAwesomeSolidLariSign": [], - "FontAwesomeSolidLayerGroup": [], - "FontAwesomeSolidLeaf": [], - "FontAwesomeSolidLeftLong": [], - "FontAwesomeSolidLeftRight": [], - "FontAwesomeSolidLemon": [], - "FontAwesomeSolidLessThan": [], - "FontAwesomeSolidLessThanEqual": [], - "FontAwesomeSolidLifeRing": [], - "FontAwesomeSolidLightbulb": [], - "FontAwesomeSolidLinesLeaning": [], - "FontAwesomeSolidLink": [], - "FontAwesomeSolidLinkSlash": [], - "FontAwesomeSolidLiraSign": [], - "FontAwesomeSolidList": [], - "FontAwesomeSolidListCheck": [], - "FontAwesomeSolidListOl": [], - "FontAwesomeSolidListUl": [], - "FontAwesomeSolidLitecoinSign": [], - "FontAwesomeSolidLocationArrow": [], - "FontAwesomeSolidLocationCrosshairs": [], - "FontAwesomeSolidLocationDot": [], - "FontAwesomeSolidLocationPin": [], - "FontAwesomeSolidLocationPinLock": [], - "FontAwesomeSolidLock": [], - "FontAwesomeSolidLockOpen": [], - "FontAwesomeSolidLocust": [], - "FontAwesomeSolidLungs": [], - "FontAwesomeSolidLungsVirus": [], - "FontAwesomeSolidM": [], - "FontAwesomeSolidMagnet": [], - "FontAwesomeSolidMagnifyingGlass": [], - "FontAwesomeSolidMagnifyingGlassArrowRight": [], - "FontAwesomeSolidMagnifyingGlassChart": [], - "FontAwesomeSolidMagnifyingGlassDollar": [], - "FontAwesomeSolidMagnifyingGlassLocation": [], - "FontAwesomeSolidMagnifyingGlassMinus": [], - "FontAwesomeSolidMagnifyingGlassPlus": [], - "FontAwesomeSolidManatSign": [], - "FontAwesomeSolidMap": [], - "FontAwesomeSolidMapLocation": [], - "FontAwesomeSolidMapLocationDot": [], - "FontAwesomeSolidMapPin": [], - "FontAwesomeSolidMarker": [], - "FontAwesomeSolidMars": [], - "FontAwesomeSolidMarsAndVenus": [], - "FontAwesomeSolidMarsAndVenusBurst": [], - "FontAwesomeSolidMarsDouble": [], - "FontAwesomeSolidMarsStroke": [], - "FontAwesomeSolidMarsStrokeRight": [], - "FontAwesomeSolidMarsStrokeUp": [], - "FontAwesomeSolidMartiniGlass": [], - "FontAwesomeSolidMartiniGlassCitrus": [], - "FontAwesomeSolidMartiniGlassEmpty": [], - "FontAwesomeSolidMask": [], - "FontAwesomeSolidMaskFace": [], - "FontAwesomeSolidMaskVentilator": [], - "FontAwesomeSolidMasksTheater": [], - "FontAwesomeSolidMattressPillow": [], - "FontAwesomeSolidMaximize": [], - "FontAwesomeSolidMedal": [], - "FontAwesomeSolidMemory": [], - "FontAwesomeSolidMenorah": [], - "FontAwesomeSolidMercury": [], - "FontAwesomeSolidMessage": [], - "FontAwesomeSolidMeteor": [], - "FontAwesomeSolidMicrochip": [], - "FontAwesomeSolidMicrophone": [], - "FontAwesomeSolidMicrophoneLines": [], - "FontAwesomeSolidMicrophoneLinesSlash": [], - "FontAwesomeSolidMicrophoneSlash": [], - "FontAwesomeSolidMicroscope": [], - "FontAwesomeSolidMillSign": [], - "FontAwesomeSolidMinimize": [], - "FontAwesomeSolidMinus": [], - "FontAwesomeSolidMitten": [], - "FontAwesomeSolidMobile": [], - "FontAwesomeSolidMobileButton": [], - "FontAwesomeSolidMobileRetro": [], - "FontAwesomeSolidMobileScreen": [], - "FontAwesomeSolidMobileScreenButton": [], - "FontAwesomeSolidMoneyBill": [], - "FontAwesomeSolidMoneyBill1": [], - "FontAwesomeSolidMoneyBill1Wave": [], - "FontAwesomeSolidMoneyBillTransfer": [], - "FontAwesomeSolidMoneyBillTrendUp": [], - "FontAwesomeSolidMoneyBillWave": [], - "FontAwesomeSolidMoneyBillWheat": [], - "FontAwesomeSolidMoneyBills": [], - "FontAwesomeSolidMoneyCheck": [], - "FontAwesomeSolidMoneyCheckDollar": [], - "FontAwesomeSolidMonument": [], - "FontAwesomeSolidMoon": [], - "FontAwesomeSolidMortarPestle": [], - "FontAwesomeSolidMosque": [], - "FontAwesomeSolidMosquito": [], - "FontAwesomeSolidMosquitoNet": [], - "FontAwesomeSolidMotorcycle": [], - "FontAwesomeSolidMound": [], - "FontAwesomeSolidMountain": [], - "FontAwesomeSolidMountainCity": [], - "FontAwesomeSolidMountainSun": [], - "FontAwesomeSolidMugHot": [], - "FontAwesomeSolidMugSaucer": [], - "FontAwesomeSolidMusic": [], - "FontAwesomeSolidN": [], - "FontAwesomeSolidNairaSign": [], - "FontAwesomeSolidNetworkWired": [], - "FontAwesomeSolidNeuter": [], - "FontAwesomeSolidNewspaper": [], - "FontAwesomeSolidNotEqual": [], - "FontAwesomeSolidNoteSticky": [], - "FontAwesomeSolidNotesMedical": [], - "FontAwesomeSolidO": [], - "FontAwesomeSolidObjectGroup": [], - "FontAwesomeSolidObjectUngroup": [], - "FontAwesomeSolidOilCan": [], - "FontAwesomeSolidOilWell": [], - "FontAwesomeSolidOm": [], - "FontAwesomeSolidOtter": [], - "FontAwesomeSolidOutdent": [], - "FontAwesomeSolidP": [], - "FontAwesomeSolidPager": [], - "FontAwesomeSolidPaintRoller": [], - "FontAwesomeSolidPaintbrush": [], - "FontAwesomeSolidPalette": [], - "FontAwesomeSolidPallet": [], - "FontAwesomeSolidPanorama": [], - "FontAwesomeSolidPaperPlane": [], - "FontAwesomeSolidPaperclip": [], - "FontAwesomeSolidParachuteBox": [], - "FontAwesomeSolidParagraph": [], - "FontAwesomeSolidPassport": [], - "FontAwesomeSolidPaste": [], - "FontAwesomeSolidPause": [], - "FontAwesomeSolidPaw": [], - "FontAwesomeSolidPeace": [], - "FontAwesomeSolidPen": [], - "FontAwesomeSolidPenClip": [], - "FontAwesomeSolidPenFancy": [], - "FontAwesomeSolidPenNib": [], - "FontAwesomeSolidPenRuler": [], - "FontAwesomeSolidPenToSquare": [], - "FontAwesomeSolidPencil": [], - "FontAwesomeSolidPeopleArrowsLeftRight": [], - "FontAwesomeSolidPeopleCarryBox": [], - "FontAwesomeSolidPeopleGroup": [], - "FontAwesomeSolidPeopleLine": [], - "FontAwesomeSolidPeoplePulling": [], - "FontAwesomeSolidPeopleRobbery": [], - "FontAwesomeSolidPeopleRoof": [], - "FontAwesomeSolidPepperHot": [], - "FontAwesomeSolidPercent": [], - "FontAwesomeSolidPerson": [], - "FontAwesomeSolidPersonArrowDownToLine": [], - "FontAwesomeSolidPersonArrowUpFromLine": [], - "FontAwesomeSolidPersonBiking": [], - "FontAwesomeSolidPersonBooth": [], - "FontAwesomeSolidPersonBreastfeeding": [], - "FontAwesomeSolidPersonBurst": [], - "FontAwesomeSolidPersonCane": [], - "FontAwesomeSolidPersonChalkboard": [], - "FontAwesomeSolidPersonCircleCheck": [], - "FontAwesomeSolidPersonCircleExclamation": [], - "FontAwesomeSolidPersonCircleMinus": [], - "FontAwesomeSolidPersonCirclePlus": [], - "FontAwesomeSolidPersonCircleQuestion": [], - "FontAwesomeSolidPersonCircleXmark": [], - "FontAwesomeSolidPersonDigging": [], - "FontAwesomeSolidPersonDotsFromLine": [], - "FontAwesomeSolidPersonDress": [], - "FontAwesomeSolidPersonDressBurst": [], - "FontAwesomeSolidPersonDrowning": [], - "FontAwesomeSolidPersonFalling": [], - "FontAwesomeSolidPersonFallingBurst": [], - "FontAwesomeSolidPersonHalfDress": [], - "FontAwesomeSolidPersonHarassing": [], - "FontAwesomeSolidPersonHiking": [], - "FontAwesomeSolidPersonMilitaryPointing": [], - "FontAwesomeSolidPersonMilitaryRifle": [], - "FontAwesomeSolidPersonMilitaryToPerson": [], - "FontAwesomeSolidPersonPraying": [], - "FontAwesomeSolidPersonPregnant": [], - "FontAwesomeSolidPersonRays": [], - "FontAwesomeSolidPersonRifle": [], - "FontAwesomeSolidPersonRunning": [], - "FontAwesomeSolidPersonShelter": [], - "FontAwesomeSolidPersonSkating": [], - "FontAwesomeSolidPersonSkiing": [], - "FontAwesomeSolidPersonSkiingNordic": [], - "FontAwesomeSolidPersonSnowboarding": [], - "FontAwesomeSolidPersonSwimming": [], - "FontAwesomeSolidPersonThroughWindow": [], - "FontAwesomeSolidPersonWalking": [], - "FontAwesomeSolidPersonWalkingArrowLoopLeft": [], - "FontAwesomeSolidPersonWalkingArrowRight": [], - "FontAwesomeSolidPersonWalkingDashedLineArrowRight": [], - "FontAwesomeSolidPersonWalkingLuggage": [], - "FontAwesomeSolidPersonWalkingWithCane": [], - "FontAwesomeSolidPesetaSign": [], - "FontAwesomeSolidPesoSign": [], - "FontAwesomeSolidPhone": [], - "FontAwesomeSolidPhoneFlip": [], - "FontAwesomeSolidPhoneSlash": [], - "FontAwesomeSolidPhoneVolume": [], - "FontAwesomeSolidPhotoFilm": [], - "FontAwesomeSolidPiggyBank": [], - "FontAwesomeSolidPills": [], - "FontAwesomeSolidPizzaSlice": [], - "FontAwesomeSolidPlaceOfWorship": [], - "FontAwesomeSolidPlane": [], - "FontAwesomeSolidPlaneArrival": [], - "FontAwesomeSolidPlaneCircleCheck": [], - "FontAwesomeSolidPlaneCircleExclamation": [], - "FontAwesomeSolidPlaneCircleXmark": [], - "FontAwesomeSolidPlaneDeparture": [], - "FontAwesomeSolidPlaneLock": [], - "FontAwesomeSolidPlaneSlash": [], - "FontAwesomeSolidPlaneUp": [], - "FontAwesomeSolidPlantWilt": [], - "FontAwesomeSolidPlateWheat": [], - "FontAwesomeSolidPlay": [], - "FontAwesomeSolidPlug": [], - "FontAwesomeSolidPlugCircleBolt": [], - "FontAwesomeSolidPlugCircleCheck": [], - "FontAwesomeSolidPlugCircleExclamation": [], - "FontAwesomeSolidPlugCircleMinus": [], - "FontAwesomeSolidPlugCirclePlus": [], - "FontAwesomeSolidPlugCircleXmark": [], - "FontAwesomeSolidPlus": [], - "FontAwesomeSolidPlusMinus": [], - "FontAwesomeSolidPodcast": [], - "FontAwesomeSolidPoo": [], - "FontAwesomeSolidPooStorm": [], - "FontAwesomeSolidPoop": [], - "FontAwesomeSolidPowerOff": [], - "FontAwesomeSolidPrescription": [], - "FontAwesomeSolidPrescriptionBottle": [], - "FontAwesomeSolidPrescriptionBottleMedical": [], - "FontAwesomeSolidPrint": [], - "FontAwesomeSolidPumpMedical": [], - "FontAwesomeSolidPumpSoap": [], - "FontAwesomeSolidPuzzlePiece": [], - "FontAwesomeSolidQ": [], - "FontAwesomeSolidQrcode": [], - "FontAwesomeSolidQuestion": [], - "FontAwesomeSolidQuoteLeft": [], - "FontAwesomeSolidQuoteRight": [], - "FontAwesomeSolidR": [], - "FontAwesomeSolidRadiation": [], - "FontAwesomeSolidRadio": [], - "FontAwesomeSolidRainbow": [], - "FontAwesomeSolidRankingStar": [], - "FontAwesomeSolidReceipt": [], - "FontAwesomeSolidRecordVinyl": [], - "FontAwesomeSolidRectangleAd": [], - "FontAwesomeSolidRectangleList": [], - "FontAwesomeSolidRectangleXmark": [], - "FontAwesomeSolidRecycle": [], - "FontAwesomeSolidRegistered": [], - "FontAwesomeSolidRepeat": [], - "FontAwesomeSolidReply": [], - "FontAwesomeSolidReplyAll": [], - "FontAwesomeSolidRepublican": [], - "FontAwesomeSolidRestroom": [], - "FontAwesomeSolidRetweet": [], - "FontAwesomeSolidRibbon": [], - "FontAwesomeSolidRightFromBracket": [], - "FontAwesomeSolidRightLeft": [], - "FontAwesomeSolidRightLong": [], - "FontAwesomeSolidRightToBracket": [], - "FontAwesomeSolidRing": [], - "FontAwesomeSolidRoad": [], - "FontAwesomeSolidRoadBarrier": [], - "FontAwesomeSolidRoadBridge": [], - "FontAwesomeSolidRoadCircleCheck": [], - "FontAwesomeSolidRoadCircleExclamation": [], - "FontAwesomeSolidRoadCircleXmark": [], - "FontAwesomeSolidRoadLock": [], - "FontAwesomeSolidRoadSpikes": [], - "FontAwesomeSolidRobot": [], - "FontAwesomeSolidRocket": [], - "FontAwesomeSolidRotate": [], - "FontAwesomeSolidRotateLeft": [], - "FontAwesomeSolidRotateRight": [], - "FontAwesomeSolidRoute": [], - "FontAwesomeSolidRss": [], - "FontAwesomeSolidRubleSign": [], - "FontAwesomeSolidRug": [], - "FontAwesomeSolidRuler": [], - "FontAwesomeSolidRulerCombined": [], - "FontAwesomeSolidRulerHorizontal": [], - "FontAwesomeSolidRulerVertical": [], - "FontAwesomeSolidRupeeSign": [], - "FontAwesomeSolidRupiahSign": [], - "FontAwesomeSolidS": [], - "FontAwesomeSolidSackDollar": [], - "FontAwesomeSolidSackXmark": [], - "FontAwesomeSolidSailboat": [], - "FontAwesomeSolidSatellite": [], - "FontAwesomeSolidSatelliteDish": [], - "FontAwesomeSolidScaleBalanced": [], - "FontAwesomeSolidScaleUnbalanced": [], - "FontAwesomeSolidScaleUnbalancedFlip": [], - "FontAwesomeSolidSchool": [], - "FontAwesomeSolidSchoolCircleCheck": [], - "FontAwesomeSolidSchoolCircleExclamation": [], - "FontAwesomeSolidSchoolCircleXmark": [], - "FontAwesomeSolidSchoolFlag": [], - "FontAwesomeSolidSchoolLock": [], - "FontAwesomeSolidScissors": [], - "FontAwesomeSolidScrewdriver": [], - "FontAwesomeSolidScrewdriverWrench": [], - "FontAwesomeSolidScroll": [], - "FontAwesomeSolidScrollTorah": [], - "FontAwesomeSolidSdCard": [], - "FontAwesomeSolidSection": [], - "FontAwesomeSolidSeedling": [], - "FontAwesomeSolidServer": [], - "FontAwesomeSolidShapes": [], - "FontAwesomeSolidShare": [], - "FontAwesomeSolidShareFromSquare": [], - "FontAwesomeSolidShareNodes": [], - "FontAwesomeSolidSheetPlastic": [], - "FontAwesomeSolidShekelSign": [], - "FontAwesomeSolidShield": [], - "FontAwesomeSolidShieldBlank": [], - "FontAwesomeSolidShieldCat": [], - "FontAwesomeSolidShieldDog": [], - "FontAwesomeSolidShieldHalved": [], - "FontAwesomeSolidShieldHeart": [], - "FontAwesomeSolidShieldVirus": [], - "FontAwesomeSolidShip": [], - "FontAwesomeSolidShirt": [], - "FontAwesomeSolidShoePrints": [], - "FontAwesomeSolidShop": [], - "FontAwesomeSolidShopLock": [], - "FontAwesomeSolidShopSlash": [], - "FontAwesomeSolidShower": [], - "FontAwesomeSolidShrimp": [], - "FontAwesomeSolidShuffle": [], - "FontAwesomeSolidShuttleSpace": [], - "FontAwesomeSolidSignHanging": [], - "FontAwesomeSolidSignal": [], - "FontAwesomeSolidSignature": [], - "FontAwesomeSolidSignsPost": [], - "FontAwesomeSolidSimCard": [], - "FontAwesomeSolidSink": [], - "FontAwesomeSolidSitemap": [], - "FontAwesomeSolidSkull": [], - "FontAwesomeSolidSkullCrossbones": [], - "FontAwesomeSolidSlash": [], - "FontAwesomeSolidSleigh": [], - "FontAwesomeSolidSliders": [], - "FontAwesomeSolidSmog": [], - "FontAwesomeSolidSmoking": [], - "FontAwesomeSolidSnowflake": [], - "FontAwesomeSolidSnowman": [], - "FontAwesomeSolidSnowplow": [], - "FontAwesomeSolidSoap": [], - "FontAwesomeSolidSocks": [], - "FontAwesomeSolidSolarPanel": [], - "FontAwesomeSolidSort": [], - "FontAwesomeSolidSortDown": [], - "FontAwesomeSolidSortUp": [], - "FontAwesomeSolidSpa": [], - "FontAwesomeSolidSpaghettiMonsterFlying": [], - "FontAwesomeSolidSpellCheck": [], - "FontAwesomeSolidSpider": [], - "FontAwesomeSolidSpinner": [], - "FontAwesomeSolidSplotch": [], - "FontAwesomeSolidSpoon": [], - "FontAwesomeSolidSprayCan": [], - "FontAwesomeSolidSprayCanSparkles": [], - "FontAwesomeSolidSquare": [], - "FontAwesomeSolidSquareArrowUpRight": [], - "FontAwesomeSolidSquareCaretDown": [], - "FontAwesomeSolidSquareCaretLeft": [], - "FontAwesomeSolidSquareCaretRight": [], - "FontAwesomeSolidSquareCaretUp": [], - "FontAwesomeSolidSquareCheck": [], - "FontAwesomeSolidSquareEnvelope": [], - "FontAwesomeSolidSquareFull": [], - "FontAwesomeSolidSquareH": [], - "FontAwesomeSolidSquareMinus": [], - "FontAwesomeSolidSquareNfi": [], - "FontAwesomeSolidSquareParking": [], - "FontAwesomeSolidSquarePen": [], - "FontAwesomeSolidSquarePersonConfined": [], - "FontAwesomeSolidSquarePhone": [], - "FontAwesomeSolidSquarePhoneFlip": [], - "FontAwesomeSolidSquarePlus": [], - "FontAwesomeSolidSquarePollHorizontal": [], - "FontAwesomeSolidSquarePollVertical": [], - "FontAwesomeSolidSquareRootVariable": [], - "FontAwesomeSolidSquareRss": [], - "FontAwesomeSolidSquareShareNodes": [], - "FontAwesomeSolidSquareUpRight": [], - "FontAwesomeSolidSquareVirus": [], - "FontAwesomeSolidSquareXmark": [], - "FontAwesomeSolidStaffAesculapius": [], - "FontAwesomeSolidStairs": [], - "FontAwesomeSolidStamp": [], - "FontAwesomeSolidStar": [], - "FontAwesomeSolidStarAndCrescent": [], - "FontAwesomeSolidStarHalf": [], - "FontAwesomeSolidStarHalfStroke": [], - "FontAwesomeSolidStarOfDavid": [], - "FontAwesomeSolidStarOfLife": [], - "FontAwesomeSolidSterlingSign": [], - "FontAwesomeSolidStethoscope": [], - "FontAwesomeSolidStop": [], - "FontAwesomeSolidStopwatch": [], - "FontAwesomeSolidStopwatch20": [], - "FontAwesomeSolidStore": [], - "FontAwesomeSolidStoreSlash": [], - "FontAwesomeSolidStreetView": [], - "FontAwesomeSolidStrikethrough": [], - "FontAwesomeSolidStroopwafel": [], - "FontAwesomeSolidSubscript": [], - "FontAwesomeSolidSuitcase": [], - "FontAwesomeSolidSuitcaseMedical": [], - "FontAwesomeSolidSuitcaseRolling": [], - "FontAwesomeSolidSun": [], - "FontAwesomeSolidSunPlantWilt": [], - "FontAwesomeSolidSuperscript": [], - "FontAwesomeSolidSwatchbook": [], - "FontAwesomeSolidSynagogue": [], - "FontAwesomeSolidSyringe": [], - "FontAwesomeSolidT": [], - "FontAwesomeSolidTable": [], - "FontAwesomeSolidTableCells": [], - "FontAwesomeSolidTableCellsLarge": [], - "FontAwesomeSolidTableColumns": [], - "FontAwesomeSolidTableList": [], - "FontAwesomeSolidTableTennisPaddleBall": [], - "FontAwesomeSolidTablet": [], - "FontAwesomeSolidTabletButton": [], - "FontAwesomeSolidTabletScreenButton": [], - "FontAwesomeSolidTablets": [], - "FontAwesomeSolidTachographDigital": [], - "FontAwesomeSolidTag": [], - "FontAwesomeSolidTags": [], - "FontAwesomeSolidTape": [], - "FontAwesomeSolidTarp": [], - "FontAwesomeSolidTarpDroplet": [], - "FontAwesomeSolidTaxi": [], - "FontAwesomeSolidTeeth": [], - "FontAwesomeSolidTeethOpen": [], - "FontAwesomeSolidTemperatureArrowDown": [], - "FontAwesomeSolidTemperatureArrowUp": [], - "FontAwesomeSolidTemperatureEmpty": [], - "FontAwesomeSolidTemperatureFull": [], - "FontAwesomeSolidTemperatureHalf": [], - "FontAwesomeSolidTemperatureHigh": [], - "FontAwesomeSolidTemperatureLow": [], - "FontAwesomeSolidTemperatureQuarter": [], - "FontAwesomeSolidTemperatureThreeQuarters": [], - "FontAwesomeSolidTengeSign": [], - "FontAwesomeSolidTent": [], - "FontAwesomeSolidTentArrowDownToLine": [], - "FontAwesomeSolidTentArrowLeftRight": [], - "FontAwesomeSolidTentArrowTurnLeft": [], - "FontAwesomeSolidTentArrowsDown": [], - "FontAwesomeSolidTents": [], - "FontAwesomeSolidTerminal": [], - "FontAwesomeSolidTextHeight": [], - "FontAwesomeSolidTextSlash": [], - "FontAwesomeSolidTextWidth": [], - "FontAwesomeSolidThermometer": [], - "FontAwesomeSolidThumbsDown": [], - "FontAwesomeSolidThumbsUp": [], - "FontAwesomeSolidThumbtack": [], - "FontAwesomeSolidTicket": [], - "FontAwesomeSolidTicketSimple": [], - "FontAwesomeSolidTimeline": [], - "FontAwesomeSolidToggleOff": [], - "FontAwesomeSolidToggleOn": [], - "FontAwesomeSolidToilet": [], - "FontAwesomeSolidToiletPaper": [], - "FontAwesomeSolidToiletPaperSlash": [], - "FontAwesomeSolidToiletPortable": [], - "FontAwesomeSolidToiletsPortable": [], - "FontAwesomeSolidToolbox": [], - "FontAwesomeSolidTooth": [], - "FontAwesomeSolidToriiGate": [], - "FontAwesomeSolidTornado": [], - "FontAwesomeSolidTowerBroadcast": [], - "FontAwesomeSolidTowerCell": [], - "FontAwesomeSolidTowerObservation": [], - "FontAwesomeSolidTractor": [], - "FontAwesomeSolidTrademark": [], - "FontAwesomeSolidTrafficLight": [], - "FontAwesomeSolidTrailer": [], - "FontAwesomeSolidTrain": [], - "FontAwesomeSolidTrainSubway": [], - "FontAwesomeSolidTrainTram": [], - "FontAwesomeSolidTransgender": [], - "FontAwesomeSolidTrash": [], - "FontAwesomeSolidTrashArrowUp": [], - "FontAwesomeSolidTrashCan": [], - "FontAwesomeSolidTrashCanArrowUp": [], - "FontAwesomeSolidTree": [], - "FontAwesomeSolidTreeCity": [], - "FontAwesomeSolidTriangleExclamation": [], - "FontAwesomeSolidTrophy": [], - "FontAwesomeSolidTrowel": [], - "FontAwesomeSolidTrowelBricks": [], - "FontAwesomeSolidTruck": [], - "FontAwesomeSolidTruckArrowRight": [], - "FontAwesomeSolidTruckDroplet": [], - "FontAwesomeSolidTruckFast": [], - "FontAwesomeSolidTruckField": [], - "FontAwesomeSolidTruckFieldUn": [], - "FontAwesomeSolidTruckFront": [], - "FontAwesomeSolidTruckMedical": [], - "FontAwesomeSolidTruckMonster": [], - "FontAwesomeSolidTruckMoving": [], - "FontAwesomeSolidTruckPickup": [], - "FontAwesomeSolidTruckPlane": [], - "FontAwesomeSolidTruckRampBox": [], - "FontAwesomeSolidTty": [], - "FontAwesomeSolidTurkishLiraSign": [], - "FontAwesomeSolidTurnDown": [], - "FontAwesomeSolidTurnUp": [], - "FontAwesomeSolidTv": [], - "FontAwesomeSolidU": [], - "FontAwesomeSolidUmbrella": [], - "FontAwesomeSolidUmbrellaBeach": [], - "FontAwesomeSolidUnderline": [], - "FontAwesomeSolidUniversalAccess": [], - "FontAwesomeSolidUnlock": [], - "FontAwesomeSolidUnlockKeyhole": [], - "FontAwesomeSolidUpDown": [], - "FontAwesomeSolidUpDownLeftRight": [], - "FontAwesomeSolidUpLong": [], - "FontAwesomeSolidUpRightAndDownLeftFromCenter": [], - "FontAwesomeSolidUpRightFromSquare": [], - "FontAwesomeSolidUpload": [], - "FontAwesomeSolidUser": [], - "FontAwesomeSolidUserAstronaut": [], - "FontAwesomeSolidUserCheck": [], - "FontAwesomeSolidUserClock": [], - "FontAwesomeSolidUserDoctor": [], - "FontAwesomeSolidUserGear": [], - "FontAwesomeSolidUserGraduate": [], - "FontAwesomeSolidUserGroup": [], - "FontAwesomeSolidUserInjured": [], - "FontAwesomeSolidUserLarge": [], - "FontAwesomeSolidUserLargeSlash": [], - "FontAwesomeSolidUserLock": [], - "FontAwesomeSolidUserMinus": [], - "FontAwesomeSolidUserNinja": [], - "FontAwesomeSolidUserNurse": [], - "FontAwesomeSolidUserPen": [], - "FontAwesomeSolidUserPlus": [], - "FontAwesomeSolidUserSecret": [], - "FontAwesomeSolidUserShield": [], - "FontAwesomeSolidUserSlash": [], - "FontAwesomeSolidUserTag": [], - "FontAwesomeSolidUserTie": [], - "FontAwesomeSolidUserXmark": [], - "FontAwesomeSolidUsers": [], - "FontAwesomeSolidUsersBetweenLines": [], - "FontAwesomeSolidUsersGear": [], - "FontAwesomeSolidUsersLine": [], - "FontAwesomeSolidUsersRays": [], - "FontAwesomeSolidUsersRectangle": [], - "FontAwesomeSolidUsersSlash": [], - "FontAwesomeSolidUsersViewfinder": [], - "FontAwesomeSolidUtensils": [], - "FontAwesomeSolidV": [], - "FontAwesomeSolidVanShuttle": [], - "FontAwesomeSolidVault": [], - "FontAwesomeSolidVectorSquare": [], - "FontAwesomeSolidVenus": [], - "FontAwesomeSolidVenusDouble": [], - "FontAwesomeSolidVenusMars": [], - "FontAwesomeSolidVest": [], - "FontAwesomeSolidVestPatches": [], - "FontAwesomeSolidVial": [], - "FontAwesomeSolidVialCircleCheck": [], - "FontAwesomeSolidVialVirus": [], - "FontAwesomeSolidVials": [], - "FontAwesomeSolidVideo": [], - "FontAwesomeSolidVideoSlash": [], - "FontAwesomeSolidVihara": [], - "FontAwesomeSolidVirus": [], - "FontAwesomeSolidVirusCovid": [], - "FontAwesomeSolidVirusCovidSlash": [], - "FontAwesomeSolidVirusSlash": [], - "FontAwesomeSolidViruses": [], - "FontAwesomeSolidVoicemail": [], - "FontAwesomeSolidVolcano": [], - "FontAwesomeSolidVolleyball": [], - "FontAwesomeSolidVolumeHigh": [], - "FontAwesomeSolidVolumeLow": [], - "FontAwesomeSolidVolumeOff": [], - "FontAwesomeSolidVolumeXmark": [], - "FontAwesomeSolidVrCardboard": [], - "FontAwesomeSolidW": [], - "FontAwesomeSolidWalkieTalkie": [], - "FontAwesomeSolidWallet": [], - "FontAwesomeSolidWandMagic": [], - "FontAwesomeSolidWandMagicSparkles": [], - "FontAwesomeSolidWandSparkles": [], - "FontAwesomeSolidWarehouse": [], - "FontAwesomeSolidWater": [], - "FontAwesomeSolidWaterLadder": [], - "FontAwesomeSolidWaveSquare": [], - "FontAwesomeSolidWeightHanging": [], - "FontAwesomeSolidWeightScale": [], - "FontAwesomeSolidWheatAwn": [], - "FontAwesomeSolidWheatAwnCircleExclamation": [], - "FontAwesomeSolidWheelchair": [], - "FontAwesomeSolidWheelchairMove": [], - "FontAwesomeSolidWhiskeyGlass": [], - "FontAwesomeSolidWifi": [], - "FontAwesomeSolidWind": [], - "FontAwesomeSolidWindowMaximize": [], - "FontAwesomeSolidWindowMinimize": [], - "FontAwesomeSolidWindowRestore": [], - "FontAwesomeSolidWineBottle": [], - "FontAwesomeSolidWineGlass": [], - "FontAwesomeSolidWineGlassEmpty": [], - "FontAwesomeSolidWonSign": [], - "FontAwesomeSolidWorm": [], - "FontAwesomeSolidWrench": [], - "FontAwesomeSolidX": [], - "FontAwesomeSolidXRay": [], - "FontAwesomeSolidXmark": [], - "FontAwesomeSolidXmarksLines": [], - "FontAwesomeSolidY": [], - "FontAwesomeSolidYenSign": [], - "FontAwesomeSolidYinYang": [], - "FontAwesomeSolidZ": [], - "HeroiconsMiniSolidAcademicCap": [], - "HeroiconsMiniSolidAdjustmentsHorizontal": [], - "HeroiconsMiniSolidAdjustmentsVertical": [], - "HeroiconsMiniSolidArchiveBox": [], - "HeroiconsMiniSolidArchiveBoxArrowDown": [], - "HeroiconsMiniSolidArchiveBoxXMark": [], - "HeroiconsMiniSolidArrowDown": [], - "HeroiconsMiniSolidArrowDownCircle": [], - "HeroiconsMiniSolidArrowDownLeft": [], - "HeroiconsMiniSolidArrowDownOnSquare": [], - "HeroiconsMiniSolidArrowDownOnSquareStack": [], - "HeroiconsMiniSolidArrowDownRight": [], - "HeroiconsMiniSolidArrowDownTray": [], - "HeroiconsMiniSolidArrowLeft": [], - "HeroiconsMiniSolidArrowLeftCircle": [], - "HeroiconsMiniSolidArrowLeftOnRectangle": [], - "HeroiconsMiniSolidArrowLongDown": [], - "HeroiconsMiniSolidArrowLongLeft": [], - "HeroiconsMiniSolidArrowLongRight": [], - "HeroiconsMiniSolidArrowLongUp": [], - "HeroiconsMiniSolidArrowPath": [], - "HeroiconsMiniSolidArrowPathRoundedSquare": [], - "HeroiconsMiniSolidArrowRight": [], - "HeroiconsMiniSolidArrowRightCircle": [], - "HeroiconsMiniSolidArrowRightOnRectangle": [], - "HeroiconsMiniSolidArrowSmallDown": [], - "HeroiconsMiniSolidArrowSmallLeft": [], - "HeroiconsMiniSolidArrowSmallRight": [], - "HeroiconsMiniSolidArrowSmallUp": [], - "HeroiconsMiniSolidArrowTopRightOnSquare": [], - "HeroiconsMiniSolidArrowTrendingDown": [], - "HeroiconsMiniSolidArrowTrendingUp": [], - "HeroiconsMiniSolidArrowUp": [], - "HeroiconsMiniSolidArrowUpCircle": [], - "HeroiconsMiniSolidArrowUpLeft": [], - "HeroiconsMiniSolidArrowUpOnSquare": [], - "HeroiconsMiniSolidArrowUpOnSquareStack": [], - "HeroiconsMiniSolidArrowUpRight": [], - "HeroiconsMiniSolidArrowUpTray": [], - "HeroiconsMiniSolidArrowUturnDown": [], - "HeroiconsMiniSolidArrowUturnLeft": [], - "HeroiconsMiniSolidArrowUturnRight": [], - "HeroiconsMiniSolidArrowUturnUp": [], - "HeroiconsMiniSolidArrowsPointingIn": [], - "HeroiconsMiniSolidArrowsPointingOut": [], - "HeroiconsMiniSolidArrowsRightLeft": [], - "HeroiconsMiniSolidArrowsUpDown": [], - "HeroiconsMiniSolidAtSymbol": [], - "HeroiconsMiniSolidBackspace": [], - "HeroiconsMiniSolidBackward": [], - "HeroiconsMiniSolidBanknotes": [], - "HeroiconsMiniSolidBars2": [], - "HeroiconsMiniSolidBars3": [], - "HeroiconsMiniSolidBars3BottomLeft": [], - "HeroiconsMiniSolidBars3BottomRight": [], - "HeroiconsMiniSolidBars3CenterLeft": [], - "HeroiconsMiniSolidBars4": [], - "HeroiconsMiniSolidBarsArrowDown": [], - "HeroiconsMiniSolidBarsArrowUp": [], - "HeroiconsMiniSolidBattery0": [], - "HeroiconsMiniSolidBattery100": [], - "HeroiconsMiniSolidBattery50": [], - "HeroiconsMiniSolidBeaker": [], - "HeroiconsMiniSolidBell": [], - "HeroiconsMiniSolidBellAlert": [], - "HeroiconsMiniSolidBellSlash": [], - "HeroiconsMiniSolidBellSnooze": [], - "HeroiconsMiniSolidBolt": [], - "HeroiconsMiniSolidBoltSlash": [], - "HeroiconsMiniSolidBookOpen": [], - "HeroiconsMiniSolidBookmark": [], - "HeroiconsMiniSolidBookmarkSlash": [], - "HeroiconsMiniSolidBookmarkSquare": [], - "HeroiconsMiniSolidBriefcase": [], - "HeroiconsMiniSolidBugAnt": [], - "HeroiconsMiniSolidBuildingLibrary": [], - "HeroiconsMiniSolidBuildingOffice": [], - "HeroiconsMiniSolidBuildingOffice2": [], - "HeroiconsMiniSolidBuildingStorefront": [], - "HeroiconsMiniSolidCake": [], - "HeroiconsMiniSolidCalculator": [], - "HeroiconsMiniSolidCalendar": [], - "HeroiconsMiniSolidCalendarDays": [], - "HeroiconsMiniSolidCamera": [], - "HeroiconsMiniSolidChartBar": [], - "HeroiconsMiniSolidChartBarSquare": [], - "HeroiconsMiniSolidChartPie": [], - "HeroiconsMiniSolidChatBubbleBottomCenter": [], - "HeroiconsMiniSolidChatBubbleBottomCenterText": [], - "HeroiconsMiniSolidChatBubbleLeft": [], - "HeroiconsMiniSolidChatBubbleLeftEllipsis": [], - "HeroiconsMiniSolidChatBubbleLeftRight": [], - "HeroiconsMiniSolidChatBubbleOvalLeft": [], - "HeroiconsMiniSolidChatBubbleOvalLeftEllipsis": [], - "HeroiconsMiniSolidCheck": [], - "HeroiconsMiniSolidCheckBadge": [], - "HeroiconsMiniSolidCheckCircle": [], - "HeroiconsMiniSolidChevronDoubleDown": [], - "HeroiconsMiniSolidChevronDoubleLeft": [], - "HeroiconsMiniSolidChevronDoubleRight": [], - "HeroiconsMiniSolidChevronDoubleUp": [], - "HeroiconsMiniSolidChevronDown": [], - "HeroiconsMiniSolidChevronLeft": [], - "HeroiconsMiniSolidChevronRight": [], - "HeroiconsMiniSolidChevronUp": [], - "HeroiconsMiniSolidChevronUpDown": [], - "HeroiconsMiniSolidCircleStack": [], - "HeroiconsMiniSolidClipboard": [], - "HeroiconsMiniSolidClipboardDocument": [], - "HeroiconsMiniSolidClipboardDocumentCheck": [], - "HeroiconsMiniSolidClipboardDocumentList": [], - "HeroiconsMiniSolidClock": [], - "HeroiconsMiniSolidCloud": [], - "HeroiconsMiniSolidCloudArrowDown": [], - "HeroiconsMiniSolidCloudArrowUp": [], - "HeroiconsMiniSolidCodeBracket": [], - "HeroiconsMiniSolidCodeBracketSquare": [], - "HeroiconsMiniSolidCog": [], - "HeroiconsMiniSolidCog6Tooth": [], - "HeroiconsMiniSolidCog8Tooth": [], - "HeroiconsMiniSolidCommandLine": [], - "HeroiconsMiniSolidComputerDesktop": [], - "HeroiconsMiniSolidCpuChip": [], - "HeroiconsMiniSolidCreditCard": [], - "HeroiconsMiniSolidCube": [], - "HeroiconsMiniSolidCubeTransparent": [], - "HeroiconsMiniSolidCurrencyBangladeshi": [], - "HeroiconsMiniSolidCurrencyDollar": [], - "HeroiconsMiniSolidCurrencyEuro": [], - "HeroiconsMiniSolidCurrencyPound": [], - "HeroiconsMiniSolidCurrencyRupee": [], - "HeroiconsMiniSolidCurrencyYen": [], - "HeroiconsMiniSolidCursorArrowRays": [], - "HeroiconsMiniSolidCursorArrowRipple": [], - "HeroiconsMiniSolidDevicePhoneMobile": [], - "HeroiconsMiniSolidDeviceTablet": [], - "HeroiconsMiniSolidDocument": [], - "HeroiconsMiniSolidDocumentArrowDown": [], - "HeroiconsMiniSolidDocumentArrowUp": [], - "HeroiconsMiniSolidDocumentChartBar": [], - "HeroiconsMiniSolidDocumentCheck": [], - "HeroiconsMiniSolidDocumentDuplicate": [], - "HeroiconsMiniSolidDocumentMagnifyingGlass": [], - "HeroiconsMiniSolidDocumentMinus": [], - "HeroiconsMiniSolidDocumentPlus": [], - "HeroiconsMiniSolidDocumentText": [], - "HeroiconsMiniSolidEllipsisHorizontal": [], - "HeroiconsMiniSolidEllipsisHorizontalCircle": [], - "HeroiconsMiniSolidEllipsisVertical": [], - "HeroiconsMiniSolidEnvelope": [], - "HeroiconsMiniSolidEnvelopeOpen": [], - "HeroiconsMiniSolidExclamationCircle": [], - "HeroiconsMiniSolidExclamationTriangle": [], - "HeroiconsMiniSolidEye": [], - "HeroiconsMiniSolidEyeDropper": [], - "HeroiconsMiniSolidEyeSlash": [], - "HeroiconsMiniSolidFaceFrown": [], - "HeroiconsMiniSolidFaceSmile": [], - "HeroiconsMiniSolidFilm": [], - "HeroiconsMiniSolidFingerPrint": [], - "HeroiconsMiniSolidFire": [], - "HeroiconsMiniSolidFlag": [], - "HeroiconsMiniSolidFolder": [], - "HeroiconsMiniSolidFolderArrowDown": [], - "HeroiconsMiniSolidFolderMinus": [], - "HeroiconsMiniSolidFolderOpen": [], - "HeroiconsMiniSolidFolderPlus": [], - "HeroiconsMiniSolidForward": [], - "HeroiconsMiniSolidFunnel": [], - "HeroiconsMiniSolidGif": [], - "HeroiconsMiniSolidGift": [], - "HeroiconsMiniSolidGiftTop": [], - "HeroiconsMiniSolidGlobeAlt": [], - "HeroiconsMiniSolidGlobeAmericas": [], - "HeroiconsMiniSolidGlobeAsiaAustralia": [], - "HeroiconsMiniSolidGlobeEuropeAfrica": [], - "HeroiconsMiniSolidHandRaised": [], - "HeroiconsMiniSolidHandThumbDown": [], - "HeroiconsMiniSolidHandThumbUp": [], - "HeroiconsMiniSolidHashtag": [], - "HeroiconsMiniSolidHeart": [], - "HeroiconsMiniSolidHome": [], - "HeroiconsMiniSolidHomeModern": [], - "HeroiconsMiniSolidIdentification": [], - "HeroiconsMiniSolidInbox": [], - "HeroiconsMiniSolidInboxArrowDown": [], - "HeroiconsMiniSolidInboxStack": [], - "HeroiconsMiniSolidInformationCircle": [], - "HeroiconsMiniSolidKey": [], - "HeroiconsMiniSolidLanguage": [], - "HeroiconsMiniSolidLifebuoy": [], - "HeroiconsMiniSolidLightBulb": [], - "HeroiconsMiniSolidLink": [], - "HeroiconsMiniSolidListBullet": [], - "HeroiconsMiniSolidLockClosed": [], - "HeroiconsMiniSolidLockOpen": [], - "HeroiconsMiniSolidMagnifyingGlass": [], - "HeroiconsMiniSolidMagnifyingGlassCircle": [], - "HeroiconsMiniSolidMagnifyingGlassMinus": [], - "HeroiconsMiniSolidMagnifyingGlassPlus": [], - "HeroiconsMiniSolidMap": [], - "HeroiconsMiniSolidMapPin": [], - "HeroiconsMiniSolidMegaphone": [], - "HeroiconsMiniSolidMicrophone": [], - "HeroiconsMiniSolidMinus": [], - "HeroiconsMiniSolidMinusCircle": [], - "HeroiconsMiniSolidMinusSmall": [], - "HeroiconsMiniSolidMoon": [], - "HeroiconsMiniSolidMusicalNote": [], - "HeroiconsMiniSolidNewspaper": [], - "HeroiconsMiniSolidNoSymbol": [], - "HeroiconsMiniSolidPaintBrush": [], - "HeroiconsMiniSolidPaperAirplane": [], - "HeroiconsMiniSolidPaperClip": [], - "HeroiconsMiniSolidPause": [], - "HeroiconsMiniSolidPauseCircle": [], - "HeroiconsMiniSolidPencil": [], - "HeroiconsMiniSolidPencilSquare": [], - "HeroiconsMiniSolidPhone": [], - "HeroiconsMiniSolidPhoneArrowDownLeft": [], - "HeroiconsMiniSolidPhoneArrowUpRight": [], - "HeroiconsMiniSolidPhoneXMark": [], - "HeroiconsMiniSolidPhoto": [], - "HeroiconsMiniSolidPlay": [], - "HeroiconsMiniSolidPlayCircle": [], - "HeroiconsMiniSolidPlayPause": [], - "HeroiconsMiniSolidPlus": [], - "HeroiconsMiniSolidPlusCircle": [], - "HeroiconsMiniSolidPlusSmall": [], - "HeroiconsMiniSolidPower": [], - "HeroiconsMiniSolidPresentationChartBar": [], - "HeroiconsMiniSolidPresentationChartLine": [], - "HeroiconsMiniSolidPrinter": [], - "HeroiconsMiniSolidPuzzlePiece": [], - "HeroiconsMiniSolidQrCode": [], - "HeroiconsMiniSolidQuestionMarkCircle": [], - "HeroiconsMiniSolidQueueList": [], - "HeroiconsMiniSolidRadio": [], - "HeroiconsMiniSolidReceiptPercent": [], - "HeroiconsMiniSolidReceiptRefund": [], - "HeroiconsMiniSolidRectangleGroup": [], - "HeroiconsMiniSolidRectangleStack": [], - "HeroiconsMiniSolidRocketLaunch": [], - "HeroiconsMiniSolidRss": [], - "HeroiconsMiniSolidScale": [], - "HeroiconsMiniSolidScissors": [], - "HeroiconsMiniSolidServer": [], - "HeroiconsMiniSolidServerStack": [], - "HeroiconsMiniSolidShare": [], - "HeroiconsMiniSolidShieldCheck": [], - "HeroiconsMiniSolidShieldExclamation": [], - "HeroiconsMiniSolidShoppingBag": [], - "HeroiconsMiniSolidShoppingCart": [], - "HeroiconsMiniSolidSignal": [], - "HeroiconsMiniSolidSignalSlash": [], - "HeroiconsMiniSolidSparkles": [], - "HeroiconsMiniSolidSpeakerWave": [], - "HeroiconsMiniSolidSpeakerXMark": [], - "HeroiconsMiniSolidSquare2Stack": [], - "HeroiconsMiniSolidSquare3Stack3D": [], - "HeroiconsMiniSolidSquares2X2": [], - "HeroiconsMiniSolidSquaresPlus": [], - "HeroiconsMiniSolidStar": [], - "HeroiconsMiniSolidStop": [], - "HeroiconsMiniSolidStopCircle": [], - "HeroiconsMiniSolidSun": [], - "HeroiconsMiniSolidSwatch": [], - "HeroiconsMiniSolidTableCells": [], - "HeroiconsMiniSolidTag": [], - "HeroiconsMiniSolidTicket": [], - "HeroiconsMiniSolidTrash": [], - "HeroiconsMiniSolidTrophy": [], - "HeroiconsMiniSolidTruck": [], - "HeroiconsMiniSolidTv": [], - "HeroiconsMiniSolidUser": [], - "HeroiconsMiniSolidUserCircle": [], - "HeroiconsMiniSolidUserGroup": [], - "HeroiconsMiniSolidUserMinus": [], - "HeroiconsMiniSolidUserPlus": [], - "HeroiconsMiniSolidUsers": [], - "HeroiconsMiniSolidVariable": [], - "HeroiconsMiniSolidVideoCamera": [], - "HeroiconsMiniSolidVideoCameraSlash": [], - "HeroiconsMiniSolidViewColumns": [], - "HeroiconsMiniSolidViewfinderCircle": [], - "HeroiconsMiniSolidWallet": [], - "HeroiconsMiniSolidWifi": [], - "HeroiconsMiniSolidWindow": [], - "HeroiconsMiniSolidWrench": [], - "HeroiconsMiniSolidWrenchScrewdriver": [], - "HeroiconsMiniSolidXCircle": [], - "HeroiconsMiniSolidXMark": [], - "HeroiconsOutlineAcademicCap": [], - "HeroiconsOutlineAdjustmentsHorizontal": [], - "HeroiconsOutlineAdjustmentsVertical": [], - "HeroiconsOutlineArchiveBox": [], - "HeroiconsOutlineArchiveBoxArrowDown": [], - "HeroiconsOutlineArchiveBoxXMark": [], - "HeroiconsOutlineArrowDown": [], - "HeroiconsOutlineArrowDownCircle": [], - "HeroiconsOutlineArrowDownLeft": [], - "HeroiconsOutlineArrowDownOnSquare": [], - "HeroiconsOutlineArrowDownOnSquareStack": [], - "HeroiconsOutlineArrowDownRight": [], - "HeroiconsOutlineArrowDownTray": [], - "HeroiconsOutlineArrowLeft": [], - "HeroiconsOutlineArrowLeftCircle": [], - "HeroiconsOutlineArrowLeftOnRectangle": [], - "HeroiconsOutlineArrowLongDown": [], - "HeroiconsOutlineArrowLongLeft": [], - "HeroiconsOutlineArrowLongRight": [], - "HeroiconsOutlineArrowLongUp": [], - "HeroiconsOutlineArrowPath": [], - "HeroiconsOutlineArrowPathRoundedSquare": [], - "HeroiconsOutlineArrowRight": [], - "HeroiconsOutlineArrowRightCircle": [], - "HeroiconsOutlineArrowRightOnRectangle": [], - "HeroiconsOutlineArrowSmallDown": [], - "HeroiconsOutlineArrowSmallLeft": [], - "HeroiconsOutlineArrowSmallRight": [], - "HeroiconsOutlineArrowSmallUp": [], - "HeroiconsOutlineArrowTopRightOnSquare": [], - "HeroiconsOutlineArrowTrendingDown": [], - "HeroiconsOutlineArrowTrendingUp": [], - "HeroiconsOutlineArrowUp": [], - "HeroiconsOutlineArrowUpCircle": [], - "HeroiconsOutlineArrowUpLeft": [], - "HeroiconsOutlineArrowUpOnSquare": [], - "HeroiconsOutlineArrowUpOnSquareStack": [], - "HeroiconsOutlineArrowUpRight": [], - "HeroiconsOutlineArrowUpTray": [], - "HeroiconsOutlineArrowUturnDown": [], - "HeroiconsOutlineArrowUturnLeft": [], - "HeroiconsOutlineArrowUturnRight": [], - "HeroiconsOutlineArrowUturnUp": [], - "HeroiconsOutlineArrowsPointingIn": [], - "HeroiconsOutlineArrowsPointingOut": [], - "HeroiconsOutlineArrowsRightLeft": [], - "HeroiconsOutlineArrowsUpDown": [], - "HeroiconsOutlineAtSymbol": [], - "HeroiconsOutlineBackspace": [], - "HeroiconsOutlineBackward": [], - "HeroiconsOutlineBanknotes": [], - "HeroiconsOutlineBars2": [], - "HeroiconsOutlineBars3": [], - "HeroiconsOutlineBars3BottomLeft": [], - "HeroiconsOutlineBars3BottomRight": [], - "HeroiconsOutlineBars3CenterLeft": [], - "HeroiconsOutlineBars4": [], - "HeroiconsOutlineBarsArrowDown": [], - "HeroiconsOutlineBarsArrowUp": [], - "HeroiconsOutlineBattery0": [], - "HeroiconsOutlineBattery100": [], - "HeroiconsOutlineBattery50": [], - "HeroiconsOutlineBeaker": [], - "HeroiconsOutlineBell": [], - "HeroiconsOutlineBellAlert": [], - "HeroiconsOutlineBellSlash": [], - "HeroiconsOutlineBellSnooze": [], - "HeroiconsOutlineBolt": [], - "HeroiconsOutlineBoltSlash": [], - "HeroiconsOutlineBookOpen": [], - "HeroiconsOutlineBookmark": [], - "HeroiconsOutlineBookmarkSlash": [], - "HeroiconsOutlineBookmarkSquare": [], - "HeroiconsOutlineBriefcase": [], - "HeroiconsOutlineBugAnt": [], - "HeroiconsOutlineBuildingLibrary": [], - "HeroiconsOutlineBuildingOffice": [], - "HeroiconsOutlineBuildingOffice2": [], - "HeroiconsOutlineBuildingStorefront": [], - "HeroiconsOutlineCake": [], - "HeroiconsOutlineCalculator": [], - "HeroiconsOutlineCalendar": [], - "HeroiconsOutlineCalendarDays": [], - "HeroiconsOutlineCamera": [], - "HeroiconsOutlineChartBar": [], - "HeroiconsOutlineChartBarSquare": [], - "HeroiconsOutlineChartPie": [], - "HeroiconsOutlineChatBubbleBottomCenter": [], - "HeroiconsOutlineChatBubbleBottomCenterText": [], - "HeroiconsOutlineChatBubbleLeft": [], - "HeroiconsOutlineChatBubbleLeftEllipsis": [], - "HeroiconsOutlineChatBubbleLeftRight": [], - "HeroiconsOutlineChatBubbleOvalLeft": [], - "HeroiconsOutlineChatBubbleOvalLeftEllipsis": [], - "HeroiconsOutlineCheck": [], - "HeroiconsOutlineCheckBadge": [], - "HeroiconsOutlineCheckCircle": [], - "HeroiconsOutlineChevronDoubleDown": [], - "HeroiconsOutlineChevronDoubleLeft": [], - "HeroiconsOutlineChevronDoubleRight": [], - "HeroiconsOutlineChevronDoubleUp": [], - "HeroiconsOutlineChevronDown": [], - "HeroiconsOutlineChevronLeft": [], - "HeroiconsOutlineChevronRight": [], - "HeroiconsOutlineChevronUp": [], - "HeroiconsOutlineChevronUpDown": [], - "HeroiconsOutlineCircleStack": [], - "HeroiconsOutlineClipboard": [], - "HeroiconsOutlineClipboardDocument": [], - "HeroiconsOutlineClipboardDocumentCheck": [], - "HeroiconsOutlineClipboardDocumentList": [], - "HeroiconsOutlineClock": [], - "HeroiconsOutlineCloud": [], - "HeroiconsOutlineCloudArrowDown": [], - "HeroiconsOutlineCloudArrowUp": [], - "HeroiconsOutlineCodeBracket": [], - "HeroiconsOutlineCodeBracketSquare": [], - "HeroiconsOutlineCog": [], - "HeroiconsOutlineCog6Tooth": [], - "HeroiconsOutlineCog8Tooth": [], - "HeroiconsOutlineCommandLine": [], - "HeroiconsOutlineComputerDesktop": [], - "HeroiconsOutlineCpuChip": [], - "HeroiconsOutlineCreditCard": [], - "HeroiconsOutlineCube": [], - "HeroiconsOutlineCubeTransparent": [], - "HeroiconsOutlineCurrencyBangladeshi": [], - "HeroiconsOutlineCurrencyDollar": [], - "HeroiconsOutlineCurrencyEuro": [], - "HeroiconsOutlineCurrencyPound": [], - "HeroiconsOutlineCurrencyRupee": [], - "HeroiconsOutlineCurrencyYen": [], - "HeroiconsOutlineCursorArrowRays": [], - "HeroiconsOutlineCursorArrowRipple": [], - "HeroiconsOutlineDevicePhoneMobile": [], - "HeroiconsOutlineDeviceTablet": [], - "HeroiconsOutlineDocument": [], - "HeroiconsOutlineDocumentArrowDown": [], - "HeroiconsOutlineDocumentArrowUp": [], - "HeroiconsOutlineDocumentChartBar": [], - "HeroiconsOutlineDocumentCheck": [], - "HeroiconsOutlineDocumentDuplicate": [], - "HeroiconsOutlineDocumentMagnifyingGlass": [], - "HeroiconsOutlineDocumentMinus": [], - "HeroiconsOutlineDocumentPlus": [], - "HeroiconsOutlineDocumentText": [], - "HeroiconsOutlineEllipsisHorizontal": [], - "HeroiconsOutlineEllipsisHorizontalCircle": [], - "HeroiconsOutlineEllipsisVertical": [], - "HeroiconsOutlineEnvelope": [], - "HeroiconsOutlineEnvelopeOpen": [], - "HeroiconsOutlineExclamationCircle": [], - "HeroiconsOutlineExclamationTriangle": [], - "HeroiconsOutlineEye": [], - "HeroiconsOutlineEyeDropper": [], - "HeroiconsOutlineEyeSlash": [], - "HeroiconsOutlineFaceFrown": [], - "HeroiconsOutlineFaceSmile": [], - "HeroiconsOutlineFilm": [], - "HeroiconsOutlineFingerPrint": [], - "HeroiconsOutlineFire": [], - "HeroiconsOutlineFlag": [], - "HeroiconsOutlineFolder": [], - "HeroiconsOutlineFolderArrowDown": [], - "HeroiconsOutlineFolderMinus": [], - "HeroiconsOutlineFolderOpen": [], - "HeroiconsOutlineFolderPlus": [], - "HeroiconsOutlineForward": [], - "HeroiconsOutlineFunnel": [], - "HeroiconsOutlineGif": [], - "HeroiconsOutlineGift": [], - "HeroiconsOutlineGiftTop": [], - "HeroiconsOutlineGlobeAlt": [], - "HeroiconsOutlineGlobeAmericas": [], - "HeroiconsOutlineGlobeAsiaAustralia": [], - "HeroiconsOutlineGlobeEuropeAfrica": [], - "HeroiconsOutlineHandRaised": [], - "HeroiconsOutlineHandThumbDown": [], - "HeroiconsOutlineHandThumbUp": [], - "HeroiconsOutlineHashtag": [], - "HeroiconsOutlineHeart": [], - "HeroiconsOutlineHome": [], - "HeroiconsOutlineHomeModern": [], - "HeroiconsOutlineIdentification": [], - "HeroiconsOutlineInbox": [], - "HeroiconsOutlineInboxArrowDown": [], - "HeroiconsOutlineInboxStack": [], - "HeroiconsOutlineInformationCircle": [], - "HeroiconsOutlineKey": [], - "HeroiconsOutlineLanguage": [], - "HeroiconsOutlineLifebuoy": [], - "HeroiconsOutlineLightBulb": [], - "HeroiconsOutlineLink": [], - "HeroiconsOutlineListBullet": [], - "HeroiconsOutlineLockClosed": [], - "HeroiconsOutlineLockOpen": [], - "HeroiconsOutlineMagnifyingGlass": [], - "HeroiconsOutlineMagnifyingGlassCircle": [], - "HeroiconsOutlineMagnifyingGlassMinus": [], - "HeroiconsOutlineMagnifyingGlassPlus": [], - "HeroiconsOutlineMap": [], - "HeroiconsOutlineMapPin": [], - "HeroiconsOutlineMegaphone": [], - "HeroiconsOutlineMicrophone": [], - "HeroiconsOutlineMinus": [], - "HeroiconsOutlineMinusCircle": [], - "HeroiconsOutlineMinusSmall": [], - "HeroiconsOutlineMoon": [], - "HeroiconsOutlineMusicalNote": [], - "HeroiconsOutlineNewspaper": [], - "HeroiconsOutlineNoSymbol": [], - "HeroiconsOutlinePaintBrush": [], - "HeroiconsOutlinePaperAirplane": [], - "HeroiconsOutlinePaperClip": [], - "HeroiconsOutlinePause": [], - "HeroiconsOutlinePauseCircle": [], - "HeroiconsOutlinePencil": [], - "HeroiconsOutlinePencilSquare": [], - "HeroiconsOutlinePhone": [], - "HeroiconsOutlinePhoneArrowDownLeft": [], - "HeroiconsOutlinePhoneArrowUpRight": [], - "HeroiconsOutlinePhoneXMark": [], - "HeroiconsOutlinePhoto": [], - "HeroiconsOutlinePlay": [], - "HeroiconsOutlinePlayCircle": [], - "HeroiconsOutlinePlayPause": [], - "HeroiconsOutlinePlus": [], - "HeroiconsOutlinePlusCircle": [], - "HeroiconsOutlinePlusSmall": [], - "HeroiconsOutlinePower": [], - "HeroiconsOutlinePresentationChartBar": [], - "HeroiconsOutlinePresentationChartLine": [], - "HeroiconsOutlinePrinter": [], - "HeroiconsOutlinePuzzlePiece": [], - "HeroiconsOutlineQrCode": [], - "HeroiconsOutlineQuestionMarkCircle": [], - "HeroiconsOutlineQueueList": [], - "HeroiconsOutlineRadio": [], - "HeroiconsOutlineReceiptPercent": [], - "HeroiconsOutlineReceiptRefund": [], - "HeroiconsOutlineRectangleGroup": [], - "HeroiconsOutlineRectangleStack": [], - "HeroiconsOutlineRocketLaunch": [], - "HeroiconsOutlineRss": [], - "HeroiconsOutlineScale": [], - "HeroiconsOutlineScissors": [], - "HeroiconsOutlineServer": [], - "HeroiconsOutlineServerStack": [], - "HeroiconsOutlineShare": [], - "HeroiconsOutlineShieldCheck": [], - "HeroiconsOutlineShieldExclamation": [], - "HeroiconsOutlineShoppingBag": [], - "HeroiconsOutlineShoppingCart": [], - "HeroiconsOutlineSignal": [], - "HeroiconsOutlineSignalSlash": [], - "HeroiconsOutlineSparkles": [], - "HeroiconsOutlineSpeakerWave": [], - "HeroiconsOutlineSpeakerXMark": [], - "HeroiconsOutlineSquare2Stack": [], - "HeroiconsOutlineSquare3Stack3D": [], - "HeroiconsOutlineSquares2X2": [], - "HeroiconsOutlineSquaresPlus": [], - "HeroiconsOutlineStar": [], - "HeroiconsOutlineStop": [], - "HeroiconsOutlineStopCircle": [], - "HeroiconsOutlineSun": [], - "HeroiconsOutlineSwatch": [], - "HeroiconsOutlineTableCells": [], - "HeroiconsOutlineTag": [], - "HeroiconsOutlineTicket": [], - "HeroiconsOutlineTrash": [], - "HeroiconsOutlineTrophy": [], - "HeroiconsOutlineTruck": [], - "HeroiconsOutlineTv": [], - "HeroiconsOutlineUser": [], - "HeroiconsOutlineUserCircle": [], - "HeroiconsOutlineUserGroup": [], - "HeroiconsOutlineUserMinus": [], - "HeroiconsOutlineUserPlus": [], - "HeroiconsOutlineUsers": [], - "HeroiconsOutlineVariable": [], - "HeroiconsOutlineVideoCamera": [], - "HeroiconsOutlineVideoCameraSlash": [], - "HeroiconsOutlineViewColumns": [], - "HeroiconsOutlineViewfinderCircle": [], - "HeroiconsOutlineWallet": [], - "HeroiconsOutlineWifi": [], - "HeroiconsOutlineWindow": [], - "HeroiconsOutlineWrench": [], - "HeroiconsOutlineWrenchScrewdriver": [], - "HeroiconsOutlineXCircle": [], - "HeroiconsOutlineXMark": [], - "HeroiconsSolidAcademicCap": [], - "HeroiconsSolidAdjustmentsHorizontal": [], - "HeroiconsSolidAdjustmentsVertical": [], - "HeroiconsSolidArchiveBox": [], - "HeroiconsSolidArchiveBoxArrowDown": [], - "HeroiconsSolidArchiveBoxXMark": [], - "HeroiconsSolidArrowDown": [], - "HeroiconsSolidArrowDownCircle": [], - "HeroiconsSolidArrowDownLeft": [], - "HeroiconsSolidArrowDownOnSquare": [], - "HeroiconsSolidArrowDownOnSquareStack": [], - "HeroiconsSolidArrowDownRight": [], - "HeroiconsSolidArrowDownTray": [], - "HeroiconsSolidArrowLeft": [], - "HeroiconsSolidArrowLeftCircle": [], - "HeroiconsSolidArrowLeftOnRectangle": [], - "HeroiconsSolidArrowLongDown": [], - "HeroiconsSolidArrowLongLeft": [], - "HeroiconsSolidArrowLongRight": [], - "HeroiconsSolidArrowLongUp": [], - "HeroiconsSolidArrowPath": [], - "HeroiconsSolidArrowPathRoundedSquare": [], - "HeroiconsSolidArrowRight": [], - "HeroiconsSolidArrowRightCircle": [], - "HeroiconsSolidArrowRightOnRectangle": [], - "HeroiconsSolidArrowSmallDown": [], - "HeroiconsSolidArrowSmallLeft": [], - "HeroiconsSolidArrowSmallRight": [], - "HeroiconsSolidArrowSmallUp": [], - "HeroiconsSolidArrowTopRightOnSquare": [], - "HeroiconsSolidArrowTrendingDown": [], - "HeroiconsSolidArrowTrendingUp": [], - "HeroiconsSolidArrowUp": [], - "HeroiconsSolidArrowUpCircle": [], - "HeroiconsSolidArrowUpLeft": [], - "HeroiconsSolidArrowUpOnSquare": [], - "HeroiconsSolidArrowUpOnSquareStack": [], - "HeroiconsSolidArrowUpRight": [], - "HeroiconsSolidArrowUpTray": [], - "HeroiconsSolidArrowUturnDown": [], - "HeroiconsSolidArrowUturnLeft": [], - "HeroiconsSolidArrowUturnRight": [], - "HeroiconsSolidArrowUturnUp": [], - "HeroiconsSolidArrowsPointingIn": [], - "HeroiconsSolidArrowsPointingOut": [], - "HeroiconsSolidArrowsRightLeft": [], - "HeroiconsSolidArrowsUpDown": [], - "HeroiconsSolidAtSymbol": [], - "HeroiconsSolidBackspace": [], - "HeroiconsSolidBackward": [], - "HeroiconsSolidBanknotes": [], - "HeroiconsSolidBars2": [], - "HeroiconsSolidBars3": [], - "HeroiconsSolidBars3BottomLeft": [], - "HeroiconsSolidBars3BottomRight": [], - "HeroiconsSolidBars3CenterLeft": [], - "HeroiconsSolidBars4": [], - "HeroiconsSolidBarsArrowDown": [], - "HeroiconsSolidBarsArrowUp": [], - "HeroiconsSolidBattery0": [], - "HeroiconsSolidBattery100": [], - "HeroiconsSolidBattery50": [], - "HeroiconsSolidBeaker": [], - "HeroiconsSolidBell": [], - "HeroiconsSolidBellAlert": [], - "HeroiconsSolidBellSlash": [], - "HeroiconsSolidBellSnooze": [], - "HeroiconsSolidBolt": [], - "HeroiconsSolidBoltSlash": [], - "HeroiconsSolidBookOpen": [], - "HeroiconsSolidBookmark": [], - "HeroiconsSolidBookmarkSlash": [], - "HeroiconsSolidBookmarkSquare": [], - "HeroiconsSolidBriefcase": [], - "HeroiconsSolidBugAnt": [], - "HeroiconsSolidBuildingLibrary": [], - "HeroiconsSolidBuildingOffice": [], - "HeroiconsSolidBuildingOffice2": [], - "HeroiconsSolidBuildingStorefront": [], - "HeroiconsSolidCake": [], - "HeroiconsSolidCalculator": [], - "HeroiconsSolidCalendar": [], - "HeroiconsSolidCalendarDays": [], - "HeroiconsSolidCamera": [], - "HeroiconsSolidChartBar": [], - "HeroiconsSolidChartBarSquare": [], - "HeroiconsSolidChartPie": [], - "HeroiconsSolidChatBubbleBottomCenter": [], - "HeroiconsSolidChatBubbleBottomCenterText": [], - "HeroiconsSolidChatBubbleLeft": [], - "HeroiconsSolidChatBubbleLeftEllipsis": [], - "HeroiconsSolidChatBubbleLeftRight": [], - "HeroiconsSolidChatBubbleOvalLeft": [], - "HeroiconsSolidChatBubbleOvalLeftEllipsis": [], - "HeroiconsSolidCheck": [], - "HeroiconsSolidCheckBadge": [], - "HeroiconsSolidCheckCircle": [], - "HeroiconsSolidChevronDoubleDown": [], - "HeroiconsSolidChevronDoubleLeft": [], - "HeroiconsSolidChevronDoubleRight": [], - "HeroiconsSolidChevronDoubleUp": [], - "HeroiconsSolidChevronDown": [], - "HeroiconsSolidChevronLeft": [], - "HeroiconsSolidChevronRight": [], - "HeroiconsSolidChevronUp": [], - "HeroiconsSolidChevronUpDown": [], - "HeroiconsSolidCircleStack": [], - "HeroiconsSolidClipboard": [], - "HeroiconsSolidClipboardDocument": [], - "HeroiconsSolidClipboardDocumentCheck": [], - "HeroiconsSolidClipboardDocumentList": [], - "HeroiconsSolidClock": [], - "HeroiconsSolidCloud": [], - "HeroiconsSolidCloudArrowDown": [], - "HeroiconsSolidCloudArrowUp": [], - "HeroiconsSolidCodeBracket": [], - "HeroiconsSolidCodeBracketSquare": [], - "HeroiconsSolidCog": [], - "HeroiconsSolidCog6Tooth": [], - "HeroiconsSolidCog8Tooth": [], - "HeroiconsSolidCommandLine": [], - "HeroiconsSolidComputerDesktop": [], - "HeroiconsSolidCpuChip": [], - "HeroiconsSolidCreditCard": [], - "HeroiconsSolidCube": [], - "HeroiconsSolidCubeTransparent": [], - "HeroiconsSolidCurrencyBangladeshi": [], - "HeroiconsSolidCurrencyDollar": [], - "HeroiconsSolidCurrencyEuro": [], - "HeroiconsSolidCurrencyPound": [], - "HeroiconsSolidCurrencyRupee": [], - "HeroiconsSolidCurrencyYen": [], - "HeroiconsSolidCursorArrowRays": [], - "HeroiconsSolidCursorArrowRipple": [], - "HeroiconsSolidDevicePhoneMobile": [], - "HeroiconsSolidDeviceTablet": [], - "HeroiconsSolidDocument": [], - "HeroiconsSolidDocumentArrowDown": [], - "HeroiconsSolidDocumentArrowUp": [], - "HeroiconsSolidDocumentChartBar": [], - "HeroiconsSolidDocumentCheck": [], - "HeroiconsSolidDocumentDuplicate": [], - "HeroiconsSolidDocumentMagnifyingGlass": [], - "HeroiconsSolidDocumentMinus": [], - "HeroiconsSolidDocumentPlus": [], - "HeroiconsSolidDocumentText": [], - "HeroiconsSolidEllipsisHorizontal": [], - "HeroiconsSolidEllipsisHorizontalCircle": [], - "HeroiconsSolidEllipsisVertical": [], - "HeroiconsSolidEnvelope": [], - "HeroiconsSolidEnvelopeOpen": [], - "HeroiconsSolidExclamationCircle": [], - "HeroiconsSolidExclamationTriangle": [], - "HeroiconsSolidEye": [], - "HeroiconsSolidEyeDropper": [], - "HeroiconsSolidEyeSlash": [], - "HeroiconsSolidFaceFrown": [], - "HeroiconsSolidFaceSmile": [], - "HeroiconsSolidFilm": [], - "HeroiconsSolidFingerPrint": [], - "HeroiconsSolidFire": [], - "HeroiconsSolidFlag": [], - "HeroiconsSolidFolder": [], - "HeroiconsSolidFolderArrowDown": [], - "HeroiconsSolidFolderMinus": [], - "HeroiconsSolidFolderOpen": [], - "HeroiconsSolidFolderPlus": [], - "HeroiconsSolidForward": [], - "HeroiconsSolidFunnel": [], - "HeroiconsSolidGif": [], - "HeroiconsSolidGift": [], - "HeroiconsSolidGiftTop": [], - "HeroiconsSolidGlobeAlt": [], - "HeroiconsSolidGlobeAmericas": [], - "HeroiconsSolidGlobeAsiaAustralia": [], - "HeroiconsSolidGlobeEuropeAfrica": [], - "HeroiconsSolidHandRaised": [], - "HeroiconsSolidHandThumbDown": [], - "HeroiconsSolidHandThumbUp": [], - "HeroiconsSolidHashtag": [], - "HeroiconsSolidHeart": [], - "HeroiconsSolidHome": [], - "HeroiconsSolidHomeModern": [], - "HeroiconsSolidIdentification": [], - "HeroiconsSolidInbox": [], - "HeroiconsSolidInboxArrowDown": [], - "HeroiconsSolidInboxStack": [], - "HeroiconsSolidInformationCircle": [], - "HeroiconsSolidKey": [], - "HeroiconsSolidLanguage": [], - "HeroiconsSolidLifebuoy": [], - "HeroiconsSolidLightBulb": [], - "HeroiconsSolidLink": [], - "HeroiconsSolidListBullet": [], - "HeroiconsSolidLockClosed": [], - "HeroiconsSolidLockOpen": [], - "HeroiconsSolidMagnifyingGlass": [], - "HeroiconsSolidMagnifyingGlassCircle": [], - "HeroiconsSolidMagnifyingGlassMinus": [], - "HeroiconsSolidMagnifyingGlassPlus": [], - "HeroiconsSolidMap": [], - "HeroiconsSolidMapPin": [], - "HeroiconsSolidMegaphone": [], - "HeroiconsSolidMicrophone": [], - "HeroiconsSolidMinus": [], - "HeroiconsSolidMinusCircle": [], - "HeroiconsSolidMinusSmall": [], - "HeroiconsSolidMoon": [], - "HeroiconsSolidMusicalNote": [], - "HeroiconsSolidNewspaper": [], - "HeroiconsSolidNoSymbol": [], - "HeroiconsSolidPaintBrush": [], - "HeroiconsSolidPaperAirplane": [], - "HeroiconsSolidPaperClip": [], - "HeroiconsSolidPause": [], - "HeroiconsSolidPauseCircle": [], - "HeroiconsSolidPencil": [], - "HeroiconsSolidPencilSquare": [], - "HeroiconsSolidPhone": [], - "HeroiconsSolidPhoneArrowDownLeft": [], - "HeroiconsSolidPhoneArrowUpRight": [], - "HeroiconsSolidPhoneXMark": [], - "HeroiconsSolidPhoto": [], - "HeroiconsSolidPlay": [], - "HeroiconsSolidPlayCircle": [], - "HeroiconsSolidPlayPause": [], - "HeroiconsSolidPlus": [], - "HeroiconsSolidPlusCircle": [], - "HeroiconsSolidPlusSmall": [], - "HeroiconsSolidPower": [], - "HeroiconsSolidPresentationChartBar": [], - "HeroiconsSolidPresentationChartLine": [], - "HeroiconsSolidPrinter": [], - "HeroiconsSolidPuzzlePiece": [], - "HeroiconsSolidQrCode": [], - "HeroiconsSolidQuestionMarkCircle": [], - "HeroiconsSolidQueueList": [], - "HeroiconsSolidRadio": [], - "HeroiconsSolidReceiptPercent": [], - "HeroiconsSolidReceiptRefund": [], - "HeroiconsSolidRectangleGroup": [], - "HeroiconsSolidRectangleStack": [], - "HeroiconsSolidRocketLaunch": [], - "HeroiconsSolidRss": [], - "HeroiconsSolidScale": [], - "HeroiconsSolidScissors": [], - "HeroiconsSolidServer": [], - "HeroiconsSolidServerStack": [], - "HeroiconsSolidShare": [], - "HeroiconsSolidShieldCheck": [], - "HeroiconsSolidShieldExclamation": [], - "HeroiconsSolidShoppingBag": [], - "HeroiconsSolidShoppingCart": [], - "HeroiconsSolidSignal": [], - "HeroiconsSolidSignalSlash": [], - "HeroiconsSolidSparkles": [], - "HeroiconsSolidSpeakerWave": [], - "HeroiconsSolidSpeakerXMark": [], - "HeroiconsSolidSquare2Stack": [], - "HeroiconsSolidSquare3Stack3D": [], - "HeroiconsSolidSquares2X2": [], - "HeroiconsSolidSquaresPlus": [], - "HeroiconsSolidStar": [], - "HeroiconsSolidStop": [], - "HeroiconsSolidStopCircle": [], - "HeroiconsSolidSun": [], - "HeroiconsSolidSwatch": [], - "HeroiconsSolidTableCells": [], - "HeroiconsSolidTag": [], - "HeroiconsSolidTicket": [], - "HeroiconsSolidTrash": [], - "HeroiconsSolidTrophy": [], - "HeroiconsSolidTruck": [], - "HeroiconsSolidTv": [], - "HeroiconsSolidUser": [], - "HeroiconsSolidUserCircle": [], - "HeroiconsSolidUserGroup": [], - "HeroiconsSolidUserMinus": [], - "HeroiconsSolidUserPlus": [], - "HeroiconsSolidUsers": [], - "HeroiconsSolidVariable": [], - "HeroiconsSolidVideoCamera": [], - "HeroiconsSolidVideoCameraSlash": [], - "HeroiconsSolidViewColumns": [], - "HeroiconsSolidViewfinderCircle": [], - "HeroiconsSolidWallet": [], - "HeroiconsSolidWifi": [], - "HeroiconsSolidWindow": [], - "HeroiconsSolidWrench": [], - "HeroiconsSolidWrenchScrewdriver": [], - "HeroiconsSolidXCircle": [], - "HeroiconsSolidXMark": [], - "LipisFlagIcons1X1Ac": [], - "LipisFlagIcons1X1Ad": [], - "LipisFlagIcons1X1Ae": [], - "LipisFlagIcons1X1Af": [], - "LipisFlagIcons1X1Ag": [], - "LipisFlagIcons1X1Ai": [], - "LipisFlagIcons1X1Al": [], - "LipisFlagIcons1X1Am": [], - "LipisFlagIcons1X1Ao": [], - "LipisFlagIcons1X1Aq": [], - "LipisFlagIcons1X1Ar": [], - "LipisFlagIcons1X1As": [], - "LipisFlagIcons1X1At": [], - "LipisFlagIcons1X1Au": [], - "LipisFlagIcons1X1Aw": [], - "LipisFlagIcons1X1Ax": [], - "LipisFlagIcons1X1Az": [], - "LipisFlagIcons1X1Ba": [], - "LipisFlagIcons1X1Bb": [], - "LipisFlagIcons1X1Bd": [], - "LipisFlagIcons1X1Be": [], - "LipisFlagIcons1X1Bf": [], - "LipisFlagIcons1X1Bg": [], - "LipisFlagIcons1X1Bh": [], - "LipisFlagIcons1X1Bi": [], - "LipisFlagIcons1X1Bj": [], - "LipisFlagIcons1X1Bl": [], - "LipisFlagIcons1X1Bm": [], - "LipisFlagIcons1X1Bn": [], - "LipisFlagIcons1X1Bo": [], - "LipisFlagIcons1X1Bq": [], - "LipisFlagIcons1X1Br": [], - "LipisFlagIcons1X1Bs": [], - "LipisFlagIcons1X1Bt": [], - "LipisFlagIcons1X1Bv": [], - "LipisFlagIcons1X1Bw": [], - "LipisFlagIcons1X1By": [], - "LipisFlagIcons1X1Bz": [], - "LipisFlagIcons1X1Ca": [], - "LipisFlagIcons1X1Cc": [], - "LipisFlagIcons1X1Cd": [], - "LipisFlagIcons1X1Cefta": [], - "LipisFlagIcons1X1Cf": [], - "LipisFlagIcons1X1Cg": [], - "LipisFlagIcons1X1Ch": [], - "LipisFlagIcons1X1Ci": [], - "LipisFlagIcons1X1Ck": [], - "LipisFlagIcons1X1Cl": [], - "LipisFlagIcons1X1Cm": [], - "LipisFlagIcons1X1Cn": [], - "LipisFlagIcons1X1Co": [], - "LipisFlagIcons1X1Cp": [], - "LipisFlagIcons1X1Cr": [], - "LipisFlagIcons1X1Cu": [], - "LipisFlagIcons1X1Cv": [], - "LipisFlagIcons1X1Cw": [], - "LipisFlagIcons1X1Cx": [], - "LipisFlagIcons1X1Cy": [], - "LipisFlagIcons1X1Cz": [], - "LipisFlagIcons1X1De": [], - "LipisFlagIcons1X1Dg": [], - "LipisFlagIcons1X1Dj": [], - "LipisFlagIcons1X1Dk": [], - "LipisFlagIcons1X1Dm": [], - "LipisFlagIcons1X1Do": [], - "LipisFlagIcons1X1Dz": [], - "LipisFlagIcons1X1Ea": [], - "LipisFlagIcons1X1Ec": [], - "LipisFlagIcons1X1Ee": [], - "LipisFlagIcons1X1Eg": [], - "LipisFlagIcons1X1Eh": [], - "LipisFlagIcons1X1Er": [], - "LipisFlagIcons1X1Es": [], - "LipisFlagIcons1X1EsCt": [], - "LipisFlagIcons1X1EsGa": [], - "LipisFlagIcons1X1Et": [], - "LipisFlagIcons1X1Eu": [], - "LipisFlagIcons1X1Fi": [], - "LipisFlagIcons1X1Fj": [], - "LipisFlagIcons1X1Fk": [], - "LipisFlagIcons1X1Fm": [], - "LipisFlagIcons1X1Fo": [], - "LipisFlagIcons1X1Fr": [], - "LipisFlagIcons1X1Ga": [], - "LipisFlagIcons1X1Gb": [], - "LipisFlagIcons1X1GbEng": [], - "LipisFlagIcons1X1GbNir": [], - "LipisFlagIcons1X1GbSct": [], - "LipisFlagIcons1X1GbWls": [], - "LipisFlagIcons1X1Gd": [], - "LipisFlagIcons1X1Ge": [], - "LipisFlagIcons1X1Gf": [], - "LipisFlagIcons1X1Gg": [], - "LipisFlagIcons1X1Gh": [], - "LipisFlagIcons1X1Gi": [], - "LipisFlagIcons1X1Gl": [], - "LipisFlagIcons1X1Gm": [], - "LipisFlagIcons1X1Gn": [], - "LipisFlagIcons1X1Gp": [], - "LipisFlagIcons1X1Gq": [], - "LipisFlagIcons1X1Gr": [], - "LipisFlagIcons1X1Gs": [], - "LipisFlagIcons1X1Gt": [], - "LipisFlagIcons1X1Gu": [], - "LipisFlagIcons1X1Gw": [], - "LipisFlagIcons1X1Gy": [], - "LipisFlagIcons1X1Hk": [], - "LipisFlagIcons1X1Hm": [], - "LipisFlagIcons1X1Hn": [], - "LipisFlagIcons1X1Hr": [], - "LipisFlagIcons1X1Ht": [], - "LipisFlagIcons1X1Hu": [], - "LipisFlagIcons1X1Ic": [], - "LipisFlagIcons1X1Id": [], - "LipisFlagIcons1X1Ie": [], - "LipisFlagIcons1X1Il": [], - "LipisFlagIcons1X1Im": [], - "LipisFlagIcons1X1In": [], - "LipisFlagIcons1X1Io": [], - "LipisFlagIcons1X1Iq": [], - "LipisFlagIcons1X1Ir": [], - "LipisFlagIcons1X1Is": [], - "LipisFlagIcons1X1It": [], - "LipisFlagIcons1X1Je": [], - "LipisFlagIcons1X1Jm": [], - "LipisFlagIcons1X1Jo": [], - "LipisFlagIcons1X1Jp": [], - "LipisFlagIcons1X1Ke": [], - "LipisFlagIcons1X1Kg": [], - "LipisFlagIcons1X1Kh": [], - "LipisFlagIcons1X1Ki": [], - "LipisFlagIcons1X1Km": [], - "LipisFlagIcons1X1Kn": [], - "LipisFlagIcons1X1Kp": [], - "LipisFlagIcons1X1Kr": [], - "LipisFlagIcons1X1Kw": [], - "LipisFlagIcons1X1Ky": [], - "LipisFlagIcons1X1Kz": [], - "LipisFlagIcons1X1La": [], - "LipisFlagIcons1X1Lb": [], - "LipisFlagIcons1X1Lc": [], - "LipisFlagIcons1X1Li": [], - "LipisFlagIcons1X1Lk": [], - "LipisFlagIcons1X1Lr": [], - "LipisFlagIcons1X1Ls": [], - "LipisFlagIcons1X1Lt": [], - "LipisFlagIcons1X1Lu": [], - "LipisFlagIcons1X1Lv": [], - "LipisFlagIcons1X1Ly": [], - "LipisFlagIcons1X1Ma": [], - "LipisFlagIcons1X1Mc": [], - "LipisFlagIcons1X1Md": [], - "LipisFlagIcons1X1Me": [], - "LipisFlagIcons1X1Mf": [], - "LipisFlagIcons1X1Mg": [], - "LipisFlagIcons1X1Mh": [], - "LipisFlagIcons1X1Mk": [], - "LipisFlagIcons1X1Ml": [], - "LipisFlagIcons1X1Mm": [], - "LipisFlagIcons1X1Mn": [], - "LipisFlagIcons1X1Mo": [], - "LipisFlagIcons1X1Mp": [], - "LipisFlagIcons1X1Mq": [], - "LipisFlagIcons1X1Mr": [], - "LipisFlagIcons1X1Ms": [], - "LipisFlagIcons1X1Mt": [], - "LipisFlagIcons1X1Mu": [], - "LipisFlagIcons1X1Mv": [], - "LipisFlagIcons1X1Mw": [], - "LipisFlagIcons1X1Mx": [], - "LipisFlagIcons1X1My": [], - "LipisFlagIcons1X1Mz": [], - "LipisFlagIcons1X1Na": [], - "LipisFlagIcons1X1Nc": [], - "LipisFlagIcons1X1Ne": [], - "LipisFlagIcons1X1Nf": [], - "LipisFlagIcons1X1Ng": [], - "LipisFlagIcons1X1Ni": [], - "LipisFlagIcons1X1Nl": [], - "LipisFlagIcons1X1No": [], - "LipisFlagIcons1X1Np": [], - "LipisFlagIcons1X1Nr": [], - "LipisFlagIcons1X1Nu": [], - "LipisFlagIcons1X1Nz": [], - "LipisFlagIcons1X1Om": [], - "LipisFlagIcons1X1Pa": [], - "LipisFlagIcons1X1Pe": [], - "LipisFlagIcons1X1Pf": [], - "LipisFlagIcons1X1Pg": [], - "LipisFlagIcons1X1Ph": [], - "LipisFlagIcons1X1Pk": [], - "LipisFlagIcons1X1Pl": [], - "LipisFlagIcons1X1Pm": [], - "LipisFlagIcons1X1Pn": [], - "LipisFlagIcons1X1Pr": [], - "LipisFlagIcons1X1Ps": [], - "LipisFlagIcons1X1Pt": [], - "LipisFlagIcons1X1Pw": [], - "LipisFlagIcons1X1Py": [], - "LipisFlagIcons1X1Qa": [], - "LipisFlagIcons1X1Re": [], - "LipisFlagIcons1X1Ro": [], - "LipisFlagIcons1X1Rs": [], - "LipisFlagIcons1X1Ru": [], - "LipisFlagIcons1X1Rw": [], - "LipisFlagIcons1X1Sa": [], - "LipisFlagIcons1X1Sb": [], - "LipisFlagIcons1X1Sc": [], - "LipisFlagIcons1X1Sd": [], - "LipisFlagIcons1X1Se": [], - "LipisFlagIcons1X1Sg": [], - "LipisFlagIcons1X1Sh": [], - "LipisFlagIcons1X1Si": [], - "LipisFlagIcons1X1Sj": [], - "LipisFlagIcons1X1Sk": [], - "LipisFlagIcons1X1Sl": [], - "LipisFlagIcons1X1Sm": [], - "LipisFlagIcons1X1Sn": [], - "LipisFlagIcons1X1So": [], - "LipisFlagIcons1X1Sr": [], - "LipisFlagIcons1X1Ss": [], - "LipisFlagIcons1X1St": [], - "LipisFlagIcons1X1Sv": [], - "LipisFlagIcons1X1Sx": [], - "LipisFlagIcons1X1Sy": [], - "LipisFlagIcons1X1Sz": [], - "LipisFlagIcons1X1Ta": [], - "LipisFlagIcons1X1Tc": [], - "LipisFlagIcons1X1Td": [], - "LipisFlagIcons1X1Tf": [], - "LipisFlagIcons1X1Tg": [], - "LipisFlagIcons1X1Th": [], - "LipisFlagIcons1X1Tj": [], - "LipisFlagIcons1X1Tk": [], - "LipisFlagIcons1X1Tl": [], - "LipisFlagIcons1X1Tm": [], - "LipisFlagIcons1X1Tn": [], - "LipisFlagIcons1X1To": [], - "LipisFlagIcons1X1Tr": [], - "LipisFlagIcons1X1Tt": [], - "LipisFlagIcons1X1Tv": [], - "LipisFlagIcons1X1Tw": [], - "LipisFlagIcons1X1Tz": [], - "LipisFlagIcons1X1Ua": [], - "LipisFlagIcons1X1Ug": [], - "LipisFlagIcons1X1Um": [], - "LipisFlagIcons1X1Un": [], - "LipisFlagIcons1X1Us": [], - "LipisFlagIcons1X1Uy": [], - "LipisFlagIcons1X1Uz": [], - "LipisFlagIcons1X1Va": [], - "LipisFlagIcons1X1Vc": [], - "LipisFlagIcons1X1Ve": [], - "LipisFlagIcons1X1Vg": [], - "LipisFlagIcons1X1Vi": [], - "LipisFlagIcons1X1Vn": [], - "LipisFlagIcons1X1Vu": [], - "LipisFlagIcons1X1Wf": [], - "LipisFlagIcons1X1Ws": [], - "LipisFlagIcons1X1Xk": [], - "LipisFlagIcons1X1Xx": [], - "LipisFlagIcons1X1Ye": [], - "LipisFlagIcons1X1Yt": [], - "LipisFlagIcons1X1Za": [], - "LipisFlagIcons1X1Zm": [], - "LipisFlagIcons1X1Zw": [], - "LipisFlagIcons4X3Ac": [], - "LipisFlagIcons4X3Ad": [], - "LipisFlagIcons4X3Ae": [], - "LipisFlagIcons4X3Af": [], - "LipisFlagIcons4X3Ag": [], - "LipisFlagIcons4X3Ai": [], - "LipisFlagIcons4X3Al": [], - "LipisFlagIcons4X3Am": [], - "LipisFlagIcons4X3Ao": [], - "LipisFlagIcons4X3Aq": [], - "LipisFlagIcons4X3Ar": [], - "LipisFlagIcons4X3As": [], - "LipisFlagIcons4X3At": [], - "LipisFlagIcons4X3Au": [], - "LipisFlagIcons4X3Aw": [], - "LipisFlagIcons4X3Ax": [], - "LipisFlagIcons4X3Az": [], - "LipisFlagIcons4X3Ba": [], - "LipisFlagIcons4X3Bb": [], - "LipisFlagIcons4X3Bd": [], - "LipisFlagIcons4X3Be": [], - "LipisFlagIcons4X3Bf": [], - "LipisFlagIcons4X3Bg": [], - "LipisFlagIcons4X3Bh": [], - "LipisFlagIcons4X3Bi": [], - "LipisFlagIcons4X3Bj": [], - "LipisFlagIcons4X3Bl": [], - "LipisFlagIcons4X3Bm": [], - "LipisFlagIcons4X3Bn": [], - "LipisFlagIcons4X3Bo": [], - "LipisFlagIcons4X3Bq": [], - "LipisFlagIcons4X3Br": [], - "LipisFlagIcons4X3Bs": [], - "LipisFlagIcons4X3Bt": [], - "LipisFlagIcons4X3Bv": [], - "LipisFlagIcons4X3Bw": [], - "LipisFlagIcons4X3By": [], - "LipisFlagIcons4X3Bz": [], - "LipisFlagIcons4X3Ca": [], - "LipisFlagIcons4X3Cc": [], - "LipisFlagIcons4X3Cd": [], - "LipisFlagIcons4X3Cefta": [], - "LipisFlagIcons4X3Cf": [], - "LipisFlagIcons4X3Cg": [], - "LipisFlagIcons4X3Ch": [], - "LipisFlagIcons4X3Ci": [], - "LipisFlagIcons4X3Ck": [], - "LipisFlagIcons4X3Cl": [], - "LipisFlagIcons4X3Cm": [], - "LipisFlagIcons4X3Cn": [], - "LipisFlagIcons4X3Co": [], - "LipisFlagIcons4X3Cp": [], - "LipisFlagIcons4X3Cr": [], - "LipisFlagIcons4X3Cu": [], - "LipisFlagIcons4X3Cv": [], - "LipisFlagIcons4X3Cw": [], - "LipisFlagIcons4X3Cx": [], - "LipisFlagIcons4X3Cy": [], - "LipisFlagIcons4X3Cz": [], - "LipisFlagIcons4X3De": [], - "LipisFlagIcons4X3Dg": [], - "LipisFlagIcons4X3Dj": [], - "LipisFlagIcons4X3Dk": [], - "LipisFlagIcons4X3Dm": [], - "LipisFlagIcons4X3Do": [], - "LipisFlagIcons4X3Dz": [], - "LipisFlagIcons4X3Ea": [], - "LipisFlagIcons4X3Ec": [], - "LipisFlagIcons4X3Ee": [], - "LipisFlagIcons4X3Eg": [], - "LipisFlagIcons4X3Eh": [], - "LipisFlagIcons4X3Er": [], - "LipisFlagIcons4X3Es": [], - "LipisFlagIcons4X3EsCt": [], - "LipisFlagIcons4X3EsGa": [], - "LipisFlagIcons4X3Et": [], - "LipisFlagIcons4X3Eu": [], - "LipisFlagIcons4X3Fi": [], - "LipisFlagIcons4X3Fj": [], - "LipisFlagIcons4X3Fk": [], - "LipisFlagIcons4X3Fm": [], - "LipisFlagIcons4X3Fo": [], - "LipisFlagIcons4X3Fr": [], - "LipisFlagIcons4X3Ga": [], - "LipisFlagIcons4X3Gb": [], - "LipisFlagIcons4X3GbEng": [], - "LipisFlagIcons4X3GbNir": [], - "LipisFlagIcons4X3GbSct": [], - "LipisFlagIcons4X3GbWls": [], - "LipisFlagIcons4X3Gd": [], - "LipisFlagIcons4X3Ge": [], - "LipisFlagIcons4X3Gf": [], - "LipisFlagIcons4X3Gg": [], - "LipisFlagIcons4X3Gh": [], - "LipisFlagIcons4X3Gi": [], - "LipisFlagIcons4X3Gl": [], - "LipisFlagIcons4X3Gm": [], - "LipisFlagIcons4X3Gn": [], - "LipisFlagIcons4X3Gp": [], - "LipisFlagIcons4X3Gq": [], - "LipisFlagIcons4X3Gr": [], - "LipisFlagIcons4X3Gs": [], - "LipisFlagIcons4X3Gt": [], - "LipisFlagIcons4X3Gu": [], - "LipisFlagIcons4X3Gw": [], - "LipisFlagIcons4X3Gy": [], - "LipisFlagIcons4X3Hk": [], - "LipisFlagIcons4X3Hm": [], - "LipisFlagIcons4X3Hn": [], - "LipisFlagIcons4X3Hr": [], - "LipisFlagIcons4X3Ht": [], - "LipisFlagIcons4X3Hu": [], - "LipisFlagIcons4X3Ic": [], - "LipisFlagIcons4X3Id": [], - "LipisFlagIcons4X3Ie": [], - "LipisFlagIcons4X3Il": [], - "LipisFlagIcons4X3Im": [], - "LipisFlagIcons4X3In": [], - "LipisFlagIcons4X3Io": [], - "LipisFlagIcons4X3Iq": [], - "LipisFlagIcons4X3Ir": [], - "LipisFlagIcons4X3Is": [], - "LipisFlagIcons4X3It": [], - "LipisFlagIcons4X3Je": [], - "LipisFlagIcons4X3Jm": [], - "LipisFlagIcons4X3Jo": [], - "LipisFlagIcons4X3Jp": [], - "LipisFlagIcons4X3Ke": [], - "LipisFlagIcons4X3Kg": [], - "LipisFlagIcons4X3Kh": [], - "LipisFlagIcons4X3Ki": [], - "LipisFlagIcons4X3Km": [], - "LipisFlagIcons4X3Kn": [], - "LipisFlagIcons4X3Kp": [], - "LipisFlagIcons4X3Kr": [], - "LipisFlagIcons4X3Kw": [], - "LipisFlagIcons4X3Ky": [], - "LipisFlagIcons4X3Kz": [], - "LipisFlagIcons4X3La": [], - "LipisFlagIcons4X3Lb": [], - "LipisFlagIcons4X3Lc": [], - "LipisFlagIcons4X3Li": [], - "LipisFlagIcons4X3Lk": [], - "LipisFlagIcons4X3Lr": [], - "LipisFlagIcons4X3Ls": [], - "LipisFlagIcons4X3Lt": [], - "LipisFlagIcons4X3Lu": [], - "LipisFlagIcons4X3Lv": [], - "LipisFlagIcons4X3Ly": [], - "LipisFlagIcons4X3Ma": [], - "LipisFlagIcons4X3Mc": [], - "LipisFlagIcons4X3Md": [], - "LipisFlagIcons4X3Me": [], - "LipisFlagIcons4X3Mf": [], - "LipisFlagIcons4X3Mg": [], - "LipisFlagIcons4X3Mh": [], - "LipisFlagIcons4X3Mk": [], - "LipisFlagIcons4X3Ml": [], - "LipisFlagIcons4X3Mm": [], - "LipisFlagIcons4X3Mn": [], - "LipisFlagIcons4X3Mo": [], - "LipisFlagIcons4X3Mp": [], - "LipisFlagIcons4X3Mq": [], - "LipisFlagIcons4X3Mr": [], - "LipisFlagIcons4X3Ms": [], - "LipisFlagIcons4X3Mt": [], - "LipisFlagIcons4X3Mu": [], - "LipisFlagIcons4X3Mv": [], - "LipisFlagIcons4X3Mw": [], - "LipisFlagIcons4X3Mx": [], - "LipisFlagIcons4X3My": [], - "LipisFlagIcons4X3Mz": [], - "LipisFlagIcons4X3Na": [], - "LipisFlagIcons4X3Nc": [], - "LipisFlagIcons4X3Ne": [], - "LipisFlagIcons4X3Nf": [], - "LipisFlagIcons4X3Ng": [], - "LipisFlagIcons4X3Ni": [], - "LipisFlagIcons4X3Nl": [], - "LipisFlagIcons4X3No": [], - "LipisFlagIcons4X3Np": [], - "LipisFlagIcons4X3Nr": [], - "LipisFlagIcons4X3Nu": [], - "LipisFlagIcons4X3Nz": [], - "LipisFlagIcons4X3Om": [], - "LipisFlagIcons4X3Pa": [], - "LipisFlagIcons4X3Pe": [], - "LipisFlagIcons4X3Pf": [], - "LipisFlagIcons4X3Pg": [], - "LipisFlagIcons4X3Ph": [], - "LipisFlagIcons4X3Pk": [], - "LipisFlagIcons4X3Pl": [], - "LipisFlagIcons4X3Pm": [], - "LipisFlagIcons4X3Pn": [], - "LipisFlagIcons4X3Pr": [], - "LipisFlagIcons4X3Ps": [], - "LipisFlagIcons4X3Pt": [], - "LipisFlagIcons4X3Pw": [], - "LipisFlagIcons4X3Py": [], - "LipisFlagIcons4X3Qa": [], - "LipisFlagIcons4X3Re": [], - "LipisFlagIcons4X3Ro": [], - "LipisFlagIcons4X3Rs": [], - "LipisFlagIcons4X3Ru": [], - "LipisFlagIcons4X3Rw": [], - "LipisFlagIcons4X3Sa": [], - "LipisFlagIcons4X3Sb": [], - "LipisFlagIcons4X3Sc": [], - "LipisFlagIcons4X3Sd": [], - "LipisFlagIcons4X3Se": [], - "LipisFlagIcons4X3Sg": [], - "LipisFlagIcons4X3Sh": [], - "LipisFlagIcons4X3Si": [], - "LipisFlagIcons4X3Sj": [], - "LipisFlagIcons4X3Sk": [], - "LipisFlagIcons4X3Sl": [], - "LipisFlagIcons4X3Sm": [], - "LipisFlagIcons4X3Sn": [], - "LipisFlagIcons4X3So": [], - "LipisFlagIcons4X3Sr": [], - "LipisFlagIcons4X3Ss": [], - "LipisFlagIcons4X3St": [], - "LipisFlagIcons4X3Sv": [], - "LipisFlagIcons4X3Sx": [], - "LipisFlagIcons4X3Sy": [], - "LipisFlagIcons4X3Sz": [], - "LipisFlagIcons4X3Ta": [], - "LipisFlagIcons4X3Tc": [], - "LipisFlagIcons4X3Td": [], - "LipisFlagIcons4X3Tf": [], - "LipisFlagIcons4X3Tg": [], - "LipisFlagIcons4X3Th": [], - "LipisFlagIcons4X3Tj": [], - "LipisFlagIcons4X3Tk": [], - "LipisFlagIcons4X3Tl": [], - "LipisFlagIcons4X3Tm": [], - "LipisFlagIcons4X3Tn": [], - "LipisFlagIcons4X3To": [], - "LipisFlagIcons4X3Tr": [], - "LipisFlagIcons4X3Tt": [], - "LipisFlagIcons4X3Tv": [], - "LipisFlagIcons4X3Tw": [], - "LipisFlagIcons4X3Tz": [], - "LipisFlagIcons4X3Ua": [], - "LipisFlagIcons4X3Ug": [], - "LipisFlagIcons4X3Um": [], - "LipisFlagIcons4X3Un": [], - "LipisFlagIcons4X3Us": [], - "LipisFlagIcons4X3Uy": [], - "LipisFlagIcons4X3Uz": [], - "LipisFlagIcons4X3Va": [], - "LipisFlagIcons4X3Vc": [], - "LipisFlagIcons4X3Ve": [], - "LipisFlagIcons4X3Vg": [], - "LipisFlagIcons4X3Vi": [], - "LipisFlagIcons4X3Vn": [], - "LipisFlagIcons4X3Vu": [], - "LipisFlagIcons4X3Wf": [], - "LipisFlagIcons4X3Ws": [], - "LipisFlagIcons4X3Xk": [], - "LipisFlagIcons4X3Xx": [], - "LipisFlagIcons4X3Ye": [], - "LipisFlagIcons4X3Yt": [], - "LipisFlagIcons4X3Za": [], - "LipisFlagIcons4X3Zm": [], - "LipisFlagIcons4X3Zw": [], - "LucideAccessibility": [], - "LucideActivity": [], - "LucideAirVent": [], - "LucideAirplay": [], - "LucideAlarmCheck": [], - "LucideAlarmClock": [], - "LucideAlarmClockOff": [], - "LucideAlarmMinus": [], - "LucideAlarmPlus": [], - "LucideAlbum": [], - "LucideAlertCircle": [], - "LucideAlertOctagon": [], - "LucideAlertTriangle": [], - "LucideAlignCenter": [], - "LucideAlignCenterHorizontal": [], - "LucideAlignCenterVertical": [], - "LucideAlignEndHorizontal": [], - "LucideAlignEndVertical": [], - "LucideAlignHorizontalDistributeCenter": [], - "LucideAlignHorizontalDistributeEnd": [], - "LucideAlignHorizontalDistributeStart": [], - "LucideAlignHorizontalJustifyCenter": [], - "LucideAlignHorizontalJustifyEnd": [], - "LucideAlignHorizontalJustifyStart": [], - "LucideAlignHorizontalSpaceAround": [], - "LucideAlignHorizontalSpaceBetween": [], - "LucideAlignJustify": [], - "LucideAlignLeft": [], - "LucideAlignRight": [], - "LucideAlignStartHorizontal": [], - "LucideAlignStartVertical": [], - "LucideAlignVerticalDistributeCenter": [], - "LucideAlignVerticalDistributeEnd": [], - "LucideAlignVerticalDistributeStart": [], - "LucideAlignVerticalJustifyCenter": [], - "LucideAlignVerticalJustifyEnd": [], - "LucideAlignVerticalJustifyStart": [], - "LucideAlignVerticalSpaceAround": [], - "LucideAlignVerticalSpaceBetween": [], - "LucideAnchor": [], - "LucideAngry": [], - "LucideAnnoyed": [], - "LucideAperture": [], - "LucideApple": [], - "LucideArchive": [], - "LucideArchiveRestore": [], - "LucideArmchair": [], - "LucideArrowBigDown": [], - "LucideArrowBigLeft": [], - "LucideArrowBigRight": [], - "LucideArrowBigUp": [], - "LucideArrowDown": [], - "LucideArrowDownCircle": [], - "LucideArrowDownLeft": [], - "LucideArrowDownRight": [], - "LucideArrowLeft": [], - "LucideArrowLeftCircle": [], - "LucideArrowLeftRight": [], - "LucideArrowRight": [], - "LucideArrowRightCircle": [], - "LucideArrowUp": [], - "LucideArrowUpCircle": [], - "LucideArrowUpDown": [], - "LucideArrowUpLeft": [], - "LucideArrowUpRight": [], - "LucideAsterisk": [], - "LucideAtSign": [], - "LucideAward": [], - "LucideAxe": [], - "LucideAxis3D": [], - "LucideBaby": [], - "LucideBackpack": [], - "LucideBaggageClaim": [], - "LucideBanana": [], - "LucideBanknote": [], - "LucideBarChart": [], - "LucideBarChart2": [], - "LucideBarChart3": [], - "LucideBarChart4": [], - "LucideBarChartHorizontal": [], - "LucideBaseline": [], - "LucideBath": [], - "LucideBattery": [], - "LucideBatteryCharging": [], - "LucideBatteryFull": [], - "LucideBatteryLow": [], - "LucideBatteryMedium": [], - "LucideBeaker": [], - "LucideBed": [], - "LucideBedDouble": [], - "LucideBedSingle": [], - "LucideBeer": [], - "LucideBell": [], - "LucideBellMinus": [], - "LucideBellOff": [], - "LucideBellPlus": [], - "LucideBellRing": [], - "LucideBike": [], - "LucideBinary": [], - "LucideBitcoin": [], - "LucideBluetooth": [], - "LucideBluetoothConnected": [], - "LucideBluetoothOff": [], - "LucideBluetoothSearching": [], - "LucideBold": [], - "LucideBomb": [], - "LucideBone": [], - "LucideBook": [], - "LucideBookOpen": [], - "LucideBookOpenCheck": [], - "LucideBookmark": [], - "LucideBookmarkMinus": [], - "LucideBookmarkPlus": [], - "LucideBot": [], - "LucideBox": [], - "LucideBoxSelect": [], - "LucideBoxes": [], - "LucideBriefcase": [], - "LucideBrush": [], - "LucideBug": [], - "LucideBuilding": [], - "LucideBuilding2": [], - "LucideBus": [], - "LucideCake": [], - "LucideCalculator": [], - "LucideCalendar": [], - "LucideCalendarCheck": [], - "LucideCalendarCheck2": [], - "LucideCalendarClock": [], - "LucideCalendarDays": [], - "LucideCalendarHeart": [], - "LucideCalendarMinus": [], - "LucideCalendarOff": [], - "LucideCalendarPlus": [], - "LucideCalendarRange": [], - "LucideCalendarSearch": [], - "LucideCalendarX": [], - "LucideCalendarX2": [], - "LucideCamera": [], - "LucideCameraOff": [], - "LucideCar": [], - "LucideCarrot": [], - "LucideCast": [], - "LucideCheck": [], - "LucideCheckCircle": [], - "LucideCheckCircle2": [], - "LucideCheckSquare": [], - "LucideChefHat": [], - "LucideCherry": [], - "LucideChevronDown": [], - "LucideChevronFirst": [], - "LucideChevronLast": [], - "LucideChevronLeft": [], - "LucideChevronRight": [], - "LucideChevronUp": [], - "LucideChevronsDown": [], - "LucideChevronsDownUp": [], - "LucideChevronsLeft": [], - "LucideChevronsLeftRight": [], - "LucideChevronsRight": [], - "LucideChevronsRightLeft": [], - "LucideChevronsUp": [], - "LucideChevronsUpDown": [], - "LucideChrome": [], - "LucideCigarette": [], - "LucideCigaretteOff": [], - "LucideCircle": [], - "LucideCircleDot": [], - "LucideCircleEllipsis": [], - "LucideCircleSlashed": [], - "LucideCitrus": [], - "LucideClapperboard": [], - "LucideClipboard": [], - "LucideClipboardCheck": [], - "LucideClipboardCopy": [], - "LucideClipboardEdit": [], - "LucideClipboardList": [], - "LucideClipboardSignature": [], - "LucideClipboardType": [], - "LucideClipboardX": [], - "LucideClock": [], - "LucideClock1": [], - "LucideClock10": [], - "LucideClock11": [], - "LucideClock12": [], - "LucideClock2": [], - "LucideClock3": [], - "LucideClock4": [], - "LucideClock5": [], - "LucideClock6": [], - "LucideClock7": [], - "LucideClock8": [], - "LucideClock9": [], - "LucideCloud": [], - "LucideCloudCog": [], - "LucideCloudDrizzle": [], - "LucideCloudFog": [], - "LucideCloudHail": [], - "LucideCloudLightning": [], - "LucideCloudMoon": [], - "LucideCloudMoonRain": [], - "LucideCloudOff": [], - "LucideCloudRain": [], - "LucideCloudRainWind": [], - "LucideCloudSnow": [], - "LucideCloudSun": [], - "LucideCloudSunRain": [], - "LucideCloudy": [], - "LucideClover": [], - "LucideCode": [], - "LucideCode2": [], - "LucideCodepen": [], - "LucideCodesandbox": [], - "LucideCoffee": [], - "LucideCog": [], - "LucideCoins": [], - "LucideColumns": [], - "LucideCommand": [], - "LucideCompass": [], - "LucideComponent": [], - "LucideConciergeBell": [], - "LucideContact": [], - "LucideContrast": [], - "LucideCookie": [], - "LucideCopy": [], - "LucideCopyleft": [], - "LucideCopyright": [], - "LucideCornerDownLeft": [], - "LucideCornerDownRight": [], - "LucideCornerLeftDown": [], - "LucideCornerLeftUp": [], - "LucideCornerRightDown": [], - "LucideCornerRightUp": [], - "LucideCornerUpLeft": [], - "LucideCornerUpRight": [], - "LucideCpu": [], - "LucideCreditCard": [], - "LucideCroissant": [], - "LucideCrop": [], - "LucideCross": [], - "LucideCrosshair": [], - "LucideCrown": [], - "LucideCupSoda": [], - "LucideCurlyBraces": [], - "LucideCurrency": [], - "LucideDatabase": [], - "LucideDelete": [], - "LucideDiamond": [], - "LucideDice1": [], - "LucideDice2": [], - "LucideDice3": [], - "LucideDice4": [], - "LucideDice5": [], - "LucideDice6": [], - "LucideDices": [], - "LucideDiff": [], - "LucideDisc": [], - "LucideDivide": [], - "LucideDivideCircle": [], - "LucideDivideSquare": [], - "LucideDollarSign": [], - "LucideDownload": [], - "LucideDownloadCloud": [], - "LucideDribbble": [], - "LucideDroplet": [], - "LucideDroplets": [], - "LucideDrumstick": [], - "LucideEar": [], - "LucideEarOff": [], - "LucideEdit": [], - "LucideEdit2": [], - "LucideEdit3": [], - "LucideEgg": [], - "LucideEggFried": [], - "LucideEqual": [], - "LucideEqualNot": [], - "LucideEraser": [], - "LucideEuro": [], - "LucideExpand": [], - "LucideExternalLink": [], - "LucideEye": [], - "LucideEyeOff": [], - "LucideFacebook": [], - "LucideFactory": [], - "LucideFan": [], - "LucideFastForward": [], - "LucideFeather": [], - "LucideFigma": [], - "LucideFile": [], - "LucideFileArchive": [], - "LucideFileAudio": [], - "LucideFileAudio2": [], - "LucideFileAxis3D": [], - "LucideFileBadge": [], - "LucideFileBadge2": [], - "LucideFileBarChart": [], - "LucideFileBarChart2": [], - "LucideFileBox": [], - "LucideFileCheck": [], - "LucideFileCheck2": [], - "LucideFileClock": [], - "LucideFileCode": [], - "LucideFileCog": [], - "LucideFileCog2": [], - "LucideFileDiff": [], - "LucideFileDigit": [], - "LucideFileDown": [], - "LucideFileEdit": [], - "LucideFileHeart": [], - "LucideFileImage": [], - "LucideFileInput": [], - "LucideFileJson": [], - "LucideFileJson2": [], - "LucideFileKey": [], - "LucideFileKey2": [], - "LucideFileLineChart": [], - "LucideFileLock": [], - "LucideFileLock2": [], - "LucideFileMinus": [], - "LucideFileMinus2": [], - "LucideFileOutput": [], - "LucideFilePieChart": [], - "LucideFilePlus": [], - "LucideFilePlus2": [], - "LucideFileQuestion": [], - "LucideFileScan": [], - "LucideFileSearch": [], - "LucideFileSearch2": [], - "LucideFileSignature": [], - "LucideFileSpreadsheet": [], - "LucideFileSymlink": [], - "LucideFileTerminal": [], - "LucideFileText": [], - "LucideFileType": [], - "LucideFileType2": [], - "LucideFileUp": [], - "LucideFileVideo": [], - "LucideFileVideo2": [], - "LucideFileVolume": [], - "LucideFileVolume2": [], - "LucideFileWarning": [], - "LucideFileX": [], - "LucideFileX2": [], - "LucideFiles": [], - "LucideFilm": [], - "LucideFilter": [], - "LucideFingerprint": [], - "LucideFlag": [], - "LucideFlagOff": [], - "LucideFlagTriangleLeft": [], - "LucideFlagTriangleRight": [], - "LucideFlame": [], - "LucideFlashlight": [], - "LucideFlashlightOff": [], - "LucideFlaskConical": [], - "LucideFlaskRound": [], - "LucideFlipHorizontal": [], - "LucideFlipHorizontal2": [], - "LucideFlipVertical": [], - "LucideFlipVertical2": [], - "LucideFlower": [], - "LucideFlower2": [], - "LucideFocus": [], - "LucideFolder": [], - "LucideFolderArchive": [], - "LucideFolderCheck": [], - "LucideFolderClock": [], - "LucideFolderClosed": [], - "LucideFolderCog": [], - "LucideFolderCog2": [], - "LucideFolderDown": [], - "LucideFolderEdit": [], - "LucideFolderHeart": [], - "LucideFolderInput": [], - "LucideFolderKey": [], - "LucideFolderLock": [], - "LucideFolderMinus": [], - "LucideFolderOpen": [], - "LucideFolderOutput": [], - "LucideFolderPlus": [], - "LucideFolderSearch": [], - "LucideFolderSearch2": [], - "LucideFolderSymlink": [], - "LucideFolderTree": [], - "LucideFolderUp": [], - "LucideFolderX": [], - "LucideFolders": [], - "LucideFormInput": [], - "LucideForward": [], - "LucideFrame": [], - "LucideFramer": [], - "LucideFrown": [], - "LucideFuel": [], - "LucideFunctionSquare": [], - "LucideGamepad": [], - "LucideGamepad2": [], - "LucideGauge": [], - "LucideGavel": [], - "LucideGem": [], - "LucideGhost": [], - "LucideGift": [], - "LucideGitBranch": [], - "LucideGitBranchPlus": [], - "LucideGitCommit": [], - "LucideGitCompare": [], - "LucideGitFork": [], - "LucideGitMerge": [], - "LucideGitPullRequest": [], - "LucideGitPullRequestClosed": [], - "LucideGitPullRequestDraft": [], - "LucideGithub": [], - "LucideGitlab": [], - "LucideGlassWater": [], - "LucideGlasses": [], - "LucideGlobe": [], - "LucideGlobe2": [], - "LucideGrab": [], - "LucideGraduationCap": [], - "LucideGrape": [], - "LucideGrid": [], - "LucideGripHorizontal": [], - "LucideGripVertical": [], - "LucideHammer": [], - "LucideHand": [], - "LucideHandMetal": [], - "LucideHardDrive": [], - "LucideHardHat": [], - "LucideHash": [], - "LucideHaze": [], - "LucideHeadphones": [], - "LucideHeart": [], - "LucideHeartCrack": [], - "LucideHeartHandshake": [], - "LucideHeartOff": [], - "LucideHeartPulse": [], - "LucideHelpCircle": [], - "LucideHexagon": [], - "LucideHighlighter": [], - "LucideHistory": [], - "LucideHome": [], - "LucideHourglass": [], - "LucideIceCream": [], - "LucideImage": [], - "LucideImageMinus": [], - "LucideImageOff": [], - "LucideImagePlus": [], - "LucideImport": [], - "LucideInbox": [], - "LucideIndent": [], - "LucideIndianRupee": [], - "LucideInfinity": [], - "LucideInfo": [], - "LucideInspect": [], - "LucideInstagram": [], - "LucideItalic": [], - "LucideJapaneseYen": [], - "LucideJoystick": [], - "LucideKey": [], - "LucideKeyboard": [], - "LucideLamp": [], - "LucideLampCeiling": [], - "LucideLampDesk": [], - "LucideLampFloor": [], - "LucideLampWallDown": [], - "LucideLampWallUp": [], - "LucideLandmark": [], - "LucideLanguages": [], - "LucideLaptop": [], - "LucideLaptop2": [], - "LucideLasso": [], - "LucideLassoSelect": [], - "LucideLaugh": [], - "LucideLayers": [], - "LucideLayout": [], - "LucideLayoutDashboard": [], - "LucideLayoutGrid": [], - "LucideLayoutList": [], - "LucideLayoutTemplate": [], - "LucideLeaf": [], - "LucideLibrary": [], - "LucideLifeBuoy": [], - "LucideLightbulb": [], - "LucideLightbulbOff": [], - "LucideLineChart": [], - "LucideLink": [], - "LucideLink2": [], - "LucideLink2Off": [], - "LucideLinkedin": [], - "LucideList": [], - "LucideListChecks": [], - "LucideListEnd": [], - "LucideListMinus": [], - "LucideListMusic": [], - "LucideListOrdered": [], - "LucideListPlus": [], - "LucideListStart": [], - "LucideListVideo": [], - "LucideListX": [], - "LucideLoader": [], - "LucideLoader2": [], - "LucideLocate": [], - "LucideLocateFixed": [], - "LucideLocateOff": [], - "LucideLock": [], - "LucideLogIn": [], - "LucideLogOut": [], - "LucideLuggage": [], - "LucideMagnet": [], - "LucideMail": [], - "LucideMailCheck": [], - "LucideMailMinus": [], - "LucideMailOpen": [], - "LucideMailPlus": [], - "LucideMailQuestion": [], - "LucideMailSearch": [], - "LucideMailWarning": [], - "LucideMailX": [], - "LucideMails": [], - "LucideMap": [], - "LucideMapPin": [], - "LucideMapPinOff": [], - "LucideMartini": [], - "LucideMaximize": [], - "LucideMaximize2": [], - "LucideMedal": [], - "LucideMegaphone": [], - "LucideMegaphoneOff": [], - "LucideMeh": [], - "LucideMenu": [], - "LucideMessageCircle": [], - "LucideMessageSquare": [], - "LucideMic": [], - "LucideMic2": [], - "LucideMicOff": [], - "LucideMicroscope": [], - "LucideMicrowave": [], - "LucideMilestone": [], - "LucideMinimize": [], - "LucideMinimize2": [], - "LucideMinus": [], - "LucideMinusCircle": [], - "LucideMinusSquare": [], - "LucideMonitor": [], - "LucideMonitorOff": [], - "LucideMonitorSpeaker": [], - "LucideMoon": [], - "LucideMoreHorizontal": [], - "LucideMoreVertical": [], - "LucideMountain": [], - "LucideMountainSnow": [], - "LucideMouse": [], - "LucideMousePointer": [], - "LucideMousePointer2": [], - "LucideMousePointerClick": [], - "LucideMove": [], - "LucideMove3D": [], - "LucideMoveDiagonal": [], - "LucideMoveDiagonal2": [], - "LucideMoveHorizontal": [], - "LucideMoveVertical": [], - "LucideMusic": [], - "LucideMusic2": [], - "LucideMusic3": [], - "LucideMusic4": [], - "LucideNavigation": [], - "LucideNavigation2": [], - "LucideNavigation2Off": [], - "LucideNavigationOff": [], - "LucideNetwork": [], - "LucideNewspaper": [], - "LucideOctagon": [], - "LucideOption": [], - "LucideOutdent": [], - "LucidePackage": [], - "LucidePackage2": [], - "LucidePackageCheck": [], - "LucidePackageMinus": [], - "LucidePackageOpen": [], - "LucidePackagePlus": [], - "LucidePackageSearch": [], - "LucidePackageX": [], - "LucidePaintBucket": [], - "LucidePaintbrush": [], - "LucidePaintbrush2": [], - "LucidePalette": [], - "LucidePalmtree": [], - "LucidePaperclip": [], - "LucidePartyPopper": [], - "LucidePause": [], - "LucidePauseCircle": [], - "LucidePauseOctagon": [], - "LucidePenTool": [], - "LucidePencil": [], - "LucidePercent": [], - "LucidePersonStanding": [], - "LucidePhone": [], - "LucidePhoneCall": [], - "LucidePhoneForwarded": [], - "LucidePhoneIncoming": [], - "LucidePhoneMissed": [], - "LucidePhoneOff": [], - "LucidePhoneOutgoing": [], - "LucidePieChart": [], - "LucidePiggyBank": [], - "LucidePin": [], - "LucidePinOff": [], - "LucidePipette": [], - "LucidePizza": [], - "LucidePlane": [], - "LucidePlay": [], - "LucidePlayCircle": [], - "LucidePlug": [], - "LucidePlug2": [], - "LucidePlugZap": [], - "LucidePlus": [], - "LucidePlusCircle": [], - "LucidePlusSquare": [], - "LucidePocket": [], - "LucidePodcast": [], - "LucidePointer": [], - "LucidePoundSterling": [], - "LucidePower": [], - "LucidePowerOff": [], - "LucidePrinter": [], - "LucidePuzzle": [], - "LucideQrCode": [], - "LucideQuote": [], - "LucideRadio": [], - "LucideRadioReceiver": [], - "LucideRectangleHorizontal": [], - "LucideRectangleVertical": [], - "LucideRecycle": [], - "LucideRedo": [], - "LucideRedo2": [], - "LucideRefreshCcw": [], - "LucideRefreshCw": [], - "LucideRefrigerator": [], - "LucideRegex": [], - "LucideRepeat": [], - "LucideRepeat1": [], - "LucideReply": [], - "LucideReplyAll": [], - "LucideRewind": [], - "LucideRocket": [], - "LucideRockingChair": [], - "LucideRotate3D": [], - "LucideRotateCcw": [], - "LucideRotateCw": [], - "LucideRss": [], - "LucideRuler": [], - "LucideRussianRuble": [], - "LucideSailboat": [], - "LucideSave": [], - "LucideScale": [], - "LucideScale3D": [], - "LucideScaling": [], - "LucideScan": [], - "LucideScanFace": [], - "LucideScanLine": [], - "LucideScissors": [], - "LucideScreenShare": [], - "LucideScreenShareOff": [], - "LucideScroll": [], - "LucideSearch": [], - "LucideSend": [], - "LucideSeparatorHorizontal": [], - "LucideSeparatorVertical": [], - "LucideServer": [], - "LucideServerCog": [], - "LucideServerCrash": [], - "LucideServerOff": [], - "LucideSettings": [], - "LucideSettings2": [], - "LucideShare": [], - "LucideShare2": [], - "LucideSheet": [], - "LucideShield": [], - "LucideShieldAlert": [], - "LucideShieldCheck": [], - "LucideShieldClose": [], - "LucideShieldOff": [], - "LucideShirt": [], - "LucideShoppingBag": [], - "LucideShoppingCart": [], - "LucideShovel": [], - "LucideShowerHead": [], - "LucideShrink": [], - "LucideShrub": [], - "LucideShuffle": [], - "LucideSidebar": [], - "LucideSidebarClose": [], - "LucideSidebarOpen": [], - "LucideSigma": [], - "LucideSignal": [], - "LucideSignalHigh": [], - "LucideSignalLow": [], - "LucideSignalMedium": [], - "LucideSignalZero": [], - "LucideSiren": [], - "LucideSkipBack": [], - "LucideSkipForward": [], - "LucideSkull": [], - "LucideSlack": [], - "LucideSlash": [], - "LucideSlice": [], - "LucideSliders": [], - "LucideSlidersHorizontal": [], - "LucideSmartphone": [], - "LucideSmartphoneCharging": [], - "LucideSmile": [], - "LucideSmilePlus": [], - "LucideSnowflake": [], - "LucideSofa": [], - "LucideSortAsc": [], - "LucideSortDesc": [], - "LucideSpeaker": [], - "LucideSprout": [], - "LucideSquare": [], - "LucideStar": [], - "LucideStarHalf": [], - "LucideStarOff": [], - "LucideStethoscope": [], - "LucideSticker": [], - "LucideStickyNote": [], - "LucideStopCircle": [], - "LucideStretchHorizontal": [], - "LucideStretchVertical": [], - "LucideStrikethrough": [], - "LucideSubscript": [], - "LucideSun": [], - "LucideSunDim": [], - "LucideSunMedium": [], - "LucideSunMoon": [], - "LucideSunSnow": [], - "LucideSunrise": [], - "LucideSunset": [], - "LucideSuperscript": [], - "LucideSwissFranc": [], - "LucideSwitchCamera": [], - "LucideSword": [], - "LucideSwords": [], - "LucideSyringe": [], - "LucideTable": [], - "LucideTable2": [], - "LucideTablet": [], - "LucideTag": [], - "LucideTags": [], - "LucideTarget": [], - "LucideTent": [], - "LucideTerminal": [], - "LucideTerminalSquare": [], - "LucideTextCursor": [], - "LucideTextCursorInput": [], - "LucideThermometer": [], - "LucideThermometerSnowflake": [], - "LucideThermometerSun": [], - "LucideThumbsDown": [], - "LucideThumbsUp": [], - "LucideTicket": [], - "LucideTimer": [], - "LucideTimerOff": [], - "LucideTimerReset": [], - "LucideToggleLeft": [], - "LucideToggleRight": [], - "LucideTornado": [], - "LucideToyBrick": [], - "LucideTrain": [], - "LucideTrash": [], - "LucideTrash2": [], - "LucideTreeDeciduous": [], - "LucideTreePine": [], - "LucideTrees": [], - "LucideTrello": [], - "LucideTrendingDown": [], - "LucideTrendingUp": [], - "LucideTriangle": [], - "LucideTrophy": [], - "LucideTruck": [], - "LucideTv": [], - "LucideTv2": [], - "LucideTwitch": [], - "LucideTwitter": [], - "LucideType": [], - "LucideUmbrella": [], - "LucideUnderline": [], - "LucideUndo": [], - "LucideUndo2": [], - "LucideUnlink": [], - "LucideUnlink2": [], - "LucideUnlock": [], - "LucideUpload": [], - "LucideUploadCloud": [], - "LucideUsb": [], - "LucideUser": [], - "LucideUserCheck": [], - "LucideUserCog": [], - "LucideUserMinus": [], - "LucideUserPlus": [], - "LucideUserX": [], - "LucideUsers": [], - "LucideUtensils": [], - "LucideUtensilsCrossed": [], - "LucideVenetianMask": [], - "LucideVerified": [], - "LucideVibrate": [], - "LucideVibrateOff": [], - "LucideVideo": [], - "LucideVideoOff": [], - "LucideView": [], - "LucideVoicemail": [], - "LucideVolume": [], - "LucideVolume1": [], - "LucideVolume2": [], - "LucideVolumeX": [], - "LucideWallet": [], - "LucideWand": [], - "LucideWand2": [], - "LucideWatch": [], - "LucideWaves": [], - "LucideWebcam": [], - "LucideWebhook": [], - "LucideWifi": [], - "LucideWifiOff": [], - "LucideWind": [], - "LucideWine": [], - "LucideWrapText": [], - "LucideWrench": [], - "LucideX": [], - "LucideXCircle": [], - "LucideXOctagon": [], - "LucideXSquare": [], - "LucideYoutube": [], - "LucideZap": [], - "LucideZapOff": [], - "LucideZoomIn": [], - "LucideZoomOut": [], - "OcticonsAccessibility16": [], - "OcticonsAlert16": [], - "OcticonsAlert24": [], - "OcticonsAlertFill12": [], - "OcticonsApps16": [], - "OcticonsArchive16": [], - "OcticonsArchive24": [], - "OcticonsArrowBoth16": [], - "OcticonsArrowBoth24": [], - "OcticonsArrowDown16": [], - "OcticonsArrowDown24": [], - "OcticonsArrowDownLeft24": [], - "OcticonsArrowDownRight24": [], - "OcticonsArrowLeft16": [], - "OcticonsArrowLeft24": [], - "OcticonsArrowRight16": [], - "OcticonsArrowRight24": [], - "OcticonsArrowSwitch16": [], - "OcticonsArrowSwitch24": [], - "OcticonsArrowUp16": [], - "OcticonsArrowUp24": [], - "OcticonsArrowUpLeft24": [], - "OcticonsArrowUpRight24": [], - "OcticonsBeaker16": [], - "OcticonsBeaker24": [], - "OcticonsBell16": [], - "OcticonsBell24": [], - "OcticonsBellFill16": [], - "OcticonsBellFill24": [], - "OcticonsBellSlash16": [], - "OcticonsBellSlash24": [], - "OcticonsBlocked16": [], - "OcticonsBlocked24": [], - "OcticonsBold16": [], - "OcticonsBold24": [], - "OcticonsBook16": [], - "OcticonsBook24": [], - "OcticonsBookmark16": [], - "OcticonsBookmark24": [], - "OcticonsBookmarkFill24": [], - "OcticonsBookmarkSlash16": [], - "OcticonsBookmarkSlash24": [], - "OcticonsBookmarkSlashFill24": [], - "OcticonsBriefcase16": [], - "OcticonsBriefcase24": [], - "OcticonsBroadcast16": [], - "OcticonsBroadcast24": [], - "OcticonsBrowser16": [], - "OcticonsBrowser24": [], - "OcticonsBug16": [], - "OcticonsBug24": [], - "OcticonsCalendar16": [], - "OcticonsCalendar24": [], - "OcticonsCheck16": [], - "OcticonsCheck24": [], - "OcticonsCheckCircle16": [], - "OcticonsCheckCircle24": [], - "OcticonsCheckCircleFill12": [], - "OcticonsCheckCircleFill16": [], - "OcticonsCheckCircleFill24": [], - "OcticonsChecklist16": [], - "OcticonsChecklist24": [], - "OcticonsChevronDown16": [], - "OcticonsChevronDown24": [], - "OcticonsChevronLeft16": [], - "OcticonsChevronLeft24": [], - "OcticonsChevronRight16": [], - "OcticonsChevronRight24": [], - "OcticonsChevronUp16": [], - "OcticonsChevronUp24": [], - "OcticonsCircle16": [], - "OcticonsCircle24": [], - "OcticonsCircleSlash16": [], - "OcticonsCircleSlash24": [], - "OcticonsClock16": [], - "OcticonsClock24": [], - "OcticonsCloud16": [], - "OcticonsCloud24": [], - "OcticonsCloudOffline16": [], - "OcticonsCloudOffline24": [], - "OcticonsCode16": [], - "OcticonsCode24": [], - "OcticonsCodeOfConduct16": [], - "OcticonsCodeOfConduct24": [], - "OcticonsCodeReview16": [], - "OcticonsCodeReview24": [], - "OcticonsCodeSquare16": [], - "OcticonsCodeSquare24": [], - "OcticonsCodescan16": [], - "OcticonsCodescan24": [], - "OcticonsCodescanCheckmark16": [], - "OcticonsCodescanCheckmark24": [], - "OcticonsCodespaces16": [], - "OcticonsCodespaces24": [], - "OcticonsColumns16": [], - "OcticonsColumns24": [], - "OcticonsComment16": [], - "OcticonsComment24": [], - "OcticonsCommentDiscussion16": [], - "OcticonsCommentDiscussion24": [], - "OcticonsCommit24": [], - "OcticonsContainer16": [], - "OcticonsContainer24": [], - "OcticonsCopy16": [], - "OcticonsCopy24": [], - "OcticonsCpu16": [], - "OcticonsCpu24": [], - "OcticonsCreditCard16": [], - "OcticonsCreditCard24": [], - "OcticonsCrossReference16": [], - "OcticonsCrossReference24": [], - "OcticonsDash16": [], - "OcticonsDash24": [], - "OcticonsDatabase16": [], - "OcticonsDatabase24": [], - "OcticonsDependabot16": [], - "OcticonsDependabot24": [], - "OcticonsDesktopDownload16": [], - "OcticonsDesktopDownload24": [], - "OcticonsDeviceCamera16": [], - "OcticonsDeviceCameraVideo16": [], - "OcticonsDeviceCameraVideo24": [], - "OcticonsDeviceDesktop16": [], - "OcticonsDeviceDesktop24": [], - "OcticonsDeviceMobile16": [], - "OcticonsDeviceMobile24": [], - "OcticonsDiamond16": [], - "OcticonsDiamond24": [], - "OcticonsDiff16": [], - "OcticonsDiff24": [], - "OcticonsDiffAdded16": [], - "OcticonsDiffIgnored16": [], - "OcticonsDiffModified16": [], - "OcticonsDiffRemoved16": [], - "OcticonsDiffRenamed16": [], - "OcticonsDot16": [], - "OcticonsDot24": [], - "OcticonsDotFill16": [], - "OcticonsDotFill24": [], - "OcticonsDownload16": [], - "OcticonsDownload24": [], - "OcticonsDuplicate16": [], - "OcticonsDuplicate24": [], - "OcticonsEllipsis16": [], - "OcticonsEye16": [], - "OcticonsEye24": [], - "OcticonsEyeClosed16": [], - "OcticonsEyeClosed24": [], - "OcticonsFeedDiscussion16": [], - "OcticonsFeedForked16": [], - "OcticonsFeedHeart16": [], - "OcticonsFeedMerged16": [], - "OcticonsFeedPerson16": [], - "OcticonsFeedRepo16": [], - "OcticonsFeedRocket16": [], - "OcticonsFeedStar16": [], - "OcticonsFeedTag16": [], - "OcticonsFeedTrophy16": [], - "OcticonsFile16": [], - "OcticonsFile24": [], - "OcticonsFileBadge16": [], - "OcticonsFileBinary16": [], - "OcticonsFileBinary24": [], - "OcticonsFileCode16": [], - "OcticonsFileCode24": [], - "OcticonsFileDiff16": [], - "OcticonsFileDiff24": [], - "OcticonsFileDirectory16": [], - "OcticonsFileDirectory24": [], - "OcticonsFileDirectoryFill16": [], - "OcticonsFileDirectoryFill24": [], - "OcticonsFileDirectoryOpenFill16": [], - "OcticonsFileMedia24": [], - "OcticonsFileSubmodule16": [], - "OcticonsFileSubmodule24": [], - "OcticonsFileSymlinkFile16": [], - "OcticonsFileSymlinkFile24": [], - "OcticonsFileZip16": [], - "OcticonsFileZip24": [], - "OcticonsFilter16": [], - "OcticonsFilter24": [], - "OcticonsFlame16": [], - "OcticonsFlame24": [], - "OcticonsFold16": [], - "OcticonsFold24": [], - "OcticonsFoldDown16": [], - "OcticonsFoldDown24": [], - "OcticonsFoldUp16": [], - "OcticonsFoldUp24": [], - "OcticonsGear16": [], - "OcticonsGear24": [], - "OcticonsGift16": [], - "OcticonsGift24": [], - "OcticonsGitBranch16": [], - "OcticonsGitBranch24": [], - "OcticonsGitCommit16": [], - "OcticonsGitCommit24": [], - "OcticonsGitCompare16": [], - "OcticonsGitCompare24": [], - "OcticonsGitMerge16": [], - "OcticonsGitMerge24": [], - "OcticonsGitPullRequest16": [], - "OcticonsGitPullRequest24": [], - "OcticonsGitPullRequestClosed16": [], - "OcticonsGitPullRequestClosed24": [], - "OcticonsGitPullRequestDraft16": [], - "OcticonsGitPullRequestDraft24": [], - "OcticonsGlobe16": [], - "OcticonsGlobe24": [], - "OcticonsGrabber16": [], - "OcticonsGrabber24": [], - "OcticonsGraph16": [], - "OcticonsGraph24": [], - "OcticonsHash16": [], - "OcticonsHash24": [], - "OcticonsHeading16": [], - "OcticonsHeading24": [], - "OcticonsHeart16": [], - "OcticonsHeart24": [], - "OcticonsHeartFill16": [], - "OcticonsHeartFill24": [], - "OcticonsHistory16": [], - "OcticonsHistory24": [], - "OcticonsHome16": [], - "OcticonsHome24": [], - "OcticonsHomeFill24": [], - "OcticonsHorizontalRule16": [], - "OcticonsHorizontalRule24": [], - "OcticonsHourglass16": [], - "OcticonsHourglass24": [], - "OcticonsHubot16": [], - "OcticonsHubot24": [], - "OcticonsIdBadge16": [], - "OcticonsImage16": [], - "OcticonsImage24": [], - "OcticonsInbox16": [], - "OcticonsInbox24": [], - "OcticonsInfinity16": [], - "OcticonsInfinity24": [], - "OcticonsInfo16": [], - "OcticonsInfo24": [], - "OcticonsIssueClosed16": [], - "OcticonsIssueClosed24": [], - "OcticonsIssueDraft16": [], - "OcticonsIssueDraft24": [], - "OcticonsIssueOpened16": [], - "OcticonsIssueOpened24": [], - "OcticonsIssueReopened16": [], - "OcticonsIssueReopened24": [], - "OcticonsItalic16": [], - "OcticonsItalic24": [], - "OcticonsIterations16": [], - "OcticonsIterations24": [], - "OcticonsKebabHorizontal16": [], - "OcticonsKebabHorizontal24": [], - "OcticonsKey16": [], - "OcticonsKey24": [], - "OcticonsKeyAsterisk16": [], - "OcticonsLaw16": [], - "OcticonsLaw24": [], - "OcticonsLightBulb16": [], - "OcticonsLightBulb24": [], - "OcticonsLink16": [], - "OcticonsLink24": [], - "OcticonsLinkExternal16": [], - "OcticonsLinkExternal24": [], - "OcticonsListOrdered16": [], - "OcticonsListOrdered24": [], - "OcticonsListUnordered16": [], - "OcticonsListUnordered24": [], - "OcticonsLocation16": [], - "OcticonsLocation24": [], - "OcticonsLock16": [], - "OcticonsLock24": [], - "OcticonsLog16": [], - "OcticonsLogoGist16": [], - "OcticonsLogoGithub16": [], - "OcticonsMail16": [], - "OcticonsMail24": [], - "OcticonsMarkGithub16": [], - "OcticonsMarkdown16": [], - "OcticonsMegaphone16": [], - "OcticonsMegaphone24": [], - "OcticonsMention16": [], - "OcticonsMention24": [], - "OcticonsMeter16": [], - "OcticonsMilestone16": [], - "OcticonsMilestone24": [], - "OcticonsMirror16": [], - "OcticonsMirror24": [], - "OcticonsMoon16": [], - "OcticonsMoon24": [], - "OcticonsMortarBoard16": [], - "OcticonsMortarBoard24": [], - "OcticonsMultiSelect16": [], - "OcticonsMultiSelect24": [], - "OcticonsMute16": [], - "OcticonsMute24": [], - "OcticonsNoEntry16": [], - "OcticonsNoEntry24": [], - "OcticonsNoEntryFill12": [], - "OcticonsNorthStar16": [], - "OcticonsNorthStar24": [], - "OcticonsNote16": [], - "OcticonsNote24": [], - "OcticonsNumber16": [], - "OcticonsNumber24": [], - "OcticonsOrganization16": [], - "OcticonsOrganization24": [], - "OcticonsPackage16": [], - "OcticonsPackage24": [], - "OcticonsPackageDependencies16": [], - "OcticonsPackageDependencies24": [], - "OcticonsPackageDependents16": [], - "OcticonsPackageDependents24": [], - "OcticonsPaintbrush16": [], - "OcticonsPaperAirplane16": [], - "OcticonsPaperAirplane24": [], - "OcticonsPaste16": [], - "OcticonsPaste24": [], - "OcticonsPencil16": [], - "OcticonsPencil24": [], - "OcticonsPeople16": [], - "OcticonsPeople24": [], - "OcticonsPerson16": [], - "OcticonsPerson24": [], - "OcticonsPersonAdd16": [], - "OcticonsPersonAdd24": [], - "OcticonsPersonFill16": [], - "OcticonsPersonFill24": [], - "OcticonsPin16": [], - "OcticonsPin24": [], - "OcticonsPlay16": [], - "OcticonsPlay24": [], - "OcticonsPlug16": [], - "OcticonsPlug24": [], - "OcticonsPlus16": [], - "OcticonsPlus24": [], - "OcticonsPlusCircle16": [], - "OcticonsPlusCircle24": [], - "OcticonsProject16": [], - "OcticonsProject24": [], - "OcticonsPulse16": [], - "OcticonsPulse24": [], - "OcticonsQuestion16": [], - "OcticonsQuestion24": [], - "OcticonsQuote16": [], - "OcticonsQuote24": [], - "OcticonsReply16": [], - "OcticonsReply24": [], - "OcticonsRepo16": [], - "OcticonsRepo24": [], - "OcticonsRepoClone16": [], - "OcticonsRepoDeleted16": [], - "OcticonsRepoForked16": [], - "OcticonsRepoForked24": [], - "OcticonsRepoLocked16": [], - "OcticonsRepoPull16": [], - "OcticonsRepoPush16": [], - "OcticonsRepoPush24": [], - "OcticonsRepoTemplate16": [], - "OcticonsRepoTemplate24": [], - "OcticonsReport16": [], - "OcticonsReport24": [], - "OcticonsRocket16": [], - "OcticonsRocket24": [], - "OcticonsRows16": [], - "OcticonsRows24": [], - "OcticonsRss16": [], - "OcticonsRss24": [], - "OcticonsRuby16": [], - "OcticonsRuby24": [], - "OcticonsScreenFull16": [], - "OcticonsScreenFull24": [], - "OcticonsScreenNormal16": [], - "OcticonsScreenNormal24": [], - "OcticonsSearch16": [], - "OcticonsSearch24": [], - "OcticonsServer16": [], - "OcticonsServer24": [], - "OcticonsShare16": [], - "OcticonsShare24": [], - "OcticonsShareAndroid16": [], - "OcticonsShareAndroid24": [], - "OcticonsShield16": [], - "OcticonsShield24": [], - "OcticonsShieldCheck16": [], - "OcticonsShieldCheck24": [], - "OcticonsShieldLock16": [], - "OcticonsShieldLock24": [], - "OcticonsShieldX16": [], - "OcticonsShieldX24": [], - "OcticonsSidebarCollapse16": [], - "OcticonsSidebarCollapse24": [], - "OcticonsSidebarExpand16": [], - "OcticonsSidebarExpand24": [], - "OcticonsSignIn16": [], - "OcticonsSignIn24": [], - "OcticonsSignOut16": [], - "OcticonsSignOut24": [], - "OcticonsSingleSelect16": [], - "OcticonsSingleSelect24": [], - "OcticonsSkip16": [], - "OcticonsSkip24": [], - "OcticonsSmiley16": [], - "OcticonsSmiley24": [], - "OcticonsSortAsc16": [], - "OcticonsSortAsc24": [], - "OcticonsSortDesc16": [], - "OcticonsSortDesc24": [], - "OcticonsSquare16": [], - "OcticonsSquare24": [], - "OcticonsSquareFill16": [], - "OcticonsSquareFill24": [], - "OcticonsSquirrel16": [], - "OcticonsSquirrel24": [], - "OcticonsStack16": [], - "OcticonsStack24": [], - "OcticonsStar16": [], - "OcticonsStar24": [], - "OcticonsStarFill16": [], - "OcticonsStarFill24": [], - "OcticonsStop16": [], - "OcticonsStop24": [], - "OcticonsStopwatch16": [], - "OcticonsStopwatch24": [], - "OcticonsStrikethrough16": [], - "OcticonsStrikethrough24": [], - "OcticonsSun16": [], - "OcticonsSun24": [], - "OcticonsSync16": [], - "OcticonsSync24": [], - "OcticonsTab24": [], - "OcticonsTabExternal16": [], - "OcticonsTable16": [], - "OcticonsTable24": [], - "OcticonsTag16": [], - "OcticonsTag24": [], - "OcticonsTasklist16": [], - "OcticonsTasklist24": [], - "OcticonsTelescope16": [], - "OcticonsTelescope24": [], - "OcticonsTelescopeFill16": [], - "OcticonsTelescopeFill24": [], - "OcticonsTerminal16": [], - "OcticonsTerminal24": [], - "OcticonsThreeBars16": [], - "OcticonsThumbsdown16": [], - "OcticonsThumbsdown24": [], - "OcticonsThumbsup16": [], - "OcticonsThumbsup24": [], - "OcticonsTools16": [], - "OcticonsTools24": [], - "OcticonsTrash16": [], - "OcticonsTrash24": [], - "OcticonsTriangleDown16": [], - "OcticonsTriangleDown24": [], - "OcticonsTriangleLeft16": [], - "OcticonsTriangleLeft24": [], - "OcticonsTriangleRight16": [], - "OcticonsTriangleRight24": [], - "OcticonsTriangleUp16": [], - "OcticonsTriangleUp24": [], - "OcticonsTrophy16": [], - "OcticonsTrophy24": [], - "OcticonsTypography16": [], - "OcticonsTypography24": [], - "OcticonsUnfold16": [], - "OcticonsUnfold24": [], - "OcticonsUnlock16": [], - "OcticonsUnlock24": [], - "OcticonsUnmute16": [], - "OcticonsUnmute24": [], - "OcticonsUnverified16": [], - "OcticonsUnverified24": [], - "OcticonsUpload16": [], - "OcticonsUpload24": [], - "OcticonsVerified16": [], - "OcticonsVerified24": [], - "OcticonsVersions16": [], - "OcticonsVersions24": [], - "OcticonsVideo16": [], - "OcticonsVideo24": [], - "OcticonsWebhook16": [], - "OcticonsWorkflow16": [], - "OcticonsWorkflow24": [], - "OcticonsX16": [], - "OcticonsX24": [], - "OcticonsXCircle16": [], - "OcticonsXCircle24": [], - "OcticonsXCircleFill12": [], - "OcticonsXCircleFill16": [], - "OcticonsXCircleFill24": [], - "OcticonsZap16": [], - "OcticonsZap24": [], - "SimpleIcons1001Tracklists": [], - "SimpleIcons1Password": [], - "SimpleIcons3M": [], - "SimpleIcons42": [], - "SimpleIcons4Chan": [], - "SimpleIcons4D": [], - "SimpleIcons500Px": [], - "SimpleIconsAbbott": [], - "SimpleIconsAbbrobotstudio": [], - "SimpleIconsAbbvie": [], - "SimpleIconsAbletonlive": [], - "SimpleIconsAboutdotme": [], - "SimpleIconsAbstract": [], - "SimpleIconsAcademia": [], - "SimpleIconsAccenture": [], - "SimpleIconsAcclaim": [], - "SimpleIconsAccusoft": [], - "SimpleIconsAcer": [], - "SimpleIconsAcm": [], - "SimpleIconsActigraph": [], - "SimpleIconsActivision": [], - "SimpleIconsAdafruit": [], - "SimpleIconsAdblock": [], - "SimpleIconsAdblockplus": [], - "SimpleIconsAddthis": [], - "SimpleIconsAdguard": [], - "SimpleIconsAdidas": [], - "SimpleIconsAdminer": [], - "SimpleIconsAdobe": [], - "SimpleIconsAdobeacrobatreader": [], - "SimpleIconsAdobeaftereffects": [], - "SimpleIconsAdobeaudition": [], - "SimpleIconsAdobecreativecloud": [], - "SimpleIconsAdobedreamweaver": [], - "SimpleIconsAdobefonts": [], - "SimpleIconsAdobeillustrator": [], - "SimpleIconsAdobeindesign": [], - "SimpleIconsAdobelightroom": [], - "SimpleIconsAdobelightroomclassic": [], - "SimpleIconsAdobephotoshop": [], - "SimpleIconsAdobepremierepro": [], - "SimpleIconsAdobexd": [], - "SimpleIconsAdonisjs": [], - "SimpleIconsAdp": [], - "SimpleIconsAdyen": [], - "SimpleIconsAerlingus": [], - "SimpleIconsAeroflot": [], - "SimpleIconsAeromexico": [], - "SimpleIconsAerospike": [], - "SimpleIconsAew": [], - "SimpleIconsAffinity": [], - "SimpleIconsAffinitydesigner": [], - "SimpleIconsAffinityphoto": [], - "SimpleIconsAffinitypublisher": [], - "SimpleIconsAframe": [], - "SimpleIconsAgora": [], - "SimpleIconsAib": [], - "SimpleIconsAidungeon": [], - "SimpleIconsAiohttp": [], - "SimpleIconsAiqfome": [], - "SimpleIconsAirasia": [], - "SimpleIconsAirbnb": [], - "SimpleIconsAirbus": [], - "SimpleIconsAirbyte": [], - "SimpleIconsAircall": [], - "SimpleIconsAircanada": [], - "SimpleIconsAirchina": [], - "SimpleIconsAirfrance": [], - "SimpleIconsAirplayaudio": [], - "SimpleIconsAirplayvideo": [], - "SimpleIconsAirtable": [], - "SimpleIconsAjv": [], - "SimpleIconsAkamai": [], - "SimpleIconsAlacritty": [], - "SimpleIconsAlbertheijn": [], - "SimpleIconsAlchemy": [], - "SimpleIconsAldinord": [], - "SimpleIconsAldisud": [], - "SimpleIconsAlfaromeo": [], - "SimpleIconsAlfred": [], - "SimpleIconsAlgolia": [], - "SimpleIconsAlgorand": [], - "SimpleIconsAlibabacloud": [], - "SimpleIconsAlibabadotcom": [], - "SimpleIconsAliexpress": [], - "SimpleIconsAlipay": [], - "SimpleIconsAlitalia": [], - "SimpleIconsAllegro": [], - "SimpleIconsAlliedmodders": [], - "SimpleIconsAllocine": [], - "SimpleIconsAlltrails": [], - "SimpleIconsAlpinedotjs": [], - "SimpleIconsAlpinelinux": [], - "SimpleIconsAltiumdesigner": [], - "SimpleIconsAlwaysdata": [], - "SimpleIconsAmazon": [], - "SimpleIconsAmazonalexa": [], - "SimpleIconsAmazonapigateway": [], - "SimpleIconsAmazonaws": [], - "SimpleIconsAmazoncloudwatch": [], - "SimpleIconsAmazondynamodb": [], - "SimpleIconsAmazonec2": [], - "SimpleIconsAmazonecs": [], - "SimpleIconsAmazoneks": [], - "SimpleIconsAmazonfiretv": [], - "SimpleIconsAmazongames": [], - "SimpleIconsAmazonlumberyard": [], - "SimpleIconsAmazonpay": [], - "SimpleIconsAmazonprime": [], - "SimpleIconsAmazonrds": [], - "SimpleIconsAmazons3": [], - "SimpleIconsAmazonsqs": [], - "SimpleIconsAmd": [], - "SimpleIconsAmericanairlines": [], - "SimpleIconsAmericanexpress": [], - "SimpleIconsAmg": [], - "SimpleIconsAmp": [], - "SimpleIconsAmul": [], - "SimpleIconsAna": [], - "SimpleIconsAnaconda": [], - "SimpleIconsAnalogue": [], - "SimpleIconsAnchor": [], - "SimpleIconsAndela": [], - "SimpleIconsAndroid": [], - "SimpleIconsAndroidauto": [], - "SimpleIconsAndroidstudio": [], - "SimpleIconsAngellist": [], - "SimpleIconsAngular": [], - "SimpleIconsAngularjs": [], - "SimpleIconsAngularuniversal": [], - "SimpleIconsAnilist": [], - "SimpleIconsAnsible": [], - "SimpleIconsAnswer": [], - "SimpleIconsAnsys": [], - "SimpleIconsAnta": [], - "SimpleIconsAntdesign": [], - "SimpleIconsAntena3": [], - "SimpleIconsAnydesk": [], - "SimpleIconsAol": [], - "SimpleIconsApache": [], - "SimpleIconsApacheairflow": [], - "SimpleIconsApacheant": [], - "SimpleIconsApachecassandra": [], - "SimpleIconsApachecloudstack": [], - "SimpleIconsApachecordova": [], - "SimpleIconsApachecouchdb": [], - "SimpleIconsApachedruid": [], - "SimpleIconsApacheecharts": [], - "SimpleIconsApacheflink": [], - "SimpleIconsApachegroovy": [], - "SimpleIconsApachehadoop": [], - "SimpleIconsApachehive": [], - "SimpleIconsApachejmeter": [], - "SimpleIconsApachekafka": [], - "SimpleIconsApachekylin": [], - "SimpleIconsApachemaven": [], - "SimpleIconsApachenetbeanside": [], - "SimpleIconsApacheopenoffice": [], - "SimpleIconsApachepulsar": [], - "SimpleIconsApacherocketmq": [], - "SimpleIconsApachesolr": [], - "SimpleIconsApachespark": [], - "SimpleIconsApachetomcat": [], - "SimpleIconsAparat": [], - "SimpleIconsApollographql": [], - "SimpleIconsApostrophe": [], - "SimpleIconsAppian": [], - "SimpleIconsApple": [], - "SimpleIconsApplearcade": [], - "SimpleIconsApplemusic": [], - "SimpleIconsApplenews": [], - "SimpleIconsApplepay": [], - "SimpleIconsApplepodcasts": [], - "SimpleIconsAppletv": [], - "SimpleIconsAppsignal": [], - "SimpleIconsAppstore": [], - "SimpleIconsAppveyor": [], - "SimpleIconsAppwrite": [], - "SimpleIconsAqua": [], - "SimpleIconsAral": [], - "SimpleIconsArangodb": [], - "SimpleIconsArchicad": [], - "SimpleIconsArchiveofourown": [], - "SimpleIconsArchlinux": [], - "SimpleIconsArdour": [], - "SimpleIconsArduino": [], - "SimpleIconsArgo": [], - "SimpleIconsArgos": [], - "SimpleIconsArkecosystem": [], - "SimpleIconsArlo": [], - "SimpleIconsArm": [], - "SimpleIconsArtifacthub": [], - "SimpleIconsArtixlinux": [], - "SimpleIconsArtstation": [], - "SimpleIconsArxiv": [], - "SimpleIconsAsana": [], - "SimpleIconsAsciidoctor": [], - "SimpleIconsAsciinema": [], - "SimpleIconsAsda": [], - "SimpleIconsAseprite": [], - "SimpleIconsAskfm": [], - "SimpleIconsAskubuntu": [], - "SimpleIconsAssemblyscript": [], - "SimpleIconsAstonmartin": [], - "SimpleIconsAstro": [], - "SimpleIconsAsus": [], - "SimpleIconsAtandt": [], - "SimpleIconsAtari": [], - "SimpleIconsAtlassian": [], - "SimpleIconsAtom": [], - "SimpleIconsAuchan": [], - "SimpleIconsAudacity": [], - "SimpleIconsAudi": [], - "SimpleIconsAudible": [], - "SimpleIconsAudioboom": [], - "SimpleIconsAudiomack": [], - "SimpleIconsAudiotechnica": [], - "SimpleIconsAurelia": [], - "SimpleIconsAuth0": [], - "SimpleIconsAuthy": [], - "SimpleIconsAutodesk": [], - "SimpleIconsAutohotkey": [], - "SimpleIconsAutomattic": [], - "SimpleIconsAutoprefixer": [], - "SimpleIconsAvajs": [], - "SimpleIconsAvast": [], - "SimpleIconsAwesomelists": [], - "SimpleIconsAwesomewm": [], - "SimpleIconsAwsamplify": [], - "SimpleIconsAwsfargate": [], - "SimpleIconsAwslambda": [], - "SimpleIconsAxios": [], - "SimpleIconsAzureartifacts": [], - "SimpleIconsAzuredataexplorer": [], - "SimpleIconsAzuredevops": [], - "SimpleIconsAzurefunctions": [], - "SimpleIconsAzurepipelines": [], - "SimpleIconsBabel": [], - "SimpleIconsBackblaze": [], - "SimpleIconsBackbonedotjs": [], - "SimpleIconsBackendless": [], - "SimpleIconsBackstage": [], - "SimpleIconsBadgr": [], - "SimpleIconsBadoo": [], - "SimpleIconsBaidu": [], - "SimpleIconsBamboo": [], - "SimpleIconsBandcamp": [], - "SimpleIconsBandlab": [], - "SimpleIconsBandrautomation": [], - "SimpleIconsBandsintown": [], - "SimpleIconsBankofamerica": [], - "SimpleIconsBarclays": [], - "SimpleIconsBaremetrics": [], - "SimpleIconsBasecamp": [], - "SimpleIconsBastyon": [], - "SimpleIconsBata": [], - "SimpleIconsBathasu": [], - "SimpleIconsBattledotnet": [], - "SimpleIconsBbc": [], - "SimpleIconsBbciplayer": [], - "SimpleIconsBeatport": [], - "SimpleIconsBeats": [], - "SimpleIconsBeatsbydre": [], - "SimpleIconsBehance": [], - "SimpleIconsBeijingsubway": [], - "SimpleIconsBem": [], - "SimpleIconsBentley": [], - "SimpleIconsBetfair": [], - "SimpleIconsBigbasket": [], - "SimpleIconsBigbluebutton": [], - "SimpleIconsBigcartel": [], - "SimpleIconsBigcommerce": [], - "SimpleIconsBilibili": [], - "SimpleIconsBillboard": [], - "SimpleIconsBim": [], - "SimpleIconsBinance": [], - "SimpleIconsBiolink": [], - "SimpleIconsBit": [], - "SimpleIconsBitbucket": [], - "SimpleIconsBitcoin": [], - "SimpleIconsBitcoincash": [], - "SimpleIconsBitcoinsv": [], - "SimpleIconsBitdefender": [], - "SimpleIconsBitly": [], - "SimpleIconsBitrise": [], - "SimpleIconsBitwarden": [], - "SimpleIconsBitwig": [], - "SimpleIconsBlackberry": [], - "SimpleIconsBlazemeter": [], - "SimpleIconsBlazor": [], - "SimpleIconsBlender": [], - "SimpleIconsBlockchaindotcom": [], - "SimpleIconsBlogger": [], - "SimpleIconsBloglovin": [], - "SimpleIconsBlueprint": [], - "SimpleIconsBluetooth": [], - "SimpleIconsBmcsoftware": [], - "SimpleIconsBmw": [], - "SimpleIconsBoardgamegeek": [], - "SimpleIconsBoehringeringelheim": [], - "SimpleIconsBoeing": [], - "SimpleIconsBookalope": [], - "SimpleIconsBookbub": [], - "SimpleIconsBookmeter": [], - "SimpleIconsBookmyshow": [], - "SimpleIconsBookstack": [], - "SimpleIconsBoost": [], - "SimpleIconsBoots": [], - "SimpleIconsBootstrap": [], - "SimpleIconsBorgbackup": [], - "SimpleIconsBosch": [], - "SimpleIconsBose": [], - "SimpleIconsBoulanger": [], - "SimpleIconsBower": [], - "SimpleIconsBox": [], - "SimpleIconsBoxysvg": [], - "SimpleIconsBrandfolder": [], - "SimpleIconsBrave": [], - "SimpleIconsBreaker": [], - "SimpleIconsBritishairways": [], - "SimpleIconsBroadcom": [], - "SimpleIconsBt": [], - "SimpleIconsBuddy": [], - "SimpleIconsBudibase": [], - "SimpleIconsBuefy": [], - "SimpleIconsBuffer": [], - "SimpleIconsBugatti": [], - "SimpleIconsBugcrowd": [], - "SimpleIconsBugsnag": [], - "SimpleIconsBuildkite": [], - "SimpleIconsBukalapak": [], - "SimpleIconsBulma": [], - "SimpleIconsBun": [], - "SimpleIconsBunq": [], - "SimpleIconsBurgerking": [], - "SimpleIconsBurton": [], - "SimpleIconsBuymeacoffee": [], - "SimpleIconsBuzzfeed": [], - "SimpleIconsBvg": [], - "SimpleIconsByjus": [], - "SimpleIconsByte": [], - "SimpleIconsBytedance": [], - "SimpleIconsC": [], - "SimpleIconsCachet": [], - "SimpleIconsCafepress": [], - "SimpleIconsCaffeine": [], - "SimpleIconsCairographics": [], - "SimpleIconsCairometro": [], - "SimpleIconsCakephp": [], - "SimpleIconsCampaignmonitor": [], - "SimpleIconsCanonical": [], - "SimpleIconsCanva": [], - "SimpleIconsCapacitor": [], - "SimpleIconsCarrefour": [], - "SimpleIconsCarthrottle": [], - "SimpleIconsCarto": [], - "SimpleIconsCashapp": [], - "SimpleIconsCastbox": [], - "SimpleIconsCastorama": [], - "SimpleIconsCastro": [], - "SimpleIconsCaterpillar": [], - "SimpleIconsCbs": [], - "SimpleIconsCdprojekt": [], - "SimpleIconsCelery": [], - "SimpleIconsCentos": [], - "SimpleIconsCeph": [], - "SimpleIconsCesium": [], - "SimpleIconsChai": [], - "SimpleIconsChainguard": [], - "SimpleIconsChainlink": [], - "SimpleIconsChakraui": [], - "SimpleIconsChartdotjs": [], - "SimpleIconsChartmogul": [], - "SimpleIconsChase": [], - "SimpleIconsChatbot": [], - "SimpleIconsCheckio": [], - "SimpleIconsCheckmarx": [], - "SimpleIconsChef": [], - "SimpleIconsChemex": [], - "SimpleIconsChevrolet": [], - "SimpleIconsChinaeasternairlines": [], - "SimpleIconsChinasouthernairlines": [], - "SimpleIconsChocolatey": [], - "SimpleIconsChromecast": [], - "SimpleIconsChrysler": [], - "SimpleIconsChupachups": [], - "SimpleIconsCilium": [], - "SimpleIconsCinema4D": [], - "SimpleIconsCircle": [], - "SimpleIconsCircleci": [], - "SimpleIconsCirrusci": [], - "SimpleIconsCisco": [], - "SimpleIconsCitrix": [], - "SimpleIconsCitroen": [], - "SimpleIconsCivicrm": [], - "SimpleIconsCivo": [], - "SimpleIconsCkeditor4": [], - "SimpleIconsClaris": [], - "SimpleIconsClickhouse": [], - "SimpleIconsClickup": [], - "SimpleIconsClion": [], - "SimpleIconsCliqz": [], - "SimpleIconsClockify": [], - "SimpleIconsClojure": [], - "SimpleIconsCloud66": [], - "SimpleIconsCloudbees": [], - "SimpleIconsCloudcannon": [], - "SimpleIconsCloudera": [], - "SimpleIconsCloudflare": [], - "SimpleIconsCloudflarepages": [], - "SimpleIconsCloudfoundry": [], - "SimpleIconsCloudsmith": [], - "SimpleIconsCloudways": [], - "SimpleIconsClubhouse": [], - "SimpleIconsClyp": [], - "SimpleIconsCmake": [], - "SimpleIconsCncf": [], - "SimpleIconsCnn": [], - "SimpleIconsCockpit": [], - "SimpleIconsCockroachlabs": [], - "SimpleIconsCocoapods": [], - "SimpleIconsCocos": [], - "SimpleIconsCoda": [], - "SimpleIconsCodacy": [], - "SimpleIconsCodeberg": [], - "SimpleIconsCodecademy": [], - "SimpleIconsCodeceptjs": [], - "SimpleIconsCodechef": [], - "SimpleIconsCodeclimate": [], - "SimpleIconsCodecov": [], - "SimpleIconsCodefactor": [], - "SimpleIconsCodeforces": [], - "SimpleIconsCodeigniter": [], - "SimpleIconsCodemagic": [], - "SimpleIconsCodemirror": [], - "SimpleIconsCodenewbie": [], - "SimpleIconsCodepen": [], - "SimpleIconsCodeproject": [], - "SimpleIconsCodereview": [], - "SimpleIconsCodersrank": [], - "SimpleIconsCoderwall": [], - "SimpleIconsCodesandbox": [], - "SimpleIconsCodeship": [], - "SimpleIconsCodewars": [], - "SimpleIconsCodingame": [], - "SimpleIconsCodingninjas": [], - "SimpleIconsCodio": [], - "SimpleIconsCoffeescript": [], - "SimpleIconsCognizant": [], - "SimpleIconsCoil": [], - "SimpleIconsCoinbase": [], - "SimpleIconsCoinmarketcap": [], - "SimpleIconsCommerzbank": [], - "SimpleIconsCommitlint": [], - "SimpleIconsCommodore": [], - "SimpleIconsCommonworkflowlanguage": [], - "SimpleIconsComposer": [], - "SimpleIconsComsol": [], - "SimpleIconsConan": [], - "SimpleIconsConcourse": [], - "SimpleIconsCondaforge": [], - "SimpleIconsConekta": [], - "SimpleIconsConfluence": [], - "SimpleIconsConstruct3": [], - "SimpleIconsConsul": [], - "SimpleIconsContactlesspayment": [], - "SimpleIconsContainerd": [], - "SimpleIconsContentful": [], - "SimpleIconsConventionalcommits": [], - "SimpleIconsConvertio": [], - "SimpleIconsCookiecutter": [], - "SimpleIconsCoop": [], - "SimpleIconsCora": [], - "SimpleIconsCoronaengine": [], - "SimpleIconsCoronarenderer": [], - "SimpleIconsCorsair": [], - "SimpleIconsCouchbase": [], - "SimpleIconsCounterstrike": [], - "SimpleIconsCountingworkspro": [], - "SimpleIconsCoursera": [], - "SimpleIconsCoveralls": [], - "SimpleIconsCpanel": [], - "SimpleIconsCplusplus": [], - "SimpleIconsCraftcms": [], - "SimpleIconsCratedb": [], - "SimpleIconsCrayon": [], - "SimpleIconsCreatereactapp": [], - "SimpleIconsCreativecommons": [], - "SimpleIconsCreativetechnology": [], - "SimpleIconsCredly": [], - "SimpleIconsCrehana": [], - "SimpleIconsCriticalrole": [], - "SimpleIconsCrowdin": [], - "SimpleIconsCrowdsource": [], - "SimpleIconsCrunchbase": [], - "SimpleIconsCrunchyroll": [], - "SimpleIconsCryengine": [], - "SimpleIconsCrystal": [], - "SimpleIconsCsharp": [], - "SimpleIconsCss3": [], - "SimpleIconsCssmodules": [], - "SimpleIconsCsswizardry": [], - "SimpleIconsCts": [], - "SimpleIconsCucumber": [], - "SimpleIconsCultura": [], - "SimpleIconsCurl": [], - "SimpleIconsCurseforge": [], - "SimpleIconsCycling74": [], - "SimpleIconsCypress": [], - "SimpleIconsCytoscapedotjs": [], - "SimpleIconsD": [], - "SimpleIconsD3Dotjs": [], - "SimpleIconsDacia": [], - "SimpleIconsDaf": [], - "SimpleIconsDailymotion": [], - "SimpleIconsDaimler": [], - "SimpleIconsDaisyui": [], - "SimpleIconsDapr": [], - "SimpleIconsDarkreader": [], - "SimpleIconsDart": [], - "SimpleIconsDarty": [], - "SimpleIconsDaserste": [], - "SimpleIconsDash": [], - "SimpleIconsDashlane": [], - "SimpleIconsDask": [], - "SimpleIconsDassaultsystemes": [], - "SimpleIconsDatabricks": [], - "SimpleIconsDatacamp": [], - "SimpleIconsDatadog": [], - "SimpleIconsDatadotai": [], - "SimpleIconsDatagrip": [], - "SimpleIconsDataiku": [], - "SimpleIconsDatastax": [], - "SimpleIconsDataverse": [], - "SimpleIconsDatocms": [], - "SimpleIconsDatto": [], - "SimpleIconsDazn": [], - "SimpleIconsDblp": [], - "SimpleIconsDbt": [], - "SimpleIconsDcentertainment": [], - "SimpleIconsDebian": [], - "SimpleIconsDedge": [], - "SimpleIconsDeepin": [], - "SimpleIconsDeepnote": [], - "SimpleIconsDeezer": [], - "SimpleIconsDelicious": [], - "SimpleIconsDeliveroo": [], - "SimpleIconsDell": [], - "SimpleIconsDelonghi": [], - "SimpleIconsDelphi": [], - "SimpleIconsDelta": [], - "SimpleIconsDeno": [], - "SimpleIconsDependabot": [], - "SimpleIconsDerspiegel": [], - "SimpleIconsDesignernews": [], - "SimpleIconsDeutschebahn": [], - "SimpleIconsDeutschebank": [], - "SimpleIconsDevdotto": [], - "SimpleIconsDevexpress": [], - "SimpleIconsDeviantart": [], - "SimpleIconsDevpost": [], - "SimpleIconsDevrant": [], - "SimpleIconsDgraph": [], - "SimpleIconsDhl": [], - "SimpleIconsDiagramsdotnet": [], - "SimpleIconsDialogflow": [], - "SimpleIconsDiaspora": [], - "SimpleIconsDigg": [], - "SimpleIconsDigikeyelectronics": [], - "SimpleIconsDigitalocean": [], - "SimpleIconsDior": [], - "SimpleIconsDirectus": [], - "SimpleIconsDiscogs": [], - "SimpleIconsDiscord": [], - "SimpleIconsDiscourse": [], - "SimpleIconsDiscover": [], - "SimpleIconsDisqus": [], - "SimpleIconsDisroot": [], - "SimpleIconsDjango": [], - "SimpleIconsDlib": [], - "SimpleIconsDlna": [], - "SimpleIconsDm": [], - "SimpleIconsDocker": [], - "SimpleIconsDocsdotrs": [], - "SimpleIconsDocusign": [], - "SimpleIconsDogecoin": [], - "SimpleIconsDolby": [], - "SimpleIconsDoordash": [], - "SimpleIconsDotenv": [], - "SimpleIconsDotnet": [], - "SimpleIconsDouban": [], - "SimpleIconsDoubanread": [], - "SimpleIconsDovecot": [], - "SimpleIconsDpd": [], - "SimpleIconsDragonframe": [], - "SimpleIconsDraugiemdotlv": [], - "SimpleIconsDribbble": [], - "SimpleIconsDrone": [], - "SimpleIconsDrooble": [], - "SimpleIconsDropbox": [], - "SimpleIconsDrupal": [], - "SimpleIconsDsautomobiles": [], - "SimpleIconsDtube": [], - "SimpleIconsDucati": [], - "SimpleIconsDuckdb": [], - "SimpleIconsDuckduckgo": [], - "SimpleIconsDungeonsanddragons": [], - "SimpleIconsDunked": [], - "SimpleIconsDuolingo": [], - "SimpleIconsDvc": [], - "SimpleIconsDwavesystems": [], - "SimpleIconsDwm": [], - "SimpleIconsDynamics365": [], - "SimpleIconsDynatrace": [], - "SimpleIconsE": [], - "SimpleIconsE3": [], - "SimpleIconsEa": [], - "SimpleIconsEagle": [], - "SimpleIconsEasyjet": [], - "SimpleIconsEbay": [], - "SimpleIconsEclipseche": [], - "SimpleIconsEclipseide": [], - "SimpleIconsEclipsejetty": [], - "SimpleIconsEclipsemosquitto": [], - "SimpleIconsEclipsevertdotx": [], - "SimpleIconsEdeka": [], - "SimpleIconsEditorconfig": [], - "SimpleIconsEdotleclerc": [], - "SimpleIconsEdx": [], - "SimpleIconsEgghead": [], - "SimpleIconsEgnyte": [], - "SimpleIconsEightsleep": [], - "SimpleIconsElastic": [], - "SimpleIconsElasticcloud": [], - "SimpleIconsElasticsearch": [], - "SimpleIconsElasticstack": [], - "SimpleIconsElectron": [], - "SimpleIconsElectronbuilder": [], - "SimpleIconsElectronfiddle": [], - "SimpleIconsElement": [], - "SimpleIconsElementary": [], - "SimpleIconsElementor": [], - "SimpleIconsEleventy": [], - "SimpleIconsElgato": [], - "SimpleIconsElixir": [], - "SimpleIconsEljueves": [], - "SimpleIconsEllo": [], - "SimpleIconsElm": [], - "SimpleIconsElsevier": [], - "SimpleIconsEmbarcadero": [], - "SimpleIconsEmberdotjs": [], - "SimpleIconsEmby": [], - "SimpleIconsEmirates": [], - "SimpleIconsEmlakjet": [], - "SimpleIconsEmpirekred": [], - "SimpleIconsEngadget": [], - "SimpleIconsEnpass": [], - "SimpleIconsEnterprisedb": [], - "SimpleIconsEnvato": [], - "SimpleIconsEnvoyproxy": [], - "SimpleIconsEpel": [], - "SimpleIconsEpicgames": [], - "SimpleIconsEpson": [], - "SimpleIconsEquinixmetal": [], - "SimpleIconsErlang": [], - "SimpleIconsEsbuild": [], - "SimpleIconsEsea": [], - "SimpleIconsEslgaming": [], - "SimpleIconsEslint": [], - "SimpleIconsEsphome": [], - "SimpleIconsEspressif": [], - "SimpleIconsEtcd": [], - "SimpleIconsEthereum": [], - "SimpleIconsEthiopianairlines": [], - "SimpleIconsEtihadairways": [], - "SimpleIconsEtsy": [], - "SimpleIconsEventbrite": [], - "SimpleIconsEventstore": [], - "SimpleIconsEvernote": [], - "SimpleIconsExercism": [], - "SimpleIconsExordo": [], - "SimpleIconsExoscale": [], - "SimpleIconsExpensify": [], - "SimpleIconsExpertsexchange": [], - "SimpleIconsExpo": [], - "SimpleIconsExpress": [], - "SimpleIconsExpressvpn": [], - "SimpleIconsEyeem": [], - "SimpleIconsF1": [], - "SimpleIconsF5": [], - "SimpleIconsFacebook": [], - "SimpleIconsFacebookgaming": [], - "SimpleIconsFacebooklive": [], - "SimpleIconsFaceit": [], - "SimpleIconsFacepunch": [], - "SimpleIconsFalcon": [], - "SimpleIconsFampay": [], - "SimpleIconsFandango": [], - "SimpleIconsFandom": [], - "SimpleIconsFanfou": [], - "SimpleIconsFantom": [], - "SimpleIconsFarfetch": [], - "SimpleIconsFastapi": [], - "SimpleIconsFastify": [], - "SimpleIconsFastlane": [], - "SimpleIconsFastly": [], - "SimpleIconsFathom": [], - "SimpleIconsFauna": [], - "SimpleIconsFavro": [], - "SimpleIconsFdroid": [], - "SimpleIconsFeathub": [], - "SimpleIconsFedex": [], - "SimpleIconsFedora": [], - "SimpleIconsFeedly": [], - "SimpleIconsFerrari": [], - "SimpleIconsFerrarinv": [], - "SimpleIconsFfmpeg": [], - "SimpleIconsFiat": [], - "SimpleIconsFidoalliance": [], - "SimpleIconsFifa": [], - "SimpleIconsFig": [], - "SimpleIconsFigma": [], - "SimpleIconsFigshare": [], - "SimpleIconsFila": [], - "SimpleIconsFiles": [], - "SimpleIconsFilezilla": [], - "SimpleIconsFing": [], - "SimpleIconsFirebase": [], - "SimpleIconsFirefox": [], - "SimpleIconsFirefoxbrowser": [], - "SimpleIconsFireship": [], - "SimpleIconsFirewalla": [], - "SimpleIconsFirst": [], - "SimpleIconsFitbit": [], - "SimpleIconsFite": [], - "SimpleIconsFivem": [], - "SimpleIconsFiverr": [], - "SimpleIconsFlask": [], - "SimpleIconsFlat": [], - "SimpleIconsFlathub": [], - "SimpleIconsFlatpak": [], - "SimpleIconsFlattr": [], - "SimpleIconsFlickr": [], - "SimpleIconsFlipboard": [], - "SimpleIconsFlipkart": [], - "SimpleIconsFloatplane": [], - "SimpleIconsFlood": [], - "SimpleIconsFluentbit": [], - "SimpleIconsFluentd": [], - "SimpleIconsFlutter": [], - "SimpleIconsFluxus": [], - "SimpleIconsFlyway": [], - "SimpleIconsFmod": [], - "SimpleIconsFnac": [], - "SimpleIconsFolium": [], - "SimpleIconsFonoma": [], - "SimpleIconsFontawesome": [], - "SimpleIconsFontbase": [], - "SimpleIconsFontforge": [], - "SimpleIconsFoodpanda": [], - "SimpleIconsFord": [], - "SimpleIconsForestry": [], - "SimpleIconsFormstack": [], - "SimpleIconsFortinet": [], - "SimpleIconsFortran": [], - "SimpleIconsFossa": [], - "SimpleIconsFossilscm": [], - "SimpleIconsFoursquare": [], - "SimpleIconsFoursquarecityguide": [], - "SimpleIconsFox": [], - "SimpleIconsFoxtel": [], - "SimpleIconsFozzy": [], - "SimpleIconsFramer": [], - "SimpleIconsFramework7": [], - "SimpleIconsFranprix": [], - "SimpleIconsFraunhofergesellschaft": [], - "SimpleIconsFreebsd": [], - "SimpleIconsFreecodecamp": [], - "SimpleIconsFreedesktopdotorg": [], - "SimpleIconsFreelancer": [], - "SimpleIconsFreenas": [], - "SimpleIconsFrontendmentor": [], - "SimpleIconsFsecure": [], - "SimpleIconsFugacloud": [], - "SimpleIconsFujifilm": [], - "SimpleIconsFujitsu": [], - "SimpleIconsFunimation": [], - "SimpleIconsFuraffinity": [], - "SimpleIconsFurrynetwork": [], - "SimpleIconsFuturelearn": [], - "SimpleIconsG2": [], - "SimpleIconsG2A": [], - "SimpleIconsGameandwatch": [], - "SimpleIconsGamedeveloper": [], - "SimpleIconsGamejolt": [], - "SimpleIconsGarmin": [], - "SimpleIconsGatling": [], - "SimpleIconsGatsby": [], - "SimpleIconsGeant": [], - "SimpleIconsGeeksforgeeks": [], - "SimpleIconsGeneralelectric": [], - "SimpleIconsGeneralmotors": [], - "SimpleIconsGenius": [], - "SimpleIconsGentoo": [], - "SimpleIconsGeocaching": [], - "SimpleIconsGerrit": [], - "SimpleIconsGhost": [], - "SimpleIconsGhostery": [], - "SimpleIconsGimp": [], - "SimpleIconsGiphy": [], - "SimpleIconsGit": [], - "SimpleIconsGitbook": [], - "SimpleIconsGitea": [], - "SimpleIconsGitee": [], - "SimpleIconsGitextensions": [], - "SimpleIconsGithub": [], - "SimpleIconsGithubactions": [], - "SimpleIconsGithubpages": [], - "SimpleIconsGithubsponsors": [], - "SimpleIconsGitignoredotio": [], - "SimpleIconsGitkraken": [], - "SimpleIconsGitlab": [], - "SimpleIconsGitlfs": [], - "SimpleIconsGitpod": [], - "SimpleIconsGitter": [], - "SimpleIconsGlassdoor": [], - "SimpleIconsGlitch": [], - "SimpleIconsGlobus": [], - "SimpleIconsGmail": [], - "SimpleIconsGnome": [], - "SimpleIconsGnometerminal": [], - "SimpleIconsGnu": [], - "SimpleIconsGnubash": [], - "SimpleIconsGnuemacs": [], - "SimpleIconsGnuicecat": [], - "SimpleIconsGnuprivacyguard": [], - "SimpleIconsGnusocial": [], - "SimpleIconsGo": [], - "SimpleIconsGocd": [], - "SimpleIconsGodaddy": [], - "SimpleIconsGodotengine": [], - "SimpleIconsGofundme": [], - "SimpleIconsGogdotcom": [], - "SimpleIconsGoland": [], - "SimpleIconsGoldenline": [], - "SimpleIconsGoodreads": [], - "SimpleIconsGoogle": [], - "SimpleIconsGoogleadmob": [], - "SimpleIconsGoogleads": [], - "SimpleIconsGoogleadsense": [], - "SimpleIconsGoogleanalytics": [], - "SimpleIconsGoogleassistant": [], - "SimpleIconsGooglecalendar": [], - "SimpleIconsGooglecardboard": [], - "SimpleIconsGooglechat": [], - "SimpleIconsGooglechrome": [], - "SimpleIconsGoogleclassroom": [], - "SimpleIconsGooglecloud": [], - "SimpleIconsGooglecolab": [], - "SimpleIconsGoogledomains": [], - "SimpleIconsGoogledrive": [], - "SimpleIconsGoogleearth": [], - "SimpleIconsGooglefit": [], - "SimpleIconsGooglefonts": [], - "SimpleIconsGooglehangouts": [], - "SimpleIconsGooglehome": [], - "SimpleIconsGooglekeep": [], - "SimpleIconsGooglelens": [], - "SimpleIconsGooglemaps": [], - "SimpleIconsGooglemarketingplatform": [], - "SimpleIconsGooglemeet": [], - "SimpleIconsGooglemessages": [], - "SimpleIconsGooglemybusiness": [], - "SimpleIconsGooglenearby": [], - "SimpleIconsGooglenews": [], - "SimpleIconsGoogleoptimize": [], - "SimpleIconsGooglepay": [], - "SimpleIconsGooglephotos": [], - "SimpleIconsGoogleplay": [], - "SimpleIconsGooglepodcasts": [], - "SimpleIconsGooglescholar": [], - "SimpleIconsGooglesearchconsole": [], - "SimpleIconsGooglesheets": [], - "SimpleIconsGooglestreetview": [], - "SimpleIconsGoogletagmanager": [], - "SimpleIconsGoogletranslate": [], - "SimpleIconsGotomeeting": [], - "SimpleIconsGrab": [], - "SimpleIconsGradle": [], - "SimpleIconsGrafana": [], - "SimpleIconsGrammarly": [], - "SimpleIconsGrandfrais": [], - "SimpleIconsGraphql": [], - "SimpleIconsGrav": [], - "SimpleIconsGravatar": [], - "SimpleIconsGraylog": [], - "SimpleIconsGreenhouse": [], - "SimpleIconsGreensock": [], - "SimpleIconsGriddotai": [], - "SimpleIconsGridsome": [], - "SimpleIconsGroupme": [], - "SimpleIconsGroupon": [], - "SimpleIconsGrubhub": [], - "SimpleIconsGrunt": [], - "SimpleIconsGsk": [], - "SimpleIconsGtk": [], - "SimpleIconsGuangzhoumetro": [], - "SimpleIconsGuilded": [], - "SimpleIconsGulp": [], - "SimpleIconsGumroad": [], - "SimpleIconsGumtree": [], - "SimpleIconsGunicorn": [], - "SimpleIconsGurobi": [], - "SimpleIconsGutenberg": [], - "SimpleIconsHabr": [], - "SimpleIconsHackaday": [], - "SimpleIconsHackclub": [], - "SimpleIconsHackerearth": [], - "SimpleIconsHackernoon": [], - "SimpleIconsHackerone": [], - "SimpleIconsHackerrank": [], - "SimpleIconsHackster": [], - "SimpleIconsHackthebox": [], - "SimpleIconsHandlebarsdotjs": [], - "SimpleIconsHandshake": [], - "SimpleIconsHandshakeProtocol": [], - "SimpleIconsHappycow": [], - "SimpleIconsHarbor": [], - "SimpleIconsHarmonyos": [], - "SimpleIconsHashnode": [], - "SimpleIconsHaskell": [], - "SimpleIconsHasura": [], - "SimpleIconsHatenabookmark": [], - "SimpleIconsHaveibeenpwned": [], - "SimpleIconsHaxe": [], - "SimpleIconsHbo": [], - "SimpleIconsHcl": [], - "SimpleIconsHeadlessui": [], - "SimpleIconsHeadspace": [], - "SimpleIconsHedera": [], - "SimpleIconsHellofresh": [], - "SimpleIconsHellyhansen": [], - "SimpleIconsHelm": [], - "SimpleIconsHelpdesk": [], - "SimpleIconsHelpscout": [], - "SimpleIconsHere": [], - "SimpleIconsHeroku": [], - "SimpleIconsHetzner": [], - "SimpleIconsHexo": [], - "SimpleIconsHey": [], - "SimpleIconsHibernate": [], - "SimpleIconsHibob": [], - "SimpleIconsHilton": [], - "SimpleIconsHitachi": [], - "SimpleIconsHive": [], - "SimpleIconsHiveBlockchain": [], - "SimpleIconsHomeadvisor": [], - "SimpleIconsHomeassistant": [], - "SimpleIconsHomeassistantcommunitystore": [], - "SimpleIconsHomebrew": [], - "SimpleIconsHomebridge": [], - "SimpleIconsHomify": [], - "SimpleIconsHonda": [], - "SimpleIconsHoney": [], - "SimpleIconsHootsuite": [], - "SimpleIconsHoppscotch": [], - "SimpleIconsHotelsdotcom": [], - "SimpleIconsHotjar": [], - "SimpleIconsHoudini": [], - "SimpleIconsHouzz": [], - "SimpleIconsHp": [], - "SimpleIconsHtml5": [], - "SimpleIconsHtmlacademy": [], - "SimpleIconsHttpie": [], - "SimpleIconsHuawei": [], - "SimpleIconsHubspot": [], - "SimpleIconsHugo": [], - "SimpleIconsHulu": [], - "SimpleIconsHumblebundle": [], - "SimpleIconsHungryjacks": [], - "SimpleIconsHurriyetemlak": [], - "SimpleIconsHusqvarna": [], - "SimpleIconsHyper": [], - "SimpleIconsHyperledger": [], - "SimpleIconsHypothesis": [], - "SimpleIconsHyundai": [], - "SimpleIconsI18Next": [], - "SimpleIconsIata": [], - "SimpleIconsIbeacon": [], - "SimpleIconsIbm": [], - "SimpleIconsIbmcloud": [], - "SimpleIconsIbmwatson": [], - "SimpleIconsIced": [], - "SimpleIconsIceland": [], - "SimpleIconsIcinga": [], - "SimpleIconsIcloud": [], - "SimpleIconsIcomoon": [], - "SimpleIconsIcon": [], - "SimpleIconsIconfinder": [], - "SimpleIconsIconify": [], - "SimpleIconsIconjar": [], - "SimpleIconsIcons8": [], - "SimpleIconsIcq": [], - "SimpleIconsIeee": [], - "SimpleIconsIfixit": [], - "SimpleIconsIfood": [], - "SimpleIconsIfttt": [], - "SimpleIconsIheartradio": [], - "SimpleIconsIkea": [], - "SimpleIconsIledefrancemobilites": [], - "SimpleIconsImagej": [], - "SimpleIconsImdb": [], - "SimpleIconsImgur": [], - "SimpleIconsImmer": [], - "SimpleIconsImou": [], - "SimpleIconsIndeed": [], - "SimpleIconsInfiniti": [], - "SimpleIconsInfluxdb": [], - "SimpleIconsInformatica": [], - "SimpleIconsInfosys": [], - "SimpleIconsInfracost": [], - "SimpleIconsIngress": [], - "SimpleIconsInkdrop": [], - "SimpleIconsInkscape": [], - "SimpleIconsInsomnia": [], - "SimpleIconsInstacart": [], - "SimpleIconsInstagram": [], - "SimpleIconsInstapaper": [], - "SimpleIconsInstatus": [], - "SimpleIconsInstructables": [], - "SimpleIconsInstructure": [], - "SimpleIconsIntegromat": [], - "SimpleIconsIntel": [], - "SimpleIconsIntellijidea": [], - "SimpleIconsInteractiondesignfoundation": [], - "SimpleIconsInteractjs": [], - "SimpleIconsIntercom": [], - "SimpleIconsIntermarche": [], - "SimpleIconsInternetarchive": [], - "SimpleIconsInternetexplorer": [], - "SimpleIconsIntigriti": [], - "SimpleIconsInvision": [], - "SimpleIconsInvoiceninja": [], - "SimpleIconsIobroker": [], - "SimpleIconsIonic": [], - "SimpleIconsIonos": [], - "SimpleIconsIos": [], - "SimpleIconsIota": [], - "SimpleIconsIpfs": [], - "SimpleIconsIssuu": [], - "SimpleIconsIstio": [], - "SimpleIconsItchdotio": [], - "SimpleIconsIterm2": [], - "SimpleIconsItunes": [], - "SimpleIconsItvx": [], - "SimpleIconsIveco": [], - "SimpleIconsJabber": [], - "SimpleIconsJaguar": [], - "SimpleIconsJamboard": [], - "SimpleIconsJameson": [], - "SimpleIconsJamstack": [], - "SimpleIconsJasmine": [], - "SimpleIconsJavascript": [], - "SimpleIconsJbl": [], - "SimpleIconsJcb": [], - "SimpleIconsJeep": [], - "SimpleIconsJekyll": [], - "SimpleIconsJellyfin": [], - "SimpleIconsJenkins": [], - "SimpleIconsJenkinsx": [], - "SimpleIconsJest": [], - "SimpleIconsJet": [], - "SimpleIconsJetbrains": [], - "SimpleIconsJetpackcompose": [], - "SimpleIconsJfrog": [], - "SimpleIconsJfrogbintray": [], - "SimpleIconsJinja": [], - "SimpleIconsJira": [], - "SimpleIconsJirasoftware": [], - "SimpleIconsJitsi": [], - "SimpleIconsJohndeere": [], - "SimpleIconsJoomla": [], - "SimpleIconsJoplin": [], - "SimpleIconsJordan": [], - "SimpleIconsJpeg": [], - "SimpleIconsJquery": [], - "SimpleIconsJrgroup": [], - "SimpleIconsJsdelivr": [], - "SimpleIconsJsfiddle": [], - "SimpleIconsJson": [], - "SimpleIconsJsonwebtokens": [], - "SimpleIconsJss": [], - "SimpleIconsJuke": [], - "SimpleIconsJulia": [], - "SimpleIconsJunipernetworks": [], - "SimpleIconsJunit5": [], - "SimpleIconsJupyter": [], - "SimpleIconsJusteat": [], - "SimpleIconsJustgiving": [], - "SimpleIconsK3S": [], - "SimpleIconsK6": [], - "SimpleIconsKaggle": [], - "SimpleIconsKahoot": [], - "SimpleIconsKaios": [], - "SimpleIconsKakao": [], - "SimpleIconsKakaotalk": [], - "SimpleIconsKalilinux": [], - "SimpleIconsKaniko": [], - "SimpleIconsKarlsruherverkehrsverbund": [], - "SimpleIconsKasasmart": [], - "SimpleIconsKashflow": [], - "SimpleIconsKaspersky": [], - "SimpleIconsKatacoda": [], - "SimpleIconsKatana": [], - "SimpleIconsKaufland": [], - "SimpleIconsKde": [], - "SimpleIconsKdenlive": [], - "SimpleIconsKeepachangelog": [], - "SimpleIconsKeepassxc": [], - "SimpleIconsKentico": [], - "SimpleIconsKeras": [], - "SimpleIconsKeybase": [], - "SimpleIconsKeycdn": [], - "SimpleIconsKeystone": [], - "SimpleIconsKfc": [], - "SimpleIconsKhanacademy": [], - "SimpleIconsKhronosgroup": [], - "SimpleIconsKia": [], - "SimpleIconsKibana": [], - "SimpleIconsKicad": [], - "SimpleIconsKickstarter": [], - "SimpleIconsKik": [], - "SimpleIconsKingstontechnology": [], - "SimpleIconsKinopoisk": [], - "SimpleIconsKirby": [], - "SimpleIconsKitsu": [], - "SimpleIconsKlarna": [], - "SimpleIconsKlm": [], - "SimpleIconsKlook": [], - "SimpleIconsKnative": [], - "SimpleIconsKnowledgebase": [], - "SimpleIconsKnown": [], - "SimpleIconsKoa": [], - "SimpleIconsKoc": [], - "SimpleIconsKodi": [], - "SimpleIconsKofax": [], - "SimpleIconsKofi": [], - "SimpleIconsKomoot": [], - "SimpleIconsKonami": [], - "SimpleIconsKong": [], - "SimpleIconsKongregate": [], - "SimpleIconsKonva": [], - "SimpleIconsKotlin": [], - "SimpleIconsKoyeb": [], - "SimpleIconsKrita": [], - "SimpleIconsKtm": [], - "SimpleIconsKuaishou": [], - "SimpleIconsKubernetes": [], - "SimpleIconsKubuntu": [], - "SimpleIconsKuma": [], - "SimpleIconsKuula": [], - "SimpleIconsKyocera": [], - "SimpleIconsLabview": [], - "SimpleIconsLada": [], - "SimpleIconsLamborghini": [], - "SimpleIconsLandrover": [], - "SimpleIconsLapce": [], - "SimpleIconsLaragon": [], - "SimpleIconsLaravel": [], - "SimpleIconsLaravelhorizon": [], - "SimpleIconsLaravelnova": [], - "SimpleIconsLastdotfm": [], - "SimpleIconsLastpass": [], - "SimpleIconsLatex": [], - "SimpleIconsLaunchpad": [], - "SimpleIconsLazarus": [], - "SimpleIconsLbry": [], - "SimpleIconsLeaderprice": [], - "SimpleIconsLeaflet": [], - "SimpleIconsLeanpub": [], - "SimpleIconsLeetcode": [], - "SimpleIconsLegacygames": [], - "SimpleIconsLemmy": [], - "SimpleIconsLenovo": [], - "SimpleIconsLens": [], - "SimpleIconsLerna": [], - "SimpleIconsLeroymerlin": [], - "SimpleIconsLess": [], - "SimpleIconsLetsencrypt": [], - "SimpleIconsLetterboxd": [], - "SimpleIconsLevelsdotfyi": [], - "SimpleIconsLg": [], - "SimpleIconsLgtm": [], - "SimpleIconsLiberapay": [], - "SimpleIconsLibrariesdotio": [], - "SimpleIconsLibrarything": [], - "SimpleIconsLibreoffice": [], - "SimpleIconsLibuv": [], - "SimpleIconsLichess": [], - "SimpleIconsLidl": [], - "SimpleIconsLifx": [], - "SimpleIconsLighthouse": [], - "SimpleIconsLine": [], - "SimpleIconsLineageos": [], - "SimpleIconsLinear": [], - "SimpleIconsLinkedin": [], - "SimpleIconsLinkerd": [], - "SimpleIconsLinkfire": [], - "SimpleIconsLinktree": [], - "SimpleIconsLinode": [], - "SimpleIconsLinux": [], - "SimpleIconsLinuxcontainers": [], - "SimpleIconsLinuxfoundation": [], - "SimpleIconsLinuxmint": [], - "SimpleIconsLionair": [], - "SimpleIconsLiquibase": [], - "SimpleIconsLit": [], - "SimpleIconsLitecoin": [], - "SimpleIconsLitiengine": [], - "SimpleIconsLivechat": [], - "SimpleIconsLivejournal": [], - "SimpleIconsLivewire": [], - "SimpleIconsLlvm": [], - "SimpleIconsLmms": [], - "SimpleIconsLodash": [], - "SimpleIconsLogitech": [], - "SimpleIconsLogmein": [], - "SimpleIconsLogstash": [], - "SimpleIconsLooker": [], - "SimpleIconsLoom": [], - "SimpleIconsLoop": [], - "SimpleIconsLoopback": [], - "SimpleIconsLospec": [], - "SimpleIconsLotpolishairlines": [], - "SimpleIconsLua": [], - "SimpleIconsLubuntu": [], - "SimpleIconsLudwig": [], - "SimpleIconsLufthansa": [], - "SimpleIconsLumen": [], - "SimpleIconsLunacy": [], - "SimpleIconsLydia": [], - "SimpleIconsLyft": [], - "SimpleIconsMaas": [], - "SimpleIconsMacos": [], - "SimpleIconsMacpaw": [], - "SimpleIconsMacys": [], - "SimpleIconsMagasinsu": [], - "SimpleIconsMagento": [], - "SimpleIconsMagisk": [], - "SimpleIconsMailchimp": [], - "SimpleIconsMaildotru": [], - "SimpleIconsMailgun": [], - "SimpleIconsMajorleaguehacking": [], - "SimpleIconsMakerbot": [], - "SimpleIconsMamp": [], - "SimpleIconsMan": [], - "SimpleIconsManageiq": [], - "SimpleIconsManjaro": [], - "SimpleIconsMapbox": [], - "SimpleIconsMariadb": [], - "SimpleIconsMariadbfoundation": [], - "SimpleIconsMarkdown": [], - "SimpleIconsMarketo": [], - "SimpleIconsMarko": [], - "SimpleIconsMarriott": [], - "SimpleIconsMaserati": [], - "SimpleIconsMastercard": [], - "SimpleIconsMastercomfig": [], - "SimpleIconsMastodon": [], - "SimpleIconsMaterialdesign": [], - "SimpleIconsMaterialdesignicons": [], - "SimpleIconsMatomo": [], - "SimpleIconsMatrix": [], - "SimpleIconsMatterdotjs": [], - "SimpleIconsMattermost": [], - "SimpleIconsMatternet": [], - "SimpleIconsMax": [], - "SimpleIconsMaxplanckgesellschaft": [], - "SimpleIconsMaytag": [], - "SimpleIconsMazda": [], - "SimpleIconsMcafee": [], - "SimpleIconsMcdonalds": [], - "SimpleIconsMclaren": [], - "SimpleIconsMdbook": [], - "SimpleIconsMdnwebdocs": [], - "SimpleIconsMdx": [], - "SimpleIconsMediafire": [], - "SimpleIconsMediamarkt": [], - "SimpleIconsMediatek": [], - "SimpleIconsMediatemple": [], - "SimpleIconsMedium": [], - "SimpleIconsMeetup": [], - "SimpleIconsMega": [], - "SimpleIconsMendeley": [], - "SimpleIconsMercadopago": [], - "SimpleIconsMercedes": [], - "SimpleIconsMerck": [], - "SimpleIconsMercurial": [], - "SimpleIconsMessenger": [], - "SimpleIconsMeta": [], - "SimpleIconsMetabase": [], - "SimpleIconsMetafilter": [], - "SimpleIconsMeteor": [], - "SimpleIconsMetro": [], - "SimpleIconsMetrodelaciudaddemexico": [], - "SimpleIconsMetrodemadrid": [], - "SimpleIconsMetrodeparis": [], - "SimpleIconsMewe": [], - "SimpleIconsMicrobit": [], - "SimpleIconsMicrodotblog": [], - "SimpleIconsMicrogenetics": [], - "SimpleIconsMicropython": [], - "SimpleIconsMicrosoft": [], - "SimpleIconsMicrosoftacademic": [], - "SimpleIconsMicrosoftaccess": [], - "SimpleIconsMicrosoftazure": [], - "SimpleIconsMicrosoftbing": [], - "SimpleIconsMicrosoftedge": [], - "SimpleIconsMicrosoftexcel": [], - "SimpleIconsMicrosoftexchange": [], - "SimpleIconsMicrosoftoffice": [], - "SimpleIconsMicrosoftonedrive": [], - "SimpleIconsMicrosoftonenote": [], - "SimpleIconsMicrosoftoutlook": [], - "SimpleIconsMicrosoftpowerpoint": [], - "SimpleIconsMicrosoftsharepoint": [], - "SimpleIconsMicrosoftsqlserver": [], - "SimpleIconsMicrosoftteams": [], - "SimpleIconsMicrosofttranslator": [], - "SimpleIconsMicrosoftvisio": [], - "SimpleIconsMicrosoftword": [], - "SimpleIconsMicrostrategy": [], - "SimpleIconsMidi": [], - "SimpleIconsMinds": [], - "SimpleIconsMinecraft": [], - "SimpleIconsMinetest": [], - "SimpleIconsMini": [], - "SimpleIconsMinutemailer": [], - "SimpleIconsMiro": [], - "SimpleIconsMitsubishi": [], - "SimpleIconsMix": [], - "SimpleIconsMixcloud": [], - "SimpleIconsMlb": [], - "SimpleIconsMlflow": [], - "SimpleIconsMobx": [], - "SimpleIconsMobxstatetree": [], - "SimpleIconsMocha": [], - "SimpleIconsModin": [], - "SimpleIconsModrinth": [], - "SimpleIconsModx": [], - "SimpleIconsMojangstudios": [], - "SimpleIconsMoleculer": [], - "SimpleIconsMomenteo": [], - "SimpleIconsMonero": [], - "SimpleIconsMoneygram": [], - "SimpleIconsMongodb": [], - "SimpleIconsMonica": [], - "SimpleIconsMonkeytie": [], - "SimpleIconsMonogames": [], - "SimpleIconsMonoprix": [], - "SimpleIconsMonster": [], - "SimpleIconsMonzo": [], - "SimpleIconsMoo": [], - "SimpleIconsMoonrepo": [], - "SimpleIconsMorrisons": [], - "SimpleIconsMoscowmetro": [], - "SimpleIconsMotorola": [], - "SimpleIconsMozilla": [], - "SimpleIconsMqtt": [], - "SimpleIconsMsi": [], - "SimpleIconsMsibusiness": [], - "SimpleIconsMta": [], - "SimpleIconsMtr": [], - "SimpleIconsMui": [], - "SimpleIconsMulesoft": [], - "SimpleIconsMuller": [], - "SimpleIconsMumble": [], - "SimpleIconsMusescore": [], - "SimpleIconsMusicbrainz": [], - "SimpleIconsMxlinux": [], - "SimpleIconsMyanimelist": [], - "SimpleIconsMyob": [], - "SimpleIconsMyspace": [], - "SimpleIconsMysql": [], - "SimpleIconsN26": [], - "SimpleIconsNamebase": [], - "SimpleIconsNamecheap": [], - "SimpleIconsNano": [], - "SimpleIconsNasa": [], - "SimpleIconsNationalgrid": [], - "SimpleIconsNativescript": [], - "SimpleIconsNaver": [], - "SimpleIconsNba": [], - "SimpleIconsNbb": [], - "SimpleIconsNdr": [], - "SimpleIconsNec": [], - "SimpleIconsNeo4J": [], - "SimpleIconsNeovim": [], - "SimpleIconsNestjs": [], - "SimpleIconsNetapp": [], - "SimpleIconsNetbsd": [], - "SimpleIconsNetflix": [], - "SimpleIconsNetlify": [], - "SimpleIconsNette": [], - "SimpleIconsNetto": [], - "SimpleIconsNeutralinojs": [], - "SimpleIconsNewbalance": [], - "SimpleIconsNewjapanprowrestling": [], - "SimpleIconsNewrelic": [], - "SimpleIconsNewyorktimes": [], - "SimpleIconsNextbilliondotai": [], - "SimpleIconsNextcloud": [], - "SimpleIconsNextdoor": [], - "SimpleIconsNextdotjs": [], - "SimpleIconsNfc": [], - "SimpleIconsNginx": [], - "SimpleIconsNgrok": [], - "SimpleIconsNiconico": [], - "SimpleIconsNike": [], - "SimpleIconsNim": [], - "SimpleIconsNintendo": [], - "SimpleIconsNintendo3Ds": [], - "SimpleIconsNintendogamecube": [], - "SimpleIconsNintendonetwork": [], - "SimpleIconsNintendoswitch": [], - "SimpleIconsNissan": [], - "SimpleIconsNixos": [], - "SimpleIconsNodedotjs": [], - "SimpleIconsNodemon": [], - "SimpleIconsNodered": [], - "SimpleIconsNokia": [], - "SimpleIconsNorco": [], - "SimpleIconsNordvpn": [], - "SimpleIconsNorwegian": [], - "SimpleIconsNotepadplusplus": [], - "SimpleIconsNotion": [], - "SimpleIconsNotist": [], - "SimpleIconsNounproject": [], - "SimpleIconsNovu": [], - "SimpleIconsNow": [], - "SimpleIconsNpm": [], - "SimpleIconsNrwl": [], - "SimpleIconsNubank": [], - "SimpleIconsNucleo": [], - "SimpleIconsNuget": [], - "SimpleIconsNuke": [], - "SimpleIconsNumba": [], - "SimpleIconsNumpy": [], - "SimpleIconsNunjucks": [], - "SimpleIconsNutanix": [], - "SimpleIconsNuxtdotjs": [], - "SimpleIconsNvidia": [], - "SimpleIconsNx": [], - "SimpleIconsNzxt": [], - "SimpleIconsObservable": [], - "SimpleIconsObsidian": [], - "SimpleIconsObsstudio": [], - "SimpleIconsOcaml": [], - "SimpleIconsOctanerender": [], - "SimpleIconsOctave": [], - "SimpleIconsOctoprint": [], - "SimpleIconsOctopusdeploy": [], - "SimpleIconsOculus": [], - "SimpleIconsOdnoklassniki": [], - "SimpleIconsOdysee": [], - "SimpleIconsOhdear": [], - "SimpleIconsOkcupid": [], - "SimpleIconsOkta": [], - "SimpleIconsOneplus": [], - "SimpleIconsOnlyfans": [], - "SimpleIconsOnlyoffice": [], - "SimpleIconsOnnx": [], - "SimpleIconsOnstar": [], - "SimpleIconsOpel": [], - "SimpleIconsOpenaccess": [], - "SimpleIconsOpenai": [], - "SimpleIconsOpenaigym": [], - "SimpleIconsOpenapiinitiative": [], - "SimpleIconsOpenbadges": [], - "SimpleIconsOpenbsd": [], - "SimpleIconsOpenbugbounty": [], - "SimpleIconsOpencollective": [], - "SimpleIconsOpencontainersinitiative": [], - "SimpleIconsOpencv": [], - "SimpleIconsOpenfaas": [], - "SimpleIconsOpengl": [], - "SimpleIconsOpenid": [], - "SimpleIconsOpenjdk": [], - "SimpleIconsOpenlayers": [], - "SimpleIconsOpenmined": [], - "SimpleIconsOpennebula": [], - "SimpleIconsOpenproject": [], - "SimpleIconsOpensea": [], - "SimpleIconsOpensearch": [], - "SimpleIconsOpensourceinitiative": [], - "SimpleIconsOpenssl": [], - "SimpleIconsOpenstack": [], - "SimpleIconsOpenstreetmap": [], - "SimpleIconsOpensuse": [], - "SimpleIconsOpentelemetry": [], - "SimpleIconsOpenverse": [], - "SimpleIconsOpenvpn": [], - "SimpleIconsOpenwrt": [], - "SimpleIconsOpenzeppelin": [], - "SimpleIconsOpenzfs": [], - "SimpleIconsOpera": [], - "SimpleIconsOpnsense": [], - "SimpleIconsOpsgenie": [], - "SimpleIconsOpslevel": [], - "SimpleIconsOracle": [], - "SimpleIconsOrcid": [], - "SimpleIconsOreilly": [], - "SimpleIconsOrg": [], - "SimpleIconsOrigin": [], - "SimpleIconsOsano": [], - "SimpleIconsOshkosh": [], - "SimpleIconsOsmc": [], - "SimpleIconsOsu": [], - "SimpleIconsOtto": [], - "SimpleIconsOvercast": [], - "SimpleIconsOverleaf": [], - "SimpleIconsOvh": [], - "SimpleIconsOwasp": [], - "SimpleIconsOxygen": [], - "SimpleIconsOyo": [], - "SimpleIconsP5Dotjs": [], - "SimpleIconsPackagist": [], - "SimpleIconsPacker": [], - "SimpleIconsPaddypower": [], - "SimpleIconsPagekit": [], - "SimpleIconsPagerduty": [], - "SimpleIconsPagespeedinsights": [], - "SimpleIconsPagseguro": [], - "SimpleIconsPalantir": [], - "SimpleIconsPaloaltosoftware": [], - "SimpleIconsPandas": [], - "SimpleIconsPandora": [], - "SimpleIconsPantheon": [], - "SimpleIconsPaperspace": [], - "SimpleIconsParitysubstrate": [], - "SimpleIconsParsedotly": [], - "SimpleIconsPassport": [], - "SimpleIconsPastebin": [], - "SimpleIconsPatreon": [], - "SimpleIconsPayoneer": [], - "SimpleIconsPaypal": [], - "SimpleIconsPaytm": [], - "SimpleIconsPcgamingwiki": [], - "SimpleIconsPeakdesign": [], - "SimpleIconsPeertube": [], - "SimpleIconsPegasusairlines": [], - "SimpleIconsPelican": [], - "SimpleIconsPeloton": [], - "SimpleIconsPenny": [], - "SimpleIconsPenpot": [], - "SimpleIconsPepsi": [], - "SimpleIconsPercy": [], - "SimpleIconsPerforce": [], - "SimpleIconsPerl": [], - "SimpleIconsPersistent": [], - "SimpleIconsPersonio": [], - "SimpleIconsPetsathome": [], - "SimpleIconsPeugeot": [], - "SimpleIconsPexels": [], - "SimpleIconsPfsense": [], - "SimpleIconsPhabricator": [], - "SimpleIconsPhilipshue": [], - "SimpleIconsPhonepe": [], - "SimpleIconsPhotobucket": [], - "SimpleIconsPhotocrowd": [], - "SimpleIconsPhotopea": [], - "SimpleIconsPhp": [], - "SimpleIconsPhpmyadmin": [], - "SimpleIconsPhpstorm": [], - "SimpleIconsPicardsurgeles": [], - "SimpleIconsPicartodottv": [], - "SimpleIconsPicnic": [], - "SimpleIconsPicpay": [], - "SimpleIconsPihole": [], - "SimpleIconsPimcore": [], - "SimpleIconsPinboard": [], - "SimpleIconsPingdom": [], - "SimpleIconsPinterest": [], - "SimpleIconsPioneerdj": [], - "SimpleIconsPivotaltracker": [], - "SimpleIconsPiwigo": [], - "SimpleIconsPix": [], - "SimpleIconsPixabay": [], - "SimpleIconsPixiv": [], - "SimpleIconsPkgsrc": [], - "SimpleIconsPlanet": [], - "SimpleIconsPlanetscale": [], - "SimpleIconsPlangrid": [], - "SimpleIconsPlatformdotsh": [], - "SimpleIconsPlatzi": [], - "SimpleIconsPlausibleanalytics": [], - "SimpleIconsPlaycanvas": [], - "SimpleIconsPlayerdotme": [], - "SimpleIconsPlayerfm": [], - "SimpleIconsPlaystation": [], - "SimpleIconsPlaystation2": [], - "SimpleIconsPlaystation3": [], - "SimpleIconsPlaystation4": [], - "SimpleIconsPlaystation5": [], - "SimpleIconsPlaystationvita": [], - "SimpleIconsPlaywright": [], - "SimpleIconsPleroma": [], - "SimpleIconsPlesk": [], - "SimpleIconsPlex": [], - "SimpleIconsPlotly": [], - "SimpleIconsPluralsight": [], - "SimpleIconsPlurk": [], - "SimpleIconsPluscodes": [], - "SimpleIconsPm2": [], - "SimpleIconsPnpm": [], - "SimpleIconsPocket": [], - "SimpleIconsPocketbase": [], - "SimpleIconsPocketcasts": [], - "SimpleIconsPodcastaddict": [], - "SimpleIconsPodman": [], - "SimpleIconsPoetry": [], - "SimpleIconsPointy": [], - "SimpleIconsPokemon": [], - "SimpleIconsPolars": [], - "SimpleIconsPolkadot": [], - "SimpleIconsPoly": [], - "SimpleIconsPolymerproject": [], - "SimpleIconsPolywork": [], - "SimpleIconsPopos": [], - "SimpleIconsPorsche": [], - "SimpleIconsPortainer": [], - "SimpleIconsPostcss": [], - "SimpleIconsPostgresql": [], - "SimpleIconsPostman": [], - "SimpleIconsPostmates": [], - "SimpleIconsPowerapps": [], - "SimpleIconsPowerautomate": [], - "SimpleIconsPowerbi": [], - "SimpleIconsPowerfx": [], - "SimpleIconsPowerpages": [], - "SimpleIconsPowers": [], - "SimpleIconsPowershell": [], - "SimpleIconsPowervirtualagents": [], - "SimpleIconsPrdotco": [], - "SimpleIconsPreact": [], - "SimpleIconsPrecommit": [], - "SimpleIconsPremierleague": [], - "SimpleIconsPrestashop": [], - "SimpleIconsPresto": [], - "SimpleIconsPrettier": [], - "SimpleIconsPrevention": [], - "SimpleIconsPrezi": [], - "SimpleIconsPrime": [], - "SimpleIconsPrimevideo": [], - "SimpleIconsPrisma": [], - "SimpleIconsPrismic": [], - "SimpleIconsPrivateinternetaccess": [], - "SimpleIconsProbot": [], - "SimpleIconsProcessingfoundation": [], - "SimpleIconsProcesswire": [], - "SimpleIconsProducthunt": [], - "SimpleIconsProgate": [], - "SimpleIconsProgress": [], - "SimpleIconsPrometheus": [], - "SimpleIconsProsieben": [], - "SimpleIconsProtocolsdotio": [], - "SimpleIconsProtodotio": [], - "SimpleIconsProtondb": [], - "SimpleIconsProtonmail": [], - "SimpleIconsProtonvpn": [], - "SimpleIconsProtools": [], - "SimpleIconsProtractor": [], - "SimpleIconsProxmox": [], - "SimpleIconsPubg": [], - "SimpleIconsPublons": [], - "SimpleIconsPubmed": [], - "SimpleIconsPug": [], - "SimpleIconsPulumi": [], - "SimpleIconsPuma": [], - "SimpleIconsPuppet": [], - "SimpleIconsPuppeteer": [], - "SimpleIconsPurescript": [], - "SimpleIconsPurgecss": [], - "SimpleIconsPurism": [], - "SimpleIconsPusher": [], - "SimpleIconsPwa": [], - "SimpleIconsPycharm": [], - "SimpleIconsPyg": [], - "SimpleIconsPypi": [], - "SimpleIconsPypy": [], - "SimpleIconsPyscaffold": [], - "SimpleIconsPysyft": [], - "SimpleIconsPytest": [], - "SimpleIconsPython": [], - "SimpleIconsPytorch": [], - "SimpleIconsPytorchlightning": [], - "SimpleIconsPyup": [], - "SimpleIconsQantas": [], - "SimpleIconsQatarairways": [], - "SimpleIconsQemu": [], - "SimpleIconsQgis": [], - "SimpleIconsQi": [], - "SimpleIconsQiita": [], - "SimpleIconsQiskit": [], - "SimpleIconsQiwi": [], - "SimpleIconsQmk": [], - "SimpleIconsQt": [], - "SimpleIconsQualcomm": [], - "SimpleIconsQualtrics": [], - "SimpleIconsQualys": [], - "SimpleIconsQuantcast": [], - "SimpleIconsQuantconnect": [], - "SimpleIconsQuarkus": [], - "SimpleIconsQuasar": [], - "SimpleIconsQubesos": [], - "SimpleIconsQuest": [], - "SimpleIconsQuickbooks": [], - "SimpleIconsQuicklook": [], - "SimpleIconsQuicktime": [], - "SimpleIconsQuip": [], - "SimpleIconsQuora": [], - "SimpleIconsQwiklabs": [], - "SimpleIconsQzone": [], - "SimpleIconsR": [], - "SimpleIconsR3": [], - "SimpleIconsRabbitmq": [], - "SimpleIconsRacket": [], - "SimpleIconsRadar": [], - "SimpleIconsRadiopublic": [], - "SimpleIconsRailway": [], - "SimpleIconsRainmeter": [], - "SimpleIconsRakuten": [], - "SimpleIconsRam": [], - "SimpleIconsRancher": [], - "SimpleIconsRarible": [], - "SimpleIconsRasa": [], - "SimpleIconsRaspberrypi": [], - "SimpleIconsRavelry": [], - "SimpleIconsRay": [], - "SimpleIconsRazer": [], - "SimpleIconsRazorpay": [], - "SimpleIconsReact": [], - "SimpleIconsReacthookform": [], - "SimpleIconsReactivex": [], - "SimpleIconsReactos": [], - "SimpleIconsReactquery": [], - "SimpleIconsReactrouter": [], - "SimpleIconsReacttable": [], - "SimpleIconsReadme": [], - "SimpleIconsReadthedocs": [], - "SimpleIconsRealm": [], - "SimpleIconsReason": [], - "SimpleIconsReasonstudios": [], - "SimpleIconsRed": [], - "SimpleIconsRedbubble": [], - "SimpleIconsReddit": [], - "SimpleIconsRedhat": [], - "SimpleIconsRedhatopenshift": [], - "SimpleIconsRedis": [], - "SimpleIconsRedmine": [], - "SimpleIconsRedox": [], - "SimpleIconsRedux": [], - "SimpleIconsReduxsaga": [], - "SimpleIconsRedwoodjs": [], - "SimpleIconsReebok": [], - "SimpleIconsRelay": [], - "SimpleIconsRelianceindustrieslimited": [], - "SimpleIconsRemix": [], - "SimpleIconsRenault": [], - "SimpleIconsRender": [], - "SimpleIconsRenovatebot": [], - "SimpleIconsRenpy": [], - "SimpleIconsRenren": [], - "SimpleIconsReplit": [], - "SimpleIconsRepublicofgamers": [], - "SimpleIconsRescript": [], - "SimpleIconsRescuetime": [], - "SimpleIconsResearchgate": [], - "SimpleIconsResharper": [], - "SimpleIconsResurrectionremixos": [], - "SimpleIconsRetroarch": [], - "SimpleIconsRetropie": [], - "SimpleIconsRevealdotjs": [], - "SimpleIconsReverbnation": [], - "SimpleIconsRevoltdotchat": [], - "SimpleIconsRevolut": [], - "SimpleIconsRevue": [], - "SimpleIconsRewe": [], - "SimpleIconsRezgo": [], - "SimpleIconsRhinoceros": [], - "SimpleIconsRider": [], - "SimpleIconsRimacautomobili": [], - "SimpleIconsRing": [], - "SimpleIconsRiotgames": [], - "SimpleIconsRipple": [], - "SimpleIconsRiseup": [], - "SimpleIconsRoamresearch": [], - "SimpleIconsRoblox": [], - "SimpleIconsRobotframework": [], - "SimpleIconsRocketdotchat": [], - "SimpleIconsRocksdb": [], - "SimpleIconsRockylinux": [], - "SimpleIconsRoku": [], - "SimpleIconsRollsroyce": [], - "SimpleIconsRollupdotjs": [], - "SimpleIconsRome": [], - "SimpleIconsRoots": [], - "SimpleIconsRootsbedrock": [], - "SimpleIconsRootssage": [], - "SimpleIconsRos": [], - "SimpleIconsRossmann": [], - "SimpleIconsRotaryinternational": [], - "SimpleIconsRottentomatoes": [], - "SimpleIconsRoundcube": [], - "SimpleIconsRsocket": [], - "SimpleIconsRss": [], - "SimpleIconsRstudio": [], - "SimpleIconsRte": [], - "SimpleIconsRtl": [], - "SimpleIconsRtlzwei": [], - "SimpleIconsRubocop": [], - "SimpleIconsRuby": [], - "SimpleIconsRubygems": [], - "SimpleIconsRubyonrails": [], - "SimpleIconsRubysinatra": [], - "SimpleIconsRunkeeper": [], - "SimpleIconsRunkit": [], - "SimpleIconsRust": [], - "SimpleIconsRxdb": [], - "SimpleIconsRyanair": [], - "SimpleIconsS7Airlines": [], - "SimpleIconsSabanci": [], - "SimpleIconsSafari": [], - "SimpleIconsSahibinden": [], - "SimpleIconsSailfishos": [], - "SimpleIconsSalesforce": [], - "SimpleIconsSaltproject": [], - "SimpleIconsSamsung": [], - "SimpleIconsSamsungpay": [], - "SimpleIconsSandisk": [], - "SimpleIconsSanfranciscomunicipalrailway": [], - "SimpleIconsSaopaulometro": [], - "SimpleIconsSap": [], - "SimpleIconsSass": [], - "SimpleIconsSat1": [], - "SimpleIconsSaturn": [], - "SimpleIconsSaucelabs": [], - "SimpleIconsScala": [], - "SimpleIconsScaleway": [], - "SimpleIconsScania": [], - "SimpleIconsSchneiderelectric": [], - "SimpleIconsScikitlearn": [], - "SimpleIconsScipy": [], - "SimpleIconsScopus": [], - "SimpleIconsScpfoundation": [], - "SimpleIconsScratch": [], - "SimpleIconsScreencastify": [], - "SimpleIconsScribd": [], - "SimpleIconsScrimba": [], - "SimpleIconsScrollreveal": [], - "SimpleIconsScrumalliance": [], - "SimpleIconsScrutinizerci": [], - "SimpleIconsSeagate": [], - "SimpleIconsSeat": [], - "SimpleIconsSecurityscorecard": [], - "SimpleIconsSefaria": [], - "SimpleIconsSega": [], - "SimpleIconsSelenium": [], - "SimpleIconsSellfy": [], - "SimpleIconsSemanticrelease": [], - "SimpleIconsSemanticscholar": [], - "SimpleIconsSemanticuireact": [], - "SimpleIconsSemanticweb": [], - "SimpleIconsSemaphoreci": [], - "SimpleIconsSemver": [], - "SimpleIconsSencha": [], - "SimpleIconsSendinblue": [], - "SimpleIconsSennheiser": [], - "SimpleIconsSensu": [], - "SimpleIconsSentry": [], - "SimpleIconsSepa": [], - "SimpleIconsSequelize": [], - "SimpleIconsServerfault": [], - "SimpleIconsServerless": [], - "SimpleIconsSessionize": [], - "SimpleIconsSetapp": [], - "SimpleIconsSfml": [], - "SimpleIconsShadow": [], - "SimpleIconsShanghaimetro": [], - "SimpleIconsSharp": [], - "SimpleIconsShazam": [], - "SimpleIconsShell": [], - "SimpleIconsShelly": [], - "SimpleIconsShenzhenmetro": [], - "SimpleIconsShieldsdotio": [], - "SimpleIconsShikimori": [], - "SimpleIconsShopee": [], - "SimpleIconsShopify": [], - "SimpleIconsShopware": [], - "SimpleIconsShotcut": [], - "SimpleIconsShowpad": [], - "SimpleIconsShowtime": [], - "SimpleIconsShutterstock": [], - "SimpleIconsSiemens": [], - "SimpleIconsSignal": [], - "SimpleIconsSimilarweb": [], - "SimpleIconsSimkl": [], - "SimpleIconsSimpleanalytics": [], - "SimpleIconsSimpleicons": [], - "SimpleIconsSimplenote": [], - "SimpleIconsSinaweibo": [], - "SimpleIconsSinglestore": [], - "SimpleIconsSitepoint": [], - "SimpleIconsSketch": [], - "SimpleIconsSketchfab": [], - "SimpleIconsSketchup": [], - "SimpleIconsSkillshare": [], - "SimpleIconsSkoda": [], - "SimpleIconsSky": [], - "SimpleIconsSkynet": [], - "SimpleIconsSkypack": [], - "SimpleIconsSkype": [], - "SimpleIconsSkypeforbusiness": [], - "SimpleIconsSlack": [], - "SimpleIconsSlackware": [], - "SimpleIconsSlashdot": [], - "SimpleIconsSlickpic": [], - "SimpleIconsSlides": [], - "SimpleIconsSlideshare": [], - "SimpleIconsSmart": [], - "SimpleIconsSmartthings": [], - "SimpleIconsSmashdotgg": [], - "SimpleIconsSmashingmagazine": [], - "SimpleIconsSmrt": [], - "SimpleIconsSmugmug": [], - "SimpleIconsSnapchat": [], - "SimpleIconsSnapcraft": [], - "SimpleIconsSncf": [], - "SimpleIconsSnowflake": [], - "SimpleIconsSnowpack": [], - "SimpleIconsSnyk": [], - "SimpleIconsSocialblade": [], - "SimpleIconsSociety6": [], - "SimpleIconsSocketdotio": [], - "SimpleIconsSogou": [], - "SimpleIconsSolid": [], - "SimpleIconsSolidity": [], - "SimpleIconsSololearn": [], - "SimpleIconsSolus": [], - "SimpleIconsSonar": [], - "SimpleIconsSonarcloud": [], - "SimpleIconsSonarlint": [], - "SimpleIconsSonarqube": [], - "SimpleIconsSonarsource": [], - "SimpleIconsSongkick": [], - "SimpleIconsSongoda": [], - "SimpleIconsSonicwall": [], - "SimpleIconsSonos": [], - "SimpleIconsSony": [], - "SimpleIconsSoundcharts": [], - "SimpleIconsSoundcloud": [], - "SimpleIconsSourceengine": [], - "SimpleIconsSourceforge": [], - "SimpleIconsSourcegraph": [], - "SimpleIconsSourcetree": [], - "SimpleIconsSouthwestairlines": [], - "SimpleIconsSpacemacs": [], - "SimpleIconsSpacex": [], - "SimpleIconsSpacy": [], - "SimpleIconsSparkar": [], - "SimpleIconsSparkasse": [], - "SimpleIconsSparkfun": [], - "SimpleIconsSparkpost": [], - "SimpleIconsSpdx": [], - "SimpleIconsSpeakerdeck": [], - "SimpleIconsSpectrum": [], - "SimpleIconsSpeedtest": [], - "SimpleIconsSpinnaker": [], - "SimpleIconsSpinrilla": [], - "SimpleIconsSplunk": [], - "SimpleIconsSpond": [], - "SimpleIconsSpotify": [], - "SimpleIconsSpotlight": [], - "SimpleIconsSpreadshirt": [], - "SimpleIconsSpreaker": [], - "SimpleIconsSpring": [], - "SimpleIconsSpringCreators": [], - "SimpleIconsSpringboot": [], - "SimpleIconsSpringsecurity": [], - "SimpleIconsSpyderide": [], - "SimpleIconsSqlite": [], - "SimpleIconsSquare": [], - "SimpleIconsSquareenix": [], - "SimpleIconsSquarespace": [], - "SimpleIconsSsrn": [], - "SimpleIconsStackbit": [], - "SimpleIconsStackblitz": [], - "SimpleIconsStackedit": [], - "SimpleIconsStackexchange": [], - "SimpleIconsStackoverflow": [], - "SimpleIconsStackpath": [], - "SimpleIconsStackshare": [], - "SimpleIconsStadia": [], - "SimpleIconsStaffbase": [], - "SimpleIconsStandardjs": [], - "SimpleIconsStarbucks": [], - "SimpleIconsStardock": [], - "SimpleIconsStarlingbank": [], - "SimpleIconsStarship": [], - "SimpleIconsStartrek": [], - "SimpleIconsStarz": [], - "SimpleIconsStatamic": [], - "SimpleIconsStatuspage": [], - "SimpleIconsStatuspal": [], - "SimpleIconsSteam": [], - "SimpleIconsSteamdb": [], - "SimpleIconsSteamdeck": [], - "SimpleIconsSteamworks": [], - "SimpleIconsSteelseries": [], - "SimpleIconsSteem": [], - "SimpleIconsSteemit": [], - "SimpleIconsSteinberg": [], - "SimpleIconsStellar": [], - "SimpleIconsStencyl": [], - "SimpleIconsStimulus": [], - "SimpleIconsStitcher": [], - "SimpleIconsStmicroelectronics": [], - "SimpleIconsStopstalk": [], - "SimpleIconsStoryblok": [], - "SimpleIconsStorybook": [], - "SimpleIconsStrapi": [], - "SimpleIconsStrava": [], - "SimpleIconsStreamlit": [], - "SimpleIconsStripe": [], - "SimpleIconsStrongswan": [], - "SimpleIconsStubhub": [], - "SimpleIconsStyledcomponents": [], - "SimpleIconsStylelint": [], - "SimpleIconsStyleshare": [], - "SimpleIconsStylus": [], - "SimpleIconsSubaru": [], - "SimpleIconsSublimetext": [], - "SimpleIconsSubstack": [], - "SimpleIconsSubversion": [], - "SimpleIconsSuckless": [], - "SimpleIconsSumologic": [], - "SimpleIconsSupabase": [], - "SimpleIconsSupermicro": [], - "SimpleIconsSuperuser": [], - "SimpleIconsSurrealdb": [], - "SimpleIconsSurveymonkey": [], - "SimpleIconsSuse": [], - "SimpleIconsSuzuki": [], - "SimpleIconsSvelte": [], - "SimpleIconsSvg": [], - "SimpleIconsSvgo": [], - "SimpleIconsSwagger": [], - "SimpleIconsSwarm": [], - "SimpleIconsSwc": [], - "SimpleIconsSwift": [], - "SimpleIconsSwiggy": [], - "SimpleIconsSwiper": [], - "SimpleIconsSymantec": [], - "SimpleIconsSymfony": [], - "SimpleIconsSymphony": [], - "SimpleIconsSympy": [], - "SimpleIconsSynology": [], - "SimpleIconsSystem76": [], - "SimpleIconsTableau": [], - "SimpleIconsTablecheck": [], - "SimpleIconsTacobell": [], - "SimpleIconsTado": [], - "SimpleIconsTaichigraphics": [], - "SimpleIconsTaichilang": [], - "SimpleIconsTails": [], - "SimpleIconsTailwindcss": [], - "SimpleIconsTalend": [], - "SimpleIconsTalenthouse": [], - "SimpleIconsTamiya": [], - "SimpleIconsTampermonkey": [], - "SimpleIconsTaobao": [], - "SimpleIconsTapas": [], - "SimpleIconsTarget": [], - "SimpleIconsTask": [], - "SimpleIconsTasmota": [], - "SimpleIconsTata": [], - "SimpleIconsTauri": [], - "SimpleIconsTaxbuzz": [], - "SimpleIconsTeamcity": [], - "SimpleIconsTeamspeak": [], - "SimpleIconsTeamviewer": [], - "SimpleIconsTed": [], - "SimpleIconsTeespring": [], - "SimpleIconsTekton": [], - "SimpleIconsTele5": [], - "SimpleIconsTelegram": [], - "SimpleIconsTelegraph": [], - "SimpleIconsTemporal": [], - "SimpleIconsTencentqq": [], - "SimpleIconsTensorflow": [], - "SimpleIconsTeradata": [], - "SimpleIconsTeratail": [], - "SimpleIconsTerraform": [], - "SimpleIconsTesco": [], - "SimpleIconsTesla": [], - "SimpleIconsTestcafe": [], - "SimpleIconsTestin": [], - "SimpleIconsTestinglibrary": [], - "SimpleIconsTether": [], - "SimpleIconsTextpattern": [], - "SimpleIconsTga": [], - "SimpleIconsThealgorithms": [], - "SimpleIconsTheconversation": [], - "SimpleIconsTheirishtimes": [], - "SimpleIconsThemighty": [], - "SimpleIconsThemodelsresource": [], - "SimpleIconsThemoviedatabase": [], - "SimpleIconsThenorthface": [], - "SimpleIconsTheregister": [], - "SimpleIconsThesoundsresource": [], - "SimpleIconsThespritersresource": [], - "SimpleIconsThewashingtonpost": [], - "SimpleIconsThingiverse": [], - "SimpleIconsThinkpad": [], - "SimpleIconsThreadless": [], - "SimpleIconsThreedotjs": [], - "SimpleIconsThreema": [], - "SimpleIconsThumbtack": [], - "SimpleIconsThunderbird": [], - "SimpleIconsThymeleaf": [], - "SimpleIconsTicketmaster": [], - "SimpleIconsTidal": [], - "SimpleIconsTide": [], - "SimpleIconsTidyverse": [], - "SimpleIconsTietoevry": [], - "SimpleIconsTiktok": [], - "SimpleIconsTile": [], - "SimpleIconsTimescale": [], - "SimpleIconsTinder": [], - "SimpleIconsTinyletter": [], - "SimpleIconsTistory": [], - "SimpleIconsTmobile": [], - "SimpleIconsTmux": [], - "SimpleIconsTnt": [], - "SimpleIconsTodoist": [], - "SimpleIconsToggl": [], - "SimpleIconsTokyometro": [], - "SimpleIconsToml": [], - "SimpleIconsTomorrowland": [], - "SimpleIconsTopcoder": [], - "SimpleIconsToptal": [], - "SimpleIconsTorbrowser": [], - "SimpleIconsTorproject": [], - "SimpleIconsToshiba": [], - "SimpleIconsToyota": [], - "SimpleIconsTplink": [], - "SimpleIconsTqdm": [], - "SimpleIconsTraefikmesh": [], - "SimpleIconsTraefikproxy": [], - "SimpleIconsTrainerroad": [], - "SimpleIconsTrakt": [], - "SimpleIconsTransportforireland": [], - "SimpleIconsTransportforlondon": [], - "SimpleIconsTravisci": [], - "SimpleIconsTreehouse": [], - "SimpleIconsTrello": [], - "SimpleIconsTrendmicro": [], - "SimpleIconsTreyarch": [], - "SimpleIconsTriller": [], - "SimpleIconsTrino": [], - "SimpleIconsTripadvisor": [], - "SimpleIconsTripdotcom": [], - "SimpleIconsTrove": [], - "SimpleIconsTrpc": [], - "SimpleIconsTruenas": [], - "SimpleIconsTrulia": [], - "SimpleIconsTrustedshops": [], - "SimpleIconsTrustpilot": [], - "SimpleIconsTryhackme": [], - "SimpleIconsTryitonline": [], - "SimpleIconsTsnode": [], - "SimpleIconsTubi": [], - "SimpleIconsTui": [], - "SimpleIconsTumblr": [], - "SimpleIconsTunein": [], - "SimpleIconsTurborepo": [], - "SimpleIconsTurbosquid": [], - "SimpleIconsTurkishairlines": [], - "SimpleIconsTutanota": [], - "SimpleIconsTvtime": [], - "SimpleIconsTwilio": [], - "SimpleIconsTwitch": [], - "SimpleIconsTwitter": [], - "SimpleIconsTwoo": [], - "SimpleIconsTypeform": [], - "SimpleIconsTypescript": [], - "SimpleIconsTypo3": [], - "SimpleIconsUber": [], - "SimpleIconsUbereats": [], - "SimpleIconsUbiquiti": [], - "SimpleIconsUbisoft": [], - "SimpleIconsUblockorigin": [], - "SimpleIconsUbuntu": [], - "SimpleIconsUdacity": [], - "SimpleIconsUdemy": [], - "SimpleIconsUfc": [], - "SimpleIconsUikit": [], - "SimpleIconsUlule": [], - "SimpleIconsUmbraco": [], - "SimpleIconsUnacademy": [], - "SimpleIconsUnderarmour": [], - "SimpleIconsUnderscoredotjs": [], - "SimpleIconsUndertale": [], - "SimpleIconsUnicode": [], - "SimpleIconsUnilever": [], - "SimpleIconsUnitedairlines": [], - "SimpleIconsUnity": [], - "SimpleIconsUnlicense": [], - "SimpleIconsUnocss": [], - "SimpleIconsUnraid": [], - "SimpleIconsUnrealengine": [], - "SimpleIconsUnsplash": [], - "SimpleIconsUntangle": [], - "SimpleIconsUntappd": [], - "SimpleIconsUpcloud": [], - "SimpleIconsUplabs": [], - "SimpleIconsUploaded": [], - "SimpleIconsUps": [], - "SimpleIconsUpstash": [], - "SimpleIconsUptimekuma": [], - "SimpleIconsUptobox": [], - "SimpleIconsUpwork": [], - "SimpleIconsUsps": [], - "SimpleIconsV": [], - "SimpleIconsV2Ex": [], - "SimpleIconsV8": [], - "SimpleIconsVaadin": [], - "SimpleIconsVagrant": [], - "SimpleIconsVala": [], - "SimpleIconsValorant": [], - "SimpleIconsValve": [], - "SimpleIconsVapor": [], - "SimpleIconsVault": [], - "SimpleIconsVauxhall": [], - "SimpleIconsVbulletin": [], - "SimpleIconsVectorlogozone": [], - "SimpleIconsVectorworks": [], - "SimpleIconsVeeam": [], - "SimpleIconsVeepee": [], - "SimpleIconsVelog": [], - "SimpleIconsVenmo": [], - "SimpleIconsVercel": [], - "SimpleIconsVerdaccio": [], - "SimpleIconsVeritas": [], - "SimpleIconsVerizon": [], - "SimpleIconsVexxhost": [], - "SimpleIconsVfairs": [], - "SimpleIconsViadeo": [], - "SimpleIconsViber": [], - "SimpleIconsVim": [], - "SimpleIconsVimeo": [], - "SimpleIconsVimeolivestream": [], - "SimpleIconsVirgin": [], - "SimpleIconsVirginmedia": [], - "SimpleIconsVirtualbox": [], - "SimpleIconsVirustotal": [], - "SimpleIconsVisa": [], - "SimpleIconsVisualstudio": [], - "SimpleIconsVisualstudiocode": [], - "SimpleIconsVite": [], - "SimpleIconsVitess": [], - "SimpleIconsVitest": [], - "SimpleIconsVivaldi": [], - "SimpleIconsVivino": [], - "SimpleIconsVk": [], - "SimpleIconsVlcmediaplayer": [], - "SimpleIconsVmware": [], - "SimpleIconsVodafone": [], - "SimpleIconsVolkswagen": [], - "SimpleIconsVolvo": [], - "SimpleIconsVonage": [], - "SimpleIconsVowpalwabbit": [], - "SimpleIconsVox": [], - "SimpleIconsVsco": [], - "SimpleIconsVscodium": [], - "SimpleIconsVtex": [], - "SimpleIconsVuedotjs": [], - "SimpleIconsVuetify": [], - "SimpleIconsVulkan": [], - "SimpleIconsVultr": [], - "SimpleIconsW3C": [], - "SimpleIconsWacom": [], - "SimpleIconsWagtail": [], - "SimpleIconsWails": [], - "SimpleIconsWakatime": [], - "SimpleIconsWalkman": [], - "SimpleIconsWallabag": [], - "SimpleIconsWalmart": [], - "SimpleIconsWantedly": [], - "SimpleIconsWappalyzer": [], - "SimpleIconsWarnerbros": [], - "SimpleIconsWarp": [], - "SimpleIconsWasmcloud": [], - "SimpleIconsWasmer": [], - "SimpleIconsWattpad": [], - "SimpleIconsWayland": [], - "SimpleIconsWaze": [], - "SimpleIconsWearos": [], - "SimpleIconsWeasyl": [], - "SimpleIconsWeb3Dotjs": [], - "SimpleIconsWebassembly": [], - "SimpleIconsWebauthn": [], - "SimpleIconsWebcomponentsdotorg": [], - "SimpleIconsWebdriverio": [], - "SimpleIconsWebflow": [], - "SimpleIconsWebgl": [], - "SimpleIconsWebhint": [], - "SimpleIconsWeblate": [], - "SimpleIconsWebmin": [], - "SimpleIconsWebmoney": [], - "SimpleIconsWebpack": [], - "SimpleIconsWebrtc": [], - "SimpleIconsWebstorm": [], - "SimpleIconsWebtoon": [], - "SimpleIconsWechat": [], - "SimpleIconsWegame": [], - "SimpleIconsWeightsandbiases": [], - "SimpleIconsWelcometothejungle": [], - "SimpleIconsWemo": [], - "SimpleIconsWesterndigital": [], - "SimpleIconsWetransfer": [], - "SimpleIconsWhatsapp": [], - "SimpleIconsWheniwork": [], - "SimpleIconsWhitesource": [], - "SimpleIconsWii": [], - "SimpleIconsWiiu": [], - "SimpleIconsWikidata": [], - "SimpleIconsWikidotjs": [], - "SimpleIconsWikimediacommons": [], - "SimpleIconsWikipedia": [], - "SimpleIconsWikiquote": [], - "SimpleIconsWikivoyage": [], - "SimpleIconsWinamp": [], - "SimpleIconsWindicss": [], - "SimpleIconsWindows": [], - "SimpleIconsWindows11": [], - "SimpleIconsWindows95": [], - "SimpleIconsWindowsterminal": [], - "SimpleIconsWindowsxp": [], - "SimpleIconsWinmate": [], - "SimpleIconsWipro": [], - "SimpleIconsWire": [], - "SimpleIconsWireguard": [], - "SimpleIconsWireshark": [], - "SimpleIconsWise": [], - "SimpleIconsWish": [], - "SimpleIconsWistia": [], - "SimpleIconsWix": [], - "SimpleIconsWizzair": [], - "SimpleIconsWolfram": [], - "SimpleIconsWolframlanguage": [], - "SimpleIconsWolframmathematica": [], - "SimpleIconsWoo": [], - "SimpleIconsWoocommerce": [], - "SimpleIconsWordpress": [], - "SimpleIconsWorkplace": [], - "SimpleIconsWorldhealthorganization": [], - "SimpleIconsWpengine": [], - "SimpleIconsWpexplorer": [], - "SimpleIconsWprocket": [], - "SimpleIconsWritedotas": [], - "SimpleIconsWwe": [], - "SimpleIconsWwise": [], - "SimpleIconsXamarin": [], - "SimpleIconsXaml": [], - "SimpleIconsXampp": [], - "SimpleIconsXbox": [], - "SimpleIconsXcode": [], - "SimpleIconsXdadevelopers": [], - "SimpleIconsXdotorg": [], - "SimpleIconsXero": [], - "SimpleIconsXfce": [], - "SimpleIconsXiaomi": [], - "SimpleIconsXilinx": [], - "SimpleIconsXing": [], - "SimpleIconsXmpp": [], - "SimpleIconsXo": [], - "SimpleIconsXrp": [], - "SimpleIconsXsplit": [], - "SimpleIconsXstate": [], - "SimpleIconsYahoo": [], - "SimpleIconsYale": [], - "SimpleIconsYamahacorporation": [], - "SimpleIconsYamahamotorcorporation": [], - "SimpleIconsYammer": [], - "SimpleIconsYarn": [], - "SimpleIconsYcombinator": [], - "SimpleIconsYelp": [], - "SimpleIconsYoast": [], - "SimpleIconsYolo": [], - "SimpleIconsYourtraveldottv": [], - "SimpleIconsYoutube": [], - "SimpleIconsYoutubegaming": [], - "SimpleIconsYoutubemusic": [], - "SimpleIconsYoutubestudio": [], - "SimpleIconsYoutubetv": [], - "SimpleIconsYubico": [], - "SimpleIconsZabka": [], - "SimpleIconsZalando": [], - "SimpleIconsZalo": [], - "SimpleIconsZapier": [], - "SimpleIconsZara": [], - "SimpleIconsZazzle": [], - "SimpleIconsZcash": [], - "SimpleIconsZdf": [], - "SimpleIconsZebratechnologies": [], - "SimpleIconsZelle": [], - "SimpleIconsZend": [], - "SimpleIconsZendesk": [], - "SimpleIconsZendframework": [], - "SimpleIconsZenn": [], - "SimpleIconsZenodo": [], - "SimpleIconsZerodha": [], - "SimpleIconsZeromq": [], - "SimpleIconsZerply": [], - "SimpleIconsZettlr": [], - "SimpleIconsZhihu": [], - "SimpleIconsZig": [], - "SimpleIconsZigbee": [], - "SimpleIconsZillow": [], - "SimpleIconsZincsearch": [], - "SimpleIconsZingat": [], - "SimpleIconsZoho": [], - "SimpleIconsZoiper": [], - "SimpleIconsZomato": [], - "SimpleIconsZoom": [], - "SimpleIconsZorin": [], - "SimpleIconsZotero": [], - "SimpleIconsZulip": [], - "SimpleIconsZwave": [], - "SimpleIconsZyte": [], - "base64": [ - "dep:base64" - ], - "bootstrap": [ - "Bootstrap0CircleFill", - "Bootstrap0Circle", - "Bootstrap0SquareFill", - "Bootstrap0Square", - "Bootstrap1CircleFill", - "Bootstrap1Circle", - "Bootstrap1SquareFill", - "Bootstrap1Square", - "Bootstrap123", - "Bootstrap2CircleFill", - "Bootstrap2Circle", - "Bootstrap2SquareFill", - "Bootstrap2Square", - "Bootstrap3CircleFill", - "Bootstrap3Circle", - "Bootstrap3SquareFill", - "Bootstrap3Square", - "Bootstrap4CircleFill", - "Bootstrap4Circle", - "Bootstrap4SquareFill", - "Bootstrap4Square", - "Bootstrap5CircleFill", - "Bootstrap5Circle", - "Bootstrap5SquareFill", - "Bootstrap5Square", - "Bootstrap6CircleFill", - "Bootstrap6Circle", - "Bootstrap6SquareFill", - "Bootstrap6Square", - "Bootstrap7CircleFill", - "Bootstrap7Circle", - "Bootstrap7SquareFill", - "Bootstrap7Square", - "Bootstrap8CircleFill", - "Bootstrap8Circle", - "Bootstrap8SquareFill", - "Bootstrap8Square", - "Bootstrap9CircleFill", - "Bootstrap9Circle", - "Bootstrap9SquareFill", - "Bootstrap9Square", - "BootstrapActivity", - "BootstrapAirplaneEnginesFill", - "BootstrapAirplaneEngines", - "BootstrapAirplaneFill", - "BootstrapAirplane", - "BootstrapAlarmFill", - "BootstrapAlarm", - "BootstrapAlexa", - "BootstrapAlignBottom", - "BootstrapAlignCenter", - "BootstrapAlignEnd", - "BootstrapAlignMiddle", - "BootstrapAlignStart", - "BootstrapAlignTop", - "BootstrapAlipay", - "BootstrapAlt", - "BootstrapAmd", - "BootstrapAndroid", - "BootstrapAndroid2", - "BootstrapAppIndicator", - "BootstrapApp", - "BootstrapApple", - "BootstrapArchiveFill", - "BootstrapArchive", - "BootstrapArrow90DegDown", - "BootstrapArrow90DegLeft", - "BootstrapArrow90DegRight", - "BootstrapArrow90DegUp", - "BootstrapArrowBarDown", - "BootstrapArrowBarLeft", - "BootstrapArrowBarRight", - "BootstrapArrowBarUp", - "BootstrapArrowClockwise", - "BootstrapArrowCounterclockwise", - "BootstrapArrowDownCircleFill", - "BootstrapArrowDownCircle", - "BootstrapArrowDownLeftCircleFill", - "BootstrapArrowDownLeftCircle", - "BootstrapArrowDownLeftSquareFill", - "BootstrapArrowDownLeftSquare", - "BootstrapArrowDownLeft", - "BootstrapArrowDownRightCircleFill", - "BootstrapArrowDownRightCircle", - "BootstrapArrowDownRightSquareFill", - "BootstrapArrowDownRightSquare", - "BootstrapArrowDownRight", - "BootstrapArrowDownShort", - "BootstrapArrowDownSquareFill", - "BootstrapArrowDownSquare", - "BootstrapArrowDownUp", - "BootstrapArrowDown", - "BootstrapArrowLeftCircleFill", - "BootstrapArrowLeftCircle", - "BootstrapArrowLeftRight", - "BootstrapArrowLeftShort", - "BootstrapArrowLeftSquareFill", - "BootstrapArrowLeftSquare", - "BootstrapArrowLeft", - "BootstrapArrowRepeat", - "BootstrapArrowReturnLeft", - "BootstrapArrowReturnRight", - "BootstrapArrowRightCircleFill", - "BootstrapArrowRightCircle", - "BootstrapArrowRightShort", - "BootstrapArrowRightSquareFill", - "BootstrapArrowRightSquare", - "BootstrapArrowRight", - "BootstrapArrowThroughHeartFill", - "BootstrapArrowThroughHeart", - "BootstrapArrowUpCircleFill", - "BootstrapArrowUpCircle", - "BootstrapArrowUpLeftCircleFill", - "BootstrapArrowUpLeftCircle", - "BootstrapArrowUpLeftSquareFill", - "BootstrapArrowUpLeftSquare", - "BootstrapArrowUpLeft", - "BootstrapArrowUpRightCircleFill", - "BootstrapArrowUpRightCircle", - "BootstrapArrowUpRightSquareFill", - "BootstrapArrowUpRightSquare", - "BootstrapArrowUpRight", - "BootstrapArrowUpShort", - "BootstrapArrowUpSquareFill", - "BootstrapArrowUpSquare", - "BootstrapArrowUp", - "BootstrapArrowsAngleContract", - "BootstrapArrowsAngleExpand", - "BootstrapArrowsCollapse", - "BootstrapArrowsExpand", - "BootstrapArrowsFullscreen", - "BootstrapArrowsMove", - "BootstrapAspectRatioFill", - "BootstrapAspectRatio", - "BootstrapAsterisk", - "BootstrapAt", - "BootstrapAwardFill", - "BootstrapAward", - "BootstrapBack", - "BootstrapBackspaceFill", - "BootstrapBackspaceReverseFill", - "BootstrapBackspaceReverse", - "BootstrapBackspace", - "BootstrapBadge3DFill", - "BootstrapBadge3D", - "BootstrapBadge4KFill", - "BootstrapBadge4K", - "BootstrapBadge8KFill", - "BootstrapBadge8K", - "BootstrapBadgeAdFill", - "BootstrapBadgeAd", - "BootstrapBadgeArFill", - "BootstrapBadgeAr", - "BootstrapBadgeCcFill", - "BootstrapBadgeCc", - "BootstrapBadgeHdFill", - "BootstrapBadgeHd", - "BootstrapBadgeSdFill", - "BootstrapBadgeSd", - "BootstrapBadgeTmFill", - "BootstrapBadgeTm", - "BootstrapBadgeVoFill", - "BootstrapBadgeVo", - "BootstrapBadgeVrFill", - "BootstrapBadgeVr", - "BootstrapBadgeWcFill", - "BootstrapBadgeWc", - "BootstrapBagCheckFill", - "BootstrapBagCheck", - "BootstrapBagDashFill", - "BootstrapBagDash", - "BootstrapBagFill", - "BootstrapBagHeartFill", - "BootstrapBagHeart", - "BootstrapBagPlusFill", - "BootstrapBagPlus", - "BootstrapBagXFill", - "BootstrapBagX", - "BootstrapBag", - "BootstrapBalloonFill", - "BootstrapBalloonHeartFill", - "BootstrapBalloonHeart", - "BootstrapBalloon", - "BootstrapBandaidFill", - "BootstrapBandaid", - "BootstrapBank", - "BootstrapBank2", - "BootstrapBarChartFill", - "BootstrapBarChartLineFill", - "BootstrapBarChartLine", - "BootstrapBarChartSteps", - "BootstrapBarChart", - "BootstrapBasketFill", - "BootstrapBasket", - "BootstrapBasket2Fill", - "BootstrapBasket2", - "BootstrapBasket3Fill", - "BootstrapBasket3", - "BootstrapBatteryCharging", - "BootstrapBatteryFull", - "BootstrapBatteryHalf", - "BootstrapBattery", - "BootstrapBehance", - "BootstrapBellFill", - "BootstrapBellSlashFill", - "BootstrapBellSlash", - "BootstrapBell", - "BootstrapBezier", - "BootstrapBezier2", - "BootstrapBicycle", - "BootstrapBinocularsFill", - "BootstrapBinoculars", - "BootstrapBlockquoteLeft", - "BootstrapBlockquoteRight", - "BootstrapBluetooth", - "BootstrapBodyText", - "BootstrapBookFill", - "BootstrapBookHalf", - "BootstrapBook", - "BootstrapBookmarkCheckFill", - "BootstrapBookmarkCheck", - "BootstrapBookmarkDashFill", - "BootstrapBookmarkDash", - "BootstrapBookmarkFill", - "BootstrapBookmarkHeartFill", - "BootstrapBookmarkHeart", - "BootstrapBookmarkPlusFill", - "BootstrapBookmarkPlus", - "BootstrapBookmarkStarFill", - "BootstrapBookmarkStar", - "BootstrapBookmarkXFill", - "BootstrapBookmarkX", - "BootstrapBookmark", - "BootstrapBookmarksFill", - "BootstrapBookmarks", - "BootstrapBookshelf", - "BootstrapBoomboxFill", - "BootstrapBoombox", - "BootstrapBootstrapFill", - "BootstrapBootstrapReboot", - "BootstrapBootstrap", - "BootstrapBorderAll", - "BootstrapBorderBottom", - "BootstrapBorderCenter", - "BootstrapBorderInner", - "BootstrapBorderLeft", - "BootstrapBorderMiddle", - "BootstrapBorderOuter", - "BootstrapBorderRight", - "BootstrapBorderStyle", - "BootstrapBorderTop", - "BootstrapBorderWidth", - "BootstrapBorder", - "BootstrapBoundingBoxCircles", - "BootstrapBoundingBox", - "BootstrapBoxArrowDownLeft", - "BootstrapBoxArrowDownRight", - "BootstrapBoxArrowDown", - "BootstrapBoxArrowInDownLeft", - "BootstrapBoxArrowInDownRight", - "BootstrapBoxArrowInDown", - "BootstrapBoxArrowInLeft", - "BootstrapBoxArrowInRight", - "BootstrapBoxArrowInUpLeft", - "BootstrapBoxArrowInUpRight", - "BootstrapBoxArrowInUp", - "BootstrapBoxArrowLeft", - "BootstrapBoxArrowRight", - "BootstrapBoxArrowUpLeft", - "BootstrapBoxArrowUpRight", - "BootstrapBoxArrowUp", - "BootstrapBoxFill", - "BootstrapBoxSeamFill", - "BootstrapBoxSeam", - "BootstrapBox", - "BootstrapBox2Fill", - "BootstrapBox2HeartFill", - "BootstrapBox2Heart", - "BootstrapBox2", - "BootstrapBoxes", - "BootstrapBracesAsterisk", - "BootstrapBraces", - "BootstrapBricks", - "BootstrapBriefcaseFill", - "BootstrapBriefcase", - "BootstrapBrightnessAltHighFill", - "BootstrapBrightnessAltHigh", - "BootstrapBrightnessAltLowFill", - "BootstrapBrightnessAltLow", - "BootstrapBrightnessHighFill", - "BootstrapBrightnessHigh", - "BootstrapBrightnessLowFill", - "BootstrapBrightnessLow", - "BootstrapBroadcastPin", - "BootstrapBroadcast", - "BootstrapBrowserChrome", - "BootstrapBrowserEdge", - "BootstrapBrowserFirefox", - "BootstrapBrowserSafari", - "BootstrapBrushFill", - "BootstrapBrush", - "BootstrapBucketFill", - "BootstrapBucket", - "BootstrapBugFill", - "BootstrapBug", - "BootstrapBuildingAdd", - "BootstrapBuildingCheck", - "BootstrapBuildingDash", - "BootstrapBuildingDown", - "BootstrapBuildingExclamation", - "BootstrapBuildingFillAdd", - "BootstrapBuildingFillCheck", - "BootstrapBuildingFillDash", - "BootstrapBuildingFillDown", - "BootstrapBuildingFillExclamation", - "BootstrapBuildingFillGear", - "BootstrapBuildingFillLock", - "BootstrapBuildingFillSlash", - "BootstrapBuildingFillUp", - "BootstrapBuildingFillX", - "BootstrapBuildingFill", - "BootstrapBuildingGear", - "BootstrapBuildingLock", - "BootstrapBuildingSlash", - "BootstrapBuildingUp", - "BootstrapBuildingX", - "BootstrapBuilding", - "BootstrapBuildingsFill", - "BootstrapBuildings", - "BootstrapBullseye", - "BootstrapBusFrontFill", - "BootstrapBusFront", - "BootstrapCCircleFill", - "BootstrapCCircle", - "BootstrapCSquareFill", - "BootstrapCSquare", - "BootstrapCalculatorFill", - "BootstrapCalculator", - "BootstrapCalendarCheckFill", - "BootstrapCalendarCheck", - "BootstrapCalendarDateFill", - "BootstrapCalendarDate", - "BootstrapCalendarDayFill", - "BootstrapCalendarDay", - "BootstrapCalendarEventFill", - "BootstrapCalendarEvent", - "BootstrapCalendarFill", - "BootstrapCalendarHeartFill", - "BootstrapCalendarHeart", - "BootstrapCalendarMinusFill", - "BootstrapCalendarMinus", - "BootstrapCalendarMonthFill", - "BootstrapCalendarMonth", - "BootstrapCalendarPlusFill", - "BootstrapCalendarPlus", - "BootstrapCalendarRangeFill", - "BootstrapCalendarRange", - "BootstrapCalendarWeekFill", - "BootstrapCalendarWeek", - "BootstrapCalendarXFill", - "BootstrapCalendarX", - "BootstrapCalendar", - "BootstrapCalendar2CheckFill", - "BootstrapCalendar2Check", - "BootstrapCalendar2DateFill", - "BootstrapCalendar2Date", - "BootstrapCalendar2DayFill", - "BootstrapCalendar2Day", - "BootstrapCalendar2EventFill", - "BootstrapCalendar2Event", - "BootstrapCalendar2Fill", - "BootstrapCalendar2HeartFill", - "BootstrapCalendar2Heart", - "BootstrapCalendar2MinusFill", - "BootstrapCalendar2Minus", - "BootstrapCalendar2MonthFill", - "BootstrapCalendar2Month", - "BootstrapCalendar2PlusFill", - "BootstrapCalendar2Plus", - "BootstrapCalendar2RangeFill", - "BootstrapCalendar2Range", - "BootstrapCalendar2WeekFill", - "BootstrapCalendar2Week", - "BootstrapCalendar2XFill", - "BootstrapCalendar2X", - "BootstrapCalendar2", - "BootstrapCalendar3EventFill", - "BootstrapCalendar3Event", - "BootstrapCalendar3Fill", - "BootstrapCalendar3RangeFill", - "BootstrapCalendar3Range", - "BootstrapCalendar3WeekFill", - "BootstrapCalendar3Week", - "BootstrapCalendar3", - "BootstrapCalendar4Event", - "BootstrapCalendar4Range", - "BootstrapCalendar4Week", - "BootstrapCalendar4", - "BootstrapCameraFill", - "BootstrapCameraReelsFill", - "BootstrapCameraReels", - "BootstrapCameraVideoFill", - "BootstrapCameraVideoOffFill", - "BootstrapCameraVideoOff", - "BootstrapCameraVideo", - "BootstrapCamera", - "BootstrapCamera2", - "BootstrapCapslockFill", - "BootstrapCapslock", - "BootstrapCapsulePill", - "BootstrapCapsule", - "BootstrapCarFrontFill", - "BootstrapCarFront", - "BootstrapCardChecklist", - "BootstrapCardHeading", - "BootstrapCardImage", - "BootstrapCardList", - "BootstrapCardText", - "BootstrapCaretDownFill", - "BootstrapCaretDownSquareFill", - "BootstrapCaretDownSquare", - "BootstrapCaretDown", - "BootstrapCaretLeftFill", - "BootstrapCaretLeftSquareFill", - "BootstrapCaretLeftSquare", - "BootstrapCaretLeft", - "BootstrapCaretRightFill", - "BootstrapCaretRightSquareFill", - "BootstrapCaretRightSquare", - "BootstrapCaretRight", - "BootstrapCaretUpFill", - "BootstrapCaretUpSquareFill", - "BootstrapCaretUpSquare", - "BootstrapCaretUp", - "BootstrapCartCheckFill", - "BootstrapCartCheck", - "BootstrapCartDashFill", - "BootstrapCartDash", - "BootstrapCartFill", - "BootstrapCartPlusFill", - "BootstrapCartPlus", - "BootstrapCartXFill", - "BootstrapCartX", - "BootstrapCart", - "BootstrapCart2", - "BootstrapCart3", - "BootstrapCart4", - "BootstrapCashCoin", - "BootstrapCashStack", - "BootstrapCash", - "BootstrapCassetteFill", - "BootstrapCassette", - "BootstrapCast", - "BootstrapCcCircleFill", - "BootstrapCcCircle", - "BootstrapCcSquareFill", - "BootstrapCcSquare", - "BootstrapChatDotsFill", - "BootstrapChatDots", - "BootstrapChatFill", - "BootstrapChatHeartFill", - "BootstrapChatHeart", - "BootstrapChatLeftDotsFill", - "BootstrapChatLeftDots", - "BootstrapChatLeftFill", - "BootstrapChatLeftHeartFill", - "BootstrapChatLeftHeart", - "BootstrapChatLeftQuoteFill", - "BootstrapChatLeftQuote", - "BootstrapChatLeftTextFill", - "BootstrapChatLeftText", - "BootstrapChatLeft", - "BootstrapChatQuoteFill", - "BootstrapChatQuote", - "BootstrapChatRightDotsFill", - "BootstrapChatRightDots", - "BootstrapChatRightFill", - "BootstrapChatRightHeartFill", - "BootstrapChatRightHeart", - "BootstrapChatRightQuoteFill", - "BootstrapChatRightQuote", - "BootstrapChatRightTextFill", - "BootstrapChatRightText", - "BootstrapChatRight", - "BootstrapChatSquareDotsFill", - "BootstrapChatSquareDots", - "BootstrapChatSquareFill", - "BootstrapChatSquareHeartFill", - "BootstrapChatSquareHeart", - "BootstrapChatSquareQuoteFill", - "BootstrapChatSquareQuote", - "BootstrapChatSquareTextFill", - "BootstrapChatSquareText", - "BootstrapChatSquare", - "BootstrapChatTextFill", - "BootstrapChatText", - "BootstrapChat", - "BootstrapCheckAll", - "BootstrapCheckCircleFill", - "BootstrapCheckCircle", - "BootstrapCheckLg", - "BootstrapCheckSquareFill", - "BootstrapCheckSquare", - "BootstrapCheck", - "BootstrapCheck2All", - "BootstrapCheck2Circle", - "BootstrapCheck2Square", - "BootstrapCheck2", - "BootstrapChevronBarContract", - "BootstrapChevronBarDown", - "BootstrapChevronBarExpand", - "BootstrapChevronBarLeft", - "BootstrapChevronBarRight", - "BootstrapChevronBarUp", - "BootstrapChevronCompactDown", - "BootstrapChevronCompactLeft", - "BootstrapChevronCompactRight", - "BootstrapChevronCompactUp", - "BootstrapChevronContract", - "BootstrapChevronDoubleDown", - "BootstrapChevronDoubleLeft", - "BootstrapChevronDoubleRight", - "BootstrapChevronDoubleUp", - "BootstrapChevronDown", - "BootstrapChevronExpand", - "BootstrapChevronLeft", - "BootstrapChevronRight", - "BootstrapChevronUp", - "BootstrapCircleFill", - "BootstrapCircleHalf", - "BootstrapCircleSquare", - "BootstrapCircle", - "BootstrapClipboardCheckFill", - "BootstrapClipboardCheck", - "BootstrapClipboardDataFill", - "BootstrapClipboardData", - "BootstrapClipboardFill", - "BootstrapClipboardHeartFill", - "BootstrapClipboardHeart", - "BootstrapClipboardMinusFill", - "BootstrapClipboardMinus", - "BootstrapClipboardPlusFill", - "BootstrapClipboardPlus", - "BootstrapClipboardPulse", - "BootstrapClipboardXFill", - "BootstrapClipboardX", - "BootstrapClipboard", - "BootstrapClipboard2CheckFill", - "BootstrapClipboard2Check", - "BootstrapClipboard2DataFill", - "BootstrapClipboard2Data", - "BootstrapClipboard2Fill", - "BootstrapClipboard2HeartFill", - "BootstrapClipboard2Heart", - "BootstrapClipboard2MinusFill", - "BootstrapClipboard2Minus", - "BootstrapClipboard2PlusFill", - "BootstrapClipboard2Plus", - "BootstrapClipboard2PulseFill", - "BootstrapClipboard2Pulse", - "BootstrapClipboard2XFill", - "BootstrapClipboard2X", - "BootstrapClipboard2", - "BootstrapClockFill", - "BootstrapClockHistory", - "BootstrapClock", - "BootstrapCloudArrowDownFill", - "BootstrapCloudArrowDown", - "BootstrapCloudArrowUpFill", - "BootstrapCloudArrowUp", - "BootstrapCloudCheckFill", - "BootstrapCloudCheck", - "BootstrapCloudDownloadFill", - "BootstrapCloudDownload", - "BootstrapCloudDrizzleFill", - "BootstrapCloudDrizzle", - "BootstrapCloudFill", - "BootstrapCloudFogFill", - "BootstrapCloudFog", - "BootstrapCloudFog2Fill", - "BootstrapCloudFog2", - "BootstrapCloudHailFill", - "BootstrapCloudHail", - "BootstrapCloudHazeFill", - "BootstrapCloudHaze", - "BootstrapCloudHaze2Fill", - "BootstrapCloudHaze2", - "BootstrapCloudLightningFill", - "BootstrapCloudLightningRainFill", - "BootstrapCloudLightningRain", - "BootstrapCloudLightning", - "BootstrapCloudMinusFill", - "BootstrapCloudMinus", - "BootstrapCloudMoonFill", - "BootstrapCloudMoon", - "BootstrapCloudPlusFill", - "BootstrapCloudPlus", - "BootstrapCloudRainFill", - "BootstrapCloudRainHeavyFill", - "BootstrapCloudRainHeavy", - "BootstrapCloudRain", - "BootstrapCloudSlashFill", - "BootstrapCloudSlash", - "BootstrapCloudSleetFill", - "BootstrapCloudSleet", - "BootstrapCloudSnowFill", - "BootstrapCloudSnow", - "BootstrapCloudSunFill", - "BootstrapCloudSun", - "BootstrapCloudUploadFill", - "BootstrapCloudUpload", - "BootstrapCloud", - "BootstrapCloudsFill", - "BootstrapClouds", - "BootstrapCloudyFill", - "BootstrapCloudy", - "BootstrapCodeSlash", - "BootstrapCodeSquare", - "BootstrapCode", - "BootstrapCoin", - "BootstrapCollectionFill", - "BootstrapCollectionPlayFill", - "BootstrapCollectionPlay", - "BootstrapCollection", - "BootstrapColumnsGap", - "BootstrapColumns", - "BootstrapCommand", - "BootstrapCompassFill", - "BootstrapCompass", - "BootstrapConeStriped", - "BootstrapCone", - "BootstrapController", - "BootstrapCpuFill", - "BootstrapCpu", - "BootstrapCreditCard2BackFill", - "BootstrapCreditCard2Back", - "BootstrapCreditCard2FrontFill", - "BootstrapCreditCard2Front", - "BootstrapCreditCardFill", - "BootstrapCreditCard", - "BootstrapCrop", - "BootstrapCupFill", - "BootstrapCupHotFill", - "BootstrapCupHot", - "BootstrapCupStraw", - "BootstrapCup", - "BootstrapCurrencyBitcoin", - "BootstrapCurrencyDollar", - "BootstrapCurrencyEuro", - "BootstrapCurrencyExchange", - "BootstrapCurrencyPound", - "BootstrapCurrencyRupee", - "BootstrapCurrencyYen", - "BootstrapCursorFill", - "BootstrapCursorText", - "BootstrapCursor", - "BootstrapDashCircleDotted", - "BootstrapDashCircleFill", - "BootstrapDashCircle", - "BootstrapDashLg", - "BootstrapDashSquareDotted", - "BootstrapDashSquareFill", - "BootstrapDashSquare", - "BootstrapDash", - "BootstrapDatabaseAdd", - "BootstrapDatabaseCheck", - "BootstrapDatabaseDash", - "BootstrapDatabaseDown", - "BootstrapDatabaseExclamation", - "BootstrapDatabaseFillAdd", - "BootstrapDatabaseFillCheck", - "BootstrapDatabaseFillDash", - "BootstrapDatabaseFillDown", - "BootstrapDatabaseFillExclamation", - "BootstrapDatabaseFillGear", - "BootstrapDatabaseFillLock", - "BootstrapDatabaseFillSlash", - "BootstrapDatabaseFillUp", - "BootstrapDatabaseFillX", - "BootstrapDatabaseFill", - "BootstrapDatabaseGear", - "BootstrapDatabaseLock", - "BootstrapDatabaseSlash", - "BootstrapDatabaseUp", - "BootstrapDatabaseX", - "BootstrapDatabase", - "BootstrapDeviceHddFill", - "BootstrapDeviceHdd", - "BootstrapDeviceSsdFill", - "BootstrapDeviceSsd", - "BootstrapDiagram2Fill", - "BootstrapDiagram2", - "BootstrapDiagram3Fill", - "BootstrapDiagram3", - "BootstrapDiamondFill", - "BootstrapDiamondHalf", - "BootstrapDiamond", - "BootstrapDice1Fill", - "BootstrapDice1", - "BootstrapDice2Fill", - "BootstrapDice2", - "BootstrapDice3Fill", - "BootstrapDice3", - "BootstrapDice4Fill", - "BootstrapDice4", - "BootstrapDice5Fill", - "BootstrapDice5", - "BootstrapDice6Fill", - "BootstrapDice6", - "BootstrapDiscFill", - "BootstrapDisc", - "BootstrapDiscord", - "BootstrapDisplayFill", - "BootstrapDisplay", - "BootstrapDisplayportFill", - "BootstrapDisplayport", - "BootstrapDistributeHorizontal", - "BootstrapDistributeVertical", - "BootstrapDoorClosedFill", - "BootstrapDoorClosed", - "BootstrapDoorOpenFill", - "BootstrapDoorOpen", - "BootstrapDot", - "BootstrapDownload", - "BootstrapDpadFill", - "BootstrapDpad", - "BootstrapDribbble", - "BootstrapDropbox", - "BootstrapDropletFill", - "BootstrapDropletHalf", - "BootstrapDroplet", - "BootstrapEarFill", - "BootstrapEar", - "BootstrapEarbuds", - "BootstrapEaselFill", - "BootstrapEasel", - "BootstrapEasel2Fill", - "BootstrapEasel2", - "BootstrapEasel3Fill", - "BootstrapEasel3", - "BootstrapEggFill", - "BootstrapEggFried", - "BootstrapEgg", - "BootstrapEjectFill", - "BootstrapEject", - "BootstrapEmojiAngryFill", - "BootstrapEmojiAngry", - "BootstrapEmojiDizzyFill", - "BootstrapEmojiDizzy", - "BootstrapEmojiExpressionlessFill", - "BootstrapEmojiExpressionless", - "BootstrapEmojiFrownFill", - "BootstrapEmojiFrown", - "BootstrapEmojiHeartEyesFill", - "BootstrapEmojiHeartEyes", - "BootstrapEmojiKissFill", - "BootstrapEmojiKiss", - "BootstrapEmojiLaughingFill", - "BootstrapEmojiLaughing", - "BootstrapEmojiNeutralFill", - "BootstrapEmojiNeutral", - "BootstrapEmojiSmileFill", - "BootstrapEmojiSmileUpsideDownFill", - "BootstrapEmojiSmileUpsideDown", - "BootstrapEmojiSmile", - "BootstrapEmojiSunglassesFill", - "BootstrapEmojiSunglasses", - "BootstrapEmojiWinkFill", - "BootstrapEmojiWink", - "BootstrapEnvelopeAtFill", - "BootstrapEnvelopeAt", - "BootstrapEnvelopeCheckFill", - "BootstrapEnvelopeCheck", - "BootstrapEnvelopeDashFill", - "BootstrapEnvelopeDash", - "BootstrapEnvelopeExclamationFill", - "BootstrapEnvelopeExclamation", - "BootstrapEnvelopeFill", - "BootstrapEnvelopeHeartFill", - "BootstrapEnvelopeHeart", - "BootstrapEnvelopeOpenFill", - "BootstrapEnvelopeOpenHeartFill", - "BootstrapEnvelopeOpenHeart", - "BootstrapEnvelopeOpen", - "BootstrapEnvelopePaperFill", - "BootstrapEnvelopePaperHeartFill", - "BootstrapEnvelopePaperHeart", - "BootstrapEnvelopePaper", - "BootstrapEnvelopePlusFill", - "BootstrapEnvelopePlus", - "BootstrapEnvelopeSlashFill", - "BootstrapEnvelopeSlash", - "BootstrapEnvelopeXFill", - "BootstrapEnvelopeX", - "BootstrapEnvelope", - "BootstrapEraserFill", - "BootstrapEraser", - "BootstrapEscape", - "BootstrapEthernet", - "BootstrapEvFrontFill", - "BootstrapEvFront", - "BootstrapEvStationFill", - "BootstrapEvStation", - "BootstrapExclamationCircleFill", - "BootstrapExclamationCircle", - "BootstrapExclamationDiamondFill", - "BootstrapExclamationDiamond", - "BootstrapExclamationLg", - "BootstrapExclamationOctagonFill", - "BootstrapExclamationOctagon", - "BootstrapExclamationSquareFill", - "BootstrapExclamationSquare", - "BootstrapExclamationTriangleFill", - "BootstrapExclamationTriangle", - "BootstrapExclamation", - "BootstrapExclude", - "BootstrapExplicitFill", - "BootstrapExplicit", - "BootstrapEyeFill", - "BootstrapEyeSlashFill", - "BootstrapEyeSlash", - "BootstrapEye", - "BootstrapEyedropper", - "BootstrapEyeglasses", - "BootstrapFacebook", - "BootstrapFan", - "BootstrapFastForwardBtnFill", - "BootstrapFastForwardBtn", - "BootstrapFastForwardCircleFill", - "BootstrapFastForwardCircle", - "BootstrapFastForwardFill", - "BootstrapFastForward", - "BootstrapFileArrowDownFill", - "BootstrapFileArrowDown", - "BootstrapFileArrowUpFill", - "BootstrapFileArrowUp", - "BootstrapFileBarGraphFill", - "BootstrapFileBarGraph", - "BootstrapFileBinaryFill", - "BootstrapFileBinary", - "BootstrapFileBreakFill", - "BootstrapFileBreak", - "BootstrapFileCheckFill", - "BootstrapFileCheck", - "BootstrapFileCodeFill", - "BootstrapFileCode", - "BootstrapFileDiffFill", - "BootstrapFileDiff", - "BootstrapFileEarmarkArrowDownFill", - "BootstrapFileEarmarkArrowDown", - "BootstrapFileEarmarkArrowUpFill", - "BootstrapFileEarmarkArrowUp", - "BootstrapFileEarmarkBarGraphFill", - "BootstrapFileEarmarkBarGraph", - "BootstrapFileEarmarkBinaryFill", - "BootstrapFileEarmarkBinary", - "BootstrapFileEarmarkBreakFill", - "BootstrapFileEarmarkBreak", - "BootstrapFileEarmarkCheckFill", - "BootstrapFileEarmarkCheck", - "BootstrapFileEarmarkCodeFill", - "BootstrapFileEarmarkCode", - "BootstrapFileEarmarkDiffFill", - "BootstrapFileEarmarkDiff", - "BootstrapFileEarmarkEaselFill", - "BootstrapFileEarmarkEasel", - "BootstrapFileEarmarkExcelFill", - "BootstrapFileEarmarkExcel", - "BootstrapFileEarmarkFill", - "BootstrapFileEarmarkFontFill", - "BootstrapFileEarmarkFont", - "BootstrapFileEarmarkImageFill", - "BootstrapFileEarmarkImage", - "BootstrapFileEarmarkLockFill", - "BootstrapFileEarmarkLock", - "BootstrapFileEarmarkLock2Fill", - "BootstrapFileEarmarkLock2", - "BootstrapFileEarmarkMedicalFill", - "BootstrapFileEarmarkMedical", - "BootstrapFileEarmarkMinusFill", - "BootstrapFileEarmarkMinus", - "BootstrapFileEarmarkMusicFill", - "BootstrapFileEarmarkMusic", - "BootstrapFileEarmarkPdfFill", - "BootstrapFileEarmarkPdf", - "BootstrapFileEarmarkPersonFill", - "BootstrapFileEarmarkPerson", - "BootstrapFileEarmarkPlayFill", - "BootstrapFileEarmarkPlay", - "BootstrapFileEarmarkPlusFill", - "BootstrapFileEarmarkPlus", - "BootstrapFileEarmarkPostFill", - "BootstrapFileEarmarkPost", - "BootstrapFileEarmarkPptFill", - "BootstrapFileEarmarkPpt", - "BootstrapFileEarmarkRichtextFill", - "BootstrapFileEarmarkRichtext", - "BootstrapFileEarmarkRuledFill", - "BootstrapFileEarmarkRuled", - "BootstrapFileEarmarkSlidesFill", - "BootstrapFileEarmarkSlides", - "BootstrapFileEarmarkSpreadsheetFill", - "BootstrapFileEarmarkSpreadsheet", - "BootstrapFileEarmarkTextFill", - "BootstrapFileEarmarkText", - "BootstrapFileEarmarkWordFill", - "BootstrapFileEarmarkWord", - "BootstrapFileEarmarkXFill", - "BootstrapFileEarmarkX", - "BootstrapFileEarmarkZipFill", - "BootstrapFileEarmarkZip", - "BootstrapFileEarmark", - "BootstrapFileEaselFill", - "BootstrapFileEasel", - "BootstrapFileExcelFill", - "BootstrapFileExcel", - "BootstrapFileFill", - "BootstrapFileFontFill", - "BootstrapFileFont", - "BootstrapFileImageFill", - "BootstrapFileImage", - "BootstrapFileLockFill", - "BootstrapFileLock", - "BootstrapFileLock2Fill", - "BootstrapFileLock2", - "BootstrapFileMedicalFill", - "BootstrapFileMedical", - "BootstrapFileMinusFill", - "BootstrapFileMinus", - "BootstrapFileMusicFill", - "BootstrapFileMusic", - "BootstrapFilePdfFill", - "BootstrapFilePdf", - "BootstrapFilePersonFill", - "BootstrapFilePerson", - "BootstrapFilePlayFill", - "BootstrapFilePlay", - "BootstrapFilePlusFill", - "BootstrapFilePlus", - "BootstrapFilePostFill", - "BootstrapFilePost", - "BootstrapFilePptFill", - "BootstrapFilePpt", - "BootstrapFileRichtextFill", - "BootstrapFileRichtext", - "BootstrapFileRuledFill", - "BootstrapFileRuled", - "BootstrapFileSlidesFill", - "BootstrapFileSlides", - "BootstrapFileSpreadsheetFill", - "BootstrapFileSpreadsheet", - "BootstrapFileTextFill", - "BootstrapFileText", - "BootstrapFileWordFill", - "BootstrapFileWord", - "BootstrapFileXFill", - "BootstrapFileX", - "BootstrapFileZipFill", - "BootstrapFileZip", - "BootstrapFile", - "BootstrapFilesAlt", - "BootstrapFiles", - "BootstrapFiletypeAac", - "BootstrapFiletypeAi", - "BootstrapFiletypeBmp", - "BootstrapFiletypeCs", - "BootstrapFiletypeCss", - "BootstrapFiletypeCsv", - "BootstrapFiletypeDoc", - "BootstrapFiletypeDocx", - "BootstrapFiletypeExe", - "BootstrapFiletypeGif", - "BootstrapFiletypeHeic", - "BootstrapFiletypeHtml", - "BootstrapFiletypeJava", - "BootstrapFiletypeJpg", - "BootstrapFiletypeJs", - "BootstrapFiletypeJson", - "BootstrapFiletypeJsx", - "BootstrapFiletypeKey", - "BootstrapFiletypeM4P", - "BootstrapFiletypeMd", - "BootstrapFiletypeMdx", - "BootstrapFiletypeMov", - "BootstrapFiletypeMp3", - "BootstrapFiletypeMp4", - "BootstrapFiletypeOtf", - "BootstrapFiletypePdf", - "BootstrapFiletypePhp", - "BootstrapFiletypePng", - "BootstrapFiletypePpt", - "BootstrapFiletypePptx", - "BootstrapFiletypePsd", - "BootstrapFiletypePy", - "BootstrapFiletypeRaw", - "BootstrapFiletypeRb", - "BootstrapFiletypeSass", - "BootstrapFiletypeScss", - "BootstrapFiletypeSh", - "BootstrapFiletypeSql", - "BootstrapFiletypeSvg", - "BootstrapFiletypeTiff", - "BootstrapFiletypeTsx", - "BootstrapFiletypeTtf", - "BootstrapFiletypeTxt", - "BootstrapFiletypeWav", - "BootstrapFiletypeWoff", - "BootstrapFiletypeXls", - "BootstrapFiletypeXlsx", - "BootstrapFiletypeXml", - "BootstrapFiletypeYml", - "BootstrapFilm", - "BootstrapFilterCircleFill", - "BootstrapFilterCircle", - "BootstrapFilterLeft", - "BootstrapFilterRight", - "BootstrapFilterSquareFill", - "BootstrapFilterSquare", - "BootstrapFilter", - "BootstrapFingerprint", - "BootstrapFire", - "BootstrapFlagFill", - "BootstrapFlag", - "BootstrapFlower1", - "BootstrapFlower2", - "BootstrapFlower3", - "BootstrapFolderCheck", - "BootstrapFolderFill", - "BootstrapFolderMinus", - "BootstrapFolderPlus", - "BootstrapFolderSymlinkFill", - "BootstrapFolderSymlink", - "BootstrapFolderX", - "BootstrapFolder", - "BootstrapFolder2Open", - "BootstrapFolder2", - "BootstrapFonts", - "BootstrapForwardFill", - "BootstrapForward", - "BootstrapFront", - "BootstrapFuelPumpDieselFill", - "BootstrapFuelPumpDiesel", - "BootstrapFuelPumpFill", - "BootstrapFuelPump", - "BootstrapFullscreenExit", - "BootstrapFullscreen", - "BootstrapFunnelFill", - "BootstrapFunnel", - "BootstrapGearFill", - "BootstrapGearWideConnected", - "BootstrapGearWide", - "BootstrapGear", - "BootstrapGem", - "BootstrapGenderAmbiguous", - "BootstrapGenderFemale", - "BootstrapGenderMale", - "BootstrapGenderTrans", - "BootstrapGeoAltFill", - "BootstrapGeoAlt", - "BootstrapGeoFill", - "BootstrapGeo", - "BootstrapGiftFill", - "BootstrapGift", - "BootstrapGit", - "BootstrapGithub", - "BootstrapGlobeAmericas", - "BootstrapGlobeAsiaAustralia", - "BootstrapGlobeCentralSouthAsia", - "BootstrapGlobeEuropeAfrica", - "BootstrapGlobe", - "BootstrapGlobe2", - "BootstrapGooglePlay", - "BootstrapGoogle", - "BootstrapGpuCard", - "BootstrapGraphDownArrow", - "BootstrapGraphDown", - "BootstrapGraphUpArrow", - "BootstrapGraphUp", - "BootstrapGrid1X2Fill", - "BootstrapGrid1X2", - "BootstrapGrid3X2GapFill", - "BootstrapGrid3X2Gap", - "BootstrapGrid3X2", - "BootstrapGrid3X3GapFill", - "BootstrapGrid3X3Gap", - "BootstrapGrid3X3", - "BootstrapGridFill", - "BootstrapGrid", - "BootstrapGripHorizontal", - "BootstrapGripVertical", - "BootstrapHCircleFill", - "BootstrapHCircle", - "BootstrapHSquareFill", - "BootstrapHSquare", - "BootstrapHammer", - "BootstrapHandIndexFill", - "BootstrapHandIndexThumbFill", - "BootstrapHandIndexThumb", - "BootstrapHandIndex", - "BootstrapHandThumbsDownFill", - "BootstrapHandThumbsDown", - "BootstrapHandThumbsUpFill", - "BootstrapHandThumbsUp", - "BootstrapHandbagFill", - "BootstrapHandbag", - "BootstrapHash", - "BootstrapHddFill", - "BootstrapHddNetworkFill", - "BootstrapHddNetwork", - "BootstrapHddRackFill", - "BootstrapHddRack", - "BootstrapHddStackFill", - "BootstrapHddStack", - "BootstrapHdd", - "BootstrapHdmiFill", - "BootstrapHdmi", - "BootstrapHeadphones", - "BootstrapHeadsetVr", - "BootstrapHeadset", - "BootstrapHeartArrow", - "BootstrapHeartFill", - "BootstrapHeartHalf", - "BootstrapHeartPulseFill", - "BootstrapHeartPulse", - "BootstrapHeart", - "BootstrapHeartbreakFill", - "BootstrapHeartbreak", - "BootstrapHearts", - "BootstrapHeptagonFill", - "BootstrapHeptagonHalf", - "BootstrapHeptagon", - "BootstrapHexagonFill", - "BootstrapHexagonHalf", - "BootstrapHexagon", - "BootstrapHospitalFill", - "BootstrapHospital", - "BootstrapHourglassBottom", - "BootstrapHourglassSplit", - "BootstrapHourglassTop", - "BootstrapHourglass", - "BootstrapHouseAddFill", - "BootstrapHouseAdd", - "BootstrapHouseCheckFill", - "BootstrapHouseCheck", - "BootstrapHouseDashFill", - "BootstrapHouseDash", - "BootstrapHouseDoorFill", - "BootstrapHouseDoor", - "BootstrapHouseDownFill", - "BootstrapHouseDown", - "BootstrapHouseExclamationFill", - "BootstrapHouseExclamation", - "BootstrapHouseFill", - "BootstrapHouseGearFill", - "BootstrapHouseGear", - "BootstrapHouseHeartFill", - "BootstrapHouseHeart", - "BootstrapHouseLockFill", - "BootstrapHouseLock", - "BootstrapHouseSlashFill", - "BootstrapHouseSlash", - "BootstrapHouseUpFill", - "BootstrapHouseUp", - "BootstrapHouseXFill", - "BootstrapHouseX", - "BootstrapHouse", - "BootstrapHousesFill", - "BootstrapHouses", - "BootstrapHr", - "BootstrapHurricane", - "BootstrapHypnotize", - "BootstrapImageAlt", - "BootstrapImageFill", - "BootstrapImage", - "BootstrapImages", - "BootstrapInboxFill", - "BootstrapInbox", - "BootstrapInboxesFill", - "BootstrapInboxes", - "BootstrapIncognito", - "BootstrapIndent", - "BootstrapInfinity", - "BootstrapInfoCircleFill", - "BootstrapInfoCircle", - "BootstrapInfoLg", - "BootstrapInfoSquareFill", - "BootstrapInfoSquare", - "BootstrapInfo", - "BootstrapInputCursorText", - "BootstrapInputCursor", - "BootstrapInstagram", - "BootstrapIntersect", - "BootstrapJournalAlbum", - "BootstrapJournalArrowDown", - "BootstrapJournalArrowUp", - "BootstrapJournalBookmarkFill", - "BootstrapJournalBookmark", - "BootstrapJournalCheck", - "BootstrapJournalCode", - "BootstrapJournalMedical", - "BootstrapJournalMinus", - "BootstrapJournalPlus", - "BootstrapJournalRichtext", - "BootstrapJournalText", - "BootstrapJournalX", - "BootstrapJournal", - "BootstrapJournals", - "BootstrapJoystick", - "BootstrapJustifyLeft", - "BootstrapJustifyRight", - "BootstrapJustify", - "BootstrapKanbanFill", - "BootstrapKanban", - "BootstrapKeyFill", - "BootstrapKey", - "BootstrapKeyboardFill", - "BootstrapKeyboard", - "BootstrapLadder", - "BootstrapLampFill", - "BootstrapLamp", - "BootstrapLaptopFill", - "BootstrapLaptop", - "BootstrapLayerBackward", - "BootstrapLayerForward", - "BootstrapLayersFill", - "BootstrapLayersHalf", - "BootstrapLayers", - "BootstrapLayoutSidebarInsetReverse", - "BootstrapLayoutSidebarInset", - "BootstrapLayoutSidebarReverse", - "BootstrapLayoutSidebar", - "BootstrapLayoutSplit", - "BootstrapLayoutTextSidebarReverse", - "BootstrapLayoutTextSidebar", - "BootstrapLayoutTextWindowReverse", - "BootstrapLayoutTextWindow", - "BootstrapLayoutThreeColumns", - "BootstrapLayoutWtf", - "BootstrapLifePreserver", - "BootstrapLightbulbFill", - "BootstrapLightbulbOffFill", - "BootstrapLightbulbOff", - "BootstrapLightbulb", - "BootstrapLightningChargeFill", - "BootstrapLightningCharge", - "BootstrapLightningFill", - "BootstrapLightning", - "BootstrapLine", - "BootstrapLink45Deg", - "BootstrapLink", - "BootstrapLinkedin", - "BootstrapListCheck", - "BootstrapListColumnsReverse", - "BootstrapListColumns", - "BootstrapListNested", - "BootstrapListOl", - "BootstrapListStars", - "BootstrapListTask", - "BootstrapListUl", - "BootstrapList", - "BootstrapLockFill", - "BootstrapLock", - "BootstrapLungsFill", - "BootstrapLungs", - "BootstrapMagic", - "BootstrapMagnetFill", - "BootstrapMagnet", - "BootstrapMailbox", - "BootstrapMailbox2", - "BootstrapMapFill", - "BootstrapMap", - "BootstrapMarkdownFill", - "BootstrapMarkdown", - "BootstrapMask", - "BootstrapMastodon", - "BootstrapMedium", - "BootstrapMegaphoneFill", - "BootstrapMegaphone", - "BootstrapMemory", - "BootstrapMenuAppFill", - "BootstrapMenuApp", - "BootstrapMenuButtonFill", - "BootstrapMenuButtonWideFill", - "BootstrapMenuButtonWide", - "BootstrapMenuButton", - "BootstrapMenuDown", - "BootstrapMenuUp", - "BootstrapMessenger", - "BootstrapMeta", - "BootstrapMicFill", - "BootstrapMicMuteFill", - "BootstrapMicMute", - "BootstrapMic", - "BootstrapMicrosoftTeams", - "BootstrapMicrosoft", - "BootstrapMinecartLoaded", - "BootstrapMinecart", - "BootstrapModemFill", - "BootstrapModem", - "BootstrapMoisture", - "BootstrapMoonFill", - "BootstrapMoonStarsFill", - "BootstrapMoonStars", - "BootstrapMoon", - "BootstrapMortarboardFill", - "BootstrapMortarboard", - "BootstrapMotherboardFill", - "BootstrapMotherboard", - "BootstrapMouseFill", - "BootstrapMouse", - "BootstrapMouse2Fill", - "BootstrapMouse2", - "BootstrapMouse3Fill", - "BootstrapMouse3", - "BootstrapMusicNoteBeamed", - "BootstrapMusicNoteList", - "BootstrapMusicNote", - "BootstrapMusicPlayerFill", - "BootstrapMusicPlayer", - "BootstrapNewspaper", - "BootstrapNintendoSwitch", - "BootstrapNodeMinusFill", - "BootstrapNodeMinus", - "BootstrapNodePlusFill", - "BootstrapNodePlus", - "BootstrapNutFill", - "BootstrapNut", - "BootstrapNvidia", - "BootstrapOctagonFill", - "BootstrapOctagonHalf", - "BootstrapOctagon", - "BootstrapOpticalAudioFill", - "BootstrapOpticalAudio", - "BootstrapOption", - "BootstrapOutlet", - "BootstrapPCircleFill", - "BootstrapPCircle", - "BootstrapPSquareFill", - "BootstrapPSquare", - "BootstrapPaintBucket", - "BootstrapPaletteFill", - "BootstrapPalette", - "BootstrapPalette2", - "BootstrapPaperclip", - "BootstrapParagraph", - "BootstrapPassFill", - "BootstrapPass", - "BootstrapPatchCheckFill", - "BootstrapPatchCheck", - "BootstrapPatchExclamationFill", - "BootstrapPatchExclamation", - "BootstrapPatchMinusFill", - "BootstrapPatchMinus", - "BootstrapPatchPlusFill", - "BootstrapPatchPlus", - "BootstrapPatchQuestionFill", - "BootstrapPatchQuestion", - "BootstrapPauseBtnFill", - "BootstrapPauseBtn", - "BootstrapPauseCircleFill", - "BootstrapPauseCircle", - "BootstrapPauseFill", - "BootstrapPause", - "BootstrapPaypal", - "BootstrapPcDisplayHorizontal", - "BootstrapPcDisplay", - "BootstrapPcHorizontal", - "BootstrapPc", - "BootstrapPciCard", - "BootstrapPeaceFill", - "BootstrapPeace", - "BootstrapPenFill", - "BootstrapPen", - "BootstrapPencilFill", - "BootstrapPencilSquare", - "BootstrapPencil", - "BootstrapPentagonFill", - "BootstrapPentagonHalf", - "BootstrapPentagon", - "BootstrapPeopleFill", - "BootstrapPeople", - "BootstrapPercent", - "BootstrapPersonAdd", - "BootstrapPersonBadgeFill", - "BootstrapPersonBadge", - "BootstrapPersonBoundingBox", - "BootstrapPersonCheckFill", - "BootstrapPersonCheck", - "BootstrapPersonCircle", - "BootstrapPersonDashFill", - "BootstrapPersonDash", - "BootstrapPersonDown", - "BootstrapPersonExclamation", - "BootstrapPersonFillAdd", - "BootstrapPersonFillCheck", - "BootstrapPersonFillDash", - "BootstrapPersonFillDown", - "BootstrapPersonFillExclamation", - "BootstrapPersonFillGear", - "BootstrapPersonFillLock", - "BootstrapPersonFillSlash", - "BootstrapPersonFillUp", - "BootstrapPersonFillX", - "BootstrapPersonFill", - "BootstrapPersonGear", - "BootstrapPersonHeart", - "BootstrapPersonHearts", - "BootstrapPersonLinesFill", - "BootstrapPersonLock", - "BootstrapPersonPlusFill", - "BootstrapPersonPlus", - "BootstrapPersonRolodex", - "BootstrapPersonSlash", - "BootstrapPersonSquare", - "BootstrapPersonUp", - "BootstrapPersonVcardFill", - "BootstrapPersonVcard", - "BootstrapPersonVideo", - "BootstrapPersonVideo2", - "BootstrapPersonVideo3", - "BootstrapPersonWorkspace", - "BootstrapPersonXFill", - "BootstrapPersonX", - "BootstrapPerson", - "BootstrapPhoneFill", - "BootstrapPhoneFlip", - "BootstrapPhoneLandscapeFill", - "BootstrapPhoneLandscape", - "BootstrapPhoneVibrateFill", - "BootstrapPhoneVibrate", - "BootstrapPhone", - "BootstrapPieChartFill", - "BootstrapPieChart", - "BootstrapPiggyBankFill", - "BootstrapPiggyBank", - "BootstrapPinAngleFill", - "BootstrapPinAngle", - "BootstrapPinFill", - "BootstrapPinMapFill", - "BootstrapPinMap", - "BootstrapPin", - "BootstrapPinterest", - "BootstrapPipFill", - "BootstrapPip", - "BootstrapPlayBtnFill", - "BootstrapPlayBtn", - "BootstrapPlayCircleFill", - "BootstrapPlayCircle", - "BootstrapPlayFill", - "BootstrapPlay", - "BootstrapPlaystation", - "BootstrapPlugFill", - "BootstrapPlug", - "BootstrapPlugin", - "BootstrapPlusCircleDotted", - "BootstrapPlusCircleFill", - "BootstrapPlusCircle", - "BootstrapPlusLg", - "BootstrapPlusSlashMinus", - "BootstrapPlusSquareDotted", - "BootstrapPlusSquareFill", - "BootstrapPlusSquare", - "BootstrapPlus", - "BootstrapPostageFill", - "BootstrapPostageHeartFill", - "BootstrapPostageHeart", - "BootstrapPostage", - "BootstrapPostcardFill", - "BootstrapPostcardHeartFill", - "BootstrapPostcardHeart", - "BootstrapPostcard", - "BootstrapPower", - "BootstrapPrescription", - "BootstrapPrescription2", - "BootstrapPrinterFill", - "BootstrapPrinter", - "BootstrapProjectorFill", - "BootstrapProjector", - "BootstrapPuzzleFill", - "BootstrapPuzzle", - "BootstrapQrCodeScan", - "BootstrapQrCode", - "BootstrapQuestionCircleFill", - "BootstrapQuestionCircle", - "BootstrapQuestionDiamondFill", - "BootstrapQuestionDiamond", - "BootstrapQuestionLg", - "BootstrapQuestionOctagonFill", - "BootstrapQuestionOctagon", - "BootstrapQuestionSquareFill", - "BootstrapQuestionSquare", - "BootstrapQuestion", - "BootstrapQuora", - "BootstrapQuote", - "BootstrapRCircleFill", - "BootstrapRCircle", - "BootstrapRSquareFill", - "BootstrapRSquare", - "BootstrapRadioactive", - "BootstrapRainbow", - "BootstrapReceiptCutoff", - "BootstrapReceipt", - "BootstrapReception0", - "BootstrapReception1", - "BootstrapReception2", - "BootstrapReception3", - "BootstrapReception4", - "BootstrapRecordBtnFill", - "BootstrapRecordBtn", - "BootstrapRecordCircleFill", - "BootstrapRecordCircle", - "BootstrapRecordFill", - "BootstrapRecord", - "BootstrapRecord2Fill", - "BootstrapRecord2", - "BootstrapRecycle", - "BootstrapReddit", - "BootstrapRegex", - "BootstrapRepeat1", - "BootstrapRepeat", - "BootstrapReplyAllFill", - "BootstrapReplyAll", - "BootstrapReplyFill", - "BootstrapReply", - "BootstrapRewindBtnFill", - "BootstrapRewindBtn", - "BootstrapRewindCircleFill", - "BootstrapRewindCircle", - "BootstrapRewindFill", - "BootstrapRewind", - "BootstrapRobot", - "BootstrapRocketFill", - "BootstrapRocketTakeoffFill", - "BootstrapRocketTakeoff", - "BootstrapRocket", - "BootstrapRouterFill", - "BootstrapRouter", - "BootstrapRssFill", - "BootstrapRss", - "BootstrapRulers", - "BootstrapSafeFill", - "BootstrapSafe", - "BootstrapSafe2Fill", - "BootstrapSafe2", - "BootstrapSaveFill", - "BootstrapSave", - "BootstrapSave2Fill", - "BootstrapSave2", - "BootstrapScissors", - "BootstrapScooter", - "BootstrapScrewdriver", - "BootstrapSdCardFill", - "BootstrapSdCard", - "BootstrapSearchHeartFill", - "BootstrapSearchHeart", - "BootstrapSearch", - "BootstrapSegmentedNav", - "BootstrapSendCheckFill", - "BootstrapSendCheck", - "BootstrapSendDashFill", - "BootstrapSendDash", - "BootstrapSendExclamationFill", - "BootstrapSendExclamation", - "BootstrapSendFill", - "BootstrapSendPlusFill", - "BootstrapSendPlus", - "BootstrapSendSlashFill", - "BootstrapSendSlash", - "BootstrapSendXFill", - "BootstrapSendX", - "BootstrapSend", - "BootstrapServer", - "BootstrapShareFill", - "BootstrapShare", - "BootstrapShieldCheck", - "BootstrapShieldExclamation", - "BootstrapShieldFillCheck", - "BootstrapShieldFillExclamation", - "BootstrapShieldFillMinus", - "BootstrapShieldFillPlus", - "BootstrapShieldFillX", - "BootstrapShieldFill", - "BootstrapShieldLockFill", - "BootstrapShieldLock", - "BootstrapShieldMinus", - "BootstrapShieldPlus", - "BootstrapShieldShaded", - "BootstrapShieldSlashFill", - "BootstrapShieldSlash", - "BootstrapShieldX", - "BootstrapShield", - "BootstrapShiftFill", - "BootstrapShift", - "BootstrapShopWindow", - "BootstrapShop", - "BootstrapShuffle", - "BootstrapSignDeadEndFill", - "BootstrapSignDeadEnd", - "BootstrapSignDoNotEnterFill", - "BootstrapSignDoNotEnter", - "BootstrapSignIntersectionFill", - "BootstrapSignIntersectionSideFill", - "BootstrapSignIntersectionSide", - "BootstrapSignIntersectionTFill", - "BootstrapSignIntersectionT", - "BootstrapSignIntersectionYFill", - "BootstrapSignIntersectionY", - "BootstrapSignIntersection", - "BootstrapSignMergeLeftFill", - "BootstrapSignMergeLeft", - "BootstrapSignMergeRightFill", - "BootstrapSignMergeRight", - "BootstrapSignNoLeftTurnFill", - "BootstrapSignNoLeftTurn", - "BootstrapSignNoParkingFill", - "BootstrapSignNoParking", - "BootstrapSignNoRightTurnFill", - "BootstrapSignNoRightTurn", - "BootstrapSignRailroadFill", - "BootstrapSignRailroad", - "BootstrapSignStopFill", - "BootstrapSignStopLightsFill", - "BootstrapSignStopLights", - "BootstrapSignStop", - "BootstrapSignTurnLeftFill", - "BootstrapSignTurnLeft", - "BootstrapSignTurnRightFill", - "BootstrapSignTurnRight", - "BootstrapSignTurnSlightLeftFill", - "BootstrapSignTurnSlightLeft", - "BootstrapSignTurnSlightRightFill", - "BootstrapSignTurnSlightRight", - "BootstrapSignYieldFill", - "BootstrapSignYield", - "BootstrapSignal", - "BootstrapSignpost2Fill", - "BootstrapSignpost2", - "BootstrapSignpostFill", - "BootstrapSignpostSplitFill", - "BootstrapSignpostSplit", - "BootstrapSignpost", - "BootstrapSimFill", - "BootstrapSim", - "BootstrapSinaWeibo", - "BootstrapSkipBackwardBtnFill", - "BootstrapSkipBackwardBtn", - "BootstrapSkipBackwardCircleFill", - "BootstrapSkipBackwardCircle", - "BootstrapSkipBackwardFill", - "BootstrapSkipBackward", - "BootstrapSkipEndBtnFill", - "BootstrapSkipEndBtn", - "BootstrapSkipEndCircleFill", - "BootstrapSkipEndCircle", - "BootstrapSkipEndFill", - "BootstrapSkipEnd", - "BootstrapSkipForwardBtnFill", - "BootstrapSkipForwardBtn", - "BootstrapSkipForwardCircleFill", - "BootstrapSkipForwardCircle", - "BootstrapSkipForwardFill", - "BootstrapSkipForward", - "BootstrapSkipStartBtnFill", - "BootstrapSkipStartBtn", - "BootstrapSkipStartCircleFill", - "BootstrapSkipStartCircle", - "BootstrapSkipStartFill", - "BootstrapSkipStart", - "BootstrapSkype", - "BootstrapSlack", - "BootstrapSlashCircleFill", - "BootstrapSlashCircle", - "BootstrapSlashLg", - "BootstrapSlashSquareFill", - "BootstrapSlashSquare", - "BootstrapSlash", - "BootstrapSliders", - "BootstrapSliders2Vertical", - "BootstrapSliders2", - "BootstrapSmartwatch", - "BootstrapSnapchat", - "BootstrapSnow", - "BootstrapSnow2", - "BootstrapSnow3", - "BootstrapSortAlphaDownAlt", - "BootstrapSortAlphaDown", - "BootstrapSortAlphaUpAlt", - "BootstrapSortAlphaUp", - "BootstrapSortDownAlt", - "BootstrapSortDown", - "BootstrapSortNumericDownAlt", - "BootstrapSortNumericDown", - "BootstrapSortNumericUpAlt", - "BootstrapSortNumericUp", - "BootstrapSortUpAlt", - "BootstrapSortUp", - "BootstrapSoundwave", - "BootstrapSpeakerFill", - "BootstrapSpeaker", - "BootstrapSpeedometer", - "BootstrapSpeedometer2", - "BootstrapSpellcheck", - "BootstrapSpotify", - "BootstrapSquareFill", - "BootstrapSquareHalf", - "BootstrapSquare", - "BootstrapStackOverflow", - "BootstrapStack", - "BootstrapStarFill", - "BootstrapStarHalf", - "BootstrapStar", - "BootstrapStars", - "BootstrapSteam", - "BootstrapStickiesFill", - "BootstrapStickies", - "BootstrapStickyFill", - "BootstrapSticky", - "BootstrapStopBtnFill", - "BootstrapStopBtn", - "BootstrapStopCircleFill", - "BootstrapStopCircle", - "BootstrapStopFill", - "BootstrapStop", - "BootstrapStoplightsFill", - "BootstrapStoplights", - "BootstrapStopwatchFill", - "BootstrapStopwatch", - "BootstrapStrava", - "BootstrapStripe", - "BootstrapSubscript", - "BootstrapSubtract", - "BootstrapSuitClubFill", - "BootstrapSuitClub", - "BootstrapSuitDiamondFill", - "BootstrapSuitDiamond", - "BootstrapSuitHeartFill", - "BootstrapSuitHeart", - "BootstrapSuitSpadeFill", - "BootstrapSuitSpade", - "BootstrapSunFill", - "BootstrapSun", - "BootstrapSunglasses", - "BootstrapSunriseFill", - "BootstrapSunrise", - "BootstrapSunsetFill", - "BootstrapSunset", - "BootstrapSuperscript", - "BootstrapSymmetryHorizontal", - "BootstrapSymmetryVertical", - "BootstrapTable", - "BootstrapTabletFill", - "BootstrapTabletLandscapeFill", - "BootstrapTabletLandscape", - "BootstrapTablet", - "BootstrapTagFill", - "BootstrapTag", - "BootstrapTagsFill", - "BootstrapTags", - "BootstrapTaxiFrontFill", - "BootstrapTaxiFront", - "BootstrapTelegram", - "BootstrapTelephoneFill", - "BootstrapTelephoneForwardFill", - "BootstrapTelephoneForward", - "BootstrapTelephoneInboundFill", - "BootstrapTelephoneInbound", - "BootstrapTelephoneMinusFill", - "BootstrapTelephoneMinus", - "BootstrapTelephoneOutboundFill", - "BootstrapTelephoneOutbound", - "BootstrapTelephonePlusFill", - "BootstrapTelephonePlus", - "BootstrapTelephoneXFill", - "BootstrapTelephoneX", - "BootstrapTelephone", - "BootstrapTencentQq", - "BootstrapTerminalDash", - "BootstrapTerminalFill", - "BootstrapTerminalPlus", - "BootstrapTerminalSplit", - "BootstrapTerminalX", - "BootstrapTerminal", - "BootstrapTextCenter", - "BootstrapTextIndentLeft", - "BootstrapTextIndentRight", - "BootstrapTextLeft", - "BootstrapTextParagraph", - "BootstrapTextRight", - "BootstrapTextWrap", - "BootstrapTextareaResize", - "BootstrapTextareaT", - "BootstrapTextarea", - "BootstrapThermometerHalf", - "BootstrapThermometerHigh", - "BootstrapThermometerLow", - "BootstrapThermometerSnow", - "BootstrapThermometerSun", - "BootstrapThermometer", - "BootstrapThreeDotsVertical", - "BootstrapThreeDots", - "BootstrapThunderboltFill", - "BootstrapThunderbolt", - "BootstrapTicketDetailedFill", - "BootstrapTicketDetailed", - "BootstrapTicketFill", - "BootstrapTicketPerforatedFill", - "BootstrapTicketPerforated", - "BootstrapTicket", - "BootstrapTiktok", - "BootstrapToggleOff", - "BootstrapToggleOn", - "BootstrapToggle2Off", - "BootstrapToggle2On", - "BootstrapToggles", - "BootstrapToggles2", - "BootstrapTools", - "BootstrapTornado", - "BootstrapTrainFreightFrontFill", - "BootstrapTrainFreightFront", - "BootstrapTrainFrontFill", - "BootstrapTrainFront", - "BootstrapTrainLightrailFrontFill", - "BootstrapTrainLightrailFront", - "BootstrapTranslate", - "BootstrapTrashFill", - "BootstrapTrash", - "BootstrapTrash2Fill", - "BootstrapTrash2", - "BootstrapTrash3Fill", - "BootstrapTrash3", - "BootstrapTreeFill", - "BootstrapTree", - "BootstrapTrello", - "BootstrapTriangleFill", - "BootstrapTriangleHalf", - "BootstrapTriangle", - "BootstrapTrophyFill", - "BootstrapTrophy", - "BootstrapTropicalStorm", - "BootstrapTruckFlatbed", - "BootstrapTruckFrontFill", - "BootstrapTruckFront", - "BootstrapTruck", - "BootstrapTsunami", - "BootstrapTvFill", - "BootstrapTv", - "BootstrapTwitch", - "BootstrapTwitter", - "BootstrapTypeBold", - "BootstrapTypeH1", - "BootstrapTypeH2", - "BootstrapTypeH3", - "BootstrapTypeItalic", - "BootstrapTypeStrikethrough", - "BootstrapTypeUnderline", - "BootstrapType", - "BootstrapUbuntu", - "BootstrapUiChecksGrid", - "BootstrapUiChecks", - "BootstrapUiRadiosGrid", - "BootstrapUiRadios", - "BootstrapUmbrellaFill", - "BootstrapUmbrella", - "BootstrapUnindent", - "BootstrapUnion", - "BootstrapUnity", - "BootstrapUniversalAccessCircle", - "BootstrapUniversalAccess", - "BootstrapUnlockFill", - "BootstrapUnlock", - "BootstrapUpcScan", - "BootstrapUpc", - "BootstrapUpload", - "BootstrapUsbCFill", - "BootstrapUsbC", - "BootstrapUsbDriveFill", - "BootstrapUsbDrive", - "BootstrapUsbFill", - "BootstrapUsbMicroFill", - "BootstrapUsbMicro", - "BootstrapUsbMiniFill", - "BootstrapUsbMini", - "BootstrapUsbPlugFill", - "BootstrapUsbPlug", - "BootstrapUsbSymbol", - "BootstrapUsb", - "BootstrapValentine", - "BootstrapValentine2", - "BootstrapVectorPen", - "BootstrapViewList", - "BootstrapViewStacked", - "BootstrapVimeo", - "BootstrapVinylFill", - "BootstrapVinyl", - "BootstrapVirus", - "BootstrapVirus2", - "BootstrapVoicemail", - "BootstrapVolumeDownFill", - "BootstrapVolumeDown", - "BootstrapVolumeMuteFill", - "BootstrapVolumeMute", - "BootstrapVolumeOffFill", - "BootstrapVolumeOff", - "BootstrapVolumeUpFill", - "BootstrapVolumeUp", - "BootstrapVr", - "BootstrapWalletFill", - "BootstrapWallet", - "BootstrapWallet2", - "BootstrapWatch", - "BootstrapWater", - "BootstrapWebcamFill", - "BootstrapWebcam", - "BootstrapWechat", - "BootstrapWhatsapp", - "BootstrapWifi1", - "BootstrapWifi2", - "BootstrapWifiOff", - "BootstrapWifi", - "BootstrapWikipedia", - "BootstrapWind", - "BootstrapWindowDash", - "BootstrapWindowDesktop", - "BootstrapWindowDock", - "BootstrapWindowFullscreen", - "BootstrapWindowPlus", - "BootstrapWindowSidebar", - "BootstrapWindowSplit", - "BootstrapWindowStack", - "BootstrapWindowX", - "BootstrapWindow", - "BootstrapWindows", - "BootstrapWordpress", - "BootstrapWrenchAdjustableCircleFill", - "BootstrapWrenchAdjustableCircle", - "BootstrapWrenchAdjustable", - "BootstrapWrench", - "BootstrapXCircleFill", - "BootstrapXCircle", - "BootstrapXDiamondFill", - "BootstrapXDiamond", - "BootstrapXLg", - "BootstrapXOctagonFill", - "BootstrapXOctagon", - "BootstrapXSquareFill", - "BootstrapXSquare", - "BootstrapX", - "BootstrapXbox", - "BootstrapYelp", - "BootstrapYinYang", - "BootstrapYoutube", - "BootstrapZoomIn", - "BootstrapZoomOut" - ], - "convert_case": [ - "dep:convert_case" - ], - "data_uri": [], - "default": [ - "data_uri" - ], - "enum-iterator": [ - "dep:enum-iterator" - ], - "extra": [ - "ExtraGooglePlay" - ], - "feather": [ - "FeatherActivity", - "FeatherAirplay", - "FeatherAlertCircle", - "FeatherAlertOctagon", - "FeatherAlertTriangle", - "FeatherAlignCenter", - "FeatherAlignJustify", - "FeatherAlignLeft", - "FeatherAlignRight", - "FeatherAnchor", - "FeatherAperture", - "FeatherArchive", - "FeatherArrowDownCircle", - "FeatherArrowDownLeft", - "FeatherArrowDownRight", - "FeatherArrowDown", - "FeatherArrowLeftCircle", - "FeatherArrowLeft", - "FeatherArrowRightCircle", - "FeatherArrowRight", - "FeatherArrowUpCircle", - "FeatherArrowUpLeft", - "FeatherArrowUpRight", - "FeatherArrowUp", - "FeatherAtSign", - "FeatherAward", - "FeatherBarChart2", - "FeatherBarChart", - "FeatherBatteryCharging", - "FeatherBattery", - "FeatherBellOff", - "FeatherBell", - "FeatherBluetooth", - "FeatherBold", - "FeatherBookOpen", - "FeatherBook", - "FeatherBookmark", - "FeatherBox", - "FeatherBriefcase", - "FeatherCalendar", - "FeatherCameraOff", - "FeatherCamera", - "FeatherCast", - "FeatherCheckCircle", - "FeatherCheckSquare", - "FeatherCheck", - "FeatherChevronDown", - "FeatherChevronLeft", - "FeatherChevronRight", - "FeatherChevronUp", - "FeatherChevronsDown", - "FeatherChevronsLeft", - "FeatherChevronsRight", - "FeatherChevronsUp", - "FeatherChrome", - "FeatherCircle", - "FeatherClipboard", - "FeatherClock", - "FeatherCloudDrizzle", - "FeatherCloudLightning", - "FeatherCloudOff", - "FeatherCloudRain", - "FeatherCloudSnow", - "FeatherCloud", - "FeatherCode", - "FeatherCodepen", - "FeatherCodesandbox", - "FeatherCoffee", - "FeatherColumns", - "FeatherCommand", - "FeatherCompass", - "FeatherCopy", - "FeatherCornerDownLeft", - "FeatherCornerDownRight", - "FeatherCornerLeftDown", - "FeatherCornerLeftUp", - "FeatherCornerRightDown", - "FeatherCornerRightUp", - "FeatherCornerUpLeft", - "FeatherCornerUpRight", - "FeatherCpu", - "FeatherCreditCard", - "FeatherCrop", - "FeatherCrosshair", - "FeatherDatabase", - "FeatherDelete", - "FeatherDisc", - "FeatherDivideCircle", - "FeatherDivideSquare", - "FeatherDivide", - "FeatherDollarSign", - "FeatherDownloadCloud", - "FeatherDownload", - "FeatherDribbble", - "FeatherDroplet", - "FeatherEdit2", - "FeatherEdit3", - "FeatherEdit", - "FeatherExternalLink", - "FeatherEyeOff", - "FeatherEye", - "FeatherFacebook", - "FeatherFastForward", - "FeatherFeather", - "FeatherFigma", - "FeatherFileMinus", - "FeatherFilePlus", - "FeatherFileText", - "FeatherFile", - "FeatherFilm", - "FeatherFilter", - "FeatherFlag", - "FeatherFolderMinus", - "FeatherFolderPlus", - "FeatherFolder", - "FeatherFramer", - "FeatherFrown", - "FeatherGift", - "FeatherGitBranch", - "FeatherGitCommit", - "FeatherGitMerge", - "FeatherGitPullRequest", - "FeatherGithub", - "FeatherGitlab", - "FeatherGlobe", - "FeatherGrid", - "FeatherHardDrive", - "FeatherHash", - "FeatherHeadphones", - "FeatherHeart", - "FeatherHelpCircle", - "FeatherHexagon", - "FeatherHome", - "FeatherImage", - "FeatherInbox", - "FeatherInfo", - "FeatherInstagram", - "FeatherItalic", - "FeatherKey", - "FeatherLayers", - "FeatherLayout", - "FeatherLifeBuoy", - "FeatherLink2", - "FeatherLink", - "FeatherLinkedin", - "FeatherList", - "FeatherLoader", - "FeatherLock", - "FeatherLogIn", - "FeatherLogOut", - "FeatherMail", - "FeatherMapPin", - "FeatherMap", - "FeatherMaximize2", - "FeatherMaximize", - "FeatherMeh", - "FeatherMenu", - "FeatherMessageCircle", - "FeatherMessageSquare", - "FeatherMicOff", - "FeatherMic", - "FeatherMinimize2", - "FeatherMinimize", - "FeatherMinusCircle", - "FeatherMinusSquare", - "FeatherMinus", - "FeatherMonitor", - "FeatherMoon", - "FeatherMoreHorizontal", - "FeatherMoreVertical", - "FeatherMousePointer", - "FeatherMove", - "FeatherMusic", - "FeatherNavigation2", - "FeatherNavigation", - "FeatherOctagon", - "FeatherPackage", - "FeatherPaperclip", - "FeatherPauseCircle", - "FeatherPause", - "FeatherPenTool", - "FeatherPercent", - "FeatherPhoneCall", - "FeatherPhoneForwarded", - "FeatherPhoneIncoming", - "FeatherPhoneMissed", - "FeatherPhoneOff", - "FeatherPhoneOutgoing", - "FeatherPhone", - "FeatherPieChart", - "FeatherPlayCircle", - "FeatherPlay", - "FeatherPlusCircle", - "FeatherPlusSquare", - "FeatherPlus", - "FeatherPocket", - "FeatherPower", - "FeatherPrinter", - "FeatherRadio", - "FeatherRefreshCcw", - "FeatherRefreshCw", - "FeatherRepeat", - "FeatherRewind", - "FeatherRotateCcw", - "FeatherRotateCw", - "FeatherRss", - "FeatherSave", - "FeatherScissors", - "FeatherSearch", - "FeatherSend", - "FeatherServer", - "FeatherSettings", - "FeatherShare2", - "FeatherShare", - "FeatherShieldOff", - "FeatherShield", - "FeatherShoppingBag", - "FeatherShoppingCart", - "FeatherShuffle", - "FeatherSidebar", - "FeatherSkipBack", - "FeatherSkipForward", - "FeatherSlack", - "FeatherSlash", - "FeatherSliders", - "FeatherSmartphone", - "FeatherSmile", - "FeatherSpeaker", - "FeatherSquare", - "FeatherStar", - "FeatherStopCircle", - "FeatherSun", - "FeatherSunrise", - "FeatherSunset", - "FeatherTable", - "FeatherTablet", - "FeatherTag", - "FeatherTarget", - "FeatherTerminal", - "FeatherThermometer", - "FeatherThumbsDown", - "FeatherThumbsUp", - "FeatherToggleLeft", - "FeatherToggleRight", - "FeatherTool", - "FeatherTrash2", - "FeatherTrash", - "FeatherTrello", - "FeatherTrendingDown", - "FeatherTrendingUp", - "FeatherTriangle", - "FeatherTruck", - "FeatherTv", - "FeatherTwitch", - "FeatherTwitter", - "FeatherType", - "FeatherUmbrella", - "FeatherUnderline", - "FeatherUnlock", - "FeatherUploadCloud", - "FeatherUpload", - "FeatherUserCheck", - "FeatherUserMinus", - "FeatherUserPlus", - "FeatherUserX", - "FeatherUser", - "FeatherUsers", - "FeatherVideoOff", - "FeatherVideo", - "FeatherVoicemail", - "FeatherVolume1", - "FeatherVolume2", - "FeatherVolumeX", - "FeatherVolume", - "FeatherWatch", - "FeatherWifiOff", - "FeatherWifi", - "FeatherWind", - "FeatherXCircle", - "FeatherXOctagon", - "FeatherXSquare", - "FeatherX", - "FeatherYoutube", - "FeatherZapOff", - "FeatherZap", - "FeatherZoomIn", - "FeatherZoomOut" - ], - "font_awesome_regular": [ - "FontAwesomeRegularAddressBook", - "FontAwesomeRegularAddressCard", - "FontAwesomeRegularBellSlash", - "FontAwesomeRegularBell", - "FontAwesomeRegularBookmark", - "FontAwesomeRegularBuilding", - "FontAwesomeRegularCalendarCheck", - "FontAwesomeRegularCalendarDays", - "FontAwesomeRegularCalendarMinus", - "FontAwesomeRegularCalendarPlus", - "FontAwesomeRegularCalendarXmark", - "FontAwesomeRegularCalendar", - "FontAwesomeRegularChartBar", - "FontAwesomeRegularChessBishop", - "FontAwesomeRegularChessKing", - "FontAwesomeRegularChessKnight", - "FontAwesomeRegularChessPawn", - "FontAwesomeRegularChessQueen", - "FontAwesomeRegularChessRook", - "FontAwesomeRegularCircleCheck", - "FontAwesomeRegularCircleDot", - "FontAwesomeRegularCircleDown", - "FontAwesomeRegularCircleLeft", - "FontAwesomeRegularCirclePause", - "FontAwesomeRegularCirclePlay", - "FontAwesomeRegularCircleQuestion", - "FontAwesomeRegularCircleRight", - "FontAwesomeRegularCircleStop", - "FontAwesomeRegularCircleUp", - "FontAwesomeRegularCircleUser", - "FontAwesomeRegularCircleXmark", - "FontAwesomeRegularCircle", - "FontAwesomeRegularClipboard", - "FontAwesomeRegularClock", - "FontAwesomeRegularClone", - "FontAwesomeRegularClosedCaptioning", - "FontAwesomeRegularCommentDots", - "FontAwesomeRegularComment", - "FontAwesomeRegularComments", - "FontAwesomeRegularCompass", - "FontAwesomeRegularCopy", - "FontAwesomeRegularCopyright", - "FontAwesomeRegularCreditCard", - "FontAwesomeRegularEnvelopeOpen", - "FontAwesomeRegularEnvelope", - "FontAwesomeRegularEyeSlash", - "FontAwesomeRegularEye", - "FontAwesomeRegularFaceAngry", - "FontAwesomeRegularFaceDizzy", - "FontAwesomeRegularFaceFlushed", - "FontAwesomeRegularFaceFrownOpen", - "FontAwesomeRegularFaceFrown", - "FontAwesomeRegularFaceGrimace", - "FontAwesomeRegularFaceGrinBeamSweat", - "FontAwesomeRegularFaceGrinBeam", - "FontAwesomeRegularFaceGrinHearts", - "FontAwesomeRegularFaceGrinSquintTears", - "FontAwesomeRegularFaceGrinSquint", - "FontAwesomeRegularFaceGrinStars", - "FontAwesomeRegularFaceGrinTears", - "FontAwesomeRegularFaceGrinTongueSquint", - "FontAwesomeRegularFaceGrinTongueWink", - "FontAwesomeRegularFaceGrinTongue", - "FontAwesomeRegularFaceGrinWide", - "FontAwesomeRegularFaceGrinWink", - "FontAwesomeRegularFaceGrin", - "FontAwesomeRegularFaceKissBeam", - "FontAwesomeRegularFaceKissWinkHeart", - "FontAwesomeRegularFaceKiss", - "FontAwesomeRegularFaceLaughBeam", - "FontAwesomeRegularFaceLaughSquint", - "FontAwesomeRegularFaceLaughWink", - "FontAwesomeRegularFaceLaugh", - "FontAwesomeRegularFaceMehBlank", - "FontAwesomeRegularFaceMeh", - "FontAwesomeRegularFaceRollingEyes", - "FontAwesomeRegularFaceSadCry", - "FontAwesomeRegularFaceSadTear", - "FontAwesomeRegularFaceSmileBeam", - "FontAwesomeRegularFaceSmileWink", - "FontAwesomeRegularFaceSmile", - "FontAwesomeRegularFaceSurprise", - "FontAwesomeRegularFaceTired", - "FontAwesomeRegularFileAudio", - "FontAwesomeRegularFileCode", - "FontAwesomeRegularFileExcel", - "FontAwesomeRegularFileImage", - "FontAwesomeRegularFileLines", - "FontAwesomeRegularFilePdf", - "FontAwesomeRegularFilePowerpoint", - "FontAwesomeRegularFileVideo", - "FontAwesomeRegularFileWord", - "FontAwesomeRegularFileZipper", - "FontAwesomeRegularFile", - "FontAwesomeRegularFlag", - "FontAwesomeRegularFloppyDisk", - "FontAwesomeRegularFolderClosed", - "FontAwesomeRegularFolderOpen", - "FontAwesomeRegularFolder", - "FontAwesomeRegularFontAwesome", - "FontAwesomeRegularFutbol", - "FontAwesomeRegularGem", - "FontAwesomeRegularHandBackFist", - "FontAwesomeRegularHandLizard", - "FontAwesomeRegularHandPeace", - "FontAwesomeRegularHandPointDown", - "FontAwesomeRegularHandPointLeft", - "FontAwesomeRegularHandPointRight", - "FontAwesomeRegularHandPointUp", - "FontAwesomeRegularHandPointer", - "FontAwesomeRegularHandScissors", - "FontAwesomeRegularHandSpock", - "FontAwesomeRegularHand", - "FontAwesomeRegularHandshake", - "FontAwesomeRegularHardDrive", - "FontAwesomeRegularHeart", - "FontAwesomeRegularHospital", - "FontAwesomeRegularHourglass", - "FontAwesomeRegularIdBadge", - "FontAwesomeRegularIdCard", - "FontAwesomeRegularImage", - "FontAwesomeRegularImages", - "FontAwesomeRegularKeyboard", - "FontAwesomeRegularLemon", - "FontAwesomeRegularLifeRing", - "FontAwesomeRegularLightbulb", - "FontAwesomeRegularMap", - "FontAwesomeRegularMessage", - "FontAwesomeRegularMoneyBill1", - "FontAwesomeRegularMoon", - "FontAwesomeRegularNewspaper", - "FontAwesomeRegularNoteSticky", - "FontAwesomeRegularObjectGroup", - "FontAwesomeRegularObjectUngroup", - "FontAwesomeRegularPaperPlane", - "FontAwesomeRegularPaste", - "FontAwesomeRegularPenToSquare", - "FontAwesomeRegularRectangleList", - "FontAwesomeRegularRectangleXmark", - "FontAwesomeRegularRegistered", - "FontAwesomeRegularShareFromSquare", - "FontAwesomeRegularSnowflake", - "FontAwesomeRegularSquareCaretDown", - "FontAwesomeRegularSquareCaretLeft", - "FontAwesomeRegularSquareCaretRight", - "FontAwesomeRegularSquareCaretUp", - "FontAwesomeRegularSquareCheck", - "FontAwesomeRegularSquareFull", - "FontAwesomeRegularSquareMinus", - "FontAwesomeRegularSquarePlus", - "FontAwesomeRegularSquare", - "FontAwesomeRegularStarHalfStroke", - "FontAwesomeRegularStarHalf", - "FontAwesomeRegularStar", - "FontAwesomeRegularSun", - "FontAwesomeRegularThumbsDown", - "FontAwesomeRegularThumbsUp", - "FontAwesomeRegularTrashCan", - "FontAwesomeRegularUser", - "FontAwesomeRegularWindowMaximize", - "FontAwesomeRegularWindowMinimize", - "FontAwesomeRegularWindowRestore" - ], - "font_awesome_solid": [ - "FontAwesomeSolid0", - "FontAwesomeSolid1", - "FontAwesomeSolid2", - "FontAwesomeSolid3", - "FontAwesomeSolid4", - "FontAwesomeSolid5", - "FontAwesomeSolid6", - "FontAwesomeSolid7", - "FontAwesomeSolid8", - "FontAwesomeSolid9", - "FontAwesomeSolidA", - "FontAwesomeSolidAddressBook", - "FontAwesomeSolidAddressCard", - "FontAwesomeSolidAlignCenter", - "FontAwesomeSolidAlignJustify", - "FontAwesomeSolidAlignLeft", - "FontAwesomeSolidAlignRight", - "FontAwesomeSolidAnchorCircleCheck", - "FontAwesomeSolidAnchorCircleExclamation", - "FontAwesomeSolidAnchorCircleXmark", - "FontAwesomeSolidAnchorLock", - "FontAwesomeSolidAnchor", - "FontAwesomeSolidAngleDown", - "FontAwesomeSolidAngleLeft", - "FontAwesomeSolidAngleRight", - "FontAwesomeSolidAngleUp", - "FontAwesomeSolidAnglesDown", - "FontAwesomeSolidAnglesLeft", - "FontAwesomeSolidAnglesRight", - "FontAwesomeSolidAnglesUp", - "FontAwesomeSolidAnkh", - "FontAwesomeSolidAppleWhole", - "FontAwesomeSolidArchway", - "FontAwesomeSolidArrowDown19", - "FontAwesomeSolidArrowDown91", - "FontAwesomeSolidArrowDownAZ", - "FontAwesomeSolidArrowDownLong", - "FontAwesomeSolidArrowDownShortWide", - "FontAwesomeSolidArrowDownUpAcrossLine", - "FontAwesomeSolidArrowDownUpLock", - "FontAwesomeSolidArrowDownWideShort", - "FontAwesomeSolidArrowDownZA", - "FontAwesomeSolidArrowDown", - "FontAwesomeSolidArrowLeftLong", - "FontAwesomeSolidArrowLeft", - "FontAwesomeSolidArrowPointer", - "FontAwesomeSolidArrowRightArrowLeft", - "FontAwesomeSolidArrowRightFromBracket", - "FontAwesomeSolidArrowRightLong", - "FontAwesomeSolidArrowRightToBracket", - "FontAwesomeSolidArrowRightToCity", - "FontAwesomeSolidArrowRight", - "FontAwesomeSolidArrowRotateLeft", - "FontAwesomeSolidArrowRotateRight", - "FontAwesomeSolidArrowTrendDown", - "FontAwesomeSolidArrowTrendUp", - "FontAwesomeSolidArrowTurnDown", - "FontAwesomeSolidArrowTurnUp", - "FontAwesomeSolidArrowUp19", - "FontAwesomeSolidArrowUp91", - "FontAwesomeSolidArrowUpAZ", - "FontAwesomeSolidArrowUpFromBracket", - "FontAwesomeSolidArrowUpFromGroundWater", - "FontAwesomeSolidArrowUpFromWaterPump", - "FontAwesomeSolidArrowUpLong", - "FontAwesomeSolidArrowUpRightDots", - "FontAwesomeSolidArrowUpRightFromSquare", - "FontAwesomeSolidArrowUpShortWide", - "FontAwesomeSolidArrowUpWideShort", - "FontAwesomeSolidArrowUpZA", - "FontAwesomeSolidArrowUp", - "FontAwesomeSolidArrowsDownToLine", - "FontAwesomeSolidArrowsDownToPeople", - "FontAwesomeSolidArrowsLeftRightToLine", - "FontAwesomeSolidArrowsLeftRight", - "FontAwesomeSolidArrowsRotate", - "FontAwesomeSolidArrowsSpin", - "FontAwesomeSolidArrowsSplitUpAndLeft", - "FontAwesomeSolidArrowsToCircle", - "FontAwesomeSolidArrowsToDot", - "FontAwesomeSolidArrowsToEye", - "FontAwesomeSolidArrowsTurnRight", - "FontAwesomeSolidArrowsTurnToDots", - "FontAwesomeSolidArrowsUpDownLeftRight", - "FontAwesomeSolidArrowsUpDown", - "FontAwesomeSolidArrowsUpToLine", - "FontAwesomeSolidAsterisk", - "FontAwesomeSolidAt", - "FontAwesomeSolidAtom", - "FontAwesomeSolidAudioDescription", - "FontAwesomeSolidAustralSign", - "FontAwesomeSolidAward", - "FontAwesomeSolidB", - "FontAwesomeSolidBabyCarriage", - "FontAwesomeSolidBaby", - "FontAwesomeSolidBackwardFast", - "FontAwesomeSolidBackwardStep", - "FontAwesomeSolidBackward", - "FontAwesomeSolidBacon", - "FontAwesomeSolidBacteria", - "FontAwesomeSolidBacterium", - "FontAwesomeSolidBagShopping", - "FontAwesomeSolidBahai", - "FontAwesomeSolidBahtSign", - "FontAwesomeSolidBanSmoking", - "FontAwesomeSolidBan", - "FontAwesomeSolidBandage", - "FontAwesomeSolidBarcode", - "FontAwesomeSolidBarsProgress", - "FontAwesomeSolidBarsStaggered", - "FontAwesomeSolidBars", - "FontAwesomeSolidBaseballBatBall", - "FontAwesomeSolidBaseball", - "FontAwesomeSolidBasketShopping", - "FontAwesomeSolidBasketball", - "FontAwesomeSolidBath", - "FontAwesomeSolidBatteryEmpty", - "FontAwesomeSolidBatteryFull", - "FontAwesomeSolidBatteryHalf", - "FontAwesomeSolidBatteryQuarter", - "FontAwesomeSolidBatteryThreeQuarters", - "FontAwesomeSolidBedPulse", - "FontAwesomeSolidBed", - "FontAwesomeSolidBeerMugEmpty", - "FontAwesomeSolidBellConcierge", - "FontAwesomeSolidBellSlash", - "FontAwesomeSolidBell", - "FontAwesomeSolidBezierCurve", - "FontAwesomeSolidBicycle", - "FontAwesomeSolidBinoculars", - "FontAwesomeSolidBiohazard", - "FontAwesomeSolidBitcoinSign", - "FontAwesomeSolidBlenderPhone", - "FontAwesomeSolidBlender", - "FontAwesomeSolidBlog", - "FontAwesomeSolidBold", - "FontAwesomeSolidBoltLightning", - "FontAwesomeSolidBolt", - "FontAwesomeSolidBomb", - "FontAwesomeSolidBone", - "FontAwesomeSolidBong", - "FontAwesomeSolidBookAtlas", - "FontAwesomeSolidBookBible", - "FontAwesomeSolidBookBookmark", - "FontAwesomeSolidBookJournalWhills", - "FontAwesomeSolidBookMedical", - "FontAwesomeSolidBookOpenReader", - "FontAwesomeSolidBookOpen", - "FontAwesomeSolidBookQuran", - "FontAwesomeSolidBookSkull", - "FontAwesomeSolidBook", - "FontAwesomeSolidBookmark", - "FontAwesomeSolidBorderAll", - "FontAwesomeSolidBorderNone", - "FontAwesomeSolidBorderTopLeft", - "FontAwesomeSolidBoreHole", - "FontAwesomeSolidBottleDroplet", - "FontAwesomeSolidBottleWater", - "FontAwesomeSolidBowlFood", - "FontAwesomeSolidBowlRice", - "FontAwesomeSolidBowlingBall", - "FontAwesomeSolidBoxArchive", - "FontAwesomeSolidBoxOpen", - "FontAwesomeSolidBoxTissue", - "FontAwesomeSolidBox", - "FontAwesomeSolidBoxesPacking", - "FontAwesomeSolidBoxesStacked", - "FontAwesomeSolidBraille", - "FontAwesomeSolidBrain", - "FontAwesomeSolidBrazilianRealSign", - "FontAwesomeSolidBreadSlice", - "FontAwesomeSolidBridgeCircleCheck", - "FontAwesomeSolidBridgeCircleExclamation", - "FontAwesomeSolidBridgeCircleXmark", - "FontAwesomeSolidBridgeLock", - "FontAwesomeSolidBridgeWater", - "FontAwesomeSolidBridge", - "FontAwesomeSolidBriefcaseMedical", - "FontAwesomeSolidBriefcase", - "FontAwesomeSolidBroomBall", - "FontAwesomeSolidBroom", - "FontAwesomeSolidBrush", - "FontAwesomeSolidBucket", - "FontAwesomeSolidBugSlash", - "FontAwesomeSolidBug", - "FontAwesomeSolidBugs", - "FontAwesomeSolidBuildingCircleArrowRight", - "FontAwesomeSolidBuildingCircleCheck", - "FontAwesomeSolidBuildingCircleExclamation", - "FontAwesomeSolidBuildingCircleXmark", - "FontAwesomeSolidBuildingColumns", - "FontAwesomeSolidBuildingFlag", - "FontAwesomeSolidBuildingLock", - "FontAwesomeSolidBuildingNgo", - "FontAwesomeSolidBuildingShield", - "FontAwesomeSolidBuildingUn", - "FontAwesomeSolidBuildingUser", - "FontAwesomeSolidBuildingWheat", - "FontAwesomeSolidBuilding", - "FontAwesomeSolidBullhorn", - "FontAwesomeSolidBullseye", - "FontAwesomeSolidBurger", - "FontAwesomeSolidBurst", - "FontAwesomeSolidBusSimple", - "FontAwesomeSolidBus", - "FontAwesomeSolidBusinessTime", - "FontAwesomeSolidC", - "FontAwesomeSolidCakeCandles", - "FontAwesomeSolidCalculator", - "FontAwesomeSolidCalendarCheck", - "FontAwesomeSolidCalendarDay", - "FontAwesomeSolidCalendarDays", - "FontAwesomeSolidCalendarMinus", - "FontAwesomeSolidCalendarPlus", - "FontAwesomeSolidCalendarWeek", - "FontAwesomeSolidCalendarXmark", - "FontAwesomeSolidCalendar", - "FontAwesomeSolidCameraRetro", - "FontAwesomeSolidCameraRotate", - "FontAwesomeSolidCamera", - "FontAwesomeSolidCampground", - "FontAwesomeSolidCandyCane", - "FontAwesomeSolidCannabis", - "FontAwesomeSolidCapsules", - "FontAwesomeSolidCarBattery", - "FontAwesomeSolidCarBurst", - "FontAwesomeSolidCarCrash", - "FontAwesomeSolidCarOn", - "FontAwesomeSolidCarRear", - "FontAwesomeSolidCarSide", - "FontAwesomeSolidCarTunnel", - "FontAwesomeSolidCar", - "FontAwesomeSolidCaravan", - "FontAwesomeSolidCaretDown", - "FontAwesomeSolidCaretLeft", - "FontAwesomeSolidCaretRight", - "FontAwesomeSolidCaretUp", - "FontAwesomeSolidCarrot", - "FontAwesomeSolidCartArrowDown", - "FontAwesomeSolidCartFlatbedSuitcase", - "FontAwesomeSolidCartFlatbed", - "FontAwesomeSolidCartPlus", - "FontAwesomeSolidCartShopping", - "FontAwesomeSolidCashRegister", - "FontAwesomeSolidCat", - "FontAwesomeSolidCediSign", - "FontAwesomeSolidCentSign", - "FontAwesomeSolidCertificate", - "FontAwesomeSolidChair", - "FontAwesomeSolidChalkboardUser", - "FontAwesomeSolidChalkboard", - "FontAwesomeSolidChampagneGlasses", - "FontAwesomeSolidChargingStation", - "FontAwesomeSolidChartArea", - "FontAwesomeSolidChartBar", - "FontAwesomeSolidChartColumn", - "FontAwesomeSolidChartGantt", - "FontAwesomeSolidChartLine", - "FontAwesomeSolidChartPie", - "FontAwesomeSolidChartSimple", - "FontAwesomeSolidCheckDouble", - "FontAwesomeSolidCheckToSlot", - "FontAwesomeSolidCheck", - "FontAwesomeSolidCheese", - "FontAwesomeSolidChessBishop", - "FontAwesomeSolidChessBoard", - "FontAwesomeSolidChessKing", - "FontAwesomeSolidChessKnight", - "FontAwesomeSolidChessPawn", - "FontAwesomeSolidChessQueen", - "FontAwesomeSolidChessRook", - "FontAwesomeSolidChess", - "FontAwesomeSolidChevronDown", - "FontAwesomeSolidChevronLeft", - "FontAwesomeSolidChevronRight", - "FontAwesomeSolidChevronUp", - "FontAwesomeSolidChildDress", - "FontAwesomeSolidChildReaching", - "FontAwesomeSolidChildRifle", - "FontAwesomeSolidChild", - "FontAwesomeSolidChildren", - "FontAwesomeSolidChurch", - "FontAwesomeSolidCircleArrowDown", - "FontAwesomeSolidCircleArrowLeft", - "FontAwesomeSolidCircleArrowRight", - "FontAwesomeSolidCircleArrowUp", - "FontAwesomeSolidCircleCheck", - "FontAwesomeSolidCircleChevronDown", - "FontAwesomeSolidCircleChevronLeft", - "FontAwesomeSolidCircleChevronRight", - "FontAwesomeSolidCircleChevronUp", - "FontAwesomeSolidCircleDollarToSlot", - "FontAwesomeSolidCircleDot", - "FontAwesomeSolidCircleDown", - "FontAwesomeSolidCircleExclamation", - "FontAwesomeSolidCircleH", - "FontAwesomeSolidCircleHalfStroke", - "FontAwesomeSolidCircleInfo", - "FontAwesomeSolidCircleLeft", - "FontAwesomeSolidCircleMinus", - "FontAwesomeSolidCircleNodes", - "FontAwesomeSolidCircleNotch", - "FontAwesomeSolidCirclePause", - "FontAwesomeSolidCirclePlay", - "FontAwesomeSolidCirclePlus", - "FontAwesomeSolidCircleQuestion", - "FontAwesomeSolidCircleRadiation", - "FontAwesomeSolidCircleRight", - "FontAwesomeSolidCircleStop", - "FontAwesomeSolidCircleUp", - "FontAwesomeSolidCircleUser", - "FontAwesomeSolidCircleXmark", - "FontAwesomeSolidCircle", - "FontAwesomeSolidCity", - "FontAwesomeSolidClapperboard", - "FontAwesomeSolidClipboardCheck", - "FontAwesomeSolidClipboardList", - "FontAwesomeSolidClipboardQuestion", - "FontAwesomeSolidClipboardUser", - "FontAwesomeSolidClipboard", - "FontAwesomeSolidClockRotateLeft", - "FontAwesomeSolidClock", - "FontAwesomeSolidClone", - "FontAwesomeSolidClosedCaptioning", - "FontAwesomeSolidCloudArrowDown", - "FontAwesomeSolidCloudArrowUp", - "FontAwesomeSolidCloudBolt", - "FontAwesomeSolidCloudMeatball", - "FontAwesomeSolidCloudMoonRain", - "FontAwesomeSolidCloudMoon", - "FontAwesomeSolidCloudRain", - "FontAwesomeSolidCloudShowersHeavy", - "FontAwesomeSolidCloudShowersWater", - "FontAwesomeSolidCloudSunRain", - "FontAwesomeSolidCloudSun", - "FontAwesomeSolidCloud", - "FontAwesomeSolidClover", - "FontAwesomeSolidCodeBranch", - "FontAwesomeSolidCodeCommit", - "FontAwesomeSolidCodeCompare", - "FontAwesomeSolidCodeFork", - "FontAwesomeSolidCodeMerge", - "FontAwesomeSolidCodePullRequest", - "FontAwesomeSolidCode", - "FontAwesomeSolidCoins", - "FontAwesomeSolidColonSign", - "FontAwesomeSolidCommentDollar", - "FontAwesomeSolidCommentDots", - "FontAwesomeSolidCommentMedical", - "FontAwesomeSolidCommentSlash", - "FontAwesomeSolidCommentSms", - "FontAwesomeSolidComment", - "FontAwesomeSolidCommentsDollar", - "FontAwesomeSolidComments", - "FontAwesomeSolidCompactDisc", - "FontAwesomeSolidCompassDrafting", - "FontAwesomeSolidCompass", - "FontAwesomeSolidCompress", - "FontAwesomeSolidComputerMouse", - "FontAwesomeSolidComputer", - "FontAwesomeSolidCookieBite", - "FontAwesomeSolidCookie", - "FontAwesomeSolidCopy", - "FontAwesomeSolidCopyright", - "FontAwesomeSolidCouch", - "FontAwesomeSolidCow", - "FontAwesomeSolidCreditCard", - "FontAwesomeSolidCropSimple", - "FontAwesomeSolidCrop", - "FontAwesomeSolidCross", - "FontAwesomeSolidCrosshairs", - "FontAwesomeSolidCrow", - "FontAwesomeSolidCrown", - "FontAwesomeSolidCrutch", - "FontAwesomeSolidCruzeiroSign", - "FontAwesomeSolidCube", - "FontAwesomeSolidCubesStacked", - "FontAwesomeSolidCubes", - "FontAwesomeSolidD", - "FontAwesomeSolidDatabase", - "FontAwesomeSolidDeleteLeft", - "FontAwesomeSolidDemocrat", - "FontAwesomeSolidDesktop", - "FontAwesomeSolidDharmachakra", - "FontAwesomeSolidDiagramNext", - "FontAwesomeSolidDiagramPredecessor", - "FontAwesomeSolidDiagramProject", - "FontAwesomeSolidDiagramSuccessor", - "FontAwesomeSolidDiamondTurnRight", - "FontAwesomeSolidDiamond", - "FontAwesomeSolidDiceD20", - "FontAwesomeSolidDiceD6", - "FontAwesomeSolidDiceFive", - "FontAwesomeSolidDiceFour", - "FontAwesomeSolidDiceOne", - "FontAwesomeSolidDiceSix", - "FontAwesomeSolidDiceThree", - "FontAwesomeSolidDiceTwo", - "FontAwesomeSolidDice", - "FontAwesomeSolidDisease", - "FontAwesomeSolidDisplay", - "FontAwesomeSolidDivide", - "FontAwesomeSolidDna", - "FontAwesomeSolidDog", - "FontAwesomeSolidDollarSign", - "FontAwesomeSolidDolly", - "FontAwesomeSolidDongSign", - "FontAwesomeSolidDoorClosed", - "FontAwesomeSolidDoorOpen", - "FontAwesomeSolidDove", - "FontAwesomeSolidDownLeftAndUpRightToCenter", - "FontAwesomeSolidDownLong", - "FontAwesomeSolidDownload", - "FontAwesomeSolidDragon", - "FontAwesomeSolidDrawPolygon", - "FontAwesomeSolidDropletSlash", - "FontAwesomeSolidDroplet", - "FontAwesomeSolidDrumSteelpan", - "FontAwesomeSolidDrum", - "FontAwesomeSolidDrumstickBite", - "FontAwesomeSolidDumbbell", - "FontAwesomeSolidDumpsterFire", - "FontAwesomeSolidDumpster", - "FontAwesomeSolidDungeon", - "FontAwesomeSolidE", - "FontAwesomeSolidEarDeaf", - "FontAwesomeSolidEarListen", - "FontAwesomeSolidEarthAfrica", - "FontAwesomeSolidEarthAmericas", - "FontAwesomeSolidEarthAsia", - "FontAwesomeSolidEarthEurope", - "FontAwesomeSolidEarthOceania", - "FontAwesomeSolidEgg", - "FontAwesomeSolidEject", - "FontAwesomeSolidElevator", - "FontAwesomeSolidEllipsisVertical", - "FontAwesomeSolidEllipsis", - "FontAwesomeSolidEnvelopeCircleCheck", - "FontAwesomeSolidEnvelopeOpenText", - "FontAwesomeSolidEnvelopeOpen", - "FontAwesomeSolidEnvelope", - "FontAwesomeSolidEnvelopesBulk", - "FontAwesomeSolidEquals", - "FontAwesomeSolidEraser", - "FontAwesomeSolidEthernet", - "FontAwesomeSolidEuroSign", - "FontAwesomeSolidExclamation", - "FontAwesomeSolidExpand", - "FontAwesomeSolidExplosion", - "FontAwesomeSolidEyeDropper", - "FontAwesomeSolidEyeLowVision", - "FontAwesomeSolidEyeSlash", - "FontAwesomeSolidEye", - "FontAwesomeSolidF", - "FontAwesomeSolidFaceAngry", - "FontAwesomeSolidFaceDizzy", - "FontAwesomeSolidFaceFlushed", - "FontAwesomeSolidFaceFrownOpen", - "FontAwesomeSolidFaceFrown", - "FontAwesomeSolidFaceGrimace", - "FontAwesomeSolidFaceGrinBeamSweat", - "FontAwesomeSolidFaceGrinBeam", - "FontAwesomeSolidFaceGrinHearts", - "FontAwesomeSolidFaceGrinSquintTears", - "FontAwesomeSolidFaceGrinSquint", - "FontAwesomeSolidFaceGrinStars", - "FontAwesomeSolidFaceGrinTears", - "FontAwesomeSolidFaceGrinTongueSquint", - "FontAwesomeSolidFaceGrinTongueWink", - "FontAwesomeSolidFaceGrinTongue", - "FontAwesomeSolidFaceGrinWide", - "FontAwesomeSolidFaceGrinWink", - "FontAwesomeSolidFaceGrin", - "FontAwesomeSolidFaceKissBeam", - "FontAwesomeSolidFaceKissWinkHeart", - "FontAwesomeSolidFaceKiss", - "FontAwesomeSolidFaceLaughBeam", - "FontAwesomeSolidFaceLaughSquint", - "FontAwesomeSolidFaceLaughWink", - "FontAwesomeSolidFaceLaugh", - "FontAwesomeSolidFaceMehBlank", - "FontAwesomeSolidFaceMeh", - "FontAwesomeSolidFaceRollingEyes", - "FontAwesomeSolidFaceSadCry", - "FontAwesomeSolidFaceSadTear", - "FontAwesomeSolidFaceSmileBeam", - "FontAwesomeSolidFaceSmileWink", - "FontAwesomeSolidFaceSmile", - "FontAwesomeSolidFaceSurprise", - "FontAwesomeSolidFaceTired", - "FontAwesomeSolidFan", - "FontAwesomeSolidFaucetDrip", - "FontAwesomeSolidFaucet", - "FontAwesomeSolidFax", - "FontAwesomeSolidFeatherPointed", - "FontAwesomeSolidFeather", - "FontAwesomeSolidFerry", - "FontAwesomeSolidFileArrowDown", - "FontAwesomeSolidFileArrowUp", - "FontAwesomeSolidFileAudio", - "FontAwesomeSolidFileCircleCheck", - "FontAwesomeSolidFileCircleExclamation", - "FontAwesomeSolidFileCircleMinus", - "FontAwesomeSolidFileCirclePlus", - "FontAwesomeSolidFileCircleQuestion", - "FontAwesomeSolidFileCircleXmark", - "FontAwesomeSolidFileCode", - "FontAwesomeSolidFileContract", - "FontAwesomeSolidFileCsv", - "FontAwesomeSolidFileExcel", - "FontAwesomeSolidFileExport", - "FontAwesomeSolidFileImage", - "FontAwesomeSolidFileImport", - "FontAwesomeSolidFileInvoiceDollar", - "FontAwesomeSolidFileInvoice", - "FontAwesomeSolidFileLines", - "FontAwesomeSolidFileMedical", - "FontAwesomeSolidFilePdf", - "FontAwesomeSolidFilePen", - "FontAwesomeSolidFilePowerpoint", - "FontAwesomeSolidFilePrescription", - "FontAwesomeSolidFileShield", - "FontAwesomeSolidFileSignature", - "FontAwesomeSolidFileVideo", - "FontAwesomeSolidFileWaveform", - "FontAwesomeSolidFileWord", - "FontAwesomeSolidFileZipper", - "FontAwesomeSolidFile", - "FontAwesomeSolidFillDrip", - "FontAwesomeSolidFill", - "FontAwesomeSolidFilm", - "FontAwesomeSolidFilterCircleDollar", - "FontAwesomeSolidFilterCircleXmark", - "FontAwesomeSolidFilter", - "FontAwesomeSolidFingerprint", - "FontAwesomeSolidFireBurner", - "FontAwesomeSolidFireExtinguisher", - "FontAwesomeSolidFireFlameCurved", - "FontAwesomeSolidFireFlameSimple", - "FontAwesomeSolidFire", - "FontAwesomeSolidFishFins", - "FontAwesomeSolidFish", - "FontAwesomeSolidFlagCheckered", - "FontAwesomeSolidFlagUsa", - "FontAwesomeSolidFlag", - "FontAwesomeSolidFlaskVial", - "FontAwesomeSolidFlask", - "FontAwesomeSolidFloppyDisk", - "FontAwesomeSolidFlorinSign", - "FontAwesomeSolidFolderClosed", - "FontAwesomeSolidFolderMinus", - "FontAwesomeSolidFolderOpen", - "FontAwesomeSolidFolderPlus", - "FontAwesomeSolidFolderTree", - "FontAwesomeSolidFolder", - "FontAwesomeSolidFontAwesome", - "FontAwesomeSolidFont", - "FontAwesomeSolidFootball", - "FontAwesomeSolidForwardFast", - "FontAwesomeSolidForwardStep", - "FontAwesomeSolidForward", - "FontAwesomeSolidFrancSign", - "FontAwesomeSolidFrog", - "FontAwesomeSolidFutbol", - "FontAwesomeSolidG", - "FontAwesomeSolidGamepad", - "FontAwesomeSolidGasPump", - "FontAwesomeSolidGaugeHigh", - "FontAwesomeSolidGaugeSimpleHigh", - "FontAwesomeSolidGaugeSimple", - "FontAwesomeSolidGauge", - "FontAwesomeSolidGavel", - "FontAwesomeSolidGear", - "FontAwesomeSolidGears", - "FontAwesomeSolidGem", - "FontAwesomeSolidGenderless", - "FontAwesomeSolidGhost", - "FontAwesomeSolidGift", - "FontAwesomeSolidGifts", - "FontAwesomeSolidGlassWaterDroplet", - "FontAwesomeSolidGlassWater", - "FontAwesomeSolidGlasses", - "FontAwesomeSolidGlobe", - "FontAwesomeSolidGolfBallTee", - "FontAwesomeSolidGopuram", - "FontAwesomeSolidGraduationCap", - "FontAwesomeSolidGreaterThanEqual", - "FontAwesomeSolidGreaterThan", - "FontAwesomeSolidGripLinesVertical", - "FontAwesomeSolidGripLines", - "FontAwesomeSolidGripVertical", - "FontAwesomeSolidGrip", - "FontAwesomeSolidGroupArrowsRotate", - "FontAwesomeSolidGuaraniSign", - "FontAwesomeSolidGuitar", - "FontAwesomeSolidGun", - "FontAwesomeSolidH", - "FontAwesomeSolidHammer", - "FontAwesomeSolidHamsa", - "FontAwesomeSolidHandBackFist", - "FontAwesomeSolidHandDots", - "FontAwesomeSolidHandFist", - "FontAwesomeSolidHandHoldingDollar", - "FontAwesomeSolidHandHoldingDroplet", - "FontAwesomeSolidHandHoldingHand", - "FontAwesomeSolidHandHoldingHeart", - "FontAwesomeSolidHandHoldingMedical", - "FontAwesomeSolidHandHolding", - "FontAwesomeSolidHandLizard", - "FontAwesomeSolidHandMiddleFinger", - "FontAwesomeSolidHandPeace", - "FontAwesomeSolidHandPointDown", - "FontAwesomeSolidHandPointLeft", - "FontAwesomeSolidHandPointRight", - "FontAwesomeSolidHandPointUp", - "FontAwesomeSolidHandPointer", - "FontAwesomeSolidHandScissors", - "FontAwesomeSolidHandSparkles", - "FontAwesomeSolidHandSpock", - "FontAwesomeSolidHand", - "FontAwesomeSolidHandcuffs", - "FontAwesomeSolidHandsAslInterpreting", - "FontAwesomeSolidHandsBound", - "FontAwesomeSolidHandsBubbles", - "FontAwesomeSolidHandsClapping", - "FontAwesomeSolidHandsHoldingChild", - "FontAwesomeSolidHandsHoldingCircle", - "FontAwesomeSolidHandsHolding", - "FontAwesomeSolidHandsPraying", - "FontAwesomeSolidHands", - "FontAwesomeSolidHandshakeAngle", - "FontAwesomeSolidHandshakeSimpleSlash", - "FontAwesomeSolidHandshakeSimple", - "FontAwesomeSolidHandshakeSlash", - "FontAwesomeSolidHandshake", - "FontAwesomeSolidHanukiah", - "FontAwesomeSolidHardDrive", - "FontAwesomeSolidHashtag", - "FontAwesomeSolidHatCowboySide", - "FontAwesomeSolidHatCowboy", - "FontAwesomeSolidHatWizard", - "FontAwesomeSolidHeadSideCoughSlash", - "FontAwesomeSolidHeadSideCough", - "FontAwesomeSolidHeadSideMask", - "FontAwesomeSolidHeadSideVirus", - "FontAwesomeSolidHeading", - "FontAwesomeSolidHeadphonesSimple", - "FontAwesomeSolidHeadphones", - "FontAwesomeSolidHeadset", - "FontAwesomeSolidHeartCircleBolt", - "FontAwesomeSolidHeartCircleCheck", - "FontAwesomeSolidHeartCircleExclamation", - "FontAwesomeSolidHeartCircleMinus", - "FontAwesomeSolidHeartCirclePlus", - "FontAwesomeSolidHeartCircleXmark", - "FontAwesomeSolidHeartCrack", - "FontAwesomeSolidHeartPulse", - "FontAwesomeSolidHeart", - "FontAwesomeSolidHelicopterSymbol", - "FontAwesomeSolidHelicopter", - "FontAwesomeSolidHelmetSafety", - "FontAwesomeSolidHelmetUn", - "FontAwesomeSolidHighlighter", - "FontAwesomeSolidHillAvalanche", - "FontAwesomeSolidHillRockslide", - "FontAwesomeSolidHippo", - "FontAwesomeSolidHockeyPuck", - "FontAwesomeSolidHollyBerry", - "FontAwesomeSolidHorseHead", - "FontAwesomeSolidHorse", - "FontAwesomeSolidHospitalUser", - "FontAwesomeSolidHospital", - "FontAwesomeSolidHotTubPerson", - "FontAwesomeSolidHotdog", - "FontAwesomeSolidHotel", - "FontAwesomeSolidHourglassEmpty", - "FontAwesomeSolidHourglassEnd", - "FontAwesomeSolidHourglassStart", - "FontAwesomeSolidHourglass", - "FontAwesomeSolidHouseChimneyCrack", - "FontAwesomeSolidHouseChimneyMedical", - "FontAwesomeSolidHouseChimneyUser", - "FontAwesomeSolidHouseChimneyWindow", - "FontAwesomeSolidHouseChimney", - "FontAwesomeSolidHouseCircleCheck", - "FontAwesomeSolidHouseCircleExclamation", - "FontAwesomeSolidHouseCircleXmark", - "FontAwesomeSolidHouseCrack", - "FontAwesomeSolidHouseFire", - "FontAwesomeSolidHouseFlag", - "FontAwesomeSolidHouseFloodWaterCircleArrowRight", - "FontAwesomeSolidHouseFloodWater", - "FontAwesomeSolidHouseLaptop", - "FontAwesomeSolidHouseLock", - "FontAwesomeSolidHouseMedicalCircleCheck", - "FontAwesomeSolidHouseMedicalCircleExclamation", - "FontAwesomeSolidHouseMedicalCircleXmark", - "FontAwesomeSolidHouseMedicalFlag", - "FontAwesomeSolidHouseMedical", - "FontAwesomeSolidHouseSignal", - "FontAwesomeSolidHouseTsunami", - "FontAwesomeSolidHouseUser", - "FontAwesomeSolidHouse", - "FontAwesomeSolidHryvniaSign", - "FontAwesomeSolidHurricane", - "FontAwesomeSolidICursor", - "FontAwesomeSolidI", - "FontAwesomeSolidIceCream", - "FontAwesomeSolidIcicles", - "FontAwesomeSolidIcons", - "FontAwesomeSolidIdBadge", - "FontAwesomeSolidIdCardClip", - "FontAwesomeSolidIdCard", - "FontAwesomeSolidIgloo", - "FontAwesomeSolidImagePortrait", - "FontAwesomeSolidImage", - "FontAwesomeSolidImages", - "FontAwesomeSolidInbox", - "FontAwesomeSolidIndent", - "FontAwesomeSolidIndianRupeeSign", - "FontAwesomeSolidIndustry", - "FontAwesomeSolidInfinity", - "FontAwesomeSolidInfo", - "FontAwesomeSolidItalic", - "FontAwesomeSolidJ", - "FontAwesomeSolidJarWheat", - "FontAwesomeSolidJar", - "FontAwesomeSolidJedi", - "FontAwesomeSolidJetFighterUp", - "FontAwesomeSolidJetFighter", - "FontAwesomeSolidJoint", - "FontAwesomeSolidJugDetergent", - "FontAwesomeSolidK", - "FontAwesomeSolidKaaba", - "FontAwesomeSolidKey", - "FontAwesomeSolidKeyboard", - "FontAwesomeSolidKhanda", - "FontAwesomeSolidKipSign", - "FontAwesomeSolidKitMedical", - "FontAwesomeSolidKitchenSet", - "FontAwesomeSolidKiwiBird", - "FontAwesomeSolidL", - "FontAwesomeSolidLandMineOn", - "FontAwesomeSolidLandmarkDome", - "FontAwesomeSolidLandmarkFlag", - "FontAwesomeSolidLandmark", - "FontAwesomeSolidLanguage", - "FontAwesomeSolidLaptopCode", - "FontAwesomeSolidLaptopFile", - "FontAwesomeSolidLaptopMedical", - "FontAwesomeSolidLaptop", - "FontAwesomeSolidLariSign", - "FontAwesomeSolidLayerGroup", - "FontAwesomeSolidLeaf", - "FontAwesomeSolidLeftLong", - "FontAwesomeSolidLeftRight", - "FontAwesomeSolidLemon", - "FontAwesomeSolidLessThanEqual", - "FontAwesomeSolidLessThan", - "FontAwesomeSolidLifeRing", - "FontAwesomeSolidLightbulb", - "FontAwesomeSolidLinesLeaning", - "FontAwesomeSolidLinkSlash", - "FontAwesomeSolidLink", - "FontAwesomeSolidLiraSign", - "FontAwesomeSolidListCheck", - "FontAwesomeSolidListOl", - "FontAwesomeSolidListUl", - "FontAwesomeSolidList", - "FontAwesomeSolidLitecoinSign", - "FontAwesomeSolidLocationArrow", - "FontAwesomeSolidLocationCrosshairs", - "FontAwesomeSolidLocationDot", - "FontAwesomeSolidLocationPinLock", - "FontAwesomeSolidLocationPin", - "FontAwesomeSolidLockOpen", - "FontAwesomeSolidLock", - "FontAwesomeSolidLocust", - "FontAwesomeSolidLungsVirus", - "FontAwesomeSolidLungs", - "FontAwesomeSolidM", - "FontAwesomeSolidMagnet", - "FontAwesomeSolidMagnifyingGlassArrowRight", - "FontAwesomeSolidMagnifyingGlassChart", - "FontAwesomeSolidMagnifyingGlassDollar", - "FontAwesomeSolidMagnifyingGlassLocation", - "FontAwesomeSolidMagnifyingGlassMinus", - "FontAwesomeSolidMagnifyingGlassPlus", - "FontAwesomeSolidMagnifyingGlass", - "FontAwesomeSolidManatSign", - "FontAwesomeSolidMapLocationDot", - "FontAwesomeSolidMapLocation", - "FontAwesomeSolidMapPin", - "FontAwesomeSolidMap", - "FontAwesomeSolidMarker", - "FontAwesomeSolidMarsAndVenusBurst", - "FontAwesomeSolidMarsAndVenus", - "FontAwesomeSolidMarsDouble", - "FontAwesomeSolidMarsStrokeRight", - "FontAwesomeSolidMarsStrokeUp", - "FontAwesomeSolidMarsStroke", - "FontAwesomeSolidMars", - "FontAwesomeSolidMartiniGlassCitrus", - "FontAwesomeSolidMartiniGlassEmpty", - "FontAwesomeSolidMartiniGlass", - "FontAwesomeSolidMaskFace", - "FontAwesomeSolidMaskVentilator", - "FontAwesomeSolidMask", - "FontAwesomeSolidMasksTheater", - "FontAwesomeSolidMattressPillow", - "FontAwesomeSolidMaximize", - "FontAwesomeSolidMedal", - "FontAwesomeSolidMemory", - "FontAwesomeSolidMenorah", - "FontAwesomeSolidMercury", - "FontAwesomeSolidMessage", - "FontAwesomeSolidMeteor", - "FontAwesomeSolidMicrochip", - "FontAwesomeSolidMicrophoneLinesSlash", - "FontAwesomeSolidMicrophoneLines", - "FontAwesomeSolidMicrophoneSlash", - "FontAwesomeSolidMicrophone", - "FontAwesomeSolidMicroscope", - "FontAwesomeSolidMillSign", - "FontAwesomeSolidMinimize", - "FontAwesomeSolidMinus", - "FontAwesomeSolidMitten", - "FontAwesomeSolidMobileButton", - "FontAwesomeSolidMobileRetro", - "FontAwesomeSolidMobileScreenButton", - "FontAwesomeSolidMobileScreen", - "FontAwesomeSolidMobile", - "FontAwesomeSolidMoneyBill1Wave", - "FontAwesomeSolidMoneyBill1", - "FontAwesomeSolidMoneyBillTransfer", - "FontAwesomeSolidMoneyBillTrendUp", - "FontAwesomeSolidMoneyBillWave", - "FontAwesomeSolidMoneyBillWheat", - "FontAwesomeSolidMoneyBill", - "FontAwesomeSolidMoneyBills", - "FontAwesomeSolidMoneyCheckDollar", - "FontAwesomeSolidMoneyCheck", - "FontAwesomeSolidMonument", - "FontAwesomeSolidMoon", - "FontAwesomeSolidMortarPestle", - "FontAwesomeSolidMosque", - "FontAwesomeSolidMosquitoNet", - "FontAwesomeSolidMosquito", - "FontAwesomeSolidMotorcycle", - "FontAwesomeSolidMound", - "FontAwesomeSolidMountainCity", - "FontAwesomeSolidMountainSun", - "FontAwesomeSolidMountain", - "FontAwesomeSolidMugHot", - "FontAwesomeSolidMugSaucer", - "FontAwesomeSolidMusic", - "FontAwesomeSolidN", - "FontAwesomeSolidNairaSign", - "FontAwesomeSolidNetworkWired", - "FontAwesomeSolidNeuter", - "FontAwesomeSolidNewspaper", - "FontAwesomeSolidNotEqual", - "FontAwesomeSolidNoteSticky", - "FontAwesomeSolidNotesMedical", - "FontAwesomeSolidO", - "FontAwesomeSolidObjectGroup", - "FontAwesomeSolidObjectUngroup", - "FontAwesomeSolidOilCan", - "FontAwesomeSolidOilWell", - "FontAwesomeSolidOm", - "FontAwesomeSolidOtter", - "FontAwesomeSolidOutdent", - "FontAwesomeSolidP", - "FontAwesomeSolidPager", - "FontAwesomeSolidPaintRoller", - "FontAwesomeSolidPaintbrush", - "FontAwesomeSolidPalette", - "FontAwesomeSolidPallet", - "FontAwesomeSolidPanorama", - "FontAwesomeSolidPaperPlane", - "FontAwesomeSolidPaperclip", - "FontAwesomeSolidParachuteBox", - "FontAwesomeSolidParagraph", - "FontAwesomeSolidPassport", - "FontAwesomeSolidPaste", - "FontAwesomeSolidPause", - "FontAwesomeSolidPaw", - "FontAwesomeSolidPeace", - "FontAwesomeSolidPenClip", - "FontAwesomeSolidPenFancy", - "FontAwesomeSolidPenNib", - "FontAwesomeSolidPenRuler", - "FontAwesomeSolidPenToSquare", - "FontAwesomeSolidPen", - "FontAwesomeSolidPencil", - "FontAwesomeSolidPeopleArrowsLeftRight", - "FontAwesomeSolidPeopleCarryBox", - "FontAwesomeSolidPeopleGroup", - "FontAwesomeSolidPeopleLine", - "FontAwesomeSolidPeoplePulling", - "FontAwesomeSolidPeopleRobbery", - "FontAwesomeSolidPeopleRoof", - "FontAwesomeSolidPepperHot", - "FontAwesomeSolidPercent", - "FontAwesomeSolidPersonArrowDownToLine", - "FontAwesomeSolidPersonArrowUpFromLine", - "FontAwesomeSolidPersonBiking", - "FontAwesomeSolidPersonBooth", - "FontAwesomeSolidPersonBreastfeeding", - "FontAwesomeSolidPersonBurst", - "FontAwesomeSolidPersonCane", - "FontAwesomeSolidPersonChalkboard", - "FontAwesomeSolidPersonCircleCheck", - "FontAwesomeSolidPersonCircleExclamation", - "FontAwesomeSolidPersonCircleMinus", - "FontAwesomeSolidPersonCirclePlus", - "FontAwesomeSolidPersonCircleQuestion", - "FontAwesomeSolidPersonCircleXmark", - "FontAwesomeSolidPersonDigging", - "FontAwesomeSolidPersonDotsFromLine", - "FontAwesomeSolidPersonDressBurst", - "FontAwesomeSolidPersonDress", - "FontAwesomeSolidPersonDrowning", - "FontAwesomeSolidPersonFallingBurst", - "FontAwesomeSolidPersonFalling", - "FontAwesomeSolidPersonHalfDress", - "FontAwesomeSolidPersonHarassing", - "FontAwesomeSolidPersonHiking", - "FontAwesomeSolidPersonMilitaryPointing", - "FontAwesomeSolidPersonMilitaryRifle", - "FontAwesomeSolidPersonMilitaryToPerson", - "FontAwesomeSolidPersonPraying", - "FontAwesomeSolidPersonPregnant", - "FontAwesomeSolidPersonRays", - "FontAwesomeSolidPersonRifle", - "FontAwesomeSolidPersonRunning", - "FontAwesomeSolidPersonShelter", - "FontAwesomeSolidPersonSkating", - "FontAwesomeSolidPersonSkiingNordic", - "FontAwesomeSolidPersonSkiing", - "FontAwesomeSolidPersonSnowboarding", - "FontAwesomeSolidPersonSwimming", - "FontAwesomeSolidPersonThroughWindow", - "FontAwesomeSolidPersonWalkingArrowLoopLeft", - "FontAwesomeSolidPersonWalkingArrowRight", - "FontAwesomeSolidPersonWalkingDashedLineArrowRight", - "FontAwesomeSolidPersonWalkingLuggage", - "FontAwesomeSolidPersonWalkingWithCane", - "FontAwesomeSolidPersonWalking", - "FontAwesomeSolidPerson", - "FontAwesomeSolidPesetaSign", - "FontAwesomeSolidPesoSign", - "FontAwesomeSolidPhoneFlip", - "FontAwesomeSolidPhoneSlash", - "FontAwesomeSolidPhoneVolume", - "FontAwesomeSolidPhone", - "FontAwesomeSolidPhotoFilm", - "FontAwesomeSolidPiggyBank", - "FontAwesomeSolidPills", - "FontAwesomeSolidPizzaSlice", - "FontAwesomeSolidPlaceOfWorship", - "FontAwesomeSolidPlaneArrival", - "FontAwesomeSolidPlaneCircleCheck", - "FontAwesomeSolidPlaneCircleExclamation", - "FontAwesomeSolidPlaneCircleXmark", - "FontAwesomeSolidPlaneDeparture", - "FontAwesomeSolidPlaneLock", - "FontAwesomeSolidPlaneSlash", - "FontAwesomeSolidPlaneUp", - "FontAwesomeSolidPlane", - "FontAwesomeSolidPlantWilt", - "FontAwesomeSolidPlateWheat", - "FontAwesomeSolidPlay", - "FontAwesomeSolidPlugCircleBolt", - "FontAwesomeSolidPlugCircleCheck", - "FontAwesomeSolidPlugCircleExclamation", - "FontAwesomeSolidPlugCircleMinus", - "FontAwesomeSolidPlugCirclePlus", - "FontAwesomeSolidPlugCircleXmark", - "FontAwesomeSolidPlug", - "FontAwesomeSolidPlusMinus", - "FontAwesomeSolidPlus", - "FontAwesomeSolidPodcast", - "FontAwesomeSolidPooStorm", - "FontAwesomeSolidPoo", - "FontAwesomeSolidPoop", - "FontAwesomeSolidPowerOff", - "FontAwesomeSolidPrescriptionBottleMedical", - "FontAwesomeSolidPrescriptionBottle", - "FontAwesomeSolidPrescription", - "FontAwesomeSolidPrint", - "FontAwesomeSolidPumpMedical", - "FontAwesomeSolidPumpSoap", - "FontAwesomeSolidPuzzlePiece", - "FontAwesomeSolidQ", - "FontAwesomeSolidQrcode", - "FontAwesomeSolidQuestion", - "FontAwesomeSolidQuoteLeft", - "FontAwesomeSolidQuoteRight", - "FontAwesomeSolidR", - "FontAwesomeSolidRadiation", - "FontAwesomeSolidRadio", - "FontAwesomeSolidRainbow", - "FontAwesomeSolidRankingStar", - "FontAwesomeSolidReceipt", - "FontAwesomeSolidRecordVinyl", - "FontAwesomeSolidRectangleAd", - "FontAwesomeSolidRectangleList", - "FontAwesomeSolidRectangleXmark", - "FontAwesomeSolidRecycle", - "FontAwesomeSolidRegistered", - "FontAwesomeSolidRepeat", - "FontAwesomeSolidReplyAll", - "FontAwesomeSolidReply", - "FontAwesomeSolidRepublican", - "FontAwesomeSolidRestroom", - "FontAwesomeSolidRetweet", - "FontAwesomeSolidRibbon", - "FontAwesomeSolidRightFromBracket", - "FontAwesomeSolidRightLeft", - "FontAwesomeSolidRightLong", - "FontAwesomeSolidRightToBracket", - "FontAwesomeSolidRing", - "FontAwesomeSolidRoadBarrier", - "FontAwesomeSolidRoadBridge", - "FontAwesomeSolidRoadCircleCheck", - "FontAwesomeSolidRoadCircleExclamation", - "FontAwesomeSolidRoadCircleXmark", - "FontAwesomeSolidRoadLock", - "FontAwesomeSolidRoadSpikes", - "FontAwesomeSolidRoad", - "FontAwesomeSolidRobot", - "FontAwesomeSolidRocket", - "FontAwesomeSolidRotateLeft", - "FontAwesomeSolidRotateRight", - "FontAwesomeSolidRotate", - "FontAwesomeSolidRoute", - "FontAwesomeSolidRss", - "FontAwesomeSolidRubleSign", - "FontAwesomeSolidRug", - "FontAwesomeSolidRulerCombined", - "FontAwesomeSolidRulerHorizontal", - "FontAwesomeSolidRulerVertical", - "FontAwesomeSolidRuler", - "FontAwesomeSolidRupeeSign", - "FontAwesomeSolidRupiahSign", - "FontAwesomeSolidS", - "FontAwesomeSolidSackDollar", - "FontAwesomeSolidSackXmark", - "FontAwesomeSolidSailboat", - "FontAwesomeSolidSatelliteDish", - "FontAwesomeSolidSatellite", - "FontAwesomeSolidScaleBalanced", - "FontAwesomeSolidScaleUnbalancedFlip", - "FontAwesomeSolidScaleUnbalanced", - "FontAwesomeSolidSchoolCircleCheck", - "FontAwesomeSolidSchoolCircleExclamation", - "FontAwesomeSolidSchoolCircleXmark", - "FontAwesomeSolidSchoolFlag", - "FontAwesomeSolidSchoolLock", - "FontAwesomeSolidSchool", - "FontAwesomeSolidScissors", - "FontAwesomeSolidScrewdriverWrench", - "FontAwesomeSolidScrewdriver", - "FontAwesomeSolidScrollTorah", - "FontAwesomeSolidScroll", - "FontAwesomeSolidSdCard", - "FontAwesomeSolidSection", - "FontAwesomeSolidSeedling", - "FontAwesomeSolidServer", - "FontAwesomeSolidShapes", - "FontAwesomeSolidShareFromSquare", - "FontAwesomeSolidShareNodes", - "FontAwesomeSolidShare", - "FontAwesomeSolidSheetPlastic", - "FontAwesomeSolidShekelSign", - "FontAwesomeSolidShieldBlank", - "FontAwesomeSolidShieldCat", - "FontAwesomeSolidShieldDog", - "FontAwesomeSolidShieldHalved", - "FontAwesomeSolidShieldHeart", - "FontAwesomeSolidShieldVirus", - "FontAwesomeSolidShield", - "FontAwesomeSolidShip", - "FontAwesomeSolidShirt", - "FontAwesomeSolidShoePrints", - "FontAwesomeSolidShopLock", - "FontAwesomeSolidShopSlash", - "FontAwesomeSolidShop", - "FontAwesomeSolidShower", - "FontAwesomeSolidShrimp", - "FontAwesomeSolidShuffle", - "FontAwesomeSolidShuttleSpace", - "FontAwesomeSolidSignHanging", - "FontAwesomeSolidSignal", - "FontAwesomeSolidSignature", - "FontAwesomeSolidSignsPost", - "FontAwesomeSolidSimCard", - "FontAwesomeSolidSink", - "FontAwesomeSolidSitemap", - "FontAwesomeSolidSkullCrossbones", - "FontAwesomeSolidSkull", - "FontAwesomeSolidSlash", - "FontAwesomeSolidSleigh", - "FontAwesomeSolidSliders", - "FontAwesomeSolidSmog", - "FontAwesomeSolidSmoking", - "FontAwesomeSolidSnowflake", - "FontAwesomeSolidSnowman", - "FontAwesomeSolidSnowplow", - "FontAwesomeSolidSoap", - "FontAwesomeSolidSocks", - "FontAwesomeSolidSolarPanel", - "FontAwesomeSolidSortDown", - "FontAwesomeSolidSortUp", - "FontAwesomeSolidSort", - "FontAwesomeSolidSpa", - "FontAwesomeSolidSpaghettiMonsterFlying", - "FontAwesomeSolidSpellCheck", - "FontAwesomeSolidSpider", - "FontAwesomeSolidSpinner", - "FontAwesomeSolidSplotch", - "FontAwesomeSolidSpoon", - "FontAwesomeSolidSprayCanSparkles", - "FontAwesomeSolidSprayCan", - "FontAwesomeSolidSquareArrowUpRight", - "FontAwesomeSolidSquareCaretDown", - "FontAwesomeSolidSquareCaretLeft", - "FontAwesomeSolidSquareCaretRight", - "FontAwesomeSolidSquareCaretUp", - "FontAwesomeSolidSquareCheck", - "FontAwesomeSolidSquareEnvelope", - "FontAwesomeSolidSquareFull", - "FontAwesomeSolidSquareH", - "FontAwesomeSolidSquareMinus", - "FontAwesomeSolidSquareNfi", - "FontAwesomeSolidSquareParking", - "FontAwesomeSolidSquarePen", - "FontAwesomeSolidSquarePersonConfined", - "FontAwesomeSolidSquarePhoneFlip", - "FontAwesomeSolidSquarePhone", - "FontAwesomeSolidSquarePlus", - "FontAwesomeSolidSquarePollHorizontal", - "FontAwesomeSolidSquarePollVertical", - "FontAwesomeSolidSquareRootVariable", - "FontAwesomeSolidSquareRss", - "FontAwesomeSolidSquareShareNodes", - "FontAwesomeSolidSquareUpRight", - "FontAwesomeSolidSquareVirus", - "FontAwesomeSolidSquareXmark", - "FontAwesomeSolidSquare", - "FontAwesomeSolidStaffAesculapius", - "FontAwesomeSolidStairs", - "FontAwesomeSolidStamp", - "FontAwesomeSolidStarAndCrescent", - "FontAwesomeSolidStarHalfStroke", - "FontAwesomeSolidStarHalf", - "FontAwesomeSolidStarOfDavid", - "FontAwesomeSolidStarOfLife", - "FontAwesomeSolidStar", - "FontAwesomeSolidSterlingSign", - "FontAwesomeSolidStethoscope", - "FontAwesomeSolidStop", - "FontAwesomeSolidStopwatch20", - "FontAwesomeSolidStopwatch", - "FontAwesomeSolidStoreSlash", - "FontAwesomeSolidStore", - "FontAwesomeSolidStreetView", - "FontAwesomeSolidStrikethrough", - "FontAwesomeSolidStroopwafel", - "FontAwesomeSolidSubscript", - "FontAwesomeSolidSuitcaseMedical", - "FontAwesomeSolidSuitcaseRolling", - "FontAwesomeSolidSuitcase", - "FontAwesomeSolidSunPlantWilt", - "FontAwesomeSolidSun", - "FontAwesomeSolidSuperscript", - "FontAwesomeSolidSwatchbook", - "FontAwesomeSolidSynagogue", - "FontAwesomeSolidSyringe", - "FontAwesomeSolidT", - "FontAwesomeSolidTableCellsLarge", - "FontAwesomeSolidTableCells", - "FontAwesomeSolidTableColumns", - "FontAwesomeSolidTableList", - "FontAwesomeSolidTableTennisPaddleBall", - "FontAwesomeSolidTable", - "FontAwesomeSolidTabletButton", - "FontAwesomeSolidTabletScreenButton", - "FontAwesomeSolidTablet", - "FontAwesomeSolidTablets", - "FontAwesomeSolidTachographDigital", - "FontAwesomeSolidTag", - "FontAwesomeSolidTags", - "FontAwesomeSolidTape", - "FontAwesomeSolidTarpDroplet", - "FontAwesomeSolidTarp", - "FontAwesomeSolidTaxi", - "FontAwesomeSolidTeethOpen", - "FontAwesomeSolidTeeth", - "FontAwesomeSolidTemperatureArrowDown", - "FontAwesomeSolidTemperatureArrowUp", - "FontAwesomeSolidTemperatureEmpty", - "FontAwesomeSolidTemperatureFull", - "FontAwesomeSolidTemperatureHalf", - "FontAwesomeSolidTemperatureHigh", - "FontAwesomeSolidTemperatureLow", - "FontAwesomeSolidTemperatureQuarter", - "FontAwesomeSolidTemperatureThreeQuarters", - "FontAwesomeSolidTengeSign", - "FontAwesomeSolidTentArrowDownToLine", - "FontAwesomeSolidTentArrowLeftRight", - "FontAwesomeSolidTentArrowTurnLeft", - "FontAwesomeSolidTentArrowsDown", - "FontAwesomeSolidTent", - "FontAwesomeSolidTents", - "FontAwesomeSolidTerminal", - "FontAwesomeSolidTextHeight", - "FontAwesomeSolidTextSlash", - "FontAwesomeSolidTextWidth", - "FontAwesomeSolidThermometer", - "FontAwesomeSolidThumbsDown", - "FontAwesomeSolidThumbsUp", - "FontAwesomeSolidThumbtack", - "FontAwesomeSolidTicketSimple", - "FontAwesomeSolidTicket", - "FontAwesomeSolidTimeline", - "FontAwesomeSolidToggleOff", - "FontAwesomeSolidToggleOn", - "FontAwesomeSolidToiletPaperSlash", - "FontAwesomeSolidToiletPaper", - "FontAwesomeSolidToiletPortable", - "FontAwesomeSolidToilet", - "FontAwesomeSolidToiletsPortable", - "FontAwesomeSolidToolbox", - "FontAwesomeSolidTooth", - "FontAwesomeSolidToriiGate", - "FontAwesomeSolidTornado", - "FontAwesomeSolidTowerBroadcast", - "FontAwesomeSolidTowerCell", - "FontAwesomeSolidTowerObservation", - "FontAwesomeSolidTractor", - "FontAwesomeSolidTrademark", - "FontAwesomeSolidTrafficLight", - "FontAwesomeSolidTrailer", - "FontAwesomeSolidTrainSubway", - "FontAwesomeSolidTrainTram", - "FontAwesomeSolidTrain", - "FontAwesomeSolidTransgender", - "FontAwesomeSolidTrashArrowUp", - "FontAwesomeSolidTrashCanArrowUp", - "FontAwesomeSolidTrashCan", - "FontAwesomeSolidTrash", - "FontAwesomeSolidTreeCity", - "FontAwesomeSolidTree", - "FontAwesomeSolidTriangleExclamation", - "FontAwesomeSolidTrophy", - "FontAwesomeSolidTrowelBricks", - "FontAwesomeSolidTrowel", - "FontAwesomeSolidTruckArrowRight", - "FontAwesomeSolidTruckDroplet", - "FontAwesomeSolidTruckFast", - "FontAwesomeSolidTruckFieldUn", - "FontAwesomeSolidTruckField", - "FontAwesomeSolidTruckFront", - "FontAwesomeSolidTruckMedical", - "FontAwesomeSolidTruckMonster", - "FontAwesomeSolidTruckMoving", - "FontAwesomeSolidTruckPickup", - "FontAwesomeSolidTruckPlane", - "FontAwesomeSolidTruckRampBox", - "FontAwesomeSolidTruck", - "FontAwesomeSolidTty", - "FontAwesomeSolidTurkishLiraSign", - "FontAwesomeSolidTurnDown", - "FontAwesomeSolidTurnUp", - "FontAwesomeSolidTv", - "FontAwesomeSolidU", - "FontAwesomeSolidUmbrellaBeach", - "FontAwesomeSolidUmbrella", - "FontAwesomeSolidUnderline", - "FontAwesomeSolidUniversalAccess", - "FontAwesomeSolidUnlockKeyhole", - "FontAwesomeSolidUnlock", - "FontAwesomeSolidUpDownLeftRight", - "FontAwesomeSolidUpDown", - "FontAwesomeSolidUpLong", - "FontAwesomeSolidUpRightAndDownLeftFromCenter", - "FontAwesomeSolidUpRightFromSquare", - "FontAwesomeSolidUpload", - "FontAwesomeSolidUserAstronaut", - "FontAwesomeSolidUserCheck", - "FontAwesomeSolidUserClock", - "FontAwesomeSolidUserDoctor", - "FontAwesomeSolidUserGear", - "FontAwesomeSolidUserGraduate", - "FontAwesomeSolidUserGroup", - "FontAwesomeSolidUserInjured", - "FontAwesomeSolidUserLargeSlash", - "FontAwesomeSolidUserLarge", - "FontAwesomeSolidUserLock", - "FontAwesomeSolidUserMinus", - "FontAwesomeSolidUserNinja", - "FontAwesomeSolidUserNurse", - "FontAwesomeSolidUserPen", - "FontAwesomeSolidUserPlus", - "FontAwesomeSolidUserSecret", - "FontAwesomeSolidUserShield", - "FontAwesomeSolidUserSlash", - "FontAwesomeSolidUserTag", - "FontAwesomeSolidUserTie", - "FontAwesomeSolidUserXmark", - "FontAwesomeSolidUser", - "FontAwesomeSolidUsersBetweenLines", - "FontAwesomeSolidUsersGear", - "FontAwesomeSolidUsersLine", - "FontAwesomeSolidUsersRays", - "FontAwesomeSolidUsersRectangle", - "FontAwesomeSolidUsersSlash", - "FontAwesomeSolidUsersViewfinder", - "FontAwesomeSolidUsers", - "FontAwesomeSolidUtensils", - "FontAwesomeSolidV", - "FontAwesomeSolidVanShuttle", - "FontAwesomeSolidVault", - "FontAwesomeSolidVectorSquare", - "FontAwesomeSolidVenusDouble", - "FontAwesomeSolidVenusMars", - "FontAwesomeSolidVenus", - "FontAwesomeSolidVestPatches", - "FontAwesomeSolidVest", - "FontAwesomeSolidVialCircleCheck", - "FontAwesomeSolidVialVirus", - "FontAwesomeSolidVial", - "FontAwesomeSolidVials", - "FontAwesomeSolidVideoSlash", - "FontAwesomeSolidVideo", - "FontAwesomeSolidVihara", - "FontAwesomeSolidVirusCovidSlash", - "FontAwesomeSolidVirusCovid", - "FontAwesomeSolidVirusSlash", - "FontAwesomeSolidVirus", - "FontAwesomeSolidViruses", - "FontAwesomeSolidVoicemail", - "FontAwesomeSolidVolcano", - "FontAwesomeSolidVolleyball", - "FontAwesomeSolidVolumeHigh", - "FontAwesomeSolidVolumeLow", - "FontAwesomeSolidVolumeOff", - "FontAwesomeSolidVolumeXmark", - "FontAwesomeSolidVrCardboard", - "FontAwesomeSolidW", - "FontAwesomeSolidWalkieTalkie", - "FontAwesomeSolidWallet", - "FontAwesomeSolidWandMagicSparkles", - "FontAwesomeSolidWandMagic", - "FontAwesomeSolidWandSparkles", - "FontAwesomeSolidWarehouse", - "FontAwesomeSolidWaterLadder", - "FontAwesomeSolidWater", - "FontAwesomeSolidWaveSquare", - "FontAwesomeSolidWeightHanging", - "FontAwesomeSolidWeightScale", - "FontAwesomeSolidWheatAwnCircleExclamation", - "FontAwesomeSolidWheatAwn", - "FontAwesomeSolidWheelchairMove", - "FontAwesomeSolidWheelchair", - "FontAwesomeSolidWhiskeyGlass", - "FontAwesomeSolidWifi", - "FontAwesomeSolidWind", - "FontAwesomeSolidWindowMaximize", - "FontAwesomeSolidWindowMinimize", - "FontAwesomeSolidWindowRestore", - "FontAwesomeSolidWineBottle", - "FontAwesomeSolidWineGlassEmpty", - "FontAwesomeSolidWineGlass", - "FontAwesomeSolidWonSign", - "FontAwesomeSolidWorm", - "FontAwesomeSolidWrench", - "FontAwesomeSolidXRay", - "FontAwesomeSolidX", - "FontAwesomeSolidXmark", - "FontAwesomeSolidXmarksLines", - "FontAwesomeSolidY", - "FontAwesomeSolidYenSign", - "FontAwesomeSolidYinYang", - "FontAwesomeSolidZ" - ], - "generator": [ - "quote", - "convert_case", - "proc-macro2", - "regex", - "base64" - ], - "heroicons_mini_solid": [ - "HeroiconsMiniSolidAcademicCap", - "HeroiconsMiniSolidAdjustmentsHorizontal", - "HeroiconsMiniSolidAdjustmentsVertical", - "HeroiconsMiniSolidArchiveBoxArrowDown", - "HeroiconsMiniSolidArchiveBoxXMark", - "HeroiconsMiniSolidArchiveBox", - "HeroiconsMiniSolidArrowDownCircle", - "HeroiconsMiniSolidArrowDownLeft", - "HeroiconsMiniSolidArrowDownOnSquareStack", - "HeroiconsMiniSolidArrowDownOnSquare", - "HeroiconsMiniSolidArrowDownRight", - "HeroiconsMiniSolidArrowDownTray", - "HeroiconsMiniSolidArrowDown", - "HeroiconsMiniSolidArrowLeftCircle", - "HeroiconsMiniSolidArrowLeftOnRectangle", - "HeroiconsMiniSolidArrowLeft", - "HeroiconsMiniSolidArrowLongDown", - "HeroiconsMiniSolidArrowLongLeft", - "HeroiconsMiniSolidArrowLongRight", - "HeroiconsMiniSolidArrowLongUp", - "HeroiconsMiniSolidArrowPathRoundedSquare", - "HeroiconsMiniSolidArrowPath", - "HeroiconsMiniSolidArrowRightCircle", - "HeroiconsMiniSolidArrowRightOnRectangle", - "HeroiconsMiniSolidArrowRight", - "HeroiconsMiniSolidArrowSmallDown", - "HeroiconsMiniSolidArrowSmallLeft", - "HeroiconsMiniSolidArrowSmallRight", - "HeroiconsMiniSolidArrowSmallUp", - "HeroiconsMiniSolidArrowTopRightOnSquare", - "HeroiconsMiniSolidArrowTrendingDown", - "HeroiconsMiniSolidArrowTrendingUp", - "HeroiconsMiniSolidArrowUpCircle", - "HeroiconsMiniSolidArrowUpLeft", - "HeroiconsMiniSolidArrowUpOnSquareStack", - "HeroiconsMiniSolidArrowUpOnSquare", - "HeroiconsMiniSolidArrowUpRight", - "HeroiconsMiniSolidArrowUpTray", - "HeroiconsMiniSolidArrowUp", - "HeroiconsMiniSolidArrowUturnDown", - "HeroiconsMiniSolidArrowUturnLeft", - "HeroiconsMiniSolidArrowUturnRight", - "HeroiconsMiniSolidArrowUturnUp", - "HeroiconsMiniSolidArrowsPointingIn", - "HeroiconsMiniSolidArrowsPointingOut", - "HeroiconsMiniSolidArrowsRightLeft", - "HeroiconsMiniSolidArrowsUpDown", - "HeroiconsMiniSolidAtSymbol", - "HeroiconsMiniSolidBackspace", - "HeroiconsMiniSolidBackward", - "HeroiconsMiniSolidBanknotes", - "HeroiconsMiniSolidBars2", - "HeroiconsMiniSolidBars3BottomLeft", - "HeroiconsMiniSolidBars3BottomRight", - "HeroiconsMiniSolidBars3CenterLeft", - "HeroiconsMiniSolidBars3", - "HeroiconsMiniSolidBars4", - "HeroiconsMiniSolidBarsArrowDown", - "HeroiconsMiniSolidBarsArrowUp", - "HeroiconsMiniSolidBattery0", - "HeroiconsMiniSolidBattery100", - "HeroiconsMiniSolidBattery50", - "HeroiconsMiniSolidBeaker", - "HeroiconsMiniSolidBellAlert", - "HeroiconsMiniSolidBellSlash", - "HeroiconsMiniSolidBellSnooze", - "HeroiconsMiniSolidBell", - "HeroiconsMiniSolidBoltSlash", - "HeroiconsMiniSolidBolt", - "HeroiconsMiniSolidBookOpen", - "HeroiconsMiniSolidBookmarkSlash", - "HeroiconsMiniSolidBookmarkSquare", - "HeroiconsMiniSolidBookmark", - "HeroiconsMiniSolidBriefcase", - "HeroiconsMiniSolidBugAnt", - "HeroiconsMiniSolidBuildingLibrary", - "HeroiconsMiniSolidBuildingOffice2", - "HeroiconsMiniSolidBuildingOffice", - "HeroiconsMiniSolidBuildingStorefront", - "HeroiconsMiniSolidCake", - "HeroiconsMiniSolidCalculator", - "HeroiconsMiniSolidCalendarDays", - "HeroiconsMiniSolidCalendar", - "HeroiconsMiniSolidCamera", - "HeroiconsMiniSolidChartBarSquare", - "HeroiconsMiniSolidChartBar", - "HeroiconsMiniSolidChartPie", - "HeroiconsMiniSolidChatBubbleBottomCenterText", - "HeroiconsMiniSolidChatBubbleBottomCenter", - "HeroiconsMiniSolidChatBubbleLeftEllipsis", - "HeroiconsMiniSolidChatBubbleLeftRight", - "HeroiconsMiniSolidChatBubbleLeft", - "HeroiconsMiniSolidChatBubbleOvalLeftEllipsis", - "HeroiconsMiniSolidChatBubbleOvalLeft", - "HeroiconsMiniSolidCheckBadge", - "HeroiconsMiniSolidCheckCircle", - "HeroiconsMiniSolidCheck", - "HeroiconsMiniSolidChevronDoubleDown", - "HeroiconsMiniSolidChevronDoubleLeft", - "HeroiconsMiniSolidChevronDoubleRight", - "HeroiconsMiniSolidChevronDoubleUp", - "HeroiconsMiniSolidChevronDown", - "HeroiconsMiniSolidChevronLeft", - "HeroiconsMiniSolidChevronRight", - "HeroiconsMiniSolidChevronUpDown", - "HeroiconsMiniSolidChevronUp", - "HeroiconsMiniSolidCircleStack", - "HeroiconsMiniSolidClipboardDocumentCheck", - "HeroiconsMiniSolidClipboardDocumentList", - "HeroiconsMiniSolidClipboardDocument", - "HeroiconsMiniSolidClipboard", - "HeroiconsMiniSolidClock", - "HeroiconsMiniSolidCloudArrowDown", - "HeroiconsMiniSolidCloudArrowUp", - "HeroiconsMiniSolidCloud", - "HeroiconsMiniSolidCodeBracketSquare", - "HeroiconsMiniSolidCodeBracket", - "HeroiconsMiniSolidCog6Tooth", - "HeroiconsMiniSolidCog8Tooth", - "HeroiconsMiniSolidCog", - "HeroiconsMiniSolidCommandLine", - "HeroiconsMiniSolidComputerDesktop", - "HeroiconsMiniSolidCpuChip", - "HeroiconsMiniSolidCreditCard", - "HeroiconsMiniSolidCubeTransparent", - "HeroiconsMiniSolidCube", - "HeroiconsMiniSolidCurrencyBangladeshi", - "HeroiconsMiniSolidCurrencyDollar", - "HeroiconsMiniSolidCurrencyEuro", - "HeroiconsMiniSolidCurrencyPound", - "HeroiconsMiniSolidCurrencyRupee", - "HeroiconsMiniSolidCurrencyYen", - "HeroiconsMiniSolidCursorArrowRays", - "HeroiconsMiniSolidCursorArrowRipple", - "HeroiconsMiniSolidDevicePhoneMobile", - "HeroiconsMiniSolidDeviceTablet", - "HeroiconsMiniSolidDocumentArrowDown", - "HeroiconsMiniSolidDocumentArrowUp", - "HeroiconsMiniSolidDocumentChartBar", - "HeroiconsMiniSolidDocumentCheck", - "HeroiconsMiniSolidDocumentDuplicate", - "HeroiconsMiniSolidDocumentMagnifyingGlass", - "HeroiconsMiniSolidDocumentMinus", - "HeroiconsMiniSolidDocumentPlus", - "HeroiconsMiniSolidDocumentText", - "HeroiconsMiniSolidDocument", - "HeroiconsMiniSolidEllipsisHorizontalCircle", - "HeroiconsMiniSolidEllipsisHorizontal", - "HeroiconsMiniSolidEllipsisVertical", - "HeroiconsMiniSolidEnvelopeOpen", - "HeroiconsMiniSolidEnvelope", - "HeroiconsMiniSolidExclamationCircle", - "HeroiconsMiniSolidExclamationTriangle", - "HeroiconsMiniSolidEyeDropper", - "HeroiconsMiniSolidEyeSlash", - "HeroiconsMiniSolidEye", - "HeroiconsMiniSolidFaceFrown", - "HeroiconsMiniSolidFaceSmile", - "HeroiconsMiniSolidFilm", - "HeroiconsMiniSolidFingerPrint", - "HeroiconsMiniSolidFire", - "HeroiconsMiniSolidFlag", - "HeroiconsMiniSolidFolderArrowDown", - "HeroiconsMiniSolidFolderMinus", - "HeroiconsMiniSolidFolderOpen", - "HeroiconsMiniSolidFolderPlus", - "HeroiconsMiniSolidFolder", - "HeroiconsMiniSolidForward", - "HeroiconsMiniSolidFunnel", - "HeroiconsMiniSolidGif", - "HeroiconsMiniSolidGiftTop", - "HeroiconsMiniSolidGift", - "HeroiconsMiniSolidGlobeAlt", - "HeroiconsMiniSolidGlobeAmericas", - "HeroiconsMiniSolidGlobeAsiaAustralia", - "HeroiconsMiniSolidGlobeEuropeAfrica", - "HeroiconsMiniSolidHandRaised", - "HeroiconsMiniSolidHandThumbDown", - "HeroiconsMiniSolidHandThumbUp", - "HeroiconsMiniSolidHashtag", - "HeroiconsMiniSolidHeart", - "HeroiconsMiniSolidHomeModern", - "HeroiconsMiniSolidHome", - "HeroiconsMiniSolidIdentification", - "HeroiconsMiniSolidInboxArrowDown", - "HeroiconsMiniSolidInboxStack", - "HeroiconsMiniSolidInbox", - "HeroiconsMiniSolidInformationCircle", - "HeroiconsMiniSolidKey", - "HeroiconsMiniSolidLanguage", - "HeroiconsMiniSolidLifebuoy", - "HeroiconsMiniSolidLightBulb", - "HeroiconsMiniSolidLink", - "HeroiconsMiniSolidListBullet", - "HeroiconsMiniSolidLockClosed", - "HeroiconsMiniSolidLockOpen", - "HeroiconsMiniSolidMagnifyingGlassCircle", - "HeroiconsMiniSolidMagnifyingGlassMinus", - "HeroiconsMiniSolidMagnifyingGlassPlus", - "HeroiconsMiniSolidMagnifyingGlass", - "HeroiconsMiniSolidMapPin", - "HeroiconsMiniSolidMap", - "HeroiconsMiniSolidMegaphone", - "HeroiconsMiniSolidMicrophone", - "HeroiconsMiniSolidMinusCircle", - "HeroiconsMiniSolidMinusSmall", - "HeroiconsMiniSolidMinus", - "HeroiconsMiniSolidMoon", - "HeroiconsMiniSolidMusicalNote", - "HeroiconsMiniSolidNewspaper", - "HeroiconsMiniSolidNoSymbol", - "HeroiconsMiniSolidPaintBrush", - "HeroiconsMiniSolidPaperAirplane", - "HeroiconsMiniSolidPaperClip", - "HeroiconsMiniSolidPauseCircle", - "HeroiconsMiniSolidPause", - "HeroiconsMiniSolidPencilSquare", - "HeroiconsMiniSolidPencil", - "HeroiconsMiniSolidPhoneArrowDownLeft", - "HeroiconsMiniSolidPhoneArrowUpRight", - "HeroiconsMiniSolidPhoneXMark", - "HeroiconsMiniSolidPhone", - "HeroiconsMiniSolidPhoto", - "HeroiconsMiniSolidPlayCircle", - "HeroiconsMiniSolidPlayPause", - "HeroiconsMiniSolidPlay", - "HeroiconsMiniSolidPlusCircle", - "HeroiconsMiniSolidPlusSmall", - "HeroiconsMiniSolidPlus", - "HeroiconsMiniSolidPower", - "HeroiconsMiniSolidPresentationChartBar", - "HeroiconsMiniSolidPresentationChartLine", - "HeroiconsMiniSolidPrinter", - "HeroiconsMiniSolidPuzzlePiece", - "HeroiconsMiniSolidQrCode", - "HeroiconsMiniSolidQuestionMarkCircle", - "HeroiconsMiniSolidQueueList", - "HeroiconsMiniSolidRadio", - "HeroiconsMiniSolidReceiptPercent", - "HeroiconsMiniSolidReceiptRefund", - "HeroiconsMiniSolidRectangleGroup", - "HeroiconsMiniSolidRectangleStack", - "HeroiconsMiniSolidRocketLaunch", - "HeroiconsMiniSolidRss", - "HeroiconsMiniSolidScale", - "HeroiconsMiniSolidScissors", - "HeroiconsMiniSolidServerStack", - "HeroiconsMiniSolidServer", - "HeroiconsMiniSolidShare", - "HeroiconsMiniSolidShieldCheck", - "HeroiconsMiniSolidShieldExclamation", - "HeroiconsMiniSolidShoppingBag", - "HeroiconsMiniSolidShoppingCart", - "HeroiconsMiniSolidSignalSlash", - "HeroiconsMiniSolidSignal", - "HeroiconsMiniSolidSparkles", - "HeroiconsMiniSolidSpeakerWave", - "HeroiconsMiniSolidSpeakerXMark", - "HeroiconsMiniSolidSquare2Stack", - "HeroiconsMiniSolidSquare3Stack3D", - "HeroiconsMiniSolidSquares2X2", - "HeroiconsMiniSolidSquaresPlus", - "HeroiconsMiniSolidStar", - "HeroiconsMiniSolidStopCircle", - "HeroiconsMiniSolidStop", - "HeroiconsMiniSolidSun", - "HeroiconsMiniSolidSwatch", - "HeroiconsMiniSolidTableCells", - "HeroiconsMiniSolidTag", - "HeroiconsMiniSolidTicket", - "HeroiconsMiniSolidTrash", - "HeroiconsMiniSolidTrophy", - "HeroiconsMiniSolidTruck", - "HeroiconsMiniSolidTv", - "HeroiconsMiniSolidUserCircle", - "HeroiconsMiniSolidUserGroup", - "HeroiconsMiniSolidUserMinus", - "HeroiconsMiniSolidUserPlus", - "HeroiconsMiniSolidUser", - "HeroiconsMiniSolidUsers", - "HeroiconsMiniSolidVariable", - "HeroiconsMiniSolidVideoCameraSlash", - "HeroiconsMiniSolidVideoCamera", - "HeroiconsMiniSolidViewColumns", - "HeroiconsMiniSolidViewfinderCircle", - "HeroiconsMiniSolidWallet", - "HeroiconsMiniSolidWifi", - "HeroiconsMiniSolidWindow", - "HeroiconsMiniSolidWrenchScrewdriver", - "HeroiconsMiniSolidWrench", - "HeroiconsMiniSolidXCircle", - "HeroiconsMiniSolidXMark" - ], - "heroicons_outline": [ - "HeroiconsOutlineAcademicCap", - "HeroiconsOutlineAdjustmentsHorizontal", - "HeroiconsOutlineAdjustmentsVertical", - "HeroiconsOutlineArchiveBoxArrowDown", - "HeroiconsOutlineArchiveBoxXMark", - "HeroiconsOutlineArchiveBox", - "HeroiconsOutlineArrowDownCircle", - "HeroiconsOutlineArrowDownLeft", - "HeroiconsOutlineArrowDownOnSquareStack", - "HeroiconsOutlineArrowDownOnSquare", - "HeroiconsOutlineArrowDownRight", - "HeroiconsOutlineArrowDownTray", - "HeroiconsOutlineArrowDown", - "HeroiconsOutlineArrowLeftCircle", - "HeroiconsOutlineArrowLeftOnRectangle", - "HeroiconsOutlineArrowLeft", - "HeroiconsOutlineArrowLongDown", - "HeroiconsOutlineArrowLongLeft", - "HeroiconsOutlineArrowLongRight", - "HeroiconsOutlineArrowLongUp", - "HeroiconsOutlineArrowPathRoundedSquare", - "HeroiconsOutlineArrowPath", - "HeroiconsOutlineArrowRightCircle", - "HeroiconsOutlineArrowRightOnRectangle", - "HeroiconsOutlineArrowRight", - "HeroiconsOutlineArrowSmallDown", - "HeroiconsOutlineArrowSmallLeft", - "HeroiconsOutlineArrowSmallRight", - "HeroiconsOutlineArrowSmallUp", - "HeroiconsOutlineArrowTopRightOnSquare", - "HeroiconsOutlineArrowTrendingDown", - "HeroiconsOutlineArrowTrendingUp", - "HeroiconsOutlineArrowUpCircle", - "HeroiconsOutlineArrowUpLeft", - "HeroiconsOutlineArrowUpOnSquareStack", - "HeroiconsOutlineArrowUpOnSquare", - "HeroiconsOutlineArrowUpRight", - "HeroiconsOutlineArrowUpTray", - "HeroiconsOutlineArrowUp", - "HeroiconsOutlineArrowUturnDown", - "HeroiconsOutlineArrowUturnLeft", - "HeroiconsOutlineArrowUturnRight", - "HeroiconsOutlineArrowUturnUp", - "HeroiconsOutlineArrowsPointingIn", - "HeroiconsOutlineArrowsPointingOut", - "HeroiconsOutlineArrowsRightLeft", - "HeroiconsOutlineArrowsUpDown", - "HeroiconsOutlineAtSymbol", - "HeroiconsOutlineBackspace", - "HeroiconsOutlineBackward", - "HeroiconsOutlineBanknotes", - "HeroiconsOutlineBars2", - "HeroiconsOutlineBars3BottomLeft", - "HeroiconsOutlineBars3BottomRight", - "HeroiconsOutlineBars3CenterLeft", - "HeroiconsOutlineBars3", - "HeroiconsOutlineBars4", - "HeroiconsOutlineBarsArrowDown", - "HeroiconsOutlineBarsArrowUp", - "HeroiconsOutlineBattery0", - "HeroiconsOutlineBattery100", - "HeroiconsOutlineBattery50", - "HeroiconsOutlineBeaker", - "HeroiconsOutlineBellAlert", - "HeroiconsOutlineBellSlash", - "HeroiconsOutlineBellSnooze", - "HeroiconsOutlineBell", - "HeroiconsOutlineBoltSlash", - "HeroiconsOutlineBolt", - "HeroiconsOutlineBookOpen", - "HeroiconsOutlineBookmarkSlash", - "HeroiconsOutlineBookmarkSquare", - "HeroiconsOutlineBookmark", - "HeroiconsOutlineBriefcase", - "HeroiconsOutlineBugAnt", - "HeroiconsOutlineBuildingLibrary", - "HeroiconsOutlineBuildingOffice2", - "HeroiconsOutlineBuildingOffice", - "HeroiconsOutlineBuildingStorefront", - "HeroiconsOutlineCake", - "HeroiconsOutlineCalculator", - "HeroiconsOutlineCalendarDays", - "HeroiconsOutlineCalendar", - "HeroiconsOutlineCamera", - "HeroiconsOutlineChartBarSquare", - "HeroiconsOutlineChartBar", - "HeroiconsOutlineChartPie", - "HeroiconsOutlineChatBubbleBottomCenterText", - "HeroiconsOutlineChatBubbleBottomCenter", - "HeroiconsOutlineChatBubbleLeftEllipsis", - "HeroiconsOutlineChatBubbleLeftRight", - "HeroiconsOutlineChatBubbleLeft", - "HeroiconsOutlineChatBubbleOvalLeftEllipsis", - "HeroiconsOutlineChatBubbleOvalLeft", - "HeroiconsOutlineCheckBadge", - "HeroiconsOutlineCheckCircle", - "HeroiconsOutlineCheck", - "HeroiconsOutlineChevronDoubleDown", - "HeroiconsOutlineChevronDoubleLeft", - "HeroiconsOutlineChevronDoubleRight", - "HeroiconsOutlineChevronDoubleUp", - "HeroiconsOutlineChevronDown", - "HeroiconsOutlineChevronLeft", - "HeroiconsOutlineChevronRight", - "HeroiconsOutlineChevronUpDown", - "HeroiconsOutlineChevronUp", - "HeroiconsOutlineCircleStack", - "HeroiconsOutlineClipboardDocumentCheck", - "HeroiconsOutlineClipboardDocumentList", - "HeroiconsOutlineClipboardDocument", - "HeroiconsOutlineClipboard", - "HeroiconsOutlineClock", - "HeroiconsOutlineCloudArrowDown", - "HeroiconsOutlineCloudArrowUp", - "HeroiconsOutlineCloud", - "HeroiconsOutlineCodeBracketSquare", - "HeroiconsOutlineCodeBracket", - "HeroiconsOutlineCog6Tooth", - "HeroiconsOutlineCog8Tooth", - "HeroiconsOutlineCog", - "HeroiconsOutlineCommandLine", - "HeroiconsOutlineComputerDesktop", - "HeroiconsOutlineCpuChip", - "HeroiconsOutlineCreditCard", - "HeroiconsOutlineCubeTransparent", - "HeroiconsOutlineCube", - "HeroiconsOutlineCurrencyBangladeshi", - "HeroiconsOutlineCurrencyDollar", - "HeroiconsOutlineCurrencyEuro", - "HeroiconsOutlineCurrencyPound", - "HeroiconsOutlineCurrencyRupee", - "HeroiconsOutlineCurrencyYen", - "HeroiconsOutlineCursorArrowRays", - "HeroiconsOutlineCursorArrowRipple", - "HeroiconsOutlineDevicePhoneMobile", - "HeroiconsOutlineDeviceTablet", - "HeroiconsOutlineDocumentArrowDown", - "HeroiconsOutlineDocumentArrowUp", - "HeroiconsOutlineDocumentChartBar", - "HeroiconsOutlineDocumentCheck", - "HeroiconsOutlineDocumentDuplicate", - "HeroiconsOutlineDocumentMagnifyingGlass", - "HeroiconsOutlineDocumentMinus", - "HeroiconsOutlineDocumentPlus", - "HeroiconsOutlineDocumentText", - "HeroiconsOutlineDocument", - "HeroiconsOutlineEllipsisHorizontalCircle", - "HeroiconsOutlineEllipsisHorizontal", - "HeroiconsOutlineEllipsisVertical", - "HeroiconsOutlineEnvelopeOpen", - "HeroiconsOutlineEnvelope", - "HeroiconsOutlineExclamationCircle", - "HeroiconsOutlineExclamationTriangle", - "HeroiconsOutlineEyeDropper", - "HeroiconsOutlineEyeSlash", - "HeroiconsOutlineEye", - "HeroiconsOutlineFaceFrown", - "HeroiconsOutlineFaceSmile", - "HeroiconsOutlineFilm", - "HeroiconsOutlineFingerPrint", - "HeroiconsOutlineFire", - "HeroiconsOutlineFlag", - "HeroiconsOutlineFolderArrowDown", - "HeroiconsOutlineFolderMinus", - "HeroiconsOutlineFolderOpen", - "HeroiconsOutlineFolderPlus", - "HeroiconsOutlineFolder", - "HeroiconsOutlineForward", - "HeroiconsOutlineFunnel", - "HeroiconsOutlineGif", - "HeroiconsOutlineGiftTop", - "HeroiconsOutlineGift", - "HeroiconsOutlineGlobeAlt", - "HeroiconsOutlineGlobeAmericas", - "HeroiconsOutlineGlobeAsiaAustralia", - "HeroiconsOutlineGlobeEuropeAfrica", - "HeroiconsOutlineHandRaised", - "HeroiconsOutlineHandThumbDown", - "HeroiconsOutlineHandThumbUp", - "HeroiconsOutlineHashtag", - "HeroiconsOutlineHeart", - "HeroiconsOutlineHomeModern", - "HeroiconsOutlineHome", - "HeroiconsOutlineIdentification", - "HeroiconsOutlineInboxArrowDown", - "HeroiconsOutlineInboxStack", - "HeroiconsOutlineInbox", - "HeroiconsOutlineInformationCircle", - "HeroiconsOutlineKey", - "HeroiconsOutlineLanguage", - "HeroiconsOutlineLifebuoy", - "HeroiconsOutlineLightBulb", - "HeroiconsOutlineLink", - "HeroiconsOutlineListBullet", - "HeroiconsOutlineLockClosed", - "HeroiconsOutlineLockOpen", - "HeroiconsOutlineMagnifyingGlassCircle", - "HeroiconsOutlineMagnifyingGlassMinus", - "HeroiconsOutlineMagnifyingGlassPlus", - "HeroiconsOutlineMagnifyingGlass", - "HeroiconsOutlineMapPin", - "HeroiconsOutlineMap", - "HeroiconsOutlineMegaphone", - "HeroiconsOutlineMicrophone", - "HeroiconsOutlineMinusCircle", - "HeroiconsOutlineMinusSmall", - "HeroiconsOutlineMinus", - "HeroiconsOutlineMoon", - "HeroiconsOutlineMusicalNote", - "HeroiconsOutlineNewspaper", - "HeroiconsOutlineNoSymbol", - "HeroiconsOutlinePaintBrush", - "HeroiconsOutlinePaperAirplane", - "HeroiconsOutlinePaperClip", - "HeroiconsOutlinePauseCircle", - "HeroiconsOutlinePause", - "HeroiconsOutlinePencilSquare", - "HeroiconsOutlinePencil", - "HeroiconsOutlinePhoneArrowDownLeft", - "HeroiconsOutlinePhoneArrowUpRight", - "HeroiconsOutlinePhoneXMark", - "HeroiconsOutlinePhone", - "HeroiconsOutlinePhoto", - "HeroiconsOutlinePlayCircle", - "HeroiconsOutlinePlayPause", - "HeroiconsOutlinePlay", - "HeroiconsOutlinePlusCircle", - "HeroiconsOutlinePlusSmall", - "HeroiconsOutlinePlus", - "HeroiconsOutlinePower", - "HeroiconsOutlinePresentationChartBar", - "HeroiconsOutlinePresentationChartLine", - "HeroiconsOutlinePrinter", - "HeroiconsOutlinePuzzlePiece", - "HeroiconsOutlineQrCode", - "HeroiconsOutlineQuestionMarkCircle", - "HeroiconsOutlineQueueList", - "HeroiconsOutlineRadio", - "HeroiconsOutlineReceiptPercent", - "HeroiconsOutlineReceiptRefund", - "HeroiconsOutlineRectangleGroup", - "HeroiconsOutlineRectangleStack", - "HeroiconsOutlineRocketLaunch", - "HeroiconsOutlineRss", - "HeroiconsOutlineScale", - "HeroiconsOutlineScissors", - "HeroiconsOutlineServerStack", - "HeroiconsOutlineServer", - "HeroiconsOutlineShare", - "HeroiconsOutlineShieldCheck", - "HeroiconsOutlineShieldExclamation", - "HeroiconsOutlineShoppingBag", - "HeroiconsOutlineShoppingCart", - "HeroiconsOutlineSignalSlash", - "HeroiconsOutlineSignal", - "HeroiconsOutlineSparkles", - "HeroiconsOutlineSpeakerWave", - "HeroiconsOutlineSpeakerXMark", - "HeroiconsOutlineSquare2Stack", - "HeroiconsOutlineSquare3Stack3D", - "HeroiconsOutlineSquares2X2", - "HeroiconsOutlineSquaresPlus", - "HeroiconsOutlineStar", - "HeroiconsOutlineStopCircle", - "HeroiconsOutlineStop", - "HeroiconsOutlineSun", - "HeroiconsOutlineSwatch", - "HeroiconsOutlineTableCells", - "HeroiconsOutlineTag", - "HeroiconsOutlineTicket", - "HeroiconsOutlineTrash", - "HeroiconsOutlineTrophy", - "HeroiconsOutlineTruck", - "HeroiconsOutlineTv", - "HeroiconsOutlineUserCircle", - "HeroiconsOutlineUserGroup", - "HeroiconsOutlineUserMinus", - "HeroiconsOutlineUserPlus", - "HeroiconsOutlineUser", - "HeroiconsOutlineUsers", - "HeroiconsOutlineVariable", - "HeroiconsOutlineVideoCameraSlash", - "HeroiconsOutlineVideoCamera", - "HeroiconsOutlineViewColumns", - "HeroiconsOutlineViewfinderCircle", - "HeroiconsOutlineWallet", - "HeroiconsOutlineWifi", - "HeroiconsOutlineWindow", - "HeroiconsOutlineWrenchScrewdriver", - "HeroiconsOutlineWrench", - "HeroiconsOutlineXCircle", - "HeroiconsOutlineXMark" - ], - "heroicons_solid": [ - "HeroiconsSolidAcademicCap", - "HeroiconsSolidAdjustmentsHorizontal", - "HeroiconsSolidAdjustmentsVertical", - "HeroiconsSolidArchiveBoxArrowDown", - "HeroiconsSolidArchiveBoxXMark", - "HeroiconsSolidArchiveBox", - "HeroiconsSolidArrowDownCircle", - "HeroiconsSolidArrowDownLeft", - "HeroiconsSolidArrowDownOnSquareStack", - "HeroiconsSolidArrowDownOnSquare", - "HeroiconsSolidArrowDownRight", - "HeroiconsSolidArrowDownTray", - "HeroiconsSolidArrowDown", - "HeroiconsSolidArrowLeftCircle", - "HeroiconsSolidArrowLeftOnRectangle", - "HeroiconsSolidArrowLeft", - "HeroiconsSolidArrowLongDown", - "HeroiconsSolidArrowLongLeft", - "HeroiconsSolidArrowLongRight", - "HeroiconsSolidArrowLongUp", - "HeroiconsSolidArrowPathRoundedSquare", - "HeroiconsSolidArrowPath", - "HeroiconsSolidArrowRightCircle", - "HeroiconsSolidArrowRightOnRectangle", - "HeroiconsSolidArrowRight", - "HeroiconsSolidArrowSmallDown", - "HeroiconsSolidArrowSmallLeft", - "HeroiconsSolidArrowSmallRight", - "HeroiconsSolidArrowSmallUp", - "HeroiconsSolidArrowTopRightOnSquare", - "HeroiconsSolidArrowTrendingDown", - "HeroiconsSolidArrowTrendingUp", - "HeroiconsSolidArrowUpCircle", - "HeroiconsSolidArrowUpLeft", - "HeroiconsSolidArrowUpOnSquareStack", - "HeroiconsSolidArrowUpOnSquare", - "HeroiconsSolidArrowUpRight", - "HeroiconsSolidArrowUpTray", - "HeroiconsSolidArrowUp", - "HeroiconsSolidArrowUturnDown", - "HeroiconsSolidArrowUturnLeft", - "HeroiconsSolidArrowUturnRight", - "HeroiconsSolidArrowUturnUp", - "HeroiconsSolidArrowsPointingIn", - "HeroiconsSolidArrowsPointingOut", - "HeroiconsSolidArrowsRightLeft", - "HeroiconsSolidArrowsUpDown", - "HeroiconsSolidAtSymbol", - "HeroiconsSolidBackspace", - "HeroiconsSolidBackward", - "HeroiconsSolidBanknotes", - "HeroiconsSolidBars2", - "HeroiconsSolidBars3BottomLeft", - "HeroiconsSolidBars3BottomRight", - "HeroiconsSolidBars3CenterLeft", - "HeroiconsSolidBars3", - "HeroiconsSolidBars4", - "HeroiconsSolidBarsArrowDown", - "HeroiconsSolidBarsArrowUp", - "HeroiconsSolidBattery0", - "HeroiconsSolidBattery100", - "HeroiconsSolidBattery50", - "HeroiconsSolidBeaker", - "HeroiconsSolidBellAlert", - "HeroiconsSolidBellSlash", - "HeroiconsSolidBellSnooze", - "HeroiconsSolidBell", - "HeroiconsSolidBoltSlash", - "HeroiconsSolidBolt", - "HeroiconsSolidBookOpen", - "HeroiconsSolidBookmarkSlash", - "HeroiconsSolidBookmarkSquare", - "HeroiconsSolidBookmark", - "HeroiconsSolidBriefcase", - "HeroiconsSolidBugAnt", - "HeroiconsSolidBuildingLibrary", - "HeroiconsSolidBuildingOffice2", - "HeroiconsSolidBuildingOffice", - "HeroiconsSolidBuildingStorefront", - "HeroiconsSolidCake", - "HeroiconsSolidCalculator", - "HeroiconsSolidCalendarDays", - "HeroiconsSolidCalendar", - "HeroiconsSolidCamera", - "HeroiconsSolidChartBarSquare", - "HeroiconsSolidChartBar", - "HeroiconsSolidChartPie", - "HeroiconsSolidChatBubbleBottomCenterText", - "HeroiconsSolidChatBubbleBottomCenter", - "HeroiconsSolidChatBubbleLeftEllipsis", - "HeroiconsSolidChatBubbleLeftRight", - "HeroiconsSolidChatBubbleLeft", - "HeroiconsSolidChatBubbleOvalLeftEllipsis", - "HeroiconsSolidChatBubbleOvalLeft", - "HeroiconsSolidCheckBadge", - "HeroiconsSolidCheckCircle", - "HeroiconsSolidCheck", - "HeroiconsSolidChevronDoubleDown", - "HeroiconsSolidChevronDoubleLeft", - "HeroiconsSolidChevronDoubleRight", - "HeroiconsSolidChevronDoubleUp", - "HeroiconsSolidChevronDown", - "HeroiconsSolidChevronLeft", - "HeroiconsSolidChevronRight", - "HeroiconsSolidChevronUpDown", - "HeroiconsSolidChevronUp", - "HeroiconsSolidCircleStack", - "HeroiconsSolidClipboardDocumentCheck", - "HeroiconsSolidClipboardDocumentList", - "HeroiconsSolidClipboardDocument", - "HeroiconsSolidClipboard", - "HeroiconsSolidClock", - "HeroiconsSolidCloudArrowDown", - "HeroiconsSolidCloudArrowUp", - "HeroiconsSolidCloud", - "HeroiconsSolidCodeBracketSquare", - "HeroiconsSolidCodeBracket", - "HeroiconsSolidCog6Tooth", - "HeroiconsSolidCog8Tooth", - "HeroiconsSolidCog", - "HeroiconsSolidCommandLine", - "HeroiconsSolidComputerDesktop", - "HeroiconsSolidCpuChip", - "HeroiconsSolidCreditCard", - "HeroiconsSolidCubeTransparent", - "HeroiconsSolidCube", - "HeroiconsSolidCurrencyBangladeshi", - "HeroiconsSolidCurrencyDollar", - "HeroiconsSolidCurrencyEuro", - "HeroiconsSolidCurrencyPound", - "HeroiconsSolidCurrencyRupee", - "HeroiconsSolidCurrencyYen", - "HeroiconsSolidCursorArrowRays", - "HeroiconsSolidCursorArrowRipple", - "HeroiconsSolidDevicePhoneMobile", - "HeroiconsSolidDeviceTablet", - "HeroiconsSolidDocumentArrowDown", - "HeroiconsSolidDocumentArrowUp", - "HeroiconsSolidDocumentChartBar", - "HeroiconsSolidDocumentCheck", - "HeroiconsSolidDocumentDuplicate", - "HeroiconsSolidDocumentMagnifyingGlass", - "HeroiconsSolidDocumentMinus", - "HeroiconsSolidDocumentPlus", - "HeroiconsSolidDocumentText", - "HeroiconsSolidDocument", - "HeroiconsSolidEllipsisHorizontalCircle", - "HeroiconsSolidEllipsisHorizontal", - "HeroiconsSolidEllipsisVertical", - "HeroiconsSolidEnvelopeOpen", - "HeroiconsSolidEnvelope", - "HeroiconsSolidExclamationCircle", - "HeroiconsSolidExclamationTriangle", - "HeroiconsSolidEyeDropper", - "HeroiconsSolidEyeSlash", - "HeroiconsSolidEye", - "HeroiconsSolidFaceFrown", - "HeroiconsSolidFaceSmile", - "HeroiconsSolidFilm", - "HeroiconsSolidFingerPrint", - "HeroiconsSolidFire", - "HeroiconsSolidFlag", - "HeroiconsSolidFolderArrowDown", - "HeroiconsSolidFolderMinus", - "HeroiconsSolidFolderOpen", - "HeroiconsSolidFolderPlus", - "HeroiconsSolidFolder", - "HeroiconsSolidForward", - "HeroiconsSolidFunnel", - "HeroiconsSolidGif", - "HeroiconsSolidGiftTop", - "HeroiconsSolidGift", - "HeroiconsSolidGlobeAlt", - "HeroiconsSolidGlobeAmericas", - "HeroiconsSolidGlobeAsiaAustralia", - "HeroiconsSolidGlobeEuropeAfrica", - "HeroiconsSolidHandRaised", - "HeroiconsSolidHandThumbDown", - "HeroiconsSolidHandThumbUp", - "HeroiconsSolidHashtag", - "HeroiconsSolidHeart", - "HeroiconsSolidHomeModern", - "HeroiconsSolidHome", - "HeroiconsSolidIdentification", - "HeroiconsSolidInboxArrowDown", - "HeroiconsSolidInboxStack", - "HeroiconsSolidInbox", - "HeroiconsSolidInformationCircle", - "HeroiconsSolidKey", - "HeroiconsSolidLanguage", - "HeroiconsSolidLifebuoy", - "HeroiconsSolidLightBulb", - "HeroiconsSolidLink", - "HeroiconsSolidListBullet", - "HeroiconsSolidLockClosed", - "HeroiconsSolidLockOpen", - "HeroiconsSolidMagnifyingGlassCircle", - "HeroiconsSolidMagnifyingGlassMinus", - "HeroiconsSolidMagnifyingGlassPlus", - "HeroiconsSolidMagnifyingGlass", - "HeroiconsSolidMapPin", - "HeroiconsSolidMap", - "HeroiconsSolidMegaphone", - "HeroiconsSolidMicrophone", - "HeroiconsSolidMinusCircle", - "HeroiconsSolidMinusSmall", - "HeroiconsSolidMinus", - "HeroiconsSolidMoon", - "HeroiconsSolidMusicalNote", - "HeroiconsSolidNewspaper", - "HeroiconsSolidNoSymbol", - "HeroiconsSolidPaintBrush", - "HeroiconsSolidPaperAirplane", - "HeroiconsSolidPaperClip", - "HeroiconsSolidPauseCircle", - "HeroiconsSolidPause", - "HeroiconsSolidPencilSquare", - "HeroiconsSolidPencil", - "HeroiconsSolidPhoneArrowDownLeft", - "HeroiconsSolidPhoneArrowUpRight", - "HeroiconsSolidPhoneXMark", - "HeroiconsSolidPhone", - "HeroiconsSolidPhoto", - "HeroiconsSolidPlayCircle", - "HeroiconsSolidPlayPause", - "HeroiconsSolidPlay", - "HeroiconsSolidPlusCircle", - "HeroiconsSolidPlusSmall", - "HeroiconsSolidPlus", - "HeroiconsSolidPower", - "HeroiconsSolidPresentationChartBar", - "HeroiconsSolidPresentationChartLine", - "HeroiconsSolidPrinter", - "HeroiconsSolidPuzzlePiece", - "HeroiconsSolidQrCode", - "HeroiconsSolidQuestionMarkCircle", - "HeroiconsSolidQueueList", - "HeroiconsSolidRadio", - "HeroiconsSolidReceiptPercent", - "HeroiconsSolidReceiptRefund", - "HeroiconsSolidRectangleGroup", - "HeroiconsSolidRectangleStack", - "HeroiconsSolidRocketLaunch", - "HeroiconsSolidRss", - "HeroiconsSolidScale", - "HeroiconsSolidScissors", - "HeroiconsSolidServerStack", - "HeroiconsSolidServer", - "HeroiconsSolidShare", - "HeroiconsSolidShieldCheck", - "HeroiconsSolidShieldExclamation", - "HeroiconsSolidShoppingBag", - "HeroiconsSolidShoppingCart", - "HeroiconsSolidSignalSlash", - "HeroiconsSolidSignal", - "HeroiconsSolidSparkles", - "HeroiconsSolidSpeakerWave", - "HeroiconsSolidSpeakerXMark", - "HeroiconsSolidSquare2Stack", - "HeroiconsSolidSquare3Stack3D", - "HeroiconsSolidSquares2X2", - "HeroiconsSolidSquaresPlus", - "HeroiconsSolidStar", - "HeroiconsSolidStopCircle", - "HeroiconsSolidStop", - "HeroiconsSolidSun", - "HeroiconsSolidSwatch", - "HeroiconsSolidTableCells", - "HeroiconsSolidTag", - "HeroiconsSolidTicket", - "HeroiconsSolidTrash", - "HeroiconsSolidTrophy", - "HeroiconsSolidTruck", - "HeroiconsSolidTv", - "HeroiconsSolidUserCircle", - "HeroiconsSolidUserGroup", - "HeroiconsSolidUserMinus", - "HeroiconsSolidUserPlus", - "HeroiconsSolidUser", - "HeroiconsSolidUsers", - "HeroiconsSolidVariable", - "HeroiconsSolidVideoCameraSlash", - "HeroiconsSolidVideoCamera", - "HeroiconsSolidViewColumns", - "HeroiconsSolidViewfinderCircle", - "HeroiconsSolidWallet", - "HeroiconsSolidWifi", - "HeroiconsSolidWindow", - "HeroiconsSolidWrenchScrewdriver", - "HeroiconsSolidWrench", - "HeroiconsSolidXCircle", - "HeroiconsSolidXMark" - ], - "iterate_icon_id": [ - "enum-iterator" - ], - "lipis_flag_icons_1_x_1": [ - "LipisFlagIcons1X1Ac", - "LipisFlagIcons1X1Ad", - "LipisFlagIcons1X1Ae", - "LipisFlagIcons1X1Af", - "LipisFlagIcons1X1Ag", - "LipisFlagIcons1X1Ai", - "LipisFlagIcons1X1Al", - "LipisFlagIcons1X1Am", - "LipisFlagIcons1X1Ao", - "LipisFlagIcons1X1Aq", - "LipisFlagIcons1X1Ar", - "LipisFlagIcons1X1As", - "LipisFlagIcons1X1At", - "LipisFlagIcons1X1Au", - "LipisFlagIcons1X1Aw", - "LipisFlagIcons1X1Ax", - "LipisFlagIcons1X1Az", - "LipisFlagIcons1X1Ba", - "LipisFlagIcons1X1Bb", - "LipisFlagIcons1X1Bd", - "LipisFlagIcons1X1Be", - "LipisFlagIcons1X1Bf", - "LipisFlagIcons1X1Bg", - "LipisFlagIcons1X1Bh", - "LipisFlagIcons1X1Bi", - "LipisFlagIcons1X1Bj", - "LipisFlagIcons1X1Bl", - "LipisFlagIcons1X1Bm", - "LipisFlagIcons1X1Bn", - "LipisFlagIcons1X1Bo", - "LipisFlagIcons1X1Bq", - "LipisFlagIcons1X1Br", - "LipisFlagIcons1X1Bs", - "LipisFlagIcons1X1Bt", - "LipisFlagIcons1X1Bv", - "LipisFlagIcons1X1Bw", - "LipisFlagIcons1X1By", - "LipisFlagIcons1X1Bz", - "LipisFlagIcons1X1Ca", - "LipisFlagIcons1X1Cc", - "LipisFlagIcons1X1Cd", - "LipisFlagIcons1X1Cefta", - "LipisFlagIcons1X1Cf", - "LipisFlagIcons1X1Cg", - "LipisFlagIcons1X1Ch", - "LipisFlagIcons1X1Ci", - "LipisFlagIcons1X1Ck", - "LipisFlagIcons1X1Cl", - "LipisFlagIcons1X1Cm", - "LipisFlagIcons1X1Cn", - "LipisFlagIcons1X1Co", - "LipisFlagIcons1X1Cp", - "LipisFlagIcons1X1Cr", - "LipisFlagIcons1X1Cu", - "LipisFlagIcons1X1Cv", - "LipisFlagIcons1X1Cw", - "LipisFlagIcons1X1Cx", - "LipisFlagIcons1X1Cy", - "LipisFlagIcons1X1Cz", - "LipisFlagIcons1X1De", - "LipisFlagIcons1X1Dg", - "LipisFlagIcons1X1Dj", - "LipisFlagIcons1X1Dk", - "LipisFlagIcons1X1Dm", - "LipisFlagIcons1X1Do", - "LipisFlagIcons1X1Dz", - "LipisFlagIcons1X1Ea", - "LipisFlagIcons1X1Ec", - "LipisFlagIcons1X1Ee", - "LipisFlagIcons1X1Eg", - "LipisFlagIcons1X1Eh", - "LipisFlagIcons1X1Er", - "LipisFlagIcons1X1EsCt", - "LipisFlagIcons1X1EsGa", - "LipisFlagIcons1X1Es", - "LipisFlagIcons1X1Et", - "LipisFlagIcons1X1Eu", - "LipisFlagIcons1X1Fi", - "LipisFlagIcons1X1Fj", - "LipisFlagIcons1X1Fk", - "LipisFlagIcons1X1Fm", - "LipisFlagIcons1X1Fo", - "LipisFlagIcons1X1Fr", - "LipisFlagIcons1X1Ga", - "LipisFlagIcons1X1GbEng", - "LipisFlagIcons1X1GbNir", - "LipisFlagIcons1X1GbSct", - "LipisFlagIcons1X1GbWls", - "LipisFlagIcons1X1Gb", - "LipisFlagIcons1X1Gd", - "LipisFlagIcons1X1Ge", - "LipisFlagIcons1X1Gf", - "LipisFlagIcons1X1Gg", - "LipisFlagIcons1X1Gh", - "LipisFlagIcons1X1Gi", - "LipisFlagIcons1X1Gl", - "LipisFlagIcons1X1Gm", - "LipisFlagIcons1X1Gn", - "LipisFlagIcons1X1Gp", - "LipisFlagIcons1X1Gq", - "LipisFlagIcons1X1Gr", - "LipisFlagIcons1X1Gs", - "LipisFlagIcons1X1Gt", - "LipisFlagIcons1X1Gu", - "LipisFlagIcons1X1Gw", - "LipisFlagIcons1X1Gy", - "LipisFlagIcons1X1Hk", - "LipisFlagIcons1X1Hm", - "LipisFlagIcons1X1Hn", - "LipisFlagIcons1X1Hr", - "LipisFlagIcons1X1Ht", - "LipisFlagIcons1X1Hu", - "LipisFlagIcons1X1Ic", - "LipisFlagIcons1X1Id", - "LipisFlagIcons1X1Ie", - "LipisFlagIcons1X1Il", - "LipisFlagIcons1X1Im", - "LipisFlagIcons1X1In", - "LipisFlagIcons1X1Io", - "LipisFlagIcons1X1Iq", - "LipisFlagIcons1X1Ir", - "LipisFlagIcons1X1Is", - "LipisFlagIcons1X1It", - "LipisFlagIcons1X1Je", - "LipisFlagIcons1X1Jm", - "LipisFlagIcons1X1Jo", - "LipisFlagIcons1X1Jp", - "LipisFlagIcons1X1Ke", - "LipisFlagIcons1X1Kg", - "LipisFlagIcons1X1Kh", - "LipisFlagIcons1X1Ki", - "LipisFlagIcons1X1Km", - "LipisFlagIcons1X1Kn", - "LipisFlagIcons1X1Kp", - "LipisFlagIcons1X1Kr", - "LipisFlagIcons1X1Kw", - "LipisFlagIcons1X1Ky", - "LipisFlagIcons1X1Kz", - "LipisFlagIcons1X1La", - "LipisFlagIcons1X1Lb", - "LipisFlagIcons1X1Lc", - "LipisFlagIcons1X1Li", - "LipisFlagIcons1X1Lk", - "LipisFlagIcons1X1Lr", - "LipisFlagIcons1X1Ls", - "LipisFlagIcons1X1Lt", - "LipisFlagIcons1X1Lu", - "LipisFlagIcons1X1Lv", - "LipisFlagIcons1X1Ly", - "LipisFlagIcons1X1Ma", - "LipisFlagIcons1X1Mc", - "LipisFlagIcons1X1Md", - "LipisFlagIcons1X1Me", - "LipisFlagIcons1X1Mf", - "LipisFlagIcons1X1Mg", - "LipisFlagIcons1X1Mh", - "LipisFlagIcons1X1Mk", - "LipisFlagIcons1X1Ml", - "LipisFlagIcons1X1Mm", - "LipisFlagIcons1X1Mn", - "LipisFlagIcons1X1Mo", - "LipisFlagIcons1X1Mp", - "LipisFlagIcons1X1Mq", - "LipisFlagIcons1X1Mr", - "LipisFlagIcons1X1Ms", - "LipisFlagIcons1X1Mt", - "LipisFlagIcons1X1Mu", - "LipisFlagIcons1X1Mv", - "LipisFlagIcons1X1Mw", - "LipisFlagIcons1X1Mx", - "LipisFlagIcons1X1My", - "LipisFlagIcons1X1Mz", - "LipisFlagIcons1X1Na", - "LipisFlagIcons1X1Nc", - "LipisFlagIcons1X1Ne", - "LipisFlagIcons1X1Nf", - "LipisFlagIcons1X1Ng", - "LipisFlagIcons1X1Ni", - "LipisFlagIcons1X1Nl", - "LipisFlagIcons1X1No", - "LipisFlagIcons1X1Np", - "LipisFlagIcons1X1Nr", - "LipisFlagIcons1X1Nu", - "LipisFlagIcons1X1Nz", - "LipisFlagIcons1X1Om", - "LipisFlagIcons1X1Pa", - "LipisFlagIcons1X1Pe", - "LipisFlagIcons1X1Pf", - "LipisFlagIcons1X1Pg", - "LipisFlagIcons1X1Ph", - "LipisFlagIcons1X1Pk", - "LipisFlagIcons1X1Pl", - "LipisFlagIcons1X1Pm", - "LipisFlagIcons1X1Pn", - "LipisFlagIcons1X1Pr", - "LipisFlagIcons1X1Ps", - "LipisFlagIcons1X1Pt", - "LipisFlagIcons1X1Pw", - "LipisFlagIcons1X1Py", - "LipisFlagIcons1X1Qa", - "LipisFlagIcons1X1Re", - "LipisFlagIcons1X1Ro", - "LipisFlagIcons1X1Rs", - "LipisFlagIcons1X1Ru", - "LipisFlagIcons1X1Rw", - "LipisFlagIcons1X1Sa", - "LipisFlagIcons1X1Sb", - "LipisFlagIcons1X1Sc", - "LipisFlagIcons1X1Sd", - "LipisFlagIcons1X1Se", - "LipisFlagIcons1X1Sg", - "LipisFlagIcons1X1Sh", - "LipisFlagIcons1X1Si", - "LipisFlagIcons1X1Sj", - "LipisFlagIcons1X1Sk", - "LipisFlagIcons1X1Sl", - "LipisFlagIcons1X1Sm", - "LipisFlagIcons1X1Sn", - "LipisFlagIcons1X1So", - "LipisFlagIcons1X1Sr", - "LipisFlagIcons1X1Ss", - "LipisFlagIcons1X1St", - "LipisFlagIcons1X1Sv", - "LipisFlagIcons1X1Sx", - "LipisFlagIcons1X1Sy", - "LipisFlagIcons1X1Sz", - "LipisFlagIcons1X1Ta", - "LipisFlagIcons1X1Tc", - "LipisFlagIcons1X1Td", - "LipisFlagIcons1X1Tf", - "LipisFlagIcons1X1Tg", - "LipisFlagIcons1X1Th", - "LipisFlagIcons1X1Tj", - "LipisFlagIcons1X1Tk", - "LipisFlagIcons1X1Tl", - "LipisFlagIcons1X1Tm", - "LipisFlagIcons1X1Tn", - "LipisFlagIcons1X1To", - "LipisFlagIcons1X1Tr", - "LipisFlagIcons1X1Tt", - "LipisFlagIcons1X1Tv", - "LipisFlagIcons1X1Tw", - "LipisFlagIcons1X1Tz", - "LipisFlagIcons1X1Ua", - "LipisFlagIcons1X1Ug", - "LipisFlagIcons1X1Um", - "LipisFlagIcons1X1Un", - "LipisFlagIcons1X1Us", - "LipisFlagIcons1X1Uy", - "LipisFlagIcons1X1Uz", - "LipisFlagIcons1X1Va", - "LipisFlagIcons1X1Vc", - "LipisFlagIcons1X1Ve", - "LipisFlagIcons1X1Vg", - "LipisFlagIcons1X1Vi", - "LipisFlagIcons1X1Vn", - "LipisFlagIcons1X1Vu", - "LipisFlagIcons1X1Wf", - "LipisFlagIcons1X1Ws", - "LipisFlagIcons1X1Xk", - "LipisFlagIcons1X1Xx", - "LipisFlagIcons1X1Ye", - "LipisFlagIcons1X1Yt", - "LipisFlagIcons1X1Za", - "LipisFlagIcons1X1Zm", - "LipisFlagIcons1X1Zw" - ], - "lipis_flag_icons_4_x_3": [ - "LipisFlagIcons4X3Ac", - "LipisFlagIcons4X3Ad", - "LipisFlagIcons4X3Ae", - "LipisFlagIcons4X3Af", - "LipisFlagIcons4X3Ag", - "LipisFlagIcons4X3Ai", - "LipisFlagIcons4X3Al", - "LipisFlagIcons4X3Am", - "LipisFlagIcons4X3Ao", - "LipisFlagIcons4X3Aq", - "LipisFlagIcons4X3Ar", - "LipisFlagIcons4X3As", - "LipisFlagIcons4X3At", - "LipisFlagIcons4X3Au", - "LipisFlagIcons4X3Aw", - "LipisFlagIcons4X3Ax", - "LipisFlagIcons4X3Az", - "LipisFlagIcons4X3Ba", - "LipisFlagIcons4X3Bb", - "LipisFlagIcons4X3Bd", - "LipisFlagIcons4X3Be", - "LipisFlagIcons4X3Bf", - "LipisFlagIcons4X3Bg", - "LipisFlagIcons4X3Bh", - "LipisFlagIcons4X3Bi", - "LipisFlagIcons4X3Bj", - "LipisFlagIcons4X3Bl", - "LipisFlagIcons4X3Bm", - "LipisFlagIcons4X3Bn", - "LipisFlagIcons4X3Bo", - "LipisFlagIcons4X3Bq", - "LipisFlagIcons4X3Br", - "LipisFlagIcons4X3Bs", - "LipisFlagIcons4X3Bt", - "LipisFlagIcons4X3Bv", - "LipisFlagIcons4X3Bw", - "LipisFlagIcons4X3By", - "LipisFlagIcons4X3Bz", - "LipisFlagIcons4X3Ca", - "LipisFlagIcons4X3Cc", - "LipisFlagIcons4X3Cd", - "LipisFlagIcons4X3Cefta", - "LipisFlagIcons4X3Cf", - "LipisFlagIcons4X3Cg", - "LipisFlagIcons4X3Ch", - "LipisFlagIcons4X3Ci", - "LipisFlagIcons4X3Ck", - "LipisFlagIcons4X3Cl", - "LipisFlagIcons4X3Cm", - "LipisFlagIcons4X3Cn", - "LipisFlagIcons4X3Co", - "LipisFlagIcons4X3Cp", - "LipisFlagIcons4X3Cr", - "LipisFlagIcons4X3Cu", - "LipisFlagIcons4X3Cv", - "LipisFlagIcons4X3Cw", - "LipisFlagIcons4X3Cx", - "LipisFlagIcons4X3Cy", - "LipisFlagIcons4X3Cz", - "LipisFlagIcons4X3De", - "LipisFlagIcons4X3Dg", - "LipisFlagIcons4X3Dj", - "LipisFlagIcons4X3Dk", - "LipisFlagIcons4X3Dm", - "LipisFlagIcons4X3Do", - "LipisFlagIcons4X3Dz", - "LipisFlagIcons4X3Ea", - "LipisFlagIcons4X3Ec", - "LipisFlagIcons4X3Ee", - "LipisFlagIcons4X3Eg", - "LipisFlagIcons4X3Eh", - "LipisFlagIcons4X3Er", - "LipisFlagIcons4X3EsCt", - "LipisFlagIcons4X3EsGa", - "LipisFlagIcons4X3Es", - "LipisFlagIcons4X3Et", - "LipisFlagIcons4X3Eu", - "LipisFlagIcons4X3Fi", - "LipisFlagIcons4X3Fj", - "LipisFlagIcons4X3Fk", - "LipisFlagIcons4X3Fm", - "LipisFlagIcons4X3Fo", - "LipisFlagIcons4X3Fr", - "LipisFlagIcons4X3Ga", - "LipisFlagIcons4X3GbEng", - "LipisFlagIcons4X3GbNir", - "LipisFlagIcons4X3GbSct", - "LipisFlagIcons4X3GbWls", - "LipisFlagIcons4X3Gb", - "LipisFlagIcons4X3Gd", - "LipisFlagIcons4X3Ge", - "LipisFlagIcons4X3Gf", - "LipisFlagIcons4X3Gg", - "LipisFlagIcons4X3Gh", - "LipisFlagIcons4X3Gi", - "LipisFlagIcons4X3Gl", - "LipisFlagIcons4X3Gm", - "LipisFlagIcons4X3Gn", - "LipisFlagIcons4X3Gp", - "LipisFlagIcons4X3Gq", - "LipisFlagIcons4X3Gr", - "LipisFlagIcons4X3Gs", - "LipisFlagIcons4X3Gt", - "LipisFlagIcons4X3Gu", - "LipisFlagIcons4X3Gw", - "LipisFlagIcons4X3Gy", - "LipisFlagIcons4X3Hk", - "LipisFlagIcons4X3Hm", - "LipisFlagIcons4X3Hn", - "LipisFlagIcons4X3Hr", - "LipisFlagIcons4X3Ht", - "LipisFlagIcons4X3Hu", - "LipisFlagIcons4X3Ic", - "LipisFlagIcons4X3Id", - "LipisFlagIcons4X3Ie", - "LipisFlagIcons4X3Il", - "LipisFlagIcons4X3Im", - "LipisFlagIcons4X3In", - "LipisFlagIcons4X3Io", - "LipisFlagIcons4X3Iq", - "LipisFlagIcons4X3Ir", - "LipisFlagIcons4X3Is", - "LipisFlagIcons4X3It", - "LipisFlagIcons4X3Je", - "LipisFlagIcons4X3Jm", - "LipisFlagIcons4X3Jo", - "LipisFlagIcons4X3Jp", - "LipisFlagIcons4X3Ke", - "LipisFlagIcons4X3Kg", - "LipisFlagIcons4X3Kh", - "LipisFlagIcons4X3Ki", - "LipisFlagIcons4X3Km", - "LipisFlagIcons4X3Kn", - "LipisFlagIcons4X3Kp", - "LipisFlagIcons4X3Kr", - "LipisFlagIcons4X3Kw", - "LipisFlagIcons4X3Ky", - "LipisFlagIcons4X3Kz", - "LipisFlagIcons4X3La", - "LipisFlagIcons4X3Lb", - "LipisFlagIcons4X3Lc", - "LipisFlagIcons4X3Li", - "LipisFlagIcons4X3Lk", - "LipisFlagIcons4X3Lr", - "LipisFlagIcons4X3Ls", - "LipisFlagIcons4X3Lt", - "LipisFlagIcons4X3Lu", - "LipisFlagIcons4X3Lv", - "LipisFlagIcons4X3Ly", - "LipisFlagIcons4X3Ma", - "LipisFlagIcons4X3Mc", - "LipisFlagIcons4X3Md", - "LipisFlagIcons4X3Me", - "LipisFlagIcons4X3Mf", - "LipisFlagIcons4X3Mg", - "LipisFlagIcons4X3Mh", - "LipisFlagIcons4X3Mk", - "LipisFlagIcons4X3Ml", - "LipisFlagIcons4X3Mm", - "LipisFlagIcons4X3Mn", - "LipisFlagIcons4X3Mo", - "LipisFlagIcons4X3Mp", - "LipisFlagIcons4X3Mq", - "LipisFlagIcons4X3Mr", - "LipisFlagIcons4X3Ms", - "LipisFlagIcons4X3Mt", - "LipisFlagIcons4X3Mu", - "LipisFlagIcons4X3Mv", - "LipisFlagIcons4X3Mw", - "LipisFlagIcons4X3Mx", - "LipisFlagIcons4X3My", - "LipisFlagIcons4X3Mz", - "LipisFlagIcons4X3Na", - "LipisFlagIcons4X3Nc", - "LipisFlagIcons4X3Ne", - "LipisFlagIcons4X3Nf", - "LipisFlagIcons4X3Ng", - "LipisFlagIcons4X3Ni", - "LipisFlagIcons4X3Nl", - "LipisFlagIcons4X3No", - "LipisFlagIcons4X3Np", - "LipisFlagIcons4X3Nr", - "LipisFlagIcons4X3Nu", - "LipisFlagIcons4X3Nz", - "LipisFlagIcons4X3Om", - "LipisFlagIcons4X3Pa", - "LipisFlagIcons4X3Pe", - "LipisFlagIcons4X3Pf", - "LipisFlagIcons4X3Pg", - "LipisFlagIcons4X3Ph", - "LipisFlagIcons4X3Pk", - "LipisFlagIcons4X3Pl", - "LipisFlagIcons4X3Pm", - "LipisFlagIcons4X3Pn", - "LipisFlagIcons4X3Pr", - "LipisFlagIcons4X3Ps", - "LipisFlagIcons4X3Pt", - "LipisFlagIcons4X3Pw", - "LipisFlagIcons4X3Py", - "LipisFlagIcons4X3Qa", - "LipisFlagIcons4X3Re", - "LipisFlagIcons4X3Ro", - "LipisFlagIcons4X3Rs", - "LipisFlagIcons4X3Ru", - "LipisFlagIcons4X3Rw", - "LipisFlagIcons4X3Sa", - "LipisFlagIcons4X3Sb", - "LipisFlagIcons4X3Sc", - "LipisFlagIcons4X3Sd", - "LipisFlagIcons4X3Se", - "LipisFlagIcons4X3Sg", - "LipisFlagIcons4X3Sh", - "LipisFlagIcons4X3Si", - "LipisFlagIcons4X3Sj", - "LipisFlagIcons4X3Sk", - "LipisFlagIcons4X3Sl", - "LipisFlagIcons4X3Sm", - "LipisFlagIcons4X3Sn", - "LipisFlagIcons4X3So", - "LipisFlagIcons4X3Sr", - "LipisFlagIcons4X3Ss", - "LipisFlagIcons4X3St", - "LipisFlagIcons4X3Sv", - "LipisFlagIcons4X3Sx", - "LipisFlagIcons4X3Sy", - "LipisFlagIcons4X3Sz", - "LipisFlagIcons4X3Ta", - "LipisFlagIcons4X3Tc", - "LipisFlagIcons4X3Td", - "LipisFlagIcons4X3Tf", - "LipisFlagIcons4X3Tg", - "LipisFlagIcons4X3Th", - "LipisFlagIcons4X3Tj", - "LipisFlagIcons4X3Tk", - "LipisFlagIcons4X3Tl", - "LipisFlagIcons4X3Tm", - "LipisFlagIcons4X3Tn", - "LipisFlagIcons4X3To", - "LipisFlagIcons4X3Tr", - "LipisFlagIcons4X3Tt", - "LipisFlagIcons4X3Tv", - "LipisFlagIcons4X3Tw", - "LipisFlagIcons4X3Tz", - "LipisFlagIcons4X3Ua", - "LipisFlagIcons4X3Ug", - "LipisFlagIcons4X3Um", - "LipisFlagIcons4X3Un", - "LipisFlagIcons4X3Us", - "LipisFlagIcons4X3Uy", - "LipisFlagIcons4X3Uz", - "LipisFlagIcons4X3Va", - "LipisFlagIcons4X3Vc", - "LipisFlagIcons4X3Ve", - "LipisFlagIcons4X3Vg", - "LipisFlagIcons4X3Vi", - "LipisFlagIcons4X3Vn", - "LipisFlagIcons4X3Vu", - "LipisFlagIcons4X3Wf", - "LipisFlagIcons4X3Ws", - "LipisFlagIcons4X3Xk", - "LipisFlagIcons4X3Xx", - "LipisFlagIcons4X3Ye", - "LipisFlagIcons4X3Yt", - "LipisFlagIcons4X3Za", - "LipisFlagIcons4X3Zm", - "LipisFlagIcons4X3Zw" - ], - "lucide": [ - "LucideAccessibility", - "LucideActivity", - "LucideAirVent", - "LucideAirplay", - "LucideAlarmCheck", - "LucideAlarmClockOff", - "LucideAlarmClock", - "LucideAlarmMinus", - "LucideAlarmPlus", - "LucideAlbum", - "LucideAlertCircle", - "LucideAlertOctagon", - "LucideAlertTriangle", - "LucideAlignCenterHorizontal", - "LucideAlignCenterVertical", - "LucideAlignCenter", - "LucideAlignEndHorizontal", - "LucideAlignEndVertical", - "LucideAlignHorizontalDistributeCenter", - "LucideAlignHorizontalDistributeEnd", - "LucideAlignHorizontalDistributeStart", - "LucideAlignHorizontalJustifyCenter", - "LucideAlignHorizontalJustifyEnd", - "LucideAlignHorizontalJustifyStart", - "LucideAlignHorizontalSpaceAround", - "LucideAlignHorizontalSpaceBetween", - "LucideAlignJustify", - "LucideAlignLeft", - "LucideAlignRight", - "LucideAlignStartHorizontal", - "LucideAlignStartVertical", - "LucideAlignVerticalDistributeCenter", - "LucideAlignVerticalDistributeEnd", - "LucideAlignVerticalDistributeStart", - "LucideAlignVerticalJustifyCenter", - "LucideAlignVerticalJustifyEnd", - "LucideAlignVerticalJustifyStart", - "LucideAlignVerticalSpaceAround", - "LucideAlignVerticalSpaceBetween", - "LucideAnchor", - "LucideAngry", - "LucideAnnoyed", - "LucideAperture", - "LucideApple", - "LucideArchiveRestore", - "LucideArchive", - "LucideArmchair", - "LucideArrowBigDown", - "LucideArrowBigLeft", - "LucideArrowBigRight", - "LucideArrowBigUp", - "LucideArrowDownCircle", - "LucideArrowDownLeft", - "LucideArrowDownRight", - "LucideArrowDown", - "LucideArrowLeftCircle", - "LucideArrowLeftRight", - "LucideArrowLeft", - "LucideArrowRightCircle", - "LucideArrowRight", - "LucideArrowUpCircle", - "LucideArrowUpDown", - "LucideArrowUpLeft", - "LucideArrowUpRight", - "LucideArrowUp", - "LucideAsterisk", - "LucideAtSign", - "LucideAward", - "LucideAxe", - "LucideAxis3D", - "LucideBaby", - "LucideBackpack", - "LucideBaggageClaim", - "LucideBanana", - "LucideBanknote", - "LucideBarChart2", - "LucideBarChart3", - "LucideBarChart4", - "LucideBarChartHorizontal", - "LucideBarChart", - "LucideBaseline", - "LucideBath", - "LucideBatteryCharging", - "LucideBatteryFull", - "LucideBatteryLow", - "LucideBatteryMedium", - "LucideBattery", - "LucideBeaker", - "LucideBedDouble", - "LucideBedSingle", - "LucideBed", - "LucideBeer", - "LucideBellMinus", - "LucideBellOff", - "LucideBellPlus", - "LucideBellRing", - "LucideBell", - "LucideBike", - "LucideBinary", - "LucideBitcoin", - "LucideBluetoothConnected", - "LucideBluetoothOff", - "LucideBluetoothSearching", - "LucideBluetooth", - "LucideBold", - "LucideBomb", - "LucideBone", - "LucideBookOpenCheck", - "LucideBookOpen", - "LucideBook", - "LucideBookmarkMinus", - "LucideBookmarkPlus", - "LucideBookmark", - "LucideBot", - "LucideBoxSelect", - "LucideBox", - "LucideBoxes", - "LucideBriefcase", - "LucideBrush", - "LucideBug", - "LucideBuilding2", - "LucideBuilding", - "LucideBus", - "LucideCake", - "LucideCalculator", - "LucideCalendarCheck2", - "LucideCalendarCheck", - "LucideCalendarClock", - "LucideCalendarDays", - "LucideCalendarHeart", - "LucideCalendarMinus", - "LucideCalendarOff", - "LucideCalendarPlus", - "LucideCalendarRange", - "LucideCalendarSearch", - "LucideCalendarX2", - "LucideCalendarX", - "LucideCalendar", - "LucideCameraOff", - "LucideCamera", - "LucideCar", - "LucideCarrot", - "LucideCast", - "LucideCheckCircle2", - "LucideCheckCircle", - "LucideCheckSquare", - "LucideCheck", - "LucideChefHat", - "LucideCherry", - "LucideChevronDown", - "LucideChevronFirst", - "LucideChevronLast", - "LucideChevronLeft", - "LucideChevronRight", - "LucideChevronUp", - "LucideChevronsDownUp", - "LucideChevronsDown", - "LucideChevronsLeftRight", - "LucideChevronsLeft", - "LucideChevronsRightLeft", - "LucideChevronsRight", - "LucideChevronsUpDown", - "LucideChevronsUp", - "LucideChrome", - "LucideCigaretteOff", - "LucideCigarette", - "LucideCircleDot", - "LucideCircleEllipsis", - "LucideCircleSlashed", - "LucideCircle", - "LucideCitrus", - "LucideClapperboard", - "LucideClipboardCheck", - "LucideClipboardCopy", - "LucideClipboardEdit", - "LucideClipboardList", - "LucideClipboardSignature", - "LucideClipboardType", - "LucideClipboardX", - "LucideClipboard", - "LucideClock1", - "LucideClock10", - "LucideClock11", - "LucideClock12", - "LucideClock2", - "LucideClock3", - "LucideClock4", - "LucideClock5", - "LucideClock6", - "LucideClock7", - "LucideClock8", - "LucideClock9", - "LucideClock", - "LucideCloudCog", - "LucideCloudDrizzle", - "LucideCloudFog", - "LucideCloudHail", - "LucideCloudLightning", - "LucideCloudMoonRain", - "LucideCloudMoon", - "LucideCloudOff", - "LucideCloudRainWind", - "LucideCloudRain", - "LucideCloudSnow", - "LucideCloudSunRain", - "LucideCloudSun", - "LucideCloud", - "LucideCloudy", - "LucideClover", - "LucideCode2", - "LucideCode", - "LucideCodepen", - "LucideCodesandbox", - "LucideCoffee", - "LucideCog", - "LucideCoins", - "LucideColumns", - "LucideCommand", - "LucideCompass", - "LucideComponent", - "LucideConciergeBell", - "LucideContact", - "LucideContrast", - "LucideCookie", - "LucideCopy", - "LucideCopyleft", - "LucideCopyright", - "LucideCornerDownLeft", - "LucideCornerDownRight", - "LucideCornerLeftDown", - "LucideCornerLeftUp", - "LucideCornerRightDown", - "LucideCornerRightUp", - "LucideCornerUpLeft", - "LucideCornerUpRight", - "LucideCpu", - "LucideCreditCard", - "LucideCroissant", - "LucideCrop", - "LucideCross", - "LucideCrosshair", - "LucideCrown", - "LucideCupSoda", - "LucideCurlyBraces", - "LucideCurrency", - "LucideDatabase", - "LucideDelete", - "LucideDiamond", - "LucideDice1", - "LucideDice2", - "LucideDice3", - "LucideDice4", - "LucideDice5", - "LucideDice6", - "LucideDices", - "LucideDiff", - "LucideDisc", - "LucideDivideCircle", - "LucideDivideSquare", - "LucideDivide", - "LucideDollarSign", - "LucideDownloadCloud", - "LucideDownload", - "LucideDribbble", - "LucideDroplet", - "LucideDroplets", - "LucideDrumstick", - "LucideEarOff", - "LucideEar", - "LucideEdit2", - "LucideEdit3", - "LucideEdit", - "LucideEggFried", - "LucideEgg", - "LucideEqualNot", - "LucideEqual", - "LucideEraser", - "LucideEuro", - "LucideExpand", - "LucideExternalLink", - "LucideEyeOff", - "LucideEye", - "LucideFacebook", - "LucideFactory", - "LucideFan", - "LucideFastForward", - "LucideFeather", - "LucideFigma", - "LucideFileArchive", - "LucideFileAudio2", - "LucideFileAudio", - "LucideFileAxis3D", - "LucideFileBadge2", - "LucideFileBadge", - "LucideFileBarChart2", - "LucideFileBarChart", - "LucideFileBox", - "LucideFileCheck2", - "LucideFileCheck", - "LucideFileClock", - "LucideFileCode", - "LucideFileCog2", - "LucideFileCog", - "LucideFileDiff", - "LucideFileDigit", - "LucideFileDown", - "LucideFileEdit", - "LucideFileHeart", - "LucideFileImage", - "LucideFileInput", - "LucideFileJson2", - "LucideFileJson", - "LucideFileKey2", - "LucideFileKey", - "LucideFileLineChart", - "LucideFileLock2", - "LucideFileLock", - "LucideFileMinus2", - "LucideFileMinus", - "LucideFileOutput", - "LucideFilePieChart", - "LucideFilePlus2", - "LucideFilePlus", - "LucideFileQuestion", - "LucideFileScan", - "LucideFileSearch2", - "LucideFileSearch", - "LucideFileSignature", - "LucideFileSpreadsheet", - "LucideFileSymlink", - "LucideFileTerminal", - "LucideFileText", - "LucideFileType2", - "LucideFileType", - "LucideFileUp", - "LucideFileVideo2", - "LucideFileVideo", - "LucideFileVolume2", - "LucideFileVolume", - "LucideFileWarning", - "LucideFileX2", - "LucideFileX", - "LucideFile", - "LucideFiles", - "LucideFilm", - "LucideFilter", - "LucideFingerprint", - "LucideFlagOff", - "LucideFlagTriangleLeft", - "LucideFlagTriangleRight", - "LucideFlag", - "LucideFlame", - "LucideFlashlightOff", - "LucideFlashlight", - "LucideFlaskConical", - "LucideFlaskRound", - "LucideFlipHorizontal2", - "LucideFlipHorizontal", - "LucideFlipVertical2", - "LucideFlipVertical", - "LucideFlower2", - "LucideFlower", - "LucideFocus", - "LucideFolderArchive", - "LucideFolderCheck", - "LucideFolderClock", - "LucideFolderClosed", - "LucideFolderCog2", - "LucideFolderCog", - "LucideFolderDown", - "LucideFolderEdit", - "LucideFolderHeart", - "LucideFolderInput", - "LucideFolderKey", - "LucideFolderLock", - "LucideFolderMinus", - "LucideFolderOpen", - "LucideFolderOutput", - "LucideFolderPlus", - "LucideFolderSearch2", - "LucideFolderSearch", - "LucideFolderSymlink", - "LucideFolderTree", - "LucideFolderUp", - "LucideFolderX", - "LucideFolder", - "LucideFolders", - "LucideFormInput", - "LucideForward", - "LucideFrame", - "LucideFramer", - "LucideFrown", - "LucideFuel", - "LucideFunctionSquare", - "LucideGamepad2", - "LucideGamepad", - "LucideGauge", - "LucideGavel", - "LucideGem", - "LucideGhost", - "LucideGift", - "LucideGitBranchPlus", - "LucideGitBranch", - "LucideGitCommit", - "LucideGitCompare", - "LucideGitFork", - "LucideGitMerge", - "LucideGitPullRequestClosed", - "LucideGitPullRequestDraft", - "LucideGitPullRequest", - "LucideGithub", - "LucideGitlab", - "LucideGlassWater", - "LucideGlasses", - "LucideGlobe2", - "LucideGlobe", - "LucideGrab", - "LucideGraduationCap", - "LucideGrape", - "LucideGrid", - "LucideGripHorizontal", - "LucideGripVertical", - "LucideHammer", - "LucideHandMetal", - "LucideHand", - "LucideHardDrive", - "LucideHardHat", - "LucideHash", - "LucideHaze", - "LucideHeadphones", - "LucideHeartCrack", - "LucideHeartHandshake", - "LucideHeartOff", - "LucideHeartPulse", - "LucideHeart", - "LucideHelpCircle", - "LucideHexagon", - "LucideHighlighter", - "LucideHistory", - "LucideHome", - "LucideHourglass", - "LucideIceCream", - "LucideImageMinus", - "LucideImageOff", - "LucideImagePlus", - "LucideImage", - "LucideImport", - "LucideInbox", - "LucideIndent", - "LucideIndianRupee", - "LucideInfinity", - "LucideInfo", - "LucideInspect", - "LucideInstagram", - "LucideItalic", - "LucideJapaneseYen", - "LucideJoystick", - "LucideKey", - "LucideKeyboard", - "LucideLampCeiling", - "LucideLampDesk", - "LucideLampFloor", - "LucideLampWallDown", - "LucideLampWallUp", - "LucideLamp", - "LucideLandmark", - "LucideLanguages", - "LucideLaptop2", - "LucideLaptop", - "LucideLassoSelect", - "LucideLasso", - "LucideLaugh", - "LucideLayers", - "LucideLayoutDashboard", - "LucideLayoutGrid", - "LucideLayoutList", - "LucideLayoutTemplate", - "LucideLayout", - "LucideLeaf", - "LucideLibrary", - "LucideLifeBuoy", - "LucideLightbulbOff", - "LucideLightbulb", - "LucideLineChart", - "LucideLink2Off", - "LucideLink2", - "LucideLink", - "LucideLinkedin", - "LucideListChecks", - "LucideListEnd", - "LucideListMinus", - "LucideListMusic", - "LucideListOrdered", - "LucideListPlus", - "LucideListStart", - "LucideListVideo", - "LucideListX", - "LucideList", - "LucideLoader2", - "LucideLoader", - "LucideLocateFixed", - "LucideLocateOff", - "LucideLocate", - "LucideLock", - "LucideLogIn", - "LucideLogOut", - "LucideLuggage", - "LucideMagnet", - "LucideMailCheck", - "LucideMailMinus", - "LucideMailOpen", - "LucideMailPlus", - "LucideMailQuestion", - "LucideMailSearch", - "LucideMailWarning", - "LucideMailX", - "LucideMail", - "LucideMails", - "LucideMapPinOff", - "LucideMapPin", - "LucideMap", - "LucideMartini", - "LucideMaximize2", - "LucideMaximize", - "LucideMedal", - "LucideMegaphoneOff", - "LucideMegaphone", - "LucideMeh", - "LucideMenu", - "LucideMessageCircle", - "LucideMessageSquare", - "LucideMic2", - "LucideMicOff", - "LucideMic", - "LucideMicroscope", - "LucideMicrowave", - "LucideMilestone", - "LucideMinimize2", - "LucideMinimize", - "LucideMinusCircle", - "LucideMinusSquare", - "LucideMinus", - "LucideMonitorOff", - "LucideMonitorSpeaker", - "LucideMonitor", - "LucideMoon", - "LucideMoreHorizontal", - "LucideMoreVertical", - "LucideMountainSnow", - "LucideMountain", - "LucideMousePointer2", - "LucideMousePointerClick", - "LucideMousePointer", - "LucideMouse", - "LucideMove3D", - "LucideMoveDiagonal2", - "LucideMoveDiagonal", - "LucideMoveHorizontal", - "LucideMoveVertical", - "LucideMove", - "LucideMusic2", - "LucideMusic3", - "LucideMusic4", - "LucideMusic", - "LucideNavigation2Off", - "LucideNavigation2", - "LucideNavigationOff", - "LucideNavigation", - "LucideNetwork", - "LucideNewspaper", - "LucideOctagon", - "LucideOption", - "LucideOutdent", - "LucidePackage2", - "LucidePackageCheck", - "LucidePackageMinus", - "LucidePackageOpen", - "LucidePackagePlus", - "LucidePackageSearch", - "LucidePackageX", - "LucidePackage", - "LucidePaintBucket", - "LucidePaintbrush2", - "LucidePaintbrush", - "LucidePalette", - "LucidePalmtree", - "LucidePaperclip", - "LucidePartyPopper", - "LucidePauseCircle", - "LucidePauseOctagon", - "LucidePause", - "LucidePenTool", - "LucidePencil", - "LucidePercent", - "LucidePersonStanding", - "LucidePhoneCall", - "LucidePhoneForwarded", - "LucidePhoneIncoming", - "LucidePhoneMissed", - "LucidePhoneOff", - "LucidePhoneOutgoing", - "LucidePhone", - "LucidePieChart", - "LucidePiggyBank", - "LucidePinOff", - "LucidePin", - "LucidePipette", - "LucidePizza", - "LucidePlane", - "LucidePlayCircle", - "LucidePlay", - "LucidePlug2", - "LucidePlugZap", - "LucidePlug", - "LucidePlusCircle", - "LucidePlusSquare", - "LucidePlus", - "LucidePocket", - "LucidePodcast", - "LucidePointer", - "LucidePoundSterling", - "LucidePowerOff", - "LucidePower", - "LucidePrinter", - "LucidePuzzle", - "LucideQrCode", - "LucideQuote", - "LucideRadioReceiver", - "LucideRadio", - "LucideRectangleHorizontal", - "LucideRectangleVertical", - "LucideRecycle", - "LucideRedo2", - "LucideRedo", - "LucideRefreshCcw", - "LucideRefreshCw", - "LucideRefrigerator", - "LucideRegex", - "LucideRepeat1", - "LucideRepeat", - "LucideReplyAll", - "LucideReply", - "LucideRewind", - "LucideRocket", - "LucideRockingChair", - "LucideRotate3D", - "LucideRotateCcw", - "LucideRotateCw", - "LucideRss", - "LucideRuler", - "LucideRussianRuble", - "LucideSailboat", - "LucideSave", - "LucideScale3D", - "LucideScale", - "LucideScaling", - "LucideScanFace", - "LucideScanLine", - "LucideScan", - "LucideScissors", - "LucideScreenShareOff", - "LucideScreenShare", - "LucideScroll", - "LucideSearch", - "LucideSend", - "LucideSeparatorHorizontal", - "LucideSeparatorVertical", - "LucideServerCog", - "LucideServerCrash", - "LucideServerOff", - "LucideServer", - "LucideSettings2", - "LucideSettings", - "LucideShare2", - "LucideShare", - "LucideSheet", - "LucideShieldAlert", - "LucideShieldCheck", - "LucideShieldClose", - "LucideShieldOff", - "LucideShield", - "LucideShirt", - "LucideShoppingBag", - "LucideShoppingCart", - "LucideShovel", - "LucideShowerHead", - "LucideShrink", - "LucideShrub", - "LucideShuffle", - "LucideSidebarClose", - "LucideSidebarOpen", - "LucideSidebar", - "LucideSigma", - "LucideSignalHigh", - "LucideSignalLow", - "LucideSignalMedium", - "LucideSignalZero", - "LucideSignal", - "LucideSiren", - "LucideSkipBack", - "LucideSkipForward", - "LucideSkull", - "LucideSlack", - "LucideSlash", - "LucideSlice", - "LucideSlidersHorizontal", - "LucideSliders", - "LucideSmartphoneCharging", - "LucideSmartphone", - "LucideSmilePlus", - "LucideSmile", - "LucideSnowflake", - "LucideSofa", - "LucideSortAsc", - "LucideSortDesc", - "LucideSpeaker", - "LucideSprout", - "LucideSquare", - "LucideStarHalf", - "LucideStarOff", - "LucideStar", - "LucideStethoscope", - "LucideSticker", - "LucideStickyNote", - "LucideStopCircle", - "LucideStretchHorizontal", - "LucideStretchVertical", - "LucideStrikethrough", - "LucideSubscript", - "LucideSunDim", - "LucideSunMedium", - "LucideSunMoon", - "LucideSunSnow", - "LucideSun", - "LucideSunrise", - "LucideSunset", - "LucideSuperscript", - "LucideSwissFranc", - "LucideSwitchCamera", - "LucideSword", - "LucideSwords", - "LucideSyringe", - "LucideTable2", - "LucideTable", - "LucideTablet", - "LucideTag", - "LucideTags", - "LucideTarget", - "LucideTent", - "LucideTerminalSquare", - "LucideTerminal", - "LucideTextCursorInput", - "LucideTextCursor", - "LucideThermometerSnowflake", - "LucideThermometerSun", - "LucideThermometer", - "LucideThumbsDown", - "LucideThumbsUp", - "LucideTicket", - "LucideTimerOff", - "LucideTimerReset", - "LucideTimer", - "LucideToggleLeft", - "LucideToggleRight", - "LucideTornado", - "LucideToyBrick", - "LucideTrain", - "LucideTrash2", - "LucideTrash", - "LucideTreeDeciduous", - "LucideTreePine", - "LucideTrees", - "LucideTrello", - "LucideTrendingDown", - "LucideTrendingUp", - "LucideTriangle", - "LucideTrophy", - "LucideTruck", - "LucideTv2", - "LucideTv", - "LucideTwitch", - "LucideTwitter", - "LucideType", - "LucideUmbrella", - "LucideUnderline", - "LucideUndo2", - "LucideUndo", - "LucideUnlink2", - "LucideUnlink", - "LucideUnlock", - "LucideUploadCloud", - "LucideUpload", - "LucideUsb", - "LucideUserCheck", - "LucideUserCog", - "LucideUserMinus", - "LucideUserPlus", - "LucideUserX", - "LucideUser", - "LucideUsers", - "LucideUtensilsCrossed", - "LucideUtensils", - "LucideVenetianMask", - "LucideVerified", - "LucideVibrateOff", - "LucideVibrate", - "LucideVideoOff", - "LucideVideo", - "LucideView", - "LucideVoicemail", - "LucideVolume1", - "LucideVolume2", - "LucideVolumeX", - "LucideVolume", - "LucideWallet", - "LucideWand2", - "LucideWand", - "LucideWatch", - "LucideWaves", - "LucideWebcam", - "LucideWebhook", - "LucideWifiOff", - "LucideWifi", - "LucideWind", - "LucideWine", - "LucideWrapText", - "LucideWrench", - "LucideXCircle", - "LucideXOctagon", - "LucideXSquare", - "LucideX", - "LucideYoutube", - "LucideZapOff", - "LucideZap", - "LucideZoomIn", - "LucideZoomOut" - ], - "octicons": [ - "OcticonsAccessibility16", - "OcticonsAlert16", - "OcticonsAlert24", - "OcticonsAlertFill12", - "OcticonsApps16", - "OcticonsArchive16", - "OcticonsArchive24", - "OcticonsArrowBoth16", - "OcticonsArrowBoth24", - "OcticonsArrowDown16", - "OcticonsArrowDown24", - "OcticonsArrowDownLeft24", - "OcticonsArrowDownRight24", - "OcticonsArrowLeft16", - "OcticonsArrowLeft24", - "OcticonsArrowRight16", - "OcticonsArrowRight24", - "OcticonsArrowSwitch16", - "OcticonsArrowSwitch24", - "OcticonsArrowUp16", - "OcticonsArrowUp24", - "OcticonsArrowUpLeft24", - "OcticonsArrowUpRight24", - "OcticonsBeaker16", - "OcticonsBeaker24", - "OcticonsBell16", - "OcticonsBell24", - "OcticonsBellFill16", - "OcticonsBellFill24", - "OcticonsBellSlash16", - "OcticonsBellSlash24", - "OcticonsBlocked16", - "OcticonsBlocked24", - "OcticonsBold16", - "OcticonsBold24", - "OcticonsBook16", - "OcticonsBook24", - "OcticonsBookmark16", - "OcticonsBookmark24", - "OcticonsBookmarkFill24", - "OcticonsBookmarkSlash16", - "OcticonsBookmarkSlash24", - "OcticonsBookmarkSlashFill24", - "OcticonsBriefcase16", - "OcticonsBriefcase24", - "OcticonsBroadcast16", - "OcticonsBroadcast24", - "OcticonsBrowser16", - "OcticonsBrowser24", - "OcticonsBug16", - "OcticonsBug24", - "OcticonsCalendar16", - "OcticonsCalendar24", - "OcticonsCheck16", - "OcticonsCheck24", - "OcticonsCheckCircle16", - "OcticonsCheckCircle24", - "OcticonsCheckCircleFill12", - "OcticonsCheckCircleFill16", - "OcticonsCheckCircleFill24", - "OcticonsChecklist16", - "OcticonsChecklist24", - "OcticonsChevronDown16", - "OcticonsChevronDown24", - "OcticonsChevronLeft16", - "OcticonsChevronLeft24", - "OcticonsChevronRight16", - "OcticonsChevronRight24", - "OcticonsChevronUp16", - "OcticonsChevronUp24", - "OcticonsCircle16", - "OcticonsCircle24", - "OcticonsCircleSlash16", - "OcticonsCircleSlash24", - "OcticonsClock16", - "OcticonsClock24", - "OcticonsCloud16", - "OcticonsCloud24", - "OcticonsCloudOffline16", - "OcticonsCloudOffline24", - "OcticonsCode16", - "OcticonsCode24", - "OcticonsCodeOfConduct16", - "OcticonsCodeOfConduct24", - "OcticonsCodeReview16", - "OcticonsCodeReview24", - "OcticonsCodeSquare16", - "OcticonsCodeSquare24", - "OcticonsCodescan16", - "OcticonsCodescan24", - "OcticonsCodescanCheckmark16", - "OcticonsCodescanCheckmark24", - "OcticonsCodespaces16", - "OcticonsCodespaces24", - "OcticonsColumns16", - "OcticonsColumns24", - "OcticonsComment16", - "OcticonsComment24", - "OcticonsCommentDiscussion16", - "OcticonsCommentDiscussion24", - "OcticonsCommit24", - "OcticonsContainer16", - "OcticonsContainer24", - "OcticonsCopy16", - "OcticonsCopy24", - "OcticonsCpu16", - "OcticonsCpu24", - "OcticonsCreditCard16", - "OcticonsCreditCard24", - "OcticonsCrossReference16", - "OcticonsCrossReference24", - "OcticonsDash16", - "OcticonsDash24", - "OcticonsDatabase16", - "OcticonsDatabase24", - "OcticonsDependabot16", - "OcticonsDependabot24", - "OcticonsDesktopDownload16", - "OcticonsDesktopDownload24", - "OcticonsDeviceCamera16", - "OcticonsDeviceCameraVideo16", - "OcticonsDeviceCameraVideo24", - "OcticonsDeviceDesktop16", - "OcticonsDeviceDesktop24", - "OcticonsDeviceMobile16", - "OcticonsDeviceMobile24", - "OcticonsDiamond16", - "OcticonsDiamond24", - "OcticonsDiff16", - "OcticonsDiff24", - "OcticonsDiffAdded16", - "OcticonsDiffIgnored16", - "OcticonsDiffModified16", - "OcticonsDiffRemoved16", - "OcticonsDiffRenamed16", - "OcticonsDot16", - "OcticonsDot24", - "OcticonsDotFill16", - "OcticonsDotFill24", - "OcticonsDownload16", - "OcticonsDownload24", - "OcticonsDuplicate16", - "OcticonsDuplicate24", - "OcticonsEllipsis16", - "OcticonsEye16", - "OcticonsEye24", - "OcticonsEyeClosed16", - "OcticonsEyeClosed24", - "OcticonsFeedDiscussion16", - "OcticonsFeedForked16", - "OcticonsFeedHeart16", - "OcticonsFeedMerged16", - "OcticonsFeedPerson16", - "OcticonsFeedRepo16", - "OcticonsFeedRocket16", - "OcticonsFeedStar16", - "OcticonsFeedTag16", - "OcticonsFeedTrophy16", - "OcticonsFile16", - "OcticonsFile24", - "OcticonsFileBadge16", - "OcticonsFileBinary16", - "OcticonsFileBinary24", - "OcticonsFileCode16", - "OcticonsFileCode24", - "OcticonsFileDiff16", - "OcticonsFileDiff24", - "OcticonsFileDirectory16", - "OcticonsFileDirectory24", - "OcticonsFileDirectoryFill16", - "OcticonsFileDirectoryFill24", - "OcticonsFileDirectoryOpenFill16", - "OcticonsFileMedia24", - "OcticonsFileSubmodule16", - "OcticonsFileSubmodule24", - "OcticonsFileSymlinkFile16", - "OcticonsFileSymlinkFile24", - "OcticonsFileZip16", - "OcticonsFileZip24", - "OcticonsFilter16", - "OcticonsFilter24", - "OcticonsFlame16", - "OcticonsFlame24", - "OcticonsFold16", - "OcticonsFold24", - "OcticonsFoldDown16", - "OcticonsFoldDown24", - "OcticonsFoldUp16", - "OcticonsFoldUp24", - "OcticonsGear16", - "OcticonsGear24", - "OcticonsGift16", - "OcticonsGift24", - "OcticonsGitBranch16", - "OcticonsGitBranch24", - "OcticonsGitCommit16", - "OcticonsGitCommit24", - "OcticonsGitCompare16", - "OcticonsGitCompare24", - "OcticonsGitMerge16", - "OcticonsGitMerge24", - "OcticonsGitPullRequest16", - "OcticonsGitPullRequest24", - "OcticonsGitPullRequestClosed16", - "OcticonsGitPullRequestClosed24", - "OcticonsGitPullRequestDraft16", - "OcticonsGitPullRequestDraft24", - "OcticonsGlobe16", - "OcticonsGlobe24", - "OcticonsGrabber16", - "OcticonsGrabber24", - "OcticonsGraph16", - "OcticonsGraph24", - "OcticonsHash16", - "OcticonsHash24", - "OcticonsHeading16", - "OcticonsHeading24", - "OcticonsHeart16", - "OcticonsHeart24", - "OcticonsHeartFill16", - "OcticonsHeartFill24", - "OcticonsHistory16", - "OcticonsHistory24", - "OcticonsHome16", - "OcticonsHome24", - "OcticonsHomeFill24", - "OcticonsHorizontalRule16", - "OcticonsHorizontalRule24", - "OcticonsHourglass16", - "OcticonsHourglass24", - "OcticonsHubot16", - "OcticonsHubot24", - "OcticonsIdBadge16", - "OcticonsImage16", - "OcticonsImage24", - "OcticonsInbox16", - "OcticonsInbox24", - "OcticonsInfinity16", - "OcticonsInfinity24", - "OcticonsInfo16", - "OcticonsInfo24", - "OcticonsIssueClosed16", - "OcticonsIssueClosed24", - "OcticonsIssueDraft16", - "OcticonsIssueDraft24", - "OcticonsIssueOpened16", - "OcticonsIssueOpened24", - "OcticonsIssueReopened16", - "OcticonsIssueReopened24", - "OcticonsItalic16", - "OcticonsItalic24", - "OcticonsIterations16", - "OcticonsIterations24", - "OcticonsKebabHorizontal16", - "OcticonsKebabHorizontal24", - "OcticonsKey16", - "OcticonsKey24", - "OcticonsKeyAsterisk16", - "OcticonsLaw16", - "OcticonsLaw24", - "OcticonsLightBulb16", - "OcticonsLightBulb24", - "OcticonsLink16", - "OcticonsLink24", - "OcticonsLinkExternal16", - "OcticonsLinkExternal24", - "OcticonsListOrdered16", - "OcticonsListOrdered24", - "OcticonsListUnordered16", - "OcticonsListUnordered24", - "OcticonsLocation16", - "OcticonsLocation24", - "OcticonsLock16", - "OcticonsLock24", - "OcticonsLog16", - "OcticonsLogoGist16", - "OcticonsLogoGithub16", - "OcticonsMail16", - "OcticonsMail24", - "OcticonsMarkGithub16", - "OcticonsMarkdown16", - "OcticonsMegaphone16", - "OcticonsMegaphone24", - "OcticonsMention16", - "OcticonsMention24", - "OcticonsMeter16", - "OcticonsMilestone16", - "OcticonsMilestone24", - "OcticonsMirror16", - "OcticonsMirror24", - "OcticonsMoon16", - "OcticonsMoon24", - "OcticonsMortarBoard16", - "OcticonsMortarBoard24", - "OcticonsMultiSelect16", - "OcticonsMultiSelect24", - "OcticonsMute16", - "OcticonsMute24", - "OcticonsNoEntry16", - "OcticonsNoEntry24", - "OcticonsNoEntryFill12", - "OcticonsNorthStar16", - "OcticonsNorthStar24", - "OcticonsNote16", - "OcticonsNote24", - "OcticonsNumber16", - "OcticonsNumber24", - "OcticonsOrganization16", - "OcticonsOrganization24", - "OcticonsPackage16", - "OcticonsPackage24", - "OcticonsPackageDependencies16", - "OcticonsPackageDependencies24", - "OcticonsPackageDependents16", - "OcticonsPackageDependents24", - "OcticonsPaintbrush16", - "OcticonsPaperAirplane16", - "OcticonsPaperAirplane24", - "OcticonsPaste16", - "OcticonsPaste24", - "OcticonsPencil16", - "OcticonsPencil24", - "OcticonsPeople16", - "OcticonsPeople24", - "OcticonsPerson16", - "OcticonsPerson24", - "OcticonsPersonAdd16", - "OcticonsPersonAdd24", - "OcticonsPersonFill16", - "OcticonsPersonFill24", - "OcticonsPin16", - "OcticonsPin24", - "OcticonsPlay16", - "OcticonsPlay24", - "OcticonsPlug16", - "OcticonsPlug24", - "OcticonsPlus16", - "OcticonsPlus24", - "OcticonsPlusCircle16", - "OcticonsPlusCircle24", - "OcticonsProject16", - "OcticonsProject24", - "OcticonsPulse16", - "OcticonsPulse24", - "OcticonsQuestion16", - "OcticonsQuestion24", - "OcticonsQuote16", - "OcticonsQuote24", - "OcticonsReply16", - "OcticonsReply24", - "OcticonsRepo16", - "OcticonsRepo24", - "OcticonsRepoClone16", - "OcticonsRepoDeleted16", - "OcticonsRepoForked16", - "OcticonsRepoForked24", - "OcticonsRepoLocked16", - "OcticonsRepoPull16", - "OcticonsRepoPush16", - "OcticonsRepoPush24", - "OcticonsRepoTemplate16", - "OcticonsRepoTemplate24", - "OcticonsReport16", - "OcticonsReport24", - "OcticonsRocket16", - "OcticonsRocket24", - "OcticonsRows16", - "OcticonsRows24", - "OcticonsRss16", - "OcticonsRss24", - "OcticonsRuby16", - "OcticonsRuby24", - "OcticonsScreenFull16", - "OcticonsScreenFull24", - "OcticonsScreenNormal16", - "OcticonsScreenNormal24", - "OcticonsSearch16", - "OcticonsSearch24", - "OcticonsServer16", - "OcticonsServer24", - "OcticonsShare16", - "OcticonsShare24", - "OcticonsShareAndroid16", - "OcticonsShareAndroid24", - "OcticonsShield16", - "OcticonsShield24", - "OcticonsShieldCheck16", - "OcticonsShieldCheck24", - "OcticonsShieldLock16", - "OcticonsShieldLock24", - "OcticonsShieldX16", - "OcticonsShieldX24", - "OcticonsSidebarCollapse16", - "OcticonsSidebarCollapse24", - "OcticonsSidebarExpand16", - "OcticonsSidebarExpand24", - "OcticonsSignIn16", - "OcticonsSignIn24", - "OcticonsSignOut16", - "OcticonsSignOut24", - "OcticonsSingleSelect16", - "OcticonsSingleSelect24", - "OcticonsSkip16", - "OcticonsSkip24", - "OcticonsSmiley16", - "OcticonsSmiley24", - "OcticonsSortAsc16", - "OcticonsSortAsc24", - "OcticonsSortDesc16", - "OcticonsSortDesc24", - "OcticonsSquare16", - "OcticonsSquare24", - "OcticonsSquareFill16", - "OcticonsSquareFill24", - "OcticonsSquirrel16", - "OcticonsSquirrel24", - "OcticonsStack16", - "OcticonsStack24", - "OcticonsStar16", - "OcticonsStar24", - "OcticonsStarFill16", - "OcticonsStarFill24", - "OcticonsStop16", - "OcticonsStop24", - "OcticonsStopwatch16", - "OcticonsStopwatch24", - "OcticonsStrikethrough16", - "OcticonsStrikethrough24", - "OcticonsSun16", - "OcticonsSun24", - "OcticonsSync16", - "OcticonsSync24", - "OcticonsTab24", - "OcticonsTabExternal16", - "OcticonsTable16", - "OcticonsTable24", - "OcticonsTag16", - "OcticonsTag24", - "OcticonsTasklist16", - "OcticonsTasklist24", - "OcticonsTelescope16", - "OcticonsTelescope24", - "OcticonsTelescopeFill16", - "OcticonsTelescopeFill24", - "OcticonsTerminal16", - "OcticonsTerminal24", - "OcticonsThreeBars16", - "OcticonsThumbsdown16", - "OcticonsThumbsdown24", - "OcticonsThumbsup16", - "OcticonsThumbsup24", - "OcticonsTools16", - "OcticonsTools24", - "OcticonsTrash16", - "OcticonsTrash24", - "OcticonsTriangleDown16", - "OcticonsTriangleDown24", - "OcticonsTriangleLeft16", - "OcticonsTriangleLeft24", - "OcticonsTriangleRight16", - "OcticonsTriangleRight24", - "OcticonsTriangleUp16", - "OcticonsTriangleUp24", - "OcticonsTrophy16", - "OcticonsTrophy24", - "OcticonsTypography16", - "OcticonsTypography24", - "OcticonsUnfold16", - "OcticonsUnfold24", - "OcticonsUnlock16", - "OcticonsUnlock24", - "OcticonsUnmute16", - "OcticonsUnmute24", - "OcticonsUnverified16", - "OcticonsUnverified24", - "OcticonsUpload16", - "OcticonsUpload24", - "OcticonsVerified16", - "OcticonsVerified24", - "OcticonsVersions16", - "OcticonsVersions24", - "OcticonsVideo16", - "OcticonsVideo24", - "OcticonsWebhook16", - "OcticonsWorkflow16", - "OcticonsWorkflow24", - "OcticonsX16", - "OcticonsX24", - "OcticonsXCircle16", - "OcticonsXCircle24", - "OcticonsXCircleFill12", - "OcticonsXCircleFill16", - "OcticonsXCircleFill24", - "OcticonsZap16", - "OcticonsZap24" - ], - "proc-macro2": [ - "dep:proc-macro2" - ], - "quote": [ - "dep:quote" - ], - "regex": [ - "dep:regex" - ], - "simple_icons": [ - "SimpleIcons1001Tracklists", - "SimpleIcons1Password", - "SimpleIcons3M", - "SimpleIcons42", - "SimpleIcons4Chan", - "SimpleIcons4D", - "SimpleIcons500Px", - "SimpleIconsAbbott", - "SimpleIconsAbbrobotstudio", - "SimpleIconsAbbvie", - "SimpleIconsAbletonlive", - "SimpleIconsAboutdotme", - "SimpleIconsAbstract", - "SimpleIconsAcademia", - "SimpleIconsAccenture", - "SimpleIconsAcclaim", - "SimpleIconsAccusoft", - "SimpleIconsAcer", - "SimpleIconsAcm", - "SimpleIconsActigraph", - "SimpleIconsActivision", - "SimpleIconsAdafruit", - "SimpleIconsAdblock", - "SimpleIconsAdblockplus", - "SimpleIconsAddthis", - "SimpleIconsAdguard", - "SimpleIconsAdidas", - "SimpleIconsAdminer", - "SimpleIconsAdobe", - "SimpleIconsAdobeacrobatreader", - "SimpleIconsAdobeaftereffects", - "SimpleIconsAdobeaudition", - "SimpleIconsAdobecreativecloud", - "SimpleIconsAdobedreamweaver", - "SimpleIconsAdobefonts", - "SimpleIconsAdobeillustrator", - "SimpleIconsAdobeindesign", - "SimpleIconsAdobelightroom", - "SimpleIconsAdobelightroomclassic", - "SimpleIconsAdobephotoshop", - "SimpleIconsAdobepremierepro", - "SimpleIconsAdobexd", - "SimpleIconsAdonisjs", - "SimpleIconsAdp", - "SimpleIconsAdyen", - "SimpleIconsAerlingus", - "SimpleIconsAeroflot", - "SimpleIconsAeromexico", - "SimpleIconsAerospike", - "SimpleIconsAew", - "SimpleIconsAffinity", - "SimpleIconsAffinitydesigner", - "SimpleIconsAffinityphoto", - "SimpleIconsAffinitypublisher", - "SimpleIconsAframe", - "SimpleIconsAgora", - "SimpleIconsAib", - "SimpleIconsAidungeon", - "SimpleIconsAiohttp", - "SimpleIconsAiqfome", - "SimpleIconsAirasia", - "SimpleIconsAirbnb", - "SimpleIconsAirbus", - "SimpleIconsAirbyte", - "SimpleIconsAircall", - "SimpleIconsAircanada", - "SimpleIconsAirchina", - "SimpleIconsAirfrance", - "SimpleIconsAirplayaudio", - "SimpleIconsAirplayvideo", - "SimpleIconsAirtable", - "SimpleIconsAjv", - "SimpleIconsAkamai", - "SimpleIconsAlacritty", - "SimpleIconsAlbertheijn", - "SimpleIconsAlchemy", - "SimpleIconsAldinord", - "SimpleIconsAldisud", - "SimpleIconsAlfaromeo", - "SimpleIconsAlfred", - "SimpleIconsAlgolia", - "SimpleIconsAlgorand", - "SimpleIconsAlibabacloud", - "SimpleIconsAlibabadotcom", - "SimpleIconsAliexpress", - "SimpleIconsAlipay", - "SimpleIconsAlitalia", - "SimpleIconsAllegro", - "SimpleIconsAlliedmodders", - "SimpleIconsAllocine", - "SimpleIconsAlltrails", - "SimpleIconsAlpinedotjs", - "SimpleIconsAlpinelinux", - "SimpleIconsAltiumdesigner", - "SimpleIconsAlwaysdata", - "SimpleIconsAmazon", - "SimpleIconsAmazonalexa", - "SimpleIconsAmazonapigateway", - "SimpleIconsAmazonaws", - "SimpleIconsAmazoncloudwatch", - "SimpleIconsAmazondynamodb", - "SimpleIconsAmazonec2", - "SimpleIconsAmazonecs", - "SimpleIconsAmazoneks", - "SimpleIconsAmazonfiretv", - "SimpleIconsAmazongames", - "SimpleIconsAmazonlumberyard", - "SimpleIconsAmazonpay", - "SimpleIconsAmazonprime", - "SimpleIconsAmazonrds", - "SimpleIconsAmazons3", - "SimpleIconsAmazonsqs", - "SimpleIconsAmd", - "SimpleIconsAmericanairlines", - "SimpleIconsAmericanexpress", - "SimpleIconsAmg", - "SimpleIconsAmp", - "SimpleIconsAmul", - "SimpleIconsAna", - "SimpleIconsAnaconda", - "SimpleIconsAnalogue", - "SimpleIconsAnchor", - "SimpleIconsAndela", - "SimpleIconsAndroid", - "SimpleIconsAndroidauto", - "SimpleIconsAndroidstudio", - "SimpleIconsAngellist", - "SimpleIconsAngular", - "SimpleIconsAngularjs", - "SimpleIconsAngularuniversal", - "SimpleIconsAnilist", - "SimpleIconsAnsible", - "SimpleIconsAnswer", - "SimpleIconsAnsys", - "SimpleIconsAnta", - "SimpleIconsAntdesign", - "SimpleIconsAntena3", - "SimpleIconsAnydesk", - "SimpleIconsAol", - "SimpleIconsApache", - "SimpleIconsApacheairflow", - "SimpleIconsApacheant", - "SimpleIconsApachecassandra", - "SimpleIconsApachecloudstack", - "SimpleIconsApachecordova", - "SimpleIconsApachecouchdb", - "SimpleIconsApachedruid", - "SimpleIconsApacheecharts", - "SimpleIconsApacheflink", - "SimpleIconsApachegroovy", - "SimpleIconsApachehadoop", - "SimpleIconsApachehive", - "SimpleIconsApachejmeter", - "SimpleIconsApachekafka", - "SimpleIconsApachekylin", - "SimpleIconsApachemaven", - "SimpleIconsApachenetbeanside", - "SimpleIconsApacheopenoffice", - "SimpleIconsApachepulsar", - "SimpleIconsApacherocketmq", - "SimpleIconsApachesolr", - "SimpleIconsApachespark", - "SimpleIconsApachetomcat", - "SimpleIconsAparat", - "SimpleIconsApollographql", - "SimpleIconsApostrophe", - "SimpleIconsAppian", - "SimpleIconsApple", - "SimpleIconsApplearcade", - "SimpleIconsApplemusic", - "SimpleIconsApplenews", - "SimpleIconsApplepay", - "SimpleIconsApplepodcasts", - "SimpleIconsAppletv", - "SimpleIconsAppsignal", - "SimpleIconsAppstore", - "SimpleIconsAppveyor", - "SimpleIconsAppwrite", - "SimpleIconsAqua", - "SimpleIconsAral", - "SimpleIconsArangodb", - "SimpleIconsArchicad", - "SimpleIconsArchiveofourown", - "SimpleIconsArchlinux", - "SimpleIconsArdour", - "SimpleIconsArduino", - "SimpleIconsArgo", - "SimpleIconsArgos", - "SimpleIconsArkecosystem", - "SimpleIconsArlo", - "SimpleIconsArm", - "SimpleIconsArtifacthub", - "SimpleIconsArtixlinux", - "SimpleIconsArtstation", - "SimpleIconsArxiv", - "SimpleIconsAsana", - "SimpleIconsAsciidoctor", - "SimpleIconsAsciinema", - "SimpleIconsAsda", - "SimpleIconsAseprite", - "SimpleIconsAskfm", - "SimpleIconsAskubuntu", - "SimpleIconsAssemblyscript", - "SimpleIconsAstonmartin", - "SimpleIconsAstro", - "SimpleIconsAsus", - "SimpleIconsAtandt", - "SimpleIconsAtari", - "SimpleIconsAtlassian", - "SimpleIconsAtom", - "SimpleIconsAuchan", - "SimpleIconsAudacity", - "SimpleIconsAudi", - "SimpleIconsAudible", - "SimpleIconsAudioboom", - "SimpleIconsAudiomack", - "SimpleIconsAudiotechnica", - "SimpleIconsAurelia", - "SimpleIconsAuth0", - "SimpleIconsAuthy", - "SimpleIconsAutodesk", - "SimpleIconsAutohotkey", - "SimpleIconsAutomattic", - "SimpleIconsAutoprefixer", - "SimpleIconsAvajs", - "SimpleIconsAvast", - "SimpleIconsAwesomelists", - "SimpleIconsAwesomewm", - "SimpleIconsAwsamplify", - "SimpleIconsAwsfargate", - "SimpleIconsAwslambda", - "SimpleIconsAxios", - "SimpleIconsAzureartifacts", - "SimpleIconsAzuredataexplorer", - "SimpleIconsAzuredevops", - "SimpleIconsAzurefunctions", - "SimpleIconsAzurepipelines", - "SimpleIconsBabel", - "SimpleIconsBackblaze", - "SimpleIconsBackbonedotjs", - "SimpleIconsBackendless", - "SimpleIconsBackstage", - "SimpleIconsBadgr", - "SimpleIconsBadoo", - "SimpleIconsBaidu", - "SimpleIconsBamboo", - "SimpleIconsBandcamp", - "SimpleIconsBandlab", - "SimpleIconsBandrautomation", - "SimpleIconsBandsintown", - "SimpleIconsBankofamerica", - "SimpleIconsBarclays", - "SimpleIconsBaremetrics", - "SimpleIconsBasecamp", - "SimpleIconsBastyon", - "SimpleIconsBata", - "SimpleIconsBathasu", - "SimpleIconsBattledotnet", - "SimpleIconsBbc", - "SimpleIconsBbciplayer", - "SimpleIconsBeatport", - "SimpleIconsBeats", - "SimpleIconsBeatsbydre", - "SimpleIconsBehance", - "SimpleIconsBeijingsubway", - "SimpleIconsBem", - "SimpleIconsBentley", - "SimpleIconsBetfair", - "SimpleIconsBigbasket", - "SimpleIconsBigbluebutton", - "SimpleIconsBigcartel", - "SimpleIconsBigcommerce", - "SimpleIconsBilibili", - "SimpleIconsBillboard", - "SimpleIconsBim", - "SimpleIconsBinance", - "SimpleIconsBiolink", - "SimpleIconsBit", - "SimpleIconsBitbucket", - "SimpleIconsBitcoin", - "SimpleIconsBitcoincash", - "SimpleIconsBitcoinsv", - "SimpleIconsBitdefender", - "SimpleIconsBitly", - "SimpleIconsBitrise", - "SimpleIconsBitwarden", - "SimpleIconsBitwig", - "SimpleIconsBlackberry", - "SimpleIconsBlazemeter", - "SimpleIconsBlazor", - "SimpleIconsBlender", - "SimpleIconsBlockchaindotcom", - "SimpleIconsBlogger", - "SimpleIconsBloglovin", - "SimpleIconsBlueprint", - "SimpleIconsBluetooth", - "SimpleIconsBmcsoftware", - "SimpleIconsBmw", - "SimpleIconsBoardgamegeek", - "SimpleIconsBoehringeringelheim", - "SimpleIconsBoeing", - "SimpleIconsBookalope", - "SimpleIconsBookbub", - "SimpleIconsBookmeter", - "SimpleIconsBookmyshow", - "SimpleIconsBookstack", - "SimpleIconsBoost", - "SimpleIconsBoots", - "SimpleIconsBootstrap", - "SimpleIconsBorgbackup", - "SimpleIconsBosch", - "SimpleIconsBose", - "SimpleIconsBoulanger", - "SimpleIconsBower", - "SimpleIconsBox", - "SimpleIconsBoxysvg", - "SimpleIconsBrandfolder", - "SimpleIconsBrave", - "SimpleIconsBreaker", - "SimpleIconsBritishairways", - "SimpleIconsBroadcom", - "SimpleIconsBt", - "SimpleIconsBuddy", - "SimpleIconsBudibase", - "SimpleIconsBuefy", - "SimpleIconsBuffer", - "SimpleIconsBugatti", - "SimpleIconsBugcrowd", - "SimpleIconsBugsnag", - "SimpleIconsBuildkite", - "SimpleIconsBukalapak", - "SimpleIconsBulma", - "SimpleIconsBun", - "SimpleIconsBunq", - "SimpleIconsBurgerking", - "SimpleIconsBurton", - "SimpleIconsBuymeacoffee", - "SimpleIconsBuzzfeed", - "SimpleIconsBvg", - "SimpleIconsByjus", - "SimpleIconsByte", - "SimpleIconsBytedance", - "SimpleIconsC", - "SimpleIconsCachet", - "SimpleIconsCafepress", - "SimpleIconsCaffeine", - "SimpleIconsCairographics", - "SimpleIconsCairometro", - "SimpleIconsCakephp", - "SimpleIconsCampaignmonitor", - "SimpleIconsCanonical", - "SimpleIconsCanva", - "SimpleIconsCapacitor", - "SimpleIconsCarrefour", - "SimpleIconsCarthrottle", - "SimpleIconsCarto", - "SimpleIconsCashapp", - "SimpleIconsCastbox", - "SimpleIconsCastorama", - "SimpleIconsCastro", - "SimpleIconsCaterpillar", - "SimpleIconsCbs", - "SimpleIconsCdprojekt", - "SimpleIconsCelery", - "SimpleIconsCentos", - "SimpleIconsCeph", - "SimpleIconsCesium", - "SimpleIconsChai", - "SimpleIconsChainguard", - "SimpleIconsChainlink", - "SimpleIconsChakraui", - "SimpleIconsChartdotjs", - "SimpleIconsChartmogul", - "SimpleIconsChase", - "SimpleIconsChatbot", - "SimpleIconsCheckio", - "SimpleIconsCheckmarx", - "SimpleIconsChef", - "SimpleIconsChemex", - "SimpleIconsChevrolet", - "SimpleIconsChinaeasternairlines", - "SimpleIconsChinasouthernairlines", - "SimpleIconsChocolatey", - "SimpleIconsChromecast", - "SimpleIconsChrysler", - "SimpleIconsChupachups", - "SimpleIconsCilium", - "SimpleIconsCinema4D", - "SimpleIconsCircle", - "SimpleIconsCircleci", - "SimpleIconsCirrusci", - "SimpleIconsCisco", - "SimpleIconsCitrix", - "SimpleIconsCitroen", - "SimpleIconsCivicrm", - "SimpleIconsCivo", - "SimpleIconsCkeditor4", - "SimpleIconsClaris", - "SimpleIconsClickhouse", - "SimpleIconsClickup", - "SimpleIconsClion", - "SimpleIconsCliqz", - "SimpleIconsClockify", - "SimpleIconsClojure", - "SimpleIconsCloud66", - "SimpleIconsCloudbees", - "SimpleIconsCloudcannon", - "SimpleIconsCloudera", - "SimpleIconsCloudflare", - "SimpleIconsCloudflarepages", - "SimpleIconsCloudfoundry", - "SimpleIconsCloudsmith", - "SimpleIconsCloudways", - "SimpleIconsClubhouse", - "SimpleIconsClyp", - "SimpleIconsCmake", - "SimpleIconsCncf", - "SimpleIconsCnn", - "SimpleIconsCockpit", - "SimpleIconsCockroachlabs", - "SimpleIconsCocoapods", - "SimpleIconsCocos", - "SimpleIconsCoda", - "SimpleIconsCodacy", - "SimpleIconsCodeberg", - "SimpleIconsCodecademy", - "SimpleIconsCodeceptjs", - "SimpleIconsCodechef", - "SimpleIconsCodeclimate", - "SimpleIconsCodecov", - "SimpleIconsCodefactor", - "SimpleIconsCodeforces", - "SimpleIconsCodeigniter", - "SimpleIconsCodemagic", - "SimpleIconsCodemirror", - "SimpleIconsCodenewbie", - "SimpleIconsCodepen", - "SimpleIconsCodeproject", - "SimpleIconsCodereview", - "SimpleIconsCodersrank", - "SimpleIconsCoderwall", - "SimpleIconsCodesandbox", - "SimpleIconsCodeship", - "SimpleIconsCodewars", - "SimpleIconsCodingame", - "SimpleIconsCodingninjas", - "SimpleIconsCodio", - "SimpleIconsCoffeescript", - "SimpleIconsCognizant", - "SimpleIconsCoil", - "SimpleIconsCoinbase", - "SimpleIconsCoinmarketcap", - "SimpleIconsCommerzbank", - "SimpleIconsCommitlint", - "SimpleIconsCommodore", - "SimpleIconsCommonworkflowlanguage", - "SimpleIconsComposer", - "SimpleIconsComsol", - "SimpleIconsConan", - "SimpleIconsConcourse", - "SimpleIconsCondaforge", - "SimpleIconsConekta", - "SimpleIconsConfluence", - "SimpleIconsConstruct3", - "SimpleIconsConsul", - "SimpleIconsContactlesspayment", - "SimpleIconsContainerd", - "SimpleIconsContentful", - "SimpleIconsConventionalcommits", - "SimpleIconsConvertio", - "SimpleIconsCookiecutter", - "SimpleIconsCoop", - "SimpleIconsCora", - "SimpleIconsCoronaengine", - "SimpleIconsCoronarenderer", - "SimpleIconsCorsair", - "SimpleIconsCouchbase", - "SimpleIconsCounterstrike", - "SimpleIconsCountingworkspro", - "SimpleIconsCoursera", - "SimpleIconsCoveralls", - "SimpleIconsCpanel", - "SimpleIconsCplusplus", - "SimpleIconsCraftcms", - "SimpleIconsCratedb", - "SimpleIconsCrayon", - "SimpleIconsCreatereactapp", - "SimpleIconsCreativecommons", - "SimpleIconsCreativetechnology", - "SimpleIconsCredly", - "SimpleIconsCrehana", - "SimpleIconsCriticalrole", - "SimpleIconsCrowdin", - "SimpleIconsCrowdsource", - "SimpleIconsCrunchbase", - "SimpleIconsCrunchyroll", - "SimpleIconsCryengine", - "SimpleIconsCrystal", - "SimpleIconsCsharp", - "SimpleIconsCss3", - "SimpleIconsCssmodules", - "SimpleIconsCsswizardry", - "SimpleIconsCts", - "SimpleIconsCucumber", - "SimpleIconsCultura", - "SimpleIconsCurl", - "SimpleIconsCurseforge", - "SimpleIconsCycling74", - "SimpleIconsCypress", - "SimpleIconsCytoscapedotjs", - "SimpleIconsD", - "SimpleIconsD3Dotjs", - "SimpleIconsDacia", - "SimpleIconsDaf", - "SimpleIconsDailymotion", - "SimpleIconsDaimler", - "SimpleIconsDaisyui", - "SimpleIconsDapr", - "SimpleIconsDarkreader", - "SimpleIconsDart", - "SimpleIconsDarty", - "SimpleIconsDaserste", - "SimpleIconsDash", - "SimpleIconsDashlane", - "SimpleIconsDask", - "SimpleIconsDassaultsystemes", - "SimpleIconsDatabricks", - "SimpleIconsDatacamp", - "SimpleIconsDatadog", - "SimpleIconsDatadotai", - "SimpleIconsDatagrip", - "SimpleIconsDataiku", - "SimpleIconsDatastax", - "SimpleIconsDataverse", - "SimpleIconsDatocms", - "SimpleIconsDatto", - "SimpleIconsDazn", - "SimpleIconsDblp", - "SimpleIconsDbt", - "SimpleIconsDcentertainment", - "SimpleIconsDebian", - "SimpleIconsDedge", - "SimpleIconsDeepin", - "SimpleIconsDeepnote", - "SimpleIconsDeezer", - "SimpleIconsDelicious", - "SimpleIconsDeliveroo", - "SimpleIconsDell", - "SimpleIconsDelonghi", - "SimpleIconsDelphi", - "SimpleIconsDelta", - "SimpleIconsDeno", - "SimpleIconsDependabot", - "SimpleIconsDerspiegel", - "SimpleIconsDesignernews", - "SimpleIconsDeutschebahn", - "SimpleIconsDeutschebank", - "SimpleIconsDevdotto", - "SimpleIconsDevexpress", - "SimpleIconsDeviantart", - "SimpleIconsDevpost", - "SimpleIconsDevrant", - "SimpleIconsDgraph", - "SimpleIconsDhl", - "SimpleIconsDiagramsdotnet", - "SimpleIconsDialogflow", - "SimpleIconsDiaspora", - "SimpleIconsDigg", - "SimpleIconsDigikeyelectronics", - "SimpleIconsDigitalocean", - "SimpleIconsDior", - "SimpleIconsDirectus", - "SimpleIconsDiscogs", - "SimpleIconsDiscord", - "SimpleIconsDiscourse", - "SimpleIconsDiscover", - "SimpleIconsDisqus", - "SimpleIconsDisroot", - "SimpleIconsDjango", - "SimpleIconsDlib", - "SimpleIconsDlna", - "SimpleIconsDm", - "SimpleIconsDocker", - "SimpleIconsDocsdotrs", - "SimpleIconsDocusign", - "SimpleIconsDogecoin", - "SimpleIconsDolby", - "SimpleIconsDoordash", - "SimpleIconsDotenv", - "SimpleIconsDotnet", - "SimpleIconsDouban", - "SimpleIconsDoubanread", - "SimpleIconsDovecot", - "SimpleIconsDpd", - "SimpleIconsDragonframe", - "SimpleIconsDraugiemdotlv", - "SimpleIconsDribbble", - "SimpleIconsDrone", - "SimpleIconsDrooble", - "SimpleIconsDropbox", - "SimpleIconsDrupal", - "SimpleIconsDsautomobiles", - "SimpleIconsDtube", - "SimpleIconsDucati", - "SimpleIconsDuckdb", - "SimpleIconsDuckduckgo", - "SimpleIconsDungeonsanddragons", - "SimpleIconsDunked", - "SimpleIconsDuolingo", - "SimpleIconsDvc", - "SimpleIconsDwavesystems", - "SimpleIconsDwm", - "SimpleIconsDynamics365", - "SimpleIconsDynatrace", - "SimpleIconsE", - "SimpleIconsE3", - "SimpleIconsEa", - "SimpleIconsEagle", - "SimpleIconsEasyjet", - "SimpleIconsEbay", - "SimpleIconsEclipseche", - "SimpleIconsEclipseide", - "SimpleIconsEclipsejetty", - "SimpleIconsEclipsemosquitto", - "SimpleIconsEclipsevertdotx", - "SimpleIconsEdeka", - "SimpleIconsEditorconfig", - "SimpleIconsEdotleclerc", - "SimpleIconsEdx", - "SimpleIconsEgghead", - "SimpleIconsEgnyte", - "SimpleIconsEightsleep", - "SimpleIconsElastic", - "SimpleIconsElasticcloud", - "SimpleIconsElasticsearch", - "SimpleIconsElasticstack", - "SimpleIconsElectron", - "SimpleIconsElectronbuilder", - "SimpleIconsElectronfiddle", - "SimpleIconsElement", - "SimpleIconsElementary", - "SimpleIconsElementor", - "SimpleIconsEleventy", - "SimpleIconsElgato", - "SimpleIconsElixir", - "SimpleIconsEljueves", - "SimpleIconsEllo", - "SimpleIconsElm", - "SimpleIconsElsevier", - "SimpleIconsEmbarcadero", - "SimpleIconsEmberdotjs", - "SimpleIconsEmby", - "SimpleIconsEmirates", - "SimpleIconsEmlakjet", - "SimpleIconsEmpirekred", - "SimpleIconsEngadget", - "SimpleIconsEnpass", - "SimpleIconsEnterprisedb", - "SimpleIconsEnvato", - "SimpleIconsEnvoyproxy", - "SimpleIconsEpel", - "SimpleIconsEpicgames", - "SimpleIconsEpson", - "SimpleIconsEquinixmetal", - "SimpleIconsErlang", - "SimpleIconsEsbuild", - "SimpleIconsEsea", - "SimpleIconsEslgaming", - "SimpleIconsEslint", - "SimpleIconsEsphome", - "SimpleIconsEspressif", - "SimpleIconsEtcd", - "SimpleIconsEthereum", - "SimpleIconsEthiopianairlines", - "SimpleIconsEtihadairways", - "SimpleIconsEtsy", - "SimpleIconsEventbrite", - "SimpleIconsEventstore", - "SimpleIconsEvernote", - "SimpleIconsExercism", - "SimpleIconsExordo", - "SimpleIconsExoscale", - "SimpleIconsExpensify", - "SimpleIconsExpertsexchange", - "SimpleIconsExpo", - "SimpleIconsExpress", - "SimpleIconsExpressvpn", - "SimpleIconsEyeem", - "SimpleIconsF1", - "SimpleIconsF5", - "SimpleIconsFacebook", - "SimpleIconsFacebookgaming", - "SimpleIconsFacebooklive", - "SimpleIconsFaceit", - "SimpleIconsFacepunch", - "SimpleIconsFalcon", - "SimpleIconsFampay", - "SimpleIconsFandango", - "SimpleIconsFandom", - "SimpleIconsFanfou", - "SimpleIconsFantom", - "SimpleIconsFarfetch", - "SimpleIconsFastapi", - "SimpleIconsFastify", - "SimpleIconsFastlane", - "SimpleIconsFastly", - "SimpleIconsFathom", - "SimpleIconsFauna", - "SimpleIconsFavro", - "SimpleIconsFdroid", - "SimpleIconsFeathub", - "SimpleIconsFedex", - "SimpleIconsFedora", - "SimpleIconsFeedly", - "SimpleIconsFerrari", - "SimpleIconsFerrarinv", - "SimpleIconsFfmpeg", - "SimpleIconsFiat", - "SimpleIconsFidoalliance", - "SimpleIconsFifa", - "SimpleIconsFig", - "SimpleIconsFigma", - "SimpleIconsFigshare", - "SimpleIconsFila", - "SimpleIconsFiles", - "SimpleIconsFilezilla", - "SimpleIconsFing", - "SimpleIconsFirebase", - "SimpleIconsFirefox", - "SimpleIconsFirefoxbrowser", - "SimpleIconsFireship", - "SimpleIconsFirewalla", - "SimpleIconsFirst", - "SimpleIconsFitbit", - "SimpleIconsFite", - "SimpleIconsFivem", - "SimpleIconsFiverr", - "SimpleIconsFlask", - "SimpleIconsFlat", - "SimpleIconsFlathub", - "SimpleIconsFlatpak", - "SimpleIconsFlattr", - "SimpleIconsFlickr", - "SimpleIconsFlipboard", - "SimpleIconsFlipkart", - "SimpleIconsFloatplane", - "SimpleIconsFlood", - "SimpleIconsFluentbit", - "SimpleIconsFluentd", - "SimpleIconsFlutter", - "SimpleIconsFluxus", - "SimpleIconsFlyway", - "SimpleIconsFmod", - "SimpleIconsFnac", - "SimpleIconsFolium", - "SimpleIconsFonoma", - "SimpleIconsFontawesome", - "SimpleIconsFontbase", - "SimpleIconsFontforge", - "SimpleIconsFoodpanda", - "SimpleIconsFord", - "SimpleIconsForestry", - "SimpleIconsFormstack", - "SimpleIconsFortinet", - "SimpleIconsFortran", - "SimpleIconsFossa", - "SimpleIconsFossilscm", - "SimpleIconsFoursquare", - "SimpleIconsFoursquarecityguide", - "SimpleIconsFox", - "SimpleIconsFoxtel", - "SimpleIconsFozzy", - "SimpleIconsFramer", - "SimpleIconsFramework7", - "SimpleIconsFranprix", - "SimpleIconsFraunhofergesellschaft", - "SimpleIconsFreebsd", - "SimpleIconsFreecodecamp", - "SimpleIconsFreedesktopdotorg", - "SimpleIconsFreelancer", - "SimpleIconsFreenas", - "SimpleIconsFrontendmentor", - "SimpleIconsFsecure", - "SimpleIconsFugacloud", - "SimpleIconsFujifilm", - "SimpleIconsFujitsu", - "SimpleIconsFunimation", - "SimpleIconsFuraffinity", - "SimpleIconsFurrynetwork", - "SimpleIconsFuturelearn", - "SimpleIconsG2", - "SimpleIconsG2A", - "SimpleIconsGameandwatch", - "SimpleIconsGamedeveloper", - "SimpleIconsGamejolt", - "SimpleIconsGarmin", - "SimpleIconsGatling", - "SimpleIconsGatsby", - "SimpleIconsGeant", - "SimpleIconsGeeksforgeeks", - "SimpleIconsGeneralelectric", - "SimpleIconsGeneralmotors", - "SimpleIconsGenius", - "SimpleIconsGentoo", - "SimpleIconsGeocaching", - "SimpleIconsGerrit", - "SimpleIconsGhost", - "SimpleIconsGhostery", - "SimpleIconsGimp", - "SimpleIconsGiphy", - "SimpleIconsGit", - "SimpleIconsGitbook", - "SimpleIconsGitea", - "SimpleIconsGitee", - "SimpleIconsGitextensions", - "SimpleIconsGithub", - "SimpleIconsGithubactions", - "SimpleIconsGithubpages", - "SimpleIconsGithubsponsors", - "SimpleIconsGitignoredotio", - "SimpleIconsGitkraken", - "SimpleIconsGitlab", - "SimpleIconsGitlfs", - "SimpleIconsGitpod", - "SimpleIconsGitter", - "SimpleIconsGlassdoor", - "SimpleIconsGlitch", - "SimpleIconsGlobus", - "SimpleIconsGmail", - "SimpleIconsGnome", - "SimpleIconsGnometerminal", - "SimpleIconsGnu", - "SimpleIconsGnubash", - "SimpleIconsGnuemacs", - "SimpleIconsGnuicecat", - "SimpleIconsGnuprivacyguard", - "SimpleIconsGnusocial", - "SimpleIconsGo", - "SimpleIconsGocd", - "SimpleIconsGodaddy", - "SimpleIconsGodotengine", - "SimpleIconsGofundme", - "SimpleIconsGogdotcom", - "SimpleIconsGoland", - "SimpleIconsGoldenline", - "SimpleIconsGoodreads", - "SimpleIconsGoogle", - "SimpleIconsGoogleadmob", - "SimpleIconsGoogleads", - "SimpleIconsGoogleadsense", - "SimpleIconsGoogleanalytics", - "SimpleIconsGoogleassistant", - "SimpleIconsGooglecalendar", - "SimpleIconsGooglecardboard", - "SimpleIconsGooglechat", - "SimpleIconsGooglechrome", - "SimpleIconsGoogleclassroom", - "SimpleIconsGooglecloud", - "SimpleIconsGooglecolab", - "SimpleIconsGoogledomains", - "SimpleIconsGoogledrive", - "SimpleIconsGoogleearth", - "SimpleIconsGooglefit", - "SimpleIconsGooglefonts", - "SimpleIconsGooglehangouts", - "SimpleIconsGooglehome", - "SimpleIconsGooglekeep", - "SimpleIconsGooglelens", - "SimpleIconsGooglemaps", - "SimpleIconsGooglemarketingplatform", - "SimpleIconsGooglemeet", - "SimpleIconsGooglemessages", - "SimpleIconsGooglemybusiness", - "SimpleIconsGooglenearby", - "SimpleIconsGooglenews", - "SimpleIconsGoogleoptimize", - "SimpleIconsGooglepay", - "SimpleIconsGooglephotos", - "SimpleIconsGoogleplay", - "SimpleIconsGooglepodcasts", - "SimpleIconsGooglescholar", - "SimpleIconsGooglesearchconsole", - "SimpleIconsGooglesheets", - "SimpleIconsGooglestreetview", - "SimpleIconsGoogletagmanager", - "SimpleIconsGoogletranslate", - "SimpleIconsGotomeeting", - "SimpleIconsGrab", - "SimpleIconsGradle", - "SimpleIconsGrafana", - "SimpleIconsGrammarly", - "SimpleIconsGrandfrais", - "SimpleIconsGraphql", - "SimpleIconsGrav", - "SimpleIconsGravatar", - "SimpleIconsGraylog", - "SimpleIconsGreenhouse", - "SimpleIconsGreensock", - "SimpleIconsGriddotai", - "SimpleIconsGridsome", - "SimpleIconsGroupme", - "SimpleIconsGroupon", - "SimpleIconsGrubhub", - "SimpleIconsGrunt", - "SimpleIconsGsk", - "SimpleIconsGtk", - "SimpleIconsGuangzhoumetro", - "SimpleIconsGuilded", - "SimpleIconsGulp", - "SimpleIconsGumroad", - "SimpleIconsGumtree", - "SimpleIconsGunicorn", - "SimpleIconsGurobi", - "SimpleIconsGutenberg", - "SimpleIconsHabr", - "SimpleIconsHackaday", - "SimpleIconsHackclub", - "SimpleIconsHackerearth", - "SimpleIconsHackernoon", - "SimpleIconsHackerone", - "SimpleIconsHackerrank", - "SimpleIconsHackster", - "SimpleIconsHackthebox", - "SimpleIconsHandlebarsdotjs", - "SimpleIconsHandshake", - "SimpleIconsHandshakeProtocol", - "SimpleIconsHappycow", - "SimpleIconsHarbor", - "SimpleIconsHarmonyos", - "SimpleIconsHashnode", - "SimpleIconsHaskell", - "SimpleIconsHasura", - "SimpleIconsHatenabookmark", - "SimpleIconsHaveibeenpwned", - "SimpleIconsHaxe", - "SimpleIconsHbo", - "SimpleIconsHcl", - "SimpleIconsHeadlessui", - "SimpleIconsHeadspace", - "SimpleIconsHedera", - "SimpleIconsHellofresh", - "SimpleIconsHellyhansen", - "SimpleIconsHelm", - "SimpleIconsHelpdesk", - "SimpleIconsHelpscout", - "SimpleIconsHere", - "SimpleIconsHeroku", - "SimpleIconsHetzner", - "SimpleIconsHexo", - "SimpleIconsHey", - "SimpleIconsHibernate", - "SimpleIconsHibob", - "SimpleIconsHilton", - "SimpleIconsHitachi", - "SimpleIconsHive", - "SimpleIconsHiveBlockchain", - "SimpleIconsHomeadvisor", - "SimpleIconsHomeassistant", - "SimpleIconsHomeassistantcommunitystore", - "SimpleIconsHomebrew", - "SimpleIconsHomebridge", - "SimpleIconsHomify", - "SimpleIconsHonda", - "SimpleIconsHoney", - "SimpleIconsHootsuite", - "SimpleIconsHoppscotch", - "SimpleIconsHotelsdotcom", - "SimpleIconsHotjar", - "SimpleIconsHoudini", - "SimpleIconsHouzz", - "SimpleIconsHp", - "SimpleIconsHtml5", - "SimpleIconsHtmlacademy", - "SimpleIconsHttpie", - "SimpleIconsHuawei", - "SimpleIconsHubspot", - "SimpleIconsHugo", - "SimpleIconsHulu", - "SimpleIconsHumblebundle", - "SimpleIconsHungryjacks", - "SimpleIconsHurriyetemlak", - "SimpleIconsHusqvarna", - "SimpleIconsHyper", - "SimpleIconsHyperledger", - "SimpleIconsHypothesis", - "SimpleIconsHyundai", - "SimpleIconsI18Next", - "SimpleIconsIata", - "SimpleIconsIbeacon", - "SimpleIconsIbm", - "SimpleIconsIbmcloud", - "SimpleIconsIbmwatson", - "SimpleIconsIced", - "SimpleIconsIceland", - "SimpleIconsIcinga", - "SimpleIconsIcloud", - "SimpleIconsIcomoon", - "SimpleIconsIcon", - "SimpleIconsIconfinder", - "SimpleIconsIconify", - "SimpleIconsIconjar", - "SimpleIconsIcons8", - "SimpleIconsIcq", - "SimpleIconsIeee", - "SimpleIconsIfixit", - "SimpleIconsIfood", - "SimpleIconsIfttt", - "SimpleIconsIheartradio", - "SimpleIconsIkea", - "SimpleIconsIledefrancemobilites", - "SimpleIconsImagej", - "SimpleIconsImdb", - "SimpleIconsImgur", - "SimpleIconsImmer", - "SimpleIconsImou", - "SimpleIconsIndeed", - "SimpleIconsInfiniti", - "SimpleIconsInfluxdb", - "SimpleIconsInformatica", - "SimpleIconsInfosys", - "SimpleIconsInfracost", - "SimpleIconsIngress", - "SimpleIconsInkdrop", - "SimpleIconsInkscape", - "SimpleIconsInsomnia", - "SimpleIconsInstacart", - "SimpleIconsInstagram", - "SimpleIconsInstapaper", - "SimpleIconsInstatus", - "SimpleIconsInstructables", - "SimpleIconsInstructure", - "SimpleIconsIntegromat", - "SimpleIconsIntel", - "SimpleIconsIntellijidea", - "SimpleIconsInteractiondesignfoundation", - "SimpleIconsInteractjs", - "SimpleIconsIntercom", - "SimpleIconsIntermarche", - "SimpleIconsInternetarchive", - "SimpleIconsInternetexplorer", - "SimpleIconsIntigriti", - "SimpleIconsInvision", - "SimpleIconsInvoiceninja", - "SimpleIconsIobroker", - "SimpleIconsIonic", - "SimpleIconsIonos", - "SimpleIconsIos", - "SimpleIconsIota", - "SimpleIconsIpfs", - "SimpleIconsIssuu", - "SimpleIconsIstio", - "SimpleIconsItchdotio", - "SimpleIconsIterm2", - "SimpleIconsItunes", - "SimpleIconsItvx", - "SimpleIconsIveco", - "SimpleIconsJabber", - "SimpleIconsJaguar", - "SimpleIconsJamboard", - "SimpleIconsJameson", - "SimpleIconsJamstack", - "SimpleIconsJasmine", - "SimpleIconsJavascript", - "SimpleIconsJbl", - "SimpleIconsJcb", - "SimpleIconsJeep", - "SimpleIconsJekyll", - "SimpleIconsJellyfin", - "SimpleIconsJenkins", - "SimpleIconsJenkinsx", - "SimpleIconsJest", - "SimpleIconsJet", - "SimpleIconsJetbrains", - "SimpleIconsJetpackcompose", - "SimpleIconsJfrog", - "SimpleIconsJfrogbintray", - "SimpleIconsJinja", - "SimpleIconsJira", - "SimpleIconsJirasoftware", - "SimpleIconsJitsi", - "SimpleIconsJohndeere", - "SimpleIconsJoomla", - "SimpleIconsJoplin", - "SimpleIconsJordan", - "SimpleIconsJpeg", - "SimpleIconsJquery", - "SimpleIconsJrgroup", - "SimpleIconsJsdelivr", - "SimpleIconsJsfiddle", - "SimpleIconsJson", - "SimpleIconsJsonwebtokens", - "SimpleIconsJss", - "SimpleIconsJuke", - "SimpleIconsJulia", - "SimpleIconsJunipernetworks", - "SimpleIconsJunit5", - "SimpleIconsJupyter", - "SimpleIconsJusteat", - "SimpleIconsJustgiving", - "SimpleIconsK3S", - "SimpleIconsK6", - "SimpleIconsKaggle", - "SimpleIconsKahoot", - "SimpleIconsKaios", - "SimpleIconsKakao", - "SimpleIconsKakaotalk", - "SimpleIconsKalilinux", - "SimpleIconsKaniko", - "SimpleIconsKarlsruherverkehrsverbund", - "SimpleIconsKasasmart", - "SimpleIconsKashflow", - "SimpleIconsKaspersky", - "SimpleIconsKatacoda", - "SimpleIconsKatana", - "SimpleIconsKaufland", - "SimpleIconsKde", - "SimpleIconsKdenlive", - "SimpleIconsKeepachangelog", - "SimpleIconsKeepassxc", - "SimpleIconsKentico", - "SimpleIconsKeras", - "SimpleIconsKeybase", - "SimpleIconsKeycdn", - "SimpleIconsKeystone", - "SimpleIconsKfc", - "SimpleIconsKhanacademy", - "SimpleIconsKhronosgroup", - "SimpleIconsKia", - "SimpleIconsKibana", - "SimpleIconsKicad", - "SimpleIconsKickstarter", - "SimpleIconsKik", - "SimpleIconsKingstontechnology", - "SimpleIconsKinopoisk", - "SimpleIconsKirby", - "SimpleIconsKitsu", - "SimpleIconsKlarna", - "SimpleIconsKlm", - "SimpleIconsKlook", - "SimpleIconsKnative", - "SimpleIconsKnowledgebase", - "SimpleIconsKnown", - "SimpleIconsKoa", - "SimpleIconsKoc", - "SimpleIconsKodi", - "SimpleIconsKofax", - "SimpleIconsKofi", - "SimpleIconsKomoot", - "SimpleIconsKonami", - "SimpleIconsKong", - "SimpleIconsKongregate", - "SimpleIconsKonva", - "SimpleIconsKotlin", - "SimpleIconsKoyeb", - "SimpleIconsKrita", - "SimpleIconsKtm", - "SimpleIconsKuaishou", - "SimpleIconsKubernetes", - "SimpleIconsKubuntu", - "SimpleIconsKuma", - "SimpleIconsKuula", - "SimpleIconsKyocera", - "SimpleIconsLabview", - "SimpleIconsLada", - "SimpleIconsLamborghini", - "SimpleIconsLandrover", - "SimpleIconsLapce", - "SimpleIconsLaragon", - "SimpleIconsLaravel", - "SimpleIconsLaravelhorizon", - "SimpleIconsLaravelnova", - "SimpleIconsLastdotfm", - "SimpleIconsLastpass", - "SimpleIconsLatex", - "SimpleIconsLaunchpad", - "SimpleIconsLazarus", - "SimpleIconsLbry", - "SimpleIconsLeaderprice", - "SimpleIconsLeaflet", - "SimpleIconsLeanpub", - "SimpleIconsLeetcode", - "SimpleIconsLegacygames", - "SimpleIconsLemmy", - "SimpleIconsLenovo", - "SimpleIconsLens", - "SimpleIconsLerna", - "SimpleIconsLeroymerlin", - "SimpleIconsLess", - "SimpleIconsLetsencrypt", - "SimpleIconsLetterboxd", - "SimpleIconsLevelsdotfyi", - "SimpleIconsLg", - "SimpleIconsLgtm", - "SimpleIconsLiberapay", - "SimpleIconsLibrariesdotio", - "SimpleIconsLibrarything", - "SimpleIconsLibreoffice", - "SimpleIconsLibuv", - "SimpleIconsLichess", - "SimpleIconsLidl", - "SimpleIconsLifx", - "SimpleIconsLighthouse", - "SimpleIconsLine", - "SimpleIconsLineageos", - "SimpleIconsLinear", - "SimpleIconsLinkedin", - "SimpleIconsLinkerd", - "SimpleIconsLinkfire", - "SimpleIconsLinktree", - "SimpleIconsLinode", - "SimpleIconsLinux", - "SimpleIconsLinuxcontainers", - "SimpleIconsLinuxfoundation", - "SimpleIconsLinuxmint", - "SimpleIconsLionair", - "SimpleIconsLiquibase", - "SimpleIconsLit", - "SimpleIconsLitecoin", - "SimpleIconsLitiengine", - "SimpleIconsLivechat", - "SimpleIconsLivejournal", - "SimpleIconsLivewire", - "SimpleIconsLlvm", - "SimpleIconsLmms", - "SimpleIconsLodash", - "SimpleIconsLogitech", - "SimpleIconsLogmein", - "SimpleIconsLogstash", - "SimpleIconsLooker", - "SimpleIconsLoom", - "SimpleIconsLoop", - "SimpleIconsLoopback", - "SimpleIconsLospec", - "SimpleIconsLotpolishairlines", - "SimpleIconsLua", - "SimpleIconsLubuntu", - "SimpleIconsLudwig", - "SimpleIconsLufthansa", - "SimpleIconsLumen", - "SimpleIconsLunacy", - "SimpleIconsLydia", - "SimpleIconsLyft", - "SimpleIconsMaas", - "SimpleIconsMacos", - "SimpleIconsMacpaw", - "SimpleIconsMacys", - "SimpleIconsMagasinsu", - "SimpleIconsMagento", - "SimpleIconsMagisk", - "SimpleIconsMailchimp", - "SimpleIconsMaildotru", - "SimpleIconsMailgun", - "SimpleIconsMajorleaguehacking", - "SimpleIconsMakerbot", - "SimpleIconsMamp", - "SimpleIconsMan", - "SimpleIconsManageiq", - "SimpleIconsManjaro", - "SimpleIconsMapbox", - "SimpleIconsMariadb", - "SimpleIconsMariadbfoundation", - "SimpleIconsMarkdown", - "SimpleIconsMarketo", - "SimpleIconsMarko", - "SimpleIconsMarriott", - "SimpleIconsMaserati", - "SimpleIconsMastercard", - "SimpleIconsMastercomfig", - "SimpleIconsMastodon", - "SimpleIconsMaterialdesign", - "SimpleIconsMaterialdesignicons", - "SimpleIconsMatomo", - "SimpleIconsMatrix", - "SimpleIconsMatterdotjs", - "SimpleIconsMattermost", - "SimpleIconsMatternet", - "SimpleIconsMax", - "SimpleIconsMaxplanckgesellschaft", - "SimpleIconsMaytag", - "SimpleIconsMazda", - "SimpleIconsMcafee", - "SimpleIconsMcdonalds", - "SimpleIconsMclaren", - "SimpleIconsMdbook", - "SimpleIconsMdnwebdocs", - "SimpleIconsMdx", - "SimpleIconsMediafire", - "SimpleIconsMediamarkt", - "SimpleIconsMediatek", - "SimpleIconsMediatemple", - "SimpleIconsMedium", - "SimpleIconsMeetup", - "SimpleIconsMega", - "SimpleIconsMendeley", - "SimpleIconsMercadopago", - "SimpleIconsMercedes", - "SimpleIconsMerck", - "SimpleIconsMercurial", - "SimpleIconsMessenger", - "SimpleIconsMeta", - "SimpleIconsMetabase", - "SimpleIconsMetafilter", - "SimpleIconsMeteor", - "SimpleIconsMetro", - "SimpleIconsMetrodelaciudaddemexico", - "SimpleIconsMetrodemadrid", - "SimpleIconsMetrodeparis", - "SimpleIconsMewe", - "SimpleIconsMicrobit", - "SimpleIconsMicrodotblog", - "SimpleIconsMicrogenetics", - "SimpleIconsMicropython", - "SimpleIconsMicrosoft", - "SimpleIconsMicrosoftacademic", - "SimpleIconsMicrosoftaccess", - "SimpleIconsMicrosoftazure", - "SimpleIconsMicrosoftbing", - "SimpleIconsMicrosoftedge", - "SimpleIconsMicrosoftexcel", - "SimpleIconsMicrosoftexchange", - "SimpleIconsMicrosoftoffice", - "SimpleIconsMicrosoftonedrive", - "SimpleIconsMicrosoftonenote", - "SimpleIconsMicrosoftoutlook", - "SimpleIconsMicrosoftpowerpoint", - "SimpleIconsMicrosoftsharepoint", - "SimpleIconsMicrosoftsqlserver", - "SimpleIconsMicrosoftteams", - "SimpleIconsMicrosofttranslator", - "SimpleIconsMicrosoftvisio", - "SimpleIconsMicrosoftword", - "SimpleIconsMicrostrategy", - "SimpleIconsMidi", - "SimpleIconsMinds", - "SimpleIconsMinecraft", - "SimpleIconsMinetest", - "SimpleIconsMini", - "SimpleIconsMinutemailer", - "SimpleIconsMiro", - "SimpleIconsMitsubishi", - "SimpleIconsMix", - "SimpleIconsMixcloud", - "SimpleIconsMlb", - "SimpleIconsMlflow", - "SimpleIconsMobx", - "SimpleIconsMobxstatetree", - "SimpleIconsMocha", - "SimpleIconsModin", - "SimpleIconsModrinth", - "SimpleIconsModx", - "SimpleIconsMojangstudios", - "SimpleIconsMoleculer", - "SimpleIconsMomenteo", - "SimpleIconsMonero", - "SimpleIconsMoneygram", - "SimpleIconsMongodb", - "SimpleIconsMonica", - "SimpleIconsMonkeytie", - "SimpleIconsMonogames", - "SimpleIconsMonoprix", - "SimpleIconsMonster", - "SimpleIconsMonzo", - "SimpleIconsMoo", - "SimpleIconsMoonrepo", - "SimpleIconsMorrisons", - "SimpleIconsMoscowmetro", - "SimpleIconsMotorola", - "SimpleIconsMozilla", - "SimpleIconsMqtt", - "SimpleIconsMsi", - "SimpleIconsMsibusiness", - "SimpleIconsMta", - "SimpleIconsMtr", - "SimpleIconsMui", - "SimpleIconsMulesoft", - "SimpleIconsMuller", - "SimpleIconsMumble", - "SimpleIconsMusescore", - "SimpleIconsMusicbrainz", - "SimpleIconsMxlinux", - "SimpleIconsMyanimelist", - "SimpleIconsMyob", - "SimpleIconsMyspace", - "SimpleIconsMysql", - "SimpleIconsN26", - "SimpleIconsNamebase", - "SimpleIconsNamecheap", - "SimpleIconsNano", - "SimpleIconsNasa", - "SimpleIconsNationalgrid", - "SimpleIconsNativescript", - "SimpleIconsNaver", - "SimpleIconsNba", - "SimpleIconsNbb", - "SimpleIconsNdr", - "SimpleIconsNec", - "SimpleIconsNeo4J", - "SimpleIconsNeovim", - "SimpleIconsNestjs", - "SimpleIconsNetapp", - "SimpleIconsNetbsd", - "SimpleIconsNetflix", - "SimpleIconsNetlify", - "SimpleIconsNette", - "SimpleIconsNetto", - "SimpleIconsNeutralinojs", - "SimpleIconsNewbalance", - "SimpleIconsNewjapanprowrestling", - "SimpleIconsNewrelic", - "SimpleIconsNewyorktimes", - "SimpleIconsNextbilliondotai", - "SimpleIconsNextcloud", - "SimpleIconsNextdoor", - "SimpleIconsNextdotjs", - "SimpleIconsNfc", - "SimpleIconsNginx", - "SimpleIconsNgrok", - "SimpleIconsNiconico", - "SimpleIconsNike", - "SimpleIconsNim", - "SimpleIconsNintendo", - "SimpleIconsNintendo3Ds", - "SimpleIconsNintendogamecube", - "SimpleIconsNintendonetwork", - "SimpleIconsNintendoswitch", - "SimpleIconsNissan", - "SimpleIconsNixos", - "SimpleIconsNodedotjs", - "SimpleIconsNodemon", - "SimpleIconsNodered", - "SimpleIconsNokia", - "SimpleIconsNorco", - "SimpleIconsNordvpn", - "SimpleIconsNorwegian", - "SimpleIconsNotepadplusplus", - "SimpleIconsNotion", - "SimpleIconsNotist", - "SimpleIconsNounproject", - "SimpleIconsNovu", - "SimpleIconsNow", - "SimpleIconsNpm", - "SimpleIconsNrwl", - "SimpleIconsNubank", - "SimpleIconsNucleo", - "SimpleIconsNuget", - "SimpleIconsNuke", - "SimpleIconsNumba", - "SimpleIconsNumpy", - "SimpleIconsNunjucks", - "SimpleIconsNutanix", - "SimpleIconsNuxtdotjs", - "SimpleIconsNvidia", - "SimpleIconsNx", - "SimpleIconsNzxt", - "SimpleIconsObservable", - "SimpleIconsObsidian", - "SimpleIconsObsstudio", - "SimpleIconsOcaml", - "SimpleIconsOctanerender", - "SimpleIconsOctave", - "SimpleIconsOctoprint", - "SimpleIconsOctopusdeploy", - "SimpleIconsOculus", - "SimpleIconsOdnoklassniki", - "SimpleIconsOdysee", - "SimpleIconsOhdear", - "SimpleIconsOkcupid", - "SimpleIconsOkta", - "SimpleIconsOneplus", - "SimpleIconsOnlyfans", - "SimpleIconsOnlyoffice", - "SimpleIconsOnnx", - "SimpleIconsOnstar", - "SimpleIconsOpel", - "SimpleIconsOpenaccess", - "SimpleIconsOpenai", - "SimpleIconsOpenaigym", - "SimpleIconsOpenapiinitiative", - "SimpleIconsOpenbadges", - "SimpleIconsOpenbsd", - "SimpleIconsOpenbugbounty", - "SimpleIconsOpencollective", - "SimpleIconsOpencontainersinitiative", - "SimpleIconsOpencv", - "SimpleIconsOpenfaas", - "SimpleIconsOpengl", - "SimpleIconsOpenid", - "SimpleIconsOpenjdk", - "SimpleIconsOpenlayers", - "SimpleIconsOpenmined", - "SimpleIconsOpennebula", - "SimpleIconsOpenproject", - "SimpleIconsOpensea", - "SimpleIconsOpensearch", - "SimpleIconsOpensourceinitiative", - "SimpleIconsOpenssl", - "SimpleIconsOpenstack", - "SimpleIconsOpenstreetmap", - "SimpleIconsOpensuse", - "SimpleIconsOpentelemetry", - "SimpleIconsOpenverse", - "SimpleIconsOpenvpn", - "SimpleIconsOpenwrt", - "SimpleIconsOpenzeppelin", - "SimpleIconsOpenzfs", - "SimpleIconsOpera", - "SimpleIconsOpnsense", - "SimpleIconsOpsgenie", - "SimpleIconsOpslevel", - "SimpleIconsOracle", - "SimpleIconsOrcid", - "SimpleIconsOreilly", - "SimpleIconsOrg", - "SimpleIconsOrigin", - "SimpleIconsOsano", - "SimpleIconsOshkosh", - "SimpleIconsOsmc", - "SimpleIconsOsu", - "SimpleIconsOtto", - "SimpleIconsOvercast", - "SimpleIconsOverleaf", - "SimpleIconsOvh", - "SimpleIconsOwasp", - "SimpleIconsOxygen", - "SimpleIconsOyo", - "SimpleIconsP5Dotjs", - "SimpleIconsPackagist", - "SimpleIconsPacker", - "SimpleIconsPaddypower", - "SimpleIconsPagekit", - "SimpleIconsPagerduty", - "SimpleIconsPagespeedinsights", - "SimpleIconsPagseguro", - "SimpleIconsPalantir", - "SimpleIconsPaloaltosoftware", - "SimpleIconsPandas", - "SimpleIconsPandora", - "SimpleIconsPantheon", - "SimpleIconsPaperspace", - "SimpleIconsParitysubstrate", - "SimpleIconsParsedotly", - "SimpleIconsPassport", - "SimpleIconsPastebin", - "SimpleIconsPatreon", - "SimpleIconsPayoneer", - "SimpleIconsPaypal", - "SimpleIconsPaytm", - "SimpleIconsPcgamingwiki", - "SimpleIconsPeakdesign", - "SimpleIconsPeertube", - "SimpleIconsPegasusairlines", - "SimpleIconsPelican", - "SimpleIconsPeloton", - "SimpleIconsPenny", - "SimpleIconsPenpot", - "SimpleIconsPepsi", - "SimpleIconsPercy", - "SimpleIconsPerforce", - "SimpleIconsPerl", - "SimpleIconsPersistent", - "SimpleIconsPersonio", - "SimpleIconsPetsathome", - "SimpleIconsPeugeot", - "SimpleIconsPexels", - "SimpleIconsPfsense", - "SimpleIconsPhabricator", - "SimpleIconsPhilipshue", - "SimpleIconsPhonepe", - "SimpleIconsPhotobucket", - "SimpleIconsPhotocrowd", - "SimpleIconsPhotopea", - "SimpleIconsPhp", - "SimpleIconsPhpmyadmin", - "SimpleIconsPhpstorm", - "SimpleIconsPicardsurgeles", - "SimpleIconsPicartodottv", - "SimpleIconsPicnic", - "SimpleIconsPicpay", - "SimpleIconsPihole", - "SimpleIconsPimcore", - "SimpleIconsPinboard", - "SimpleIconsPingdom", - "SimpleIconsPinterest", - "SimpleIconsPioneerdj", - "SimpleIconsPivotaltracker", - "SimpleIconsPiwigo", - "SimpleIconsPix", - "SimpleIconsPixabay", - "SimpleIconsPixiv", - "SimpleIconsPkgsrc", - "SimpleIconsPlanet", - "SimpleIconsPlanetscale", - "SimpleIconsPlangrid", - "SimpleIconsPlatformdotsh", - "SimpleIconsPlatzi", - "SimpleIconsPlausibleanalytics", - "SimpleIconsPlaycanvas", - "SimpleIconsPlayerdotme", - "SimpleIconsPlayerfm", - "SimpleIconsPlaystation", - "SimpleIconsPlaystation2", - "SimpleIconsPlaystation3", - "SimpleIconsPlaystation4", - "SimpleIconsPlaystation5", - "SimpleIconsPlaystationvita", - "SimpleIconsPlaywright", - "SimpleIconsPleroma", - "SimpleIconsPlesk", - "SimpleIconsPlex", - "SimpleIconsPlotly", - "SimpleIconsPluralsight", - "SimpleIconsPlurk", - "SimpleIconsPluscodes", - "SimpleIconsPm2", - "SimpleIconsPnpm", - "SimpleIconsPocket", - "SimpleIconsPocketbase", - "SimpleIconsPocketcasts", - "SimpleIconsPodcastaddict", - "SimpleIconsPodman", - "SimpleIconsPoetry", - "SimpleIconsPointy", - "SimpleIconsPokemon", - "SimpleIconsPolars", - "SimpleIconsPolkadot", - "SimpleIconsPoly", - "SimpleIconsPolymerproject", - "SimpleIconsPolywork", - "SimpleIconsPopos", - "SimpleIconsPorsche", - "SimpleIconsPortainer", - "SimpleIconsPostcss", - "SimpleIconsPostgresql", - "SimpleIconsPostman", - "SimpleIconsPostmates", - "SimpleIconsPowerapps", - "SimpleIconsPowerautomate", - "SimpleIconsPowerbi", - "SimpleIconsPowerfx", - "SimpleIconsPowerpages", - "SimpleIconsPowers", - "SimpleIconsPowershell", - "SimpleIconsPowervirtualagents", - "SimpleIconsPrdotco", - "SimpleIconsPreact", - "SimpleIconsPrecommit", - "SimpleIconsPremierleague", - "SimpleIconsPrestashop", - "SimpleIconsPresto", - "SimpleIconsPrettier", - "SimpleIconsPrevention", - "SimpleIconsPrezi", - "SimpleIconsPrime", - "SimpleIconsPrimevideo", - "SimpleIconsPrisma", - "SimpleIconsPrismic", - "SimpleIconsPrivateinternetaccess", - "SimpleIconsProbot", - "SimpleIconsProcessingfoundation", - "SimpleIconsProcesswire", - "SimpleIconsProducthunt", - "SimpleIconsProgate", - "SimpleIconsProgress", - "SimpleIconsPrometheus", - "SimpleIconsProsieben", - "SimpleIconsProtocolsdotio", - "SimpleIconsProtodotio", - "SimpleIconsProtondb", - "SimpleIconsProtonmail", - "SimpleIconsProtonvpn", - "SimpleIconsProtools", - "SimpleIconsProtractor", - "SimpleIconsProxmox", - "SimpleIconsPubg", - "SimpleIconsPublons", - "SimpleIconsPubmed", - "SimpleIconsPug", - "SimpleIconsPulumi", - "SimpleIconsPuma", - "SimpleIconsPuppet", - "SimpleIconsPuppeteer", - "SimpleIconsPurescript", - "SimpleIconsPurgecss", - "SimpleIconsPurism", - "SimpleIconsPusher", - "SimpleIconsPwa", - "SimpleIconsPycharm", - "SimpleIconsPyg", - "SimpleIconsPypi", - "SimpleIconsPypy", - "SimpleIconsPyscaffold", - "SimpleIconsPysyft", - "SimpleIconsPytest", - "SimpleIconsPython", - "SimpleIconsPytorch", - "SimpleIconsPytorchlightning", - "SimpleIconsPyup", - "SimpleIconsQantas", - "SimpleIconsQatarairways", - "SimpleIconsQemu", - "SimpleIconsQgis", - "SimpleIconsQi", - "SimpleIconsQiita", - "SimpleIconsQiskit", - "SimpleIconsQiwi", - "SimpleIconsQmk", - "SimpleIconsQt", - "SimpleIconsQualcomm", - "SimpleIconsQualtrics", - "SimpleIconsQualys", - "SimpleIconsQuantcast", - "SimpleIconsQuantconnect", - "SimpleIconsQuarkus", - "SimpleIconsQuasar", - "SimpleIconsQubesos", - "SimpleIconsQuest", - "SimpleIconsQuickbooks", - "SimpleIconsQuicklook", - "SimpleIconsQuicktime", - "SimpleIconsQuip", - "SimpleIconsQuora", - "SimpleIconsQwiklabs", - "SimpleIconsQzone", - "SimpleIconsR", - "SimpleIconsR3", - "SimpleIconsRabbitmq", - "SimpleIconsRacket", - "SimpleIconsRadar", - "SimpleIconsRadiopublic", - "SimpleIconsRailway", - "SimpleIconsRainmeter", - "SimpleIconsRakuten", - "SimpleIconsRam", - "SimpleIconsRancher", - "SimpleIconsRarible", - "SimpleIconsRasa", - "SimpleIconsRaspberrypi", - "SimpleIconsRavelry", - "SimpleIconsRay", - "SimpleIconsRazer", - "SimpleIconsRazorpay", - "SimpleIconsReact", - "SimpleIconsReacthookform", - "SimpleIconsReactivex", - "SimpleIconsReactos", - "SimpleIconsReactquery", - "SimpleIconsReactrouter", - "SimpleIconsReacttable", - "SimpleIconsReadme", - "SimpleIconsReadthedocs", - "SimpleIconsRealm", - "SimpleIconsReason", - "SimpleIconsReasonstudios", - "SimpleIconsRed", - "SimpleIconsRedbubble", - "SimpleIconsReddit", - "SimpleIconsRedhat", - "SimpleIconsRedhatopenshift", - "SimpleIconsRedis", - "SimpleIconsRedmine", - "SimpleIconsRedox", - "SimpleIconsRedux", - "SimpleIconsReduxsaga", - "SimpleIconsRedwoodjs", - "SimpleIconsReebok", - "SimpleIconsRelay", - "SimpleIconsRelianceindustrieslimited", - "SimpleIconsRemix", - "SimpleIconsRenault", - "SimpleIconsRender", - "SimpleIconsRenovatebot", - "SimpleIconsRenpy", - "SimpleIconsRenren", - "SimpleIconsReplit", - "SimpleIconsRepublicofgamers", - "SimpleIconsRescript", - "SimpleIconsRescuetime", - "SimpleIconsResearchgate", - "SimpleIconsResharper", - "SimpleIconsResurrectionremixos", - "SimpleIconsRetroarch", - "SimpleIconsRetropie", - "SimpleIconsRevealdotjs", - "SimpleIconsReverbnation", - "SimpleIconsRevoltdotchat", - "SimpleIconsRevolut", - "SimpleIconsRevue", - "SimpleIconsRewe", - "SimpleIconsRezgo", - "SimpleIconsRhinoceros", - "SimpleIconsRider", - "SimpleIconsRimacautomobili", - "SimpleIconsRing", - "SimpleIconsRiotgames", - "SimpleIconsRipple", - "SimpleIconsRiseup", - "SimpleIconsRoamresearch", - "SimpleIconsRoblox", - "SimpleIconsRobotframework", - "SimpleIconsRocketdotchat", - "SimpleIconsRocksdb", - "SimpleIconsRockylinux", - "SimpleIconsRoku", - "SimpleIconsRollsroyce", - "SimpleIconsRollupdotjs", - "SimpleIconsRome", - "SimpleIconsRoots", - "SimpleIconsRootsbedrock", - "SimpleIconsRootssage", - "SimpleIconsRos", - "SimpleIconsRossmann", - "SimpleIconsRotaryinternational", - "SimpleIconsRottentomatoes", - "SimpleIconsRoundcube", - "SimpleIconsRsocket", - "SimpleIconsRss", - "SimpleIconsRstudio", - "SimpleIconsRte", - "SimpleIconsRtl", - "SimpleIconsRtlzwei", - "SimpleIconsRubocop", - "SimpleIconsRuby", - "SimpleIconsRubygems", - "SimpleIconsRubyonrails", - "SimpleIconsRubysinatra", - "SimpleIconsRunkeeper", - "SimpleIconsRunkit", - "SimpleIconsRust", - "SimpleIconsRxdb", - "SimpleIconsRyanair", - "SimpleIconsS7Airlines", - "SimpleIconsSabanci", - "SimpleIconsSafari", - "SimpleIconsSahibinden", - "SimpleIconsSailfishos", - "SimpleIconsSalesforce", - "SimpleIconsSaltproject", - "SimpleIconsSamsung", - "SimpleIconsSamsungpay", - "SimpleIconsSandisk", - "SimpleIconsSanfranciscomunicipalrailway", - "SimpleIconsSaopaulometro", - "SimpleIconsSap", - "SimpleIconsSass", - "SimpleIconsSat1", - "SimpleIconsSaturn", - "SimpleIconsSaucelabs", - "SimpleIconsScala", - "SimpleIconsScaleway", - "SimpleIconsScania", - "SimpleIconsSchneiderelectric", - "SimpleIconsScikitlearn", - "SimpleIconsScipy", - "SimpleIconsScopus", - "SimpleIconsScpfoundation", - "SimpleIconsScratch", - "SimpleIconsScreencastify", - "SimpleIconsScribd", - "SimpleIconsScrimba", - "SimpleIconsScrollreveal", - "SimpleIconsScrumalliance", - "SimpleIconsScrutinizerci", - "SimpleIconsSeagate", - "SimpleIconsSeat", - "SimpleIconsSecurityscorecard", - "SimpleIconsSefaria", - "SimpleIconsSega", - "SimpleIconsSelenium", - "SimpleIconsSellfy", - "SimpleIconsSemanticrelease", - "SimpleIconsSemanticscholar", - "SimpleIconsSemanticuireact", - "SimpleIconsSemanticweb", - "SimpleIconsSemaphoreci", - "SimpleIconsSemver", - "SimpleIconsSencha", - "SimpleIconsSendinblue", - "SimpleIconsSennheiser", - "SimpleIconsSensu", - "SimpleIconsSentry", - "SimpleIconsSepa", - "SimpleIconsSequelize", - "SimpleIconsServerfault", - "SimpleIconsServerless", - "SimpleIconsSessionize", - "SimpleIconsSetapp", - "SimpleIconsSfml", - "SimpleIconsShadow", - "SimpleIconsShanghaimetro", - "SimpleIconsSharp", - "SimpleIconsShazam", - "SimpleIconsShell", - "SimpleIconsShelly", - "SimpleIconsShenzhenmetro", - "SimpleIconsShieldsdotio", - "SimpleIconsShikimori", - "SimpleIconsShopee", - "SimpleIconsShopify", - "SimpleIconsShopware", - "SimpleIconsShotcut", - "SimpleIconsShowpad", - "SimpleIconsShowtime", - "SimpleIconsShutterstock", - "SimpleIconsSiemens", - "SimpleIconsSignal", - "SimpleIconsSimilarweb", - "SimpleIconsSimkl", - "SimpleIconsSimpleanalytics", - "SimpleIconsSimpleicons", - "SimpleIconsSimplenote", - "SimpleIconsSinaweibo", - "SimpleIconsSinglestore", - "SimpleIconsSitepoint", - "SimpleIconsSketch", - "SimpleIconsSketchfab", - "SimpleIconsSketchup", - "SimpleIconsSkillshare", - "SimpleIconsSkoda", - "SimpleIconsSky", - "SimpleIconsSkynet", - "SimpleIconsSkypack", - "SimpleIconsSkype", - "SimpleIconsSkypeforbusiness", - "SimpleIconsSlack", - "SimpleIconsSlackware", - "SimpleIconsSlashdot", - "SimpleIconsSlickpic", - "SimpleIconsSlides", - "SimpleIconsSlideshare", - "SimpleIconsSmart", - "SimpleIconsSmartthings", - "SimpleIconsSmashdotgg", - "SimpleIconsSmashingmagazine", - "SimpleIconsSmrt", - "SimpleIconsSmugmug", - "SimpleIconsSnapchat", - "SimpleIconsSnapcraft", - "SimpleIconsSncf", - "SimpleIconsSnowflake", - "SimpleIconsSnowpack", - "SimpleIconsSnyk", - "SimpleIconsSocialblade", - "SimpleIconsSociety6", - "SimpleIconsSocketdotio", - "SimpleIconsSogou", - "SimpleIconsSolid", - "SimpleIconsSolidity", - "SimpleIconsSololearn", - "SimpleIconsSolus", - "SimpleIconsSonar", - "SimpleIconsSonarcloud", - "SimpleIconsSonarlint", - "SimpleIconsSonarqube", - "SimpleIconsSonarsource", - "SimpleIconsSongkick", - "SimpleIconsSongoda", - "SimpleIconsSonicwall", - "SimpleIconsSonos", - "SimpleIconsSony", - "SimpleIconsSoundcharts", - "SimpleIconsSoundcloud", - "SimpleIconsSourceengine", - "SimpleIconsSourceforge", - "SimpleIconsSourcegraph", - "SimpleIconsSourcetree", - "SimpleIconsSouthwestairlines", - "SimpleIconsSpacemacs", - "SimpleIconsSpacex", - "SimpleIconsSpacy", - "SimpleIconsSparkar", - "SimpleIconsSparkasse", - "SimpleIconsSparkfun", - "SimpleIconsSparkpost", - "SimpleIconsSpdx", - "SimpleIconsSpeakerdeck", - "SimpleIconsSpectrum", - "SimpleIconsSpeedtest", - "SimpleIconsSpinnaker", - "SimpleIconsSpinrilla", - "SimpleIconsSplunk", - "SimpleIconsSpond", - "SimpleIconsSpotify", - "SimpleIconsSpotlight", - "SimpleIconsSpreadshirt", - "SimpleIconsSpreaker", - "SimpleIconsSpring", - "SimpleIconsSpringCreators", - "SimpleIconsSpringboot", - "SimpleIconsSpringsecurity", - "SimpleIconsSpyderide", - "SimpleIconsSqlite", - "SimpleIconsSquare", - "SimpleIconsSquareenix", - "SimpleIconsSquarespace", - "SimpleIconsSsrn", - "SimpleIconsStackbit", - "SimpleIconsStackblitz", - "SimpleIconsStackedit", - "SimpleIconsStackexchange", - "SimpleIconsStackoverflow", - "SimpleIconsStackpath", - "SimpleIconsStackshare", - "SimpleIconsStadia", - "SimpleIconsStaffbase", - "SimpleIconsStandardjs", - "SimpleIconsStarbucks", - "SimpleIconsStardock", - "SimpleIconsStarlingbank", - "SimpleIconsStarship", - "SimpleIconsStartrek", - "SimpleIconsStarz", - "SimpleIconsStatamic", - "SimpleIconsStatuspage", - "SimpleIconsStatuspal", - "SimpleIconsSteam", - "SimpleIconsSteamdb", - "SimpleIconsSteamdeck", - "SimpleIconsSteamworks", - "SimpleIconsSteelseries", - "SimpleIconsSteem", - "SimpleIconsSteemit", - "SimpleIconsSteinberg", - "SimpleIconsStellar", - "SimpleIconsStencyl", - "SimpleIconsStimulus", - "SimpleIconsStitcher", - "SimpleIconsStmicroelectronics", - "SimpleIconsStopstalk", - "SimpleIconsStoryblok", - "SimpleIconsStorybook", - "SimpleIconsStrapi", - "SimpleIconsStrava", - "SimpleIconsStreamlit", - "SimpleIconsStripe", - "SimpleIconsStrongswan", - "SimpleIconsStubhub", - "SimpleIconsStyledcomponents", - "SimpleIconsStylelint", - "SimpleIconsStyleshare", - "SimpleIconsStylus", - "SimpleIconsSubaru", - "SimpleIconsSublimetext", - "SimpleIconsSubstack", - "SimpleIconsSubversion", - "SimpleIconsSuckless", - "SimpleIconsSumologic", - "SimpleIconsSupabase", - "SimpleIconsSupermicro", - "SimpleIconsSuperuser", - "SimpleIconsSurrealdb", - "SimpleIconsSurveymonkey", - "SimpleIconsSuse", - "SimpleIconsSuzuki", - "SimpleIconsSvelte", - "SimpleIconsSvg", - "SimpleIconsSvgo", - "SimpleIconsSwagger", - "SimpleIconsSwarm", - "SimpleIconsSwc", - "SimpleIconsSwift", - "SimpleIconsSwiggy", - "SimpleIconsSwiper", - "SimpleIconsSymantec", - "SimpleIconsSymfony", - "SimpleIconsSymphony", - "SimpleIconsSympy", - "SimpleIconsSynology", - "SimpleIconsSystem76", - "SimpleIconsTableau", - "SimpleIconsTablecheck", - "SimpleIconsTacobell", - "SimpleIconsTado", - "SimpleIconsTaichigraphics", - "SimpleIconsTaichilang", - "SimpleIconsTails", - "SimpleIconsTailwindcss", - "SimpleIconsTalend", - "SimpleIconsTalenthouse", - "SimpleIconsTamiya", - "SimpleIconsTampermonkey", - "SimpleIconsTaobao", - "SimpleIconsTapas", - "SimpleIconsTarget", - "SimpleIconsTask", - "SimpleIconsTasmota", - "SimpleIconsTata", - "SimpleIconsTauri", - "SimpleIconsTaxbuzz", - "SimpleIconsTeamcity", - "SimpleIconsTeamspeak", - "SimpleIconsTeamviewer", - "SimpleIconsTed", - "SimpleIconsTeespring", - "SimpleIconsTekton", - "SimpleIconsTele5", - "SimpleIconsTelegram", - "SimpleIconsTelegraph", - "SimpleIconsTemporal", - "SimpleIconsTencentqq", - "SimpleIconsTensorflow", - "SimpleIconsTeradata", - "SimpleIconsTeratail", - "SimpleIconsTerraform", - "SimpleIconsTesco", - "SimpleIconsTesla", - "SimpleIconsTestcafe", - "SimpleIconsTestin", - "SimpleIconsTestinglibrary", - "SimpleIconsTether", - "SimpleIconsTextpattern", - "SimpleIconsTga", - "SimpleIconsThealgorithms", - "SimpleIconsTheconversation", - "SimpleIconsTheirishtimes", - "SimpleIconsThemighty", - "SimpleIconsThemodelsresource", - "SimpleIconsThemoviedatabase", - "SimpleIconsThenorthface", - "SimpleIconsTheregister", - "SimpleIconsThesoundsresource", - "SimpleIconsThespritersresource", - "SimpleIconsThewashingtonpost", - "SimpleIconsThingiverse", - "SimpleIconsThinkpad", - "SimpleIconsThreadless", - "SimpleIconsThreedotjs", - "SimpleIconsThreema", - "SimpleIconsThumbtack", - "SimpleIconsThunderbird", - "SimpleIconsThymeleaf", - "SimpleIconsTicketmaster", - "SimpleIconsTidal", - "SimpleIconsTide", - "SimpleIconsTidyverse", - "SimpleIconsTietoevry", - "SimpleIconsTiktok", - "SimpleIconsTile", - "SimpleIconsTimescale", - "SimpleIconsTinder", - "SimpleIconsTinyletter", - "SimpleIconsTistory", - "SimpleIconsTmobile", - "SimpleIconsTmux", - "SimpleIconsTnt", - "SimpleIconsTodoist", - "SimpleIconsToggl", - "SimpleIconsTokyometro", - "SimpleIconsToml", - "SimpleIconsTomorrowland", - "SimpleIconsTopcoder", - "SimpleIconsToptal", - "SimpleIconsTorbrowser", - "SimpleIconsTorproject", - "SimpleIconsToshiba", - "SimpleIconsToyota", - "SimpleIconsTplink", - "SimpleIconsTqdm", - "SimpleIconsTraefikmesh", - "SimpleIconsTraefikproxy", - "SimpleIconsTrainerroad", - "SimpleIconsTrakt", - "SimpleIconsTransportforireland", - "SimpleIconsTransportforlondon", - "SimpleIconsTravisci", - "SimpleIconsTreehouse", - "SimpleIconsTrello", - "SimpleIconsTrendmicro", - "SimpleIconsTreyarch", - "SimpleIconsTriller", - "SimpleIconsTrino", - "SimpleIconsTripadvisor", - "SimpleIconsTripdotcom", - "SimpleIconsTrove", - "SimpleIconsTrpc", - "SimpleIconsTruenas", - "SimpleIconsTrulia", - "SimpleIconsTrustedshops", - "SimpleIconsTrustpilot", - "SimpleIconsTryhackme", - "SimpleIconsTryitonline", - "SimpleIconsTsnode", - "SimpleIconsTubi", - "SimpleIconsTui", - "SimpleIconsTumblr", - "SimpleIconsTunein", - "SimpleIconsTurborepo", - "SimpleIconsTurbosquid", - "SimpleIconsTurkishairlines", - "SimpleIconsTutanota", - "SimpleIconsTvtime", - "SimpleIconsTwilio", - "SimpleIconsTwitch", - "SimpleIconsTwitter", - "SimpleIconsTwoo", - "SimpleIconsTypeform", - "SimpleIconsTypescript", - "SimpleIconsTypo3", - "SimpleIconsUber", - "SimpleIconsUbereats", - "SimpleIconsUbiquiti", - "SimpleIconsUbisoft", - "SimpleIconsUblockorigin", - "SimpleIconsUbuntu", - "SimpleIconsUdacity", - "SimpleIconsUdemy", - "SimpleIconsUfc", - "SimpleIconsUikit", - "SimpleIconsUlule", - "SimpleIconsUmbraco", - "SimpleIconsUnacademy", - "SimpleIconsUnderarmour", - "SimpleIconsUnderscoredotjs", - "SimpleIconsUndertale", - "SimpleIconsUnicode", - "SimpleIconsUnilever", - "SimpleIconsUnitedairlines", - "SimpleIconsUnity", - "SimpleIconsUnlicense", - "SimpleIconsUnocss", - "SimpleIconsUnraid", - "SimpleIconsUnrealengine", - "SimpleIconsUnsplash", - "SimpleIconsUntangle", - "SimpleIconsUntappd", - "SimpleIconsUpcloud", - "SimpleIconsUplabs", - "SimpleIconsUploaded", - "SimpleIconsUps", - "SimpleIconsUpstash", - "SimpleIconsUptimekuma", - "SimpleIconsUptobox", - "SimpleIconsUpwork", - "SimpleIconsUsps", - "SimpleIconsV", - "SimpleIconsV2Ex", - "SimpleIconsV8", - "SimpleIconsVaadin", - "SimpleIconsVagrant", - "SimpleIconsVala", - "SimpleIconsValorant", - "SimpleIconsValve", - "SimpleIconsVapor", - "SimpleIconsVault", - "SimpleIconsVauxhall", - "SimpleIconsVbulletin", - "SimpleIconsVectorlogozone", - "SimpleIconsVectorworks", - "SimpleIconsVeeam", - "SimpleIconsVeepee", - "SimpleIconsVelog", - "SimpleIconsVenmo", - "SimpleIconsVercel", - "SimpleIconsVerdaccio", - "SimpleIconsVeritas", - "SimpleIconsVerizon", - "SimpleIconsVexxhost", - "SimpleIconsVfairs", - "SimpleIconsViadeo", - "SimpleIconsViber", - "SimpleIconsVim", - "SimpleIconsVimeo", - "SimpleIconsVimeolivestream", - "SimpleIconsVirgin", - "SimpleIconsVirginmedia", - "SimpleIconsVirtualbox", - "SimpleIconsVirustotal", - "SimpleIconsVisa", - "SimpleIconsVisualstudio", - "SimpleIconsVisualstudiocode", - "SimpleIconsVite", - "SimpleIconsVitess", - "SimpleIconsVitest", - "SimpleIconsVivaldi", - "SimpleIconsVivino", - "SimpleIconsVk", - "SimpleIconsVlcmediaplayer", - "SimpleIconsVmware", - "SimpleIconsVodafone", - "SimpleIconsVolkswagen", - "SimpleIconsVolvo", - "SimpleIconsVonage", - "SimpleIconsVowpalwabbit", - "SimpleIconsVox", - "SimpleIconsVsco", - "SimpleIconsVscodium", - "SimpleIconsVtex", - "SimpleIconsVuedotjs", - "SimpleIconsVuetify", - "SimpleIconsVulkan", - "SimpleIconsVultr", - "SimpleIconsW3C", - "SimpleIconsWacom", - "SimpleIconsWagtail", - "SimpleIconsWails", - "SimpleIconsWakatime", - "SimpleIconsWalkman", - "SimpleIconsWallabag", - "SimpleIconsWalmart", - "SimpleIconsWantedly", - "SimpleIconsWappalyzer", - "SimpleIconsWarnerbros", - "SimpleIconsWarp", - "SimpleIconsWasmcloud", - "SimpleIconsWasmer", - "SimpleIconsWattpad", - "SimpleIconsWayland", - "SimpleIconsWaze", - "SimpleIconsWearos", - "SimpleIconsWeasyl", - "SimpleIconsWeb3Dotjs", - "SimpleIconsWebassembly", - "SimpleIconsWebauthn", - "SimpleIconsWebcomponentsdotorg", - "SimpleIconsWebdriverio", - "SimpleIconsWebflow", - "SimpleIconsWebgl", - "SimpleIconsWebhint", - "SimpleIconsWeblate", - "SimpleIconsWebmin", - "SimpleIconsWebmoney", - "SimpleIconsWebpack", - "SimpleIconsWebrtc", - "SimpleIconsWebstorm", - "SimpleIconsWebtoon", - "SimpleIconsWechat", - "SimpleIconsWegame", - "SimpleIconsWeightsandbiases", - "SimpleIconsWelcometothejungle", - "SimpleIconsWemo", - "SimpleIconsWesterndigital", - "SimpleIconsWetransfer", - "SimpleIconsWhatsapp", - "SimpleIconsWheniwork", - "SimpleIconsWhitesource", - "SimpleIconsWii", - "SimpleIconsWiiu", - "SimpleIconsWikidata", - "SimpleIconsWikidotjs", - "SimpleIconsWikimediacommons", - "SimpleIconsWikipedia", - "SimpleIconsWikiquote", - "SimpleIconsWikivoyage", - "SimpleIconsWinamp", - "SimpleIconsWindicss", - "SimpleIconsWindows", - "SimpleIconsWindows11", - "SimpleIconsWindows95", - "SimpleIconsWindowsterminal", - "SimpleIconsWindowsxp", - "SimpleIconsWinmate", - "SimpleIconsWipro", - "SimpleIconsWire", - "SimpleIconsWireguard", - "SimpleIconsWireshark", - "SimpleIconsWise", - "SimpleIconsWish", - "SimpleIconsWistia", - "SimpleIconsWix", - "SimpleIconsWizzair", - "SimpleIconsWolfram", - "SimpleIconsWolframlanguage", - "SimpleIconsWolframmathematica", - "SimpleIconsWoo", - "SimpleIconsWoocommerce", - "SimpleIconsWordpress", - "SimpleIconsWorkplace", - "SimpleIconsWorldhealthorganization", - "SimpleIconsWpengine", - "SimpleIconsWpexplorer", - "SimpleIconsWprocket", - "SimpleIconsWritedotas", - "SimpleIconsWwe", - "SimpleIconsWwise", - "SimpleIconsXamarin", - "SimpleIconsXaml", - "SimpleIconsXampp", - "SimpleIconsXbox", - "SimpleIconsXcode", - "SimpleIconsXdadevelopers", - "SimpleIconsXdotorg", - "SimpleIconsXero", - "SimpleIconsXfce", - "SimpleIconsXiaomi", - "SimpleIconsXilinx", - "SimpleIconsXing", - "SimpleIconsXmpp", - "SimpleIconsXo", - "SimpleIconsXrp", - "SimpleIconsXsplit", - "SimpleIconsXstate", - "SimpleIconsYahoo", - "SimpleIconsYale", - "SimpleIconsYamahacorporation", - "SimpleIconsYamahamotorcorporation", - "SimpleIconsYammer", - "SimpleIconsYarn", - "SimpleIconsYcombinator", - "SimpleIconsYelp", - "SimpleIconsYoast", - "SimpleIconsYolo", - "SimpleIconsYourtraveldottv", - "SimpleIconsYoutube", - "SimpleIconsYoutubegaming", - "SimpleIconsYoutubemusic", - "SimpleIconsYoutubestudio", - "SimpleIconsYoutubetv", - "SimpleIconsYubico", - "SimpleIconsZabka", - "SimpleIconsZalando", - "SimpleIconsZalo", - "SimpleIconsZapier", - "SimpleIconsZara", - "SimpleIconsZazzle", - "SimpleIconsZcash", - "SimpleIconsZdf", - "SimpleIconsZebratechnologies", - "SimpleIconsZelle", - "SimpleIconsZend", - "SimpleIconsZendesk", - "SimpleIconsZendframework", - "SimpleIconsZenn", - "SimpleIconsZenodo", - "SimpleIconsZerodha", - "SimpleIconsZeromq", - "SimpleIconsZerply", - "SimpleIconsZettlr", - "SimpleIconsZhihu", - "SimpleIconsZig", - "SimpleIconsZigbee", - "SimpleIconsZillow", - "SimpleIconsZincsearch", - "SimpleIconsZingat", - "SimpleIconsZoho", - "SimpleIconsZoiper", - "SimpleIconsZomato", - "SimpleIconsZoom", - "SimpleIconsZorin", - "SimpleIconsZotero", - "SimpleIconsZulip", - "SimpleIconsZwave", - "SimpleIconsZyte" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yew_icons-0.7.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Finn Bear" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/finnbear/yew_icons/", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "yoke", - "version": "0.7.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "license": "Unicode-3.0", - "license_file": null, - "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yoke-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yoke", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bincode", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/tests/bincode.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "miri", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/tests/miri.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "stable_deref_trait/alloc", - "serde?/alloc", - "zerofrom/alloc" - ], - "default": [ - "alloc", - "zerofrom" - ], - "derive": [ - "dep:yoke-derive", - "zerofrom/derive" - ], - "serde": [ - "dep:serde" - ], - "zerofrom": [ - "dep:zerofrom" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.7.5/Cargo.toml", - "metadata": { - "cargo-all-features": { - "max_combination_size": 3 - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "memory-management", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow", - "self-referential" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71.1" - }, - { - "name": "yoke-derive", - "version": "0.7.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", - "license": "Unicode-3.0", - "license_file": null, - "description": "Custom derive for the yoke crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fold" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "yoke_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "yoke_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/examples/yoke_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.7.5/Cargo.toml", - "metadata": { - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "memory-management", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow", - "self-referential" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zerocopy", - "version": "0.7.35", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Utilities for zero-copy parsing and serialization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.35", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "assert_matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "elain", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.85", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.35", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerocopy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trybuild", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/tests/trybuild.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__internal_use_only_features_that_work_on_stable": [ - "alloc", - "derive", - "simd" - ], - "alloc": [], - "byteorder": [ - "dep:byteorder" - ], - "default": [ - "byteorder" - ], - "derive": [ - "zerocopy-derive" - ], - "simd": [], - "simd-nightly": [ - "simd" - ], - "zerocopy-derive": [ - "dep:zerocopy-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.7.35/Cargo.toml", - "metadata": { - "ci": { - "pinned-nightly": "nightly-2024-06-19", - "pinned-stable": "1.79.0" - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg", - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "__internal_use_only_features_that_work_on_stable" - ] - } - }, - "publish": null, - "authors": [ - "Joshua Liebow-Feeser " - ], - "categories": [ - "embedded", - "encoding", - "no-std::no-alloc", - "parsing", - "rust-patterns" - ], - "keywords": [ - "cast", - "convert", - "transmute", - "transmutation", - "type-punning" - ], - "readme": "README.md", - "repository": "https://github.com/google/zerocopy", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "zerocopy", - "version": "0.8.25", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "elain", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.89", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.25", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerocopy", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trybuild", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/tests/trybuild.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "__internal_use_only_features_that_work_on_stable": [ - "alloc", - "derive", - "simd", - "std" - ], - "alloc": [], - "derive": [ - "zerocopy-derive" - ], - "float-nightly": [], - "simd": [], - "simd-nightly": [ - "simd" - ], - "std": [ - "alloc" - ], - "zerocopy-derive": [ - "dep:zerocopy-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/Cargo.toml", - "metadata": { - "build-rs": { - "zerocopy-aarch64-simd-1-59-0": "1.59.0", - "zerocopy-core-error-1-81-0": "1.81.0", - "zerocopy-diagnostic-on-unimplemented-1-78-0": "1.78.0", - "zerocopy-generic-bounds-in-const-fn-1-61-0": "1.61.0", - "zerocopy-panic-in-const-and-vec-try-reserve-1-57-0": "1.57.0", - "zerocopy-target-has-atomics-1-60-0": "1.60.0" - }, - "ci": { - "pinned-nightly": "nightly-2025-04-23", - "pinned-stable": "1.86.0" - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg", - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "__internal_use_only_features_that_work_on_stable" - ] - } - }, - "publish": null, - "authors": [ - "Joshua Liebow-Feeser ", - "Jack Wrenn " - ], - "categories": [ - "embedded", - "encoding", - "no-std::no-alloc", - "parsing", - "rust-patterns" - ], - "keywords": [ - "cast", - "convert", - "transmute", - "transmutation", - "type-punning" - ], - "readme": "README.md", - "repository": "https://github.com/google/zerocopy", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "zerofrom", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "license": "Unicode-3.0", - "license_file": null, - "description": "ZeroFrom trait for constructing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zerofrom-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerofrom", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "derive": [ - "dep:zerofrom-derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.81" - }, - { - "name": "zerofrom-derive", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "license": "Unicode-3.0", - "license_file": null, - "description": "Custom derive for the zerofrom crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fold" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "zerofrom_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zf_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/examples/zf_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/Cargo.toml", - "metadata": { - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "memory-management", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zeroize", - "version": "1.8.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Securely clear secrets from memory with a simple trait built on\nstable Rust primitives which guarantee memory is zeroed using an\noperation will not be 'optimized away' by the compiler.\nUses a portable pure Rust implementation that works everywhere,\neven WASM!\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zeroize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zeroize", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/tests/zeroize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zeroize_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/tests/zeroize_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "aarch64": [], - "alloc": [], - "default": [ - "alloc" - ], - "derive": [ - "zeroize_derive" - ], - "serde": [ - "dep:serde" - ], - "simd": [], - "std": [ - "alloc" - ], - "zeroize_derive": [ - "dep:zeroize_derive" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The RustCrypto Project Developers" - ], - "categories": [ - "cryptography", - "memory-management", - "no-std", - "os" - ], - "keywords": [ - "memory", - "memset", - "secure", - "volatile", - "zero" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils/tree/master/zeroize", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "zerovec", - "version": "0.10.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "license": "Unicode-3.0", - "license_file": null, - "description": "Zero-copy vector backed by a byte array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "twox-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.6.0, <0.8.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerovec-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "iai", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_distr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_pcg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rmp-serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerovec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zv_serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/examples/zv_serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "vzv", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/vzv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zeromap", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zeromap.rs", - "edition": "2021", - "required-features": [ - "serde", - "hashmap", - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zerovec", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zerovec_iai", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec_iai.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zerovec_serde", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/benches/zerovec_serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [ - "serde", - "databake" - ], - "databake": [ - "dep:databake" - ], - "derive": [ - "dep:zerovec-derive" - ], - "hashmap": [ - "dep:twox-hash" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "yoke": [ - "dep:yoke" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.10.4/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ], - "max_combination_size": 3 - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "rust-patterns", - "memory-management", - "caching", - "no-std", - "data-structures" - ], - "keywords": [ - "zerocopy", - "serialization", - "zero-copy", - "serde" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "zerovec-derive", - "version": "0.10.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", - "license": "Unicode-3.0", - "license_file": null, - "description": "Custom derive for the zerovec crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "zerovec_derive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "derives", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/derives.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "make", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/make.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "make_var", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/examples/make_var.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.10.3/Cargo.toml", - "metadata": { - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "rust-patterns", - "memory-management", - "caching", - "no-std", - "data-structures" - ], - "keywords": [ - "zerocopy", - "serialization", - "zero-copy", - "serde" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zip", - "version": "2.6.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", - "license": "MIT", - "license_file": null, - "description": "Library to support the reading and writing of zip files.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bzip2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "constant_time_eq", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "deflate64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "wasm_js", - "std" - ], - "target": null, - "registry": null - }, - { - "name": "hmac", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "reset" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lzma-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nt-time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pbkdf2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=1.0.60", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.37", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "xz2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "zeroize_derive" - ], - "target": null, - "registry": null - }, - { - "name": "zopfli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zstd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.95", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=4.4.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "wasm_js", - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.15", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.37", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "formatting", - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))", - "registry": null - }, - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": "cfg(fuzzing)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zip", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "merge_archive", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/merge_archive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "read_entry", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/read_entry.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "read_metadata", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/benches/read_metadata.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/src/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "_all-features": [], - "_deflate-any": [], - "aes": [ - "dep:aes" - ], - "aes-crypto": [ - "aes", - "constant_time_eq", - "hmac", - "pbkdf2", - "sha1", - "getrandom", - "zeroize" - ], - "bzip2": [ - "dep:bzip2" - ], - "chrono": [ - "chrono/default" - ], - "constant_time_eq": [ - "dep:constant_time_eq" - ], - "default": [ - "aes-crypto", - "bzip2", - "deflate64", - "deflate", - "lzma", - "time", - "zstd", - "xz" - ], - "deflate": [ - "flate2/rust_backend", - "deflate-zopfli", - "deflate-flate2" - ], - "deflate-flate2": [ - "_deflate-any" - ], - "deflate-miniz": [ - "deflate", - "deflate-flate2" - ], - "deflate-zlib": [ - "flate2/zlib", - "deflate-flate2" - ], - "deflate-zlib-ng": [ - "flate2/zlib-ng", - "deflate-flate2" - ], - "deflate-zopfli": [ - "zopfli", - "_deflate-any" - ], - "deflate64": [ - "dep:deflate64" - ], - "flate2": [ - "dep:flate2" - ], - "getrandom": [ - "dep:getrandom" - ], - "hmac": [ - "dep:hmac" - ], - "jiff-02": [ - "dep:jiff" - ], - "lzma": [ - "lzma-rs/stream" - ], - "lzma-rs": [ - "dep:lzma-rs" - ], - "nt-time": [ - "dep:nt-time" - ], - "pbkdf2": [ - "dep:pbkdf2" - ], - "proc-macro2": [ - "dep:proc-macro2" - ], - "sha1": [ - "dep:sha1" - ], - "time": [ - "dep:time" - ], - "unreserved": [], - "xz": [ - "dep:xz2" - ], - "zeroize": [ - "dep:zeroize" - ], - "zopfli": [ - "dep:zopfli" - ], - "zstd": [ - "dep:zstd" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zip-2.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Mathijs van de Nes ", - "Marli Frost ", - "Ryan Levick ", - "Chris Hennick " - ], - "categories": [], - "keywords": [ - "zip", - "archive", - "compression" - ], - "readme": "README.md", - "repository": "https://github.com/zip-rs/zip2.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.73.0" - }, - { - "name": "zopfli", - "version": "0.8.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", - "license": "Apache-2.0", - "license_file": null, - "description": "A Rust implementation of the Zopfli compression algorithm.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.17.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "simd-adler32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zopfli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "zopfli", - "src_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/src/main.rs", - "edition": "2021", - "required-features": [ - "gzip", - "std", - "zlib" - ], - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "gzip", - "std", - "zlib" - ], - "gzip": [ - "dep:crc32fast" - ], - "nightly": [ - "crc32fast?/nightly" - ], - "std": [ - "crc32fast?/std", - "dep:log", - "simd-adler32?/std" - ], - "zlib": [ - "dep:simd-adler32" - ] - }, - "manifest_path": "/home/bibi/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zopfli-0.8.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "--all-features" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "compression", - "no-std" - ], - "keywords": [ - "compression" - ], - "readme": "README.md", - "repository": "https://github.com/zopfli-rs/zopfli", - "homepage": "https://github.com/zopfli-rs/zopfli", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.73.0" - } - ], - "workspace_members": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0" - ], - "workspace_default_members": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0" - ], - "resolve": { - "nodes": [ - { - "id": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" - ], - "deps": [ - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "heavyweight", - "lazy_static", - "regex" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester/meta#abi-tester-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "abi_tester", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/abi-tester#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/meta#adder-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "adder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1" - ], - "deps": [ - { - "name": "gimli", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cipher", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cpufeatures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ], - "deps": [ - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))" - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))" - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))" - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "zerocopy", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "perf-literal", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features/meta#alloc-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "alloc_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/alloc-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ], - "deps": [ - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle_parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle_query", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colorchoice", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "is_terminal_polyfill", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "auto", - "default", - "wincon" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ], - "deps": [ - { - "name": "utf8parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "utf8" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", - "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24" - ], - "deps": [ - { - "name": "addr2line", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#addr2line@0.24.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" - } - ] - }, - { - "name": "miniz_oxide", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" - } - ] - }, - { - "name": "object", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))" - } - ] - }, - { - "name": "rustc_demangle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/interact#basic-features-interact@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "basic_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serial_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "system_sc_interact", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "chain-simulator-tests" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features/meta#basic-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "basic_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder/interactor#basic-interactor@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "adder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serial_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "chain-simulator-tests" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features/meta#big-float-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "big_float_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/big-float-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", - "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cexpr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clang_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "prettyplease", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "shlex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "logging", - "prettyplease", - "runtime", - "static" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22" - ], - "deps": [ - { - "name": "bitcoin_hashes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crate_rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_normalization", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "crate_rand", - "default", - "rand", - "rand_core", - "serde", - "std", - "unicode-normalization" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitcoin_hashes@0.13.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2" - ], - "deps": [ - { - "name": "internals", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitcoin-internals@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitvec@1.0.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#funty@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#radium@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#wyz@0.5.1" - ], - "deps": [ - { - "name": "funty", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#funty@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "radium", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#radium@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wyz", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wyz@0.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ], - "deps": [ - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract/meta#bonding-curve-contract-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "bonding_curve_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/bonding-curve-contract#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features/meta#builtin-func-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "builtin_func_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5" - ], - "deps": [ - { - "name": "bytecheck_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ptr_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "simdutf8", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "simdutf8", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5" - ], - "deps": [ - { - "name": "bytecheck_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ptr_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rancor", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "simdutf8", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "simdutf8" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.6.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytecheck_derive@0.8.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0" - ], - "deps": [ - { - "name": "shlex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cexpr@0.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3" - ], - "deps": [ - { - "name": "nom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause/meta#check-pause-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "check_pause", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child/meta#child-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "child", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/child#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "iana_time_zone", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "android-tzdata", - "clock", - "default", - "iana-time-zone", - "js-sys", - "now", - "oldtime", - "std", - "wasm-bindgen", - "wasmbind", - "winapi", - "windows-link" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4" - ], - "deps": [ - { - "name": "crypto_common", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "inout", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clang-sys@1.8.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6" - ], - "deps": [ - { - "name": "glob", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libloading", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clang_3_5", - "clang_3_6", - "clang_3_7", - "clang_3_8", - "clang_3_9", - "clang_4_0", - "clang_5_0", - "clang_6_0", - "libloading", - "runtime", - "static" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32" - ], - "deps": [ - { - "name": "clap_builder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "color", - "default", - "derive", - "error-context", - "help", - "std", - "suggestions", - "usage" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.37", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", - "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1" - ], - "deps": [ - { - "name": "anstream", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_lex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strsim", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "color", - "error-context", - "help", - "std", - "suggestions", - "usage" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.32", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "heck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.4", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0" - ], - "deps": [ - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability#composability-tests@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "builtin_func_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/builtin-func-features#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder_legacy", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder_queue", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder_raw", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "promises_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "proxy_test_first", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "proxy_test_second", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "recursive_caller", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0" - ], - "deps": [ - { - "name": "unicode_segmentation", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ], - "deps": [ - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "scopeguard", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "default-stack", - "libc", - "unwind", - "windows-sys" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" - ], - "deps": [ - { - "name": "crossbeam_epoch", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" - ], - "deps": [ - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" - ], - "deps": [ - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20/meta#crowdfunding-erc20-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "crowdfunding_erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/crowdfunding-erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt/meta#crowdfunding-esdt-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "crowdfunding_esdt", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crowdfunding-esdt#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles/meta#crypto-bubbles-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "crypto_bubbles", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-bubbles#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0" - ], - "deps": [ - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "typenum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies/meta#crypto-zombies-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "crypto_zombies", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-zombies#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" - ], - "deps": [ - { - "name": "cipher", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cpufeatures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"x86_64\")" - } - ] - }, - { - "name": "curve25519_dalek_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(curve25519_dalek_backend = \"fiat\"), not(curve25519_dalek_backend = \"serial\"), target_arch = \"x86_64\"))" - } - ] - }, - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_version", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "digest", - "precomputed-tables", - "zeroize" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek-derive@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11" - ], - "deps": [ - { - "name": "darling_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "darling_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ident_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "darling_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lock_api", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "const_oid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#const-oid@0.9.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "oid", - "std", - "zeroize" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "display", - "error", - "from" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0" - ], - "deps": [ - { - "name": "derive_more_impl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "debug", - "default", - "from", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#derive_more-impl@1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_xid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "debug", - "default", - "from" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" - ], - "deps": [ - { - "name": "block_buffer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crypto_common", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "block-buffer", - "core-api", - "default", - "mac", - "std", - "subtle" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash/meta#digital-cash-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "digital_cash", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/digital-cash#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro_error", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10" - ], - "deps": [ - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dynasm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memmap2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", - "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0" - ], - "deps": [ - { - "name": "pkcs8", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "signature", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", - "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "curve25519_dalek", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#curve25519-dalek@4.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ed25519", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ed25519@2.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "fast", - "std", - "zeroize" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std", - "use_std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty/meta#empty-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "empty", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/empty#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0" - ], - "deps": [ - { - "name": "enum_iterator_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator-derive@0.7.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0" - ], - "deps": [ - { - "name": "enumset_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#enumset_derive@0.10.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "darling", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "regex" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27" - ], - "deps": [ - { - "name": "anstream", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "env_filter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "jiff", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "auto-color", - "color", - "default", - "humantime", - "regex" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "erc1155_user_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "erc1155", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace/meta#erc1155-marketplace-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc1155_marketplace", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-marketplace#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155/meta#erc1155-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc1155", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock/meta#erc1155-user-mock-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc1155_user_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc1155-user-mock#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20/meta#erc20-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721/meta#erc721-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "erc721", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc721#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - }, - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0" - ], - "deps": [ - { - "name": "first_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "second_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock/meta#esdt-system-sc-mock-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee/meta#esdt-transfer-with-fee-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "esdt_transfer_with_fee", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/esdt-transfer-with-fee#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features/meta#exchange-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "exchange_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/exchange-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [ - "run-go-tests" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial/meta#factorial-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "factorial", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/factorial#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory/meta#factory-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "order_book_factory", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract/meta#first-contract-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "first_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/first-contract#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8" - ], - "deps": [ - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "miniz_oxide", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))" - } - ] - } - ], - "features": [ - "any_impl", - "default", - "miniz_oxide", - "rust_backend" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1" - ], - "deps": [ - { - "name": "foreign_types_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" - ], - "deps": [ - { - "name": "percent_encoding", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features/meta#formatted-message-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "formatted_message_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/formatted-message-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-interactor#forwarder-interact@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "forwarder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "chain-simulator-tests" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy/meta#forwarder-legacy-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "forwarder_legacy", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-legacy#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder/meta#forwarder-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "forwarder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc_wasm_adapter", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "multiversx-sc-wasm-adapter" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue/meta#forwarder-queue-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "forwarder_queue", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-queue#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw/meta#forwarder-raw-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "forwarder_raw", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder-raw#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts/meta#fractional-nfts-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "fractional_nfts", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/fractional-nfts#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#funty@2.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_executor", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_io", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_task", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "async-await", - "default", - "executor", - "futures-executor", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "futures-sink", - "sink", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_task", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_io", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_task", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "slab", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "async-await", - "async-await-macro", - "channel", - "futures-channel", - "futures-io", - "futures-macro", - "futures-sink", - "io", - "memchr", - "sink", - "slab", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/gas-schedule-generator#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "convert_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "env_logger", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ], - "deps": [ - { - "name": "typenum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "more_lengths" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0" - ], - "deps": [ - { - "name": "typenum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [ - "js", - "js-sys", - "std", - "wasm-bindgen" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))" - }, - { - "kind": null, - "target": "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))" - }, - { - "kind": null, - "target": "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))" - }, - { - "kind": null, - "target": "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))" - }, - { - "kind": null, - "target": "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))" - }, - { - "kind": null, - "target": "cfg(target_os = \"netbsd\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"solaris\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"vxworks\")" - } - ] - } - ], - "features": [ - "std", - "wasm_js" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0" - ], - "deps": [ - { - "name": "fallible_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fallible-iterator@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "stable_deref_trait", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "endian-reader", - "fallible-iterator", - "read", - "read-all", - "read-core", - "std", - "write" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.31.1", - "dependencies": [], - "deps": [], - "features": [ - "read", - "read-core" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bstr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "log" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", - "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1" - ], - "deps": [ - { - "name": "gloo_console", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_dialogs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_events", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_file", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_history", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_net", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_render", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_storage", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_timers", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_worker", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "console", - "default", - "dialogs", - "events", - "file", - "futures", - "gloo-console", - "gloo-dialogs", - "gloo-events", - "gloo-file", - "gloo-history", - "gloo-net", - "gloo-render", - "gloo-storage", - "gloo-timers", - "gloo-utils", - "gloo-worker", - "history", - "net", - "render", - "storage", - "timers", - "utils", - "worker" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-dialogs@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-file@0.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_events", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "futures", - "futures-channel" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-history@0.1.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "gloo_events", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-events@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "query", - "serde_urlencoded", - "thiserror" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "eventsource", - "futures-channel", - "futures-core", - "futures-sink", - "http", - "json", - "pin-project", - "serde", - "serde_json", - "websocket" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "eventsource", - "futures-channel", - "futures-core", - "futures-sink", - "http", - "json", - "pin-project", - "serde", - "serde_json", - "websocket" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-render@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-storage@0.2.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-timers@0.2.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "futures", - "futures-channel", - "futures-core" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#gloo-worker@0.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "anymap2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anymap2@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bincode", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_console", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-console@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-utils@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "futures" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" - ], - "deps": [ - { - "name": "atomic_waker", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "slab", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.11.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8" - ], - "deps": [ - { - "name": "ahash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "ahash" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8" - ], - "deps": [ - { - "name": "ahash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.7.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "ahash", - "default", - "inline-more", - "raw" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11" - ], - "deps": [ - { - "name": "ahash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "ahash", - "raw" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "foldhash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default-hasher", - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hex-conservative@0.1.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ], - "deps": [ - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#http@0.2.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "h2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "httparse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "want", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "client", - "default", - "http1", - "http2" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10" - ], - "deps": [ - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio_rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "webpki_roots", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "http1", - "http2", - "ring", - "tls12", - "webpki-roots", - "webpki-tokio" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "native_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio_native_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hyper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "socket2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "client", - "client-legacy", - "default", - "http1", - "http2", - "tokio" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.63", - "dependencies": [], - "deps": [], - "features": [ - "fallback" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yoke", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "litemap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "writeable", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "zerovec" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid_transform_data", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_collections", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_normalizer_data", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_properties", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf16_iter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8_iter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "write16", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_collections", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid_transform", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_properties_data", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "stable_deref_trait", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "writeable", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yoke", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "macros" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4" - ], - "deps": [ - { - "name": "idna_adapter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8_iter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "compiled_data", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1" - ], - "deps": [ - { - "name": "icu_normalizer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_properties", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ], - "deps": [ - { - "name": "crossbeam_deque", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "globset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "same_file", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "indexmap", - "map" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde", - "serde-1", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "equivalent", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "serde", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ], - "deps": [ - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/interact#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.1", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "use_alloc", - "use_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#jiff@0.2.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "random", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "kitty", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "kitty_ownership", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction/meta#kitty-auction-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "kitty_auction", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-auction#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" - ], - "deps": [ - { - "name": "kitty", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "random", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg/meta#kitty-genetic-alg-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "kitty_genetic_alg", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0" - ], - "deps": [ - { - "name": "kitty", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/kitty#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "kitty_genetic_alg", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-genetic-alg#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "random", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership/meta#kitty-ownership-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "kitty_ownership", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/kitty-ownership#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage/meta#large-storage-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "large_storage", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/large-storage#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dependencies": [], - "deps": [], - "features": [ - "default", - "extra_traits", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.7.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat/meta#linked-list-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "linked_list_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/linked-list-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15", - "dependencies": [], - "deps": [], - "features": [ - "elf", - "errno", - "general", - "ioctl", - "no_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", - "dependencies": [], - "deps": [], - "features": [ - "elf", - "errno", - "general", - "ioctl", - "no_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.5", - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft/meta#local-esdt-and-nft-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "local_esdt_and_nft", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/local-esdt-and-nft#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "scopeguard", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "atomic_usize", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20/meta#lottery-erc20-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "lottery_erc20", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/erc-style-contracts/lottery-erc20#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt/meta#lottery-esdt-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "lottery_esdt", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/lottery-esdt#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "derive", - "enable-indexmap", - "indexmap", - "loupe-derive" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#loupe-derive@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "esdt_system_sc_mock", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/esdt-system-sc-mock#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features/meta#managed-map-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "managed_map_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/managed-map-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat/meta#map-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "map_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/map-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.6.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0" - ], - "deps": [ - { - "name": "adler2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "with-alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - }, - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - } - ], - "features": [ - "net", - "os-ext", - "os-poll" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [ - "example_feature" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features/meta#multi-contract-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "multi_contract_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/multi-contract-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/interact#multisig-interact@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multisig", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta#multisig-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "multisig", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_codec", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8" - ], - "deps": [ - { - "name": "bech32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha3", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer@0.3.0", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ed25519_dalek", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ed25519-dalek@2.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex_literal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_core", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor_wasmer", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor_wasmer_experimental", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_seeder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha3", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "multiversx-chain-vm-executor-wasmer", - "multiversx-chain-vm-executor-wasmer-experimental", - "rand", - "wasm-incompatible", - "wasmer-experimental", - "wasmer-prod" - ] - }, - { - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "chrono", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor-wasmer-experimental@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "chrono", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rc_new_cyclic_fallible", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5" - ], - "deps": [ - { - "name": "arrayvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator/meta#multiversx-price-aggregator-sc-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1" - ], - "deps": [ - { - "name": "multiversx_price_aggregator_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/price-aggregator#multiversx-price-aggregator-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex_literal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_core", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_codec", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_derive", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unwrap_infallible", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "esdt-token-payment-legacy-decode", - "managed-buffer-builder-cached", - "num-bigint" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec#multiversx-sc-codec@0.22.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" - ], - "deps": [ - { - "name": "arrayvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_codec_derive", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unwrap_infallible", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "derive", - "multiversx-sc-codec-derive", - "num-bigint" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/data/codec-derive#multiversx-sc-codec-derive@0.22.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/derive#multiversx-sc-derive@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "radix_trie", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta#multiversx-sc-meta@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1" - ], - "deps": [ - { - "name": "bip39", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "common_path", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#common-path@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "convert_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "copy_dir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#copy_dir@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "home", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pathdiff", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "reqwest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruplacer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zip", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "template-test-current", - "template-test-released" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", - "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "convert_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#convert_case@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_version", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmprinter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wat", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bech32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@3.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_scenario_format", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/vm#multiversx-chain-vm@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_vm_executor", - "pkg": "git+https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#multiversx-chain-vm-executor@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pathdiff", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "simple_error", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unwrap_infallible", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "run-go-tests", - "wasm-incompatible", - "wasmer-experimental", - "wasmer-prod" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "env_logger", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_scenario_format", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format#multiversx-chain-scenario-format@0.23.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk_dapp", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk_http", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "dapp", - "default", - "default-tls", - "http", - "multiversx-sdk-dapp", - "multiversx-sdk-http", - "static-tls", - "tokio" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/wasm-adapter#multiversx-sc-wasm-adapter@0.57.1", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "aes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bech32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bip39", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bip39@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ctr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hmac", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_chain_core", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/chain/core#multiversx-chain-core@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pbkdf2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pem", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "scrypt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_repr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha3", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "uuid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/dapp#multiversx-sdk-dapp@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo_net", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo-net@0.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/http#multiversx-sdk-http@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sdk", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/sdk/core#multiversx-sdk@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "reqwest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "chain_simulator", - "default", - "default-tls", - "static-tls" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap/meta#multiversx-wegld-swap-sc-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_wegld_swap_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/core/wegld-swap#multiversx-wegld-swap-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4" - ], - "deps": [ - { - "name": "munge_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#munge_macro@0.4.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/mxpy-snippet-generator#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "bech32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bech32@0.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", - "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" - } - ] - }, - { - "name": "openssl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" - } - ] - }, - { - "name": "openssl_probe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" - } - ] - }, - { - "name": "openssl_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))" - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter/meta#nft-minter-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nft_minter", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-minter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay/meta#nft-storage-prepay-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nft_storage_prepay", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-storage-prepay#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription/meta#nft-subscription-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nft_subscription", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/nft-subscription#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0" - ], - "deps": [ - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "minimal_lexical", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "num_integer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19" - ], - "deps": [ - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "i128", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default", - "i128", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(windows))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.11.2", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.11.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "coff", - "crc32fast", - "elf", - "hashbrown", - "indexmap", - "macho", - "pe", - "std", - "write", - "write_core", - "write_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0" - ], - "deps": [ - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "flate2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruzstd", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "archive", - "coff", - "compression", - "default", - "elf", - "macho", - "pe", - "read", - "read_core", - "std", - "unaligned", - "write", - "write_core", - "write_std", - "xcoff" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#object@0.36.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "archive", - "coff", - "elf", - "macho", - "pe", - "read_core", - "unaligned", - "xcoff" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "race", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.72", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "foreign_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "openssl_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ffi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.107", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", - "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pkg_config", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "vcpkg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/factory#order-book-factory@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair/meta#pair-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "order_book_pair", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/order-book/pair#order-book-pair@0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [ - "run-go-tests" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features/meta#panic-message-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "panic_message_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/panic-message-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent/meta#parent-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parent", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/execute-on-dest-esdt-issue-callback/parent#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10" - ], - "deps": [ - { - "name": "lock_api", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" - ], - "deps": [ - { - "name": "base64ct", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "rand_core", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/meta#payable-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "payable_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features/interactor#payable-interactor@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "payable_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/payable-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serial_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "chain-simulator-tests" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1" - ], - "deps": [ - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hmac", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "hmac" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10" - ], - "deps": [ - { - "name": "pin_project_internal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/dapp#ping-pong-dapp@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", - "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3" - ], - "deps": [ - { - "name": "console_log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew_router", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew_icons", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/interactor#ping-pong-egld-interact@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ping_pong_egld", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "chain-simulator-tests" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld/meta#ping-pong-egld-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ping_pong_egld", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/ping-pong-egld#0.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" - ], - "deps": [ - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pkcs8@0.10.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3" - ], - "deps": [ - { - "name": "der", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "spki", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25" - ], - "deps": [ - { - "name": "zerocopy", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "simd", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.2.32", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "verbatim" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ], - "deps": [ - { - "name": "proc_macro_error_attr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default", - "syn", - "syn-error" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro_error_attr2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "syn-error" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" - ], - "deps": [ - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proc-macro" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17" - ], - "deps": [ - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_cpus", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.16.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "pin_project", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pinned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pinned@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tokio_stream", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features/meta#promises-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "promises_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/promises-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "check_pause", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/check-pause#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause/meta#proxy-pause-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proxy_pause", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/proxy-pause#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "hex_literal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex-literal@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first/meta#proxy-test-first-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proxy_test_first", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-first#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second/meta#proxy-test-second-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proxy_test_second", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/proxy-test-second#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4" - ], - "deps": [ - { - "name": "ptr_meta_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0" - ], - "deps": [ - { - "name": "ptr_meta_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "derive", - "ptr_meta_derive", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta_derive@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat/meta#queue-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "queue_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/queue-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.11", - "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.11", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_aliases", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proto", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "udp", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "socket2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))" - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "ring", - "runtime-tokio", - "rustls", - "rustls-ring" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ring", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": null, - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))" - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "slab", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinyvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "ring", - "rustls-ring" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41" - ], - "deps": [ - { - "name": "cfg_aliases", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "socket2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))" - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "tracing" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proc-macro" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#radium@0.7.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#radix_trie@0.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0" - ], - "deps": [ - { - "name": "endian_type", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#endian-type@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nibble_vec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#nibble_vec@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0" - ], - "deps": [ - { - "name": "ptr_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "rand_chacha", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "getrandom", - "libc", - "rand_chacha", - "std", - "std_rng" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3" - ], - "deps": [ - { - "name": "rand_chacha", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "os_rng", - "small_rng", - "std", - "std_rng", - "thread_rng" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "ppv_lite86", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3" - ], - "deps": [ - { - "name": "ppv_lite86", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16" - ], - "deps": [ - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "getrandom", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2" - ], - "deps": [ - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "os_rng", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_seeder@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/crypto-kitties/common/random#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rayon_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21" - ], - "deps": [ - { - "name": "crossbeam_deque", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rc-new-cyclic-fallible@1.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller/meta#recursive-caller-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "recursive_caller", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/recursive-caller#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "perf", - "perf-backtrack", - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal", - "perf-onepass", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "dfa-onepass", - "hybrid", - "meta", - "nfa", - "nfa-backtrack", - "nfa-pikevm", - "nfa-thompson", - "perf", - "perf-inline", - "perf-literal", - "perf-literal-multisubstring", - "perf-literal-substring", - "std", - "syntax", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "unicode-word-boundary" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.4.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12" - ], - "deps": [ - { - "name": "bytecheck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "bytecheck", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1" - ], - "deps": [ - { - "name": "bytecheck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "bytecheck" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.15", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", - "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.7", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "encoding_rs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "futures_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "h2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "http", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http@1.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "http_body", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "http_body_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "hyper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "hyper_rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "hyper_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "hyper_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.11", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "ipnet", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "mime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "native_tls_crate", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "percent_encoding", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "quinn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.7", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "rustls_pemfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "rustls_pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "serde_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sync_wrapper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tokio_native_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tokio_rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tower", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "url", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "webpki_roots", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - } - ], - "features": [ - "__rustls", - "__rustls-ring", - "__tls", - "blocking", - "charset", - "default", - "default-tls", - "h2", - "http2", - "json", - "macos-system-configuration", - "rustls-tls", - "rustls-tls-webpki-roots", - "rustls-tls-webpki-roots-no-provider" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution/meta#rewards-distribution-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rewards_distribution", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/rewards-distribution#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "untrusted", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "dev_urandom_fallback", - "wasm32_unknown_unknown_js" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitvec@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#rend@0.4.2", - "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.7.45", - "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0" - ], - "deps": [ - { - "name": "bitvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitvec@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytecheck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ptr_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rend", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rend@0.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.7.45", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "seahash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinyvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "uuid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "hashbrown", - "size_32", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", - "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", - "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0" - ], - "deps": [ - { - "name": "bytecheck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytes_1", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap_2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "munge", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#munge@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ptr_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ptr_meta@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rancor", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rancor@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rend", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rend@0.5.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinyvec_1", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "uuid_1", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "bytecheck", - "bytes-1", - "default", - "indexmap-2", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.7.45", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rkyv_derive@0.8.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "bytecheck" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ruplacer@0.10.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", - "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" - ], - "deps": [ - { - "name": "inflector", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#Inflector@0.11.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ignore", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test/meta#rust-snippets-generator-test-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rust_snippets_generator_test", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-snippets-generator-test#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "adder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/adder#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "basic_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/basic-features#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "forwarder", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/forwarder#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_bigint", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester/meta#rust-testing-framework-tester-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rust_testing_framework_tester", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/rust-testing-framework-tester#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26" - ], - "deps": [ - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc_errno", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - }, - { - "kind": null, - "target": "cfg(windows)" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - } - ] - }, - { - "name": "linux_raw_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - } - ] - } - ], - "features": [ - "alloc", - "fs", - "libc-extra-traits", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc_errno", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.11", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - }, - { - "kind": null, - "target": "cfg(windows)" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - } - ] - }, - { - "name": "linux_raw_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.9.4", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - } - ] - } - ], - "features": [ - "alloc", - "default", - "fs", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ring", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "webpki", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "log", - "logging", - "ring", - "std", - "tls12" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0" - ], - "deps": [ - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std", - "web", - "web-time" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ], - "deps": [ - { - "name": "ring", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "untrusted", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "ring", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ruzstd@0.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", - "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3" - ], - "deps": [ - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "derive_more", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "twox_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" - ], - "deps": [ - { - "name": "cipher", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8" - ], - "deps": [ - { - "name": "sdd", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester/meta#scenario-tester-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "scenario_tester", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/scenario-tester#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "use_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#scrypt@0.11.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9" - ], - "deps": [ - { - "name": "password_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pbkdf2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "salsa20", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#salsa20@0.10.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "password-hash", - "simple", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sdd@3.0.8", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract/meta#second-contract-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "second_contract", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/esdt-contract-pair/second-contract#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter/meta#seed-nft-minter-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "seed_nft_minter", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/seed-nft-minter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat/meta#send-tx-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "send_tx_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/send-tx-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219" - ], - "deps": [ - { - "name": "serde_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": null, - "target": "cfg(any())" - } - ] - } - ], - "features": [ - "alloc", - "default", - "derive", - "rc", - "serde_derive", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.219", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.140", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ryu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "indexmap", - "preserve_order", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "form_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ryu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test@3.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", - "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0" - ], - "deps": [ - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "scc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scc@2.3.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serial_test_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "async", - "default", - "logging" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serial_test_derive@3.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "async", - "default" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat/meta#set-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "set_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/set-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cpufeatures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" - } - ] - }, - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sha3@0.10.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5" - ], - "deps": [ - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "keccak", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#keccak@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memmap2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#signature@2.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#simdutf8@0.1.5", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#simple-error@0.3.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat/meta#single-value-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "single_value_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/single-value-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.4.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dependencies": [], - "deps": [], - "features": [ - "const_generics", - "const_new" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [ - "all" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#spki@0.7.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10" - ], - "deps": [ - { - "name": "base64ct", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64ct@1.7.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "der", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#der@0.7.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [ - "managed-buffer-builder-cached" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat/meta#str-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "str_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/str-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clone-impls", - "default", - "derive", - "extra-traits", - "full", - "parsing", - "printing", - "proc-macro", - "quote", - "visit-mut" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clone-impls", - "default", - "derive", - "extra-traits", - "fold", - "full", - "parsing", - "printing", - "proc-macro", - "visit", - "visit-mut" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "futures", - "futures-core" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proc-macro" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/tools/interactor-system-func-calls#system-sc-interact@0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_snippets", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/snippets#multiversx-sc-snippets@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "chain-simulator-tests" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0" - ], - "deps": [ - { - "name": "filetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "xattr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [ - "default", - "xattr" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5" - ], - "deps": [ - { - "name": "fastrand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(unix, windows, target_os = \"wasi\"))" - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(unix, target_os = \"wasi\"))" - } - ] - } - ], - "features": [ - "default", - "getrandom" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69" - ], - "deps": [ - { - "name": "thiserror_impl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12" - ], - "deps": [ - { - "name": "thiserror_impl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "zerovec" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1" - ], - "deps": [ - { - "name": "tinyvec_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "tinyvec_macros" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release/meta#token-release-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "token_release", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/token-release#0.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "mio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "signal_hook_registry", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "socket2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.5.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_family = \"wasm\"))" - } - ] - }, - { - "name": "tokio_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "bytes", - "default", - "fs", - "full", - "io-std", - "io-util", - "libc", - "macros", - "mio", - "net", - "parking_lot", - "process", - "rt", - "rt-multi-thread", - "signal", - "signal-hook-registry", - "socket2", - "sync", - "time", - "tokio-macros", - "windows-sys" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "native_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "ring", - "tls12" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.17", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "time" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.15", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2" - ], - "deps": [ - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_sink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "codec", - "default", - "io" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.7.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_edit", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "display", - "parse" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.22", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_edit", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "display", - "indexmap", - "parse", - "preserve_order" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.19.15", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winnow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.26", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_write", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winnow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "display", - "parse", - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_write@0.1.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ], - "deps": [ - { - "name": "futures_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sync_wrapper", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_layer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tower_service", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "__common", - "futures-core", - "futures-util", - "pin-project-lite", - "sync_wrapper", - "timeout", - "tokio", - "util" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_attributes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "attributes", - "default", - "log", - "std", - "tracing-attributes" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.28", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.33", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3" - ], - "deps": [ - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "once_cell", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features/meta#transfer-role-features-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "transfer_role_features", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/transfer-role-features#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#twox-hash@1.6.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "static_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.18.0", - "dependencies": [], - "deps": [], - "features": [ - "const-generics" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.22", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0" - ], - "deps": [ - { - "name": "tinyvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dependencies": [], - "deps": [], - "features": [ - "cjk", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-xid@0.2.6", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unwrap-infallible@0.1.5", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "flate2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls_pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "url", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "webpki_roots", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "gzip", - "tls" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" - ], - "deps": [ - { - "name": "form_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "idna", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "percent_encoding", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "multiversx_sc_modules", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/modules#multiversx-sc-modules@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module/meta#use-module-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "use_module", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/use-module#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.16.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2" - ], - "deps": [ - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))" - } - ] - } - ], - "features": [ - "default", - "rng", - "std", - "v4" - ] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault/meta#vault-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "vault", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/feature-tests/composability/vault#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1" - ], - "deps": [ - { - "name": "benchmark_common", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/benchmark-common#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/base#multiversx-sc@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "multiversx_sc_scenario", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/scenario#multiversx-sc-scenario@0.57.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat/meta#vec-repeat-meta@0.0.0", - "dependencies": [ - "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0" - ], - "deps": [ - { - "name": "multiversx_sc_meta_lib", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/framework/meta-lib#multiversx-sc-meta-lib@0.57.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "vec_repeat", - "pkg": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/benchmarks/mappers/vec-repeat#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6" - ], - "deps": [ - { - "name": "same_file", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5" - ], - "deps": [ - { - "name": "try_lock", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "msrv", - "rustversion", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100" - ], - "deps": [ - { - "name": "bumpalo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.50", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100" - ], - "deps": [ - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_macro_support", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_backend", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.100", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18" - ], - "deps": [ - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0" - ], - "deps": [ - { - "name": "leb128fmt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "std" - ] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler-singlepass@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-derive@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-dylib@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-universal@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "target_lexicon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmer_compiler_singlepass", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler-singlepass@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmer_derive", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-derive@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasmer_engine", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmer_engine_dylib", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-dylib@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmer_engine_universal", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-universal@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmer_types", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wat", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiler", - "engine", - "singlepass", - "sys", - "universal", - "wasmer-compiler-singlepass", - "wasmer-engine-dylib", - "wasmer-engine-universal", - "wat" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", - "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0" - ], - "deps": [ - { - "name": "bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bindgen@0.70.1", - "dep_kinds": [ - { - "kind": "build", - "target": "cfg(not(target_env = \"musl\"))" - }, - { - "kind": "build", - "target": "cfg(target_env = \"musl\")" - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cmake", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.54", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "derive_more", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#derive_more@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "paste", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_demangle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "shared_buffer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tar", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "target_lexicon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ureq", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.12.1", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasmer_compiler_singlepass", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmer_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - }, - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wat", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiler", - "singlepass", - "std", - "sys", - "wasmer-compiler-singlepass", - "wasmparser", - "wat" - ] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#wasmparser@0.78.2" - ], - "deps": [ - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "target_lexicon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmparser", - "pkg": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#wasmparser@0.78.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "enable-rkyv", - "enable-serde", - "rkyv", - "serde", - "serde_bytes", - "std", - "translator", - "wasmparser" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", - "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15" - ], - "deps": [ - { - "name": "backtrace", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enum_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "leb128", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memmap2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.6.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "object", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.32.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "region", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "rkyv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "self_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "shared_buffer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shared-buffer@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "target_lexicon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "xxhash_rust", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiler", - "default", - "std", - "translator", - "wasmparser" - ] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler-singlepass@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1" - ], - "deps": [ - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dynasm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dynasmrt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rayon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "avx", - "default", - "rayon", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler-singlepass@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" - ], - "deps": [ - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dynasm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasm@1.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dynasmrt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dynasmrt@1.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gimli", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gimli@0.28.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rayon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-compiler@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "avx", - "default", - "gimli", - "rayon", - "std", - "unwind" - ] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-derive@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro_error", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-derive@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro_error2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", - "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1" - ], - "deps": [ - { - "name": "backtrace", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memmap2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memmap2@0.5.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_demangle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-demangle@0.1.24", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_bytes@0.11.17", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "target_lexicon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-dylib@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#libloading@0.7.4", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", - "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-object@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "registry+https://github.com/rust-lang/crates.io-index#which@4.4.2" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enum_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "leb128", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libloading", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libloading@0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "object", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.19.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_engine", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_object", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-object@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "which", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#which@4.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiler" - ] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine-universal@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enum_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "leb128", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "region", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_engine", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-engine@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_vm", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiler" - ] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-object@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1" - ], - "deps": [ - { - "name": "object", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#object@0.28.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_compiler", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-compiler@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "enable-rkyv", - "enable-serde", - "rkyv", - "serde", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15" - ], - "deps": [ - { - "name": "bytecheck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bytecheck@0.6.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enum_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enumset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enumset@1.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.8.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "target_lexicon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.12.16", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "xxhash_rust", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-vm@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.6.5", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1" - ], - "deps": [ - { - "name": "backtrace", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enum_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "loupe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#loupe@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memoffset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.6.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "region", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rkyv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rkyv@0.7.45", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "git+https://github.com/multiversx/wasmer?rev=090ad17927fd1cbecb253a7b123d21e453fa13df#wasmer-types@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "enable-rkyv", - "rkyv" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmer-vm@6.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", - "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", - "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0" - ], - "deps": [ - { - "name": "backtrace", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#backtrace@0.3.74", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.20", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "corosensei", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#corosensei@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_queue", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dashmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "enum_iterator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#enum-iterator@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.172", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libunwind", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libunwind@1.3.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_family = \"unix\", all(target_family = \"windows\", target_env = \"gnu\")))" - } - ] - }, - { - "name": "memoffset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "more_asserts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#more-asserts@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "region", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#region@3.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "scopeguard", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmer_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmer-types@6.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "git+https://github.com/multiversx/wasm-tools?rev=90d489e90781320bdb6cffcb0a796138242c5a18#wasmparser@0.78.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.224.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "features", - "simd", - "validate" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "default", - "features", - "hash-collections", - "serde", - "simd", - "std", - "validate" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.229.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "semver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#semver@1.0.26", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "simd", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasmprinter@0.227.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", - "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.98", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "termcolor", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasmparser", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasmparser@0.227.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0" - ], - "deps": [ - { - "name": "bumpalo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "leb128fmt", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#leb128fmt@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_encoder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-encoder@0.229.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "wasm-module" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wat@1.229.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0" - ], - "deps": [ - { - "name": "wast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wast@229.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "component-model", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "AbortController", - "AbortSignal", - "AddEventListenerOptions", - "AnimationEvent", - "BinaryType", - "Blob", - "BlobPropertyBag", - "CharacterData", - "CloseEvent", - "CloseEventInit", - "DedicatedWorkerGlobalScope", - "Document", - "DocumentFragment", - "DomException", - "DragEvent", - "Element", - "ErrorEvent", - "Event", - "EventInit", - "EventSource", - "EventTarget", - "File", - "FileList", - "FilePropertyBag", - "FileReader", - "FocusEvent", - "FormData", - "Headers", - "History", - "HtmlBaseElement", - "HtmlCollection", - "HtmlElement", - "HtmlHeadElement", - "HtmlInputElement", - "HtmlScriptElement", - "HtmlTextAreaElement", - "InputEvent", - "InputEventInit", - "KeyboardEvent", - "Location", - "MessageEvent", - "MouseEvent", - "Node", - "NodeList", - "ObserverCallback", - "PointerEvent", - "ProgressEvent", - "ReadableStream", - "ReferrerPolicy", - "Request", - "RequestCache", - "RequestCredentials", - "RequestInit", - "RequestMode", - "RequestRedirect", - "Response", - "ResponseInit", - "ResponseType", - "ServiceWorkerGlobalScope", - "ShadowRoot", - "Storage", - "SubmitEvent", - "Text", - "TouchEvent", - "TransitionEvent", - "UiEvent", - "Url", - "UrlSearchParams", - "WebSocket", - "WheelEvent", - "Window", - "Worker", - "WorkerGlobalScope", - "WorkerOptions", - "console", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0" - ], - "deps": [ - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#which@4.4.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.15.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "home", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.11", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(windows, unix, target_os = \"redox\"))" - } - ] - }, - { - "name": "rustix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.5.40", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wyz@0.5.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1" - ], - "deps": [ - { - "name": "tap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5" - ], - "deps": [ - { - "name": "rustix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.0.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))" - } - ] - } - ], - "features": [ - "default", - "unsupported" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#xxhash-rust@0.8.15", - "dependencies": [], - "deps": [], - "features": [ - "xxh64" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0" - ], - "deps": [ - { - "name": "console_error_panic_hook", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "gloo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "implicit_clone", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#implicit-clone@0.3.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "prokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#prokio@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "slab", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tokio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.44.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "csr", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-macro@0.20.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "boolinator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#boolinator@2.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "prettyplease", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#prettyplease@0.1.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro_error", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router@0.17.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0" - ], - "deps": [ - { - "name": "gloo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#gloo@0.8.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "route_recognizer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#route-recognizer@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.77", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yew_router_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew-router-macro@0.17.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yew_icons@0.7.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0" - ], - "deps": [ - { - "name": "yew", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yew@0.20.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "BootstrapHeartFill", - "data_uri", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.219", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "stable_deref_trait", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yoke_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "derive", - "zerofrom" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "synstructure", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.35", - "dependencies": [], - "deps": [], - "features": [ - "simd" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.25", - "dependencies": [], - "deps": [], - "features": [ - "simd" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6" - ], - "deps": [ - { - "name": "zerofrom_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "derive" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "synstructure", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3" - ], - "deps": [ - { - "name": "yoke", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "derive", - "yoke" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.94", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.100", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zip@2.6.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2" - ], - "deps": [ - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "flate2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zopfli", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "_deflate-any", - "deflate", - "deflate-flate2", - "deflate-zopfli", - "flate2", - "zopfli" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7" - ], - "deps": [ - { - "name": "bumpalo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "simd_adler32", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "gzip", - "std", - "zlib" - ] - } - ], - "root": "path+file:///home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig#1.0.0" - }, - "target_directory": "/home/bibi/Desktop/mx-sdk-rs/target", - "version": 1, - "workspace_root": "/home/bibi/Desktop/mx-sdk-rs", - "metadata": null -} \ No newline at end of file diff --git a/contracts/examples/multisig/file.txt b/contracts/examples/multisig/file.txt deleted file mode 100644 index 52b67737ac..0000000000 --- a/contracts/examples/multisig/file.txt +++ /dev/null @@ -1,841 +0,0 @@ -multisig -multiversx-sc-modules -multiversx-sc -multiversx-chain-core -multiversx-sc-codec -multiversx-sc-codec-derive -hex -proc-macro2 -unicode-ident -quote -proc-macro2 -syn -proc-macro2 -quote -unicode-ident -arrayvec -bitflags -num-bigint -num-integer -num-traits -[build-dependencies] -autocfg -num-traits -unwrap-infallible -[dev-dependencies] -multiversx-sc-codec-derive -bitflags -multiversx-sc-codec -multiversx-sc-derive -hex -proc-macro2 -quote -radix_trie -endian-type -nibble_vec -smallvec -syn -bitflags -generic-array -typenum -hex-literal -num-traits -unwrap-infallible -multiversx-sc -[dev-dependencies] -multiversx-sc-scenario -multiversx-chain-vm-executor -serde -serde_derive -proc-macro2 -quote -syn -toml -serde -serde_spanned -serde -toml_datetime -serde -toml_edit -indexmap -equivalent -hashbrown -allocator-api2 -equivalent -foldhash -serde -serde -serde -serde_spanned -toml_datetime -winnow -memchr -multiversx-chain-vm -multiversx-chain-vm-executor-wasmer-experimental -multiversx-chain-vm-executor -anyhow -chrono -iana-time-zone -num-traits -log -loupe -indexmap -hashbrown -ahash -getrandom -cfg-if -libc -once_cell -[build-dependencies] -version_check -serde -[build-dependencies] -autocfg -loupe-derive -quote -syn -proc-macro2 -quote -unicode-ident -rustversion -rc-new-cyclic-fallible -wasmer-types -bytecheck -bytecheck_derive -proc-macro2 -quote -syn -ptr_meta -ptr_meta_derive -proc-macro2 -quote -syn -simdutf8 -enum-iterator -enum-iterator-derive -proc-macro2 -quote -syn -enumset -enumset_derive -darling -darling_core -fnv -ident_case -proc-macro2 -quote -syn -darling_macro -darling_core -quote -syn -proc-macro2 -quote -syn -getrandom -hex -indexmap -more-asserts -rkyv -bytecheck -bytecheck_derive -proc-macro2 -quote -syn -ptr_meta -ptr_meta_derive -proc-macro2 -quote -syn -rancor -ptr_meta -simdutf8 -bytes -hashbrown -indexmap -munge -munge_macro -proc-macro2 -quote -syn -ptr_meta -rancor -rend -bytecheck -rkyv_derive -proc-macro2 -quote -syn -tinyvec -tinyvec_macros -uuid -getrandom -cfg-if -libc -sha2 -cfg-if -cpufeatures -digest -block-buffer -generic-array -typenum -[build-dependencies] -version_check -crypto-common -generic-array -typenum -subtle -target-lexicon -thiserror -thiserror-impl -proc-macro2 -quote -syn -xxhash-rust -wasmer -bytes -cfg-if -derive_more -derive_more-impl -proc-macro2 -quote -syn -unicode-xid -indexmap -more-asserts -paste -rustc-demangle -shared-buffer -bytes -memmap2 -libc -target-lexicon -thiserror -tracing -log -pin-project-lite -tracing-attributes -proc-macro2 -quote -syn -tracing-core -once_cell -wasmer-compiler-singlepass -byteorder -dynasm -bitflags -byteorder -lazy_static -proc-macro-error -proc-macro-error-attr -proc-macro2 -quote -[build-dependencies] -version_check -proc-macro2 -quote -syn -[build-dependencies] -version_check -proc-macro2 -quote -syn -dynasmrt -byteorder -dynasm -memmap2 -libc -enumset -gimli -fallible-iterator -indexmap -stable_deref_trait -more-asserts -rayon -either -rayon-core -crossbeam-deque -crossbeam-epoch -crossbeam-utils -crossbeam-utils -crossbeam-utils -smallvec -wasmer-compiler -backtrace -addr2line -gimli -cfg-if -libc -miniz_oxide -adler2 -object -memchr -rustc-demangle -bytes -cfg-if -enum-iterator -enumset -leb128 -libc -memmap2 -more-asserts -object -crc32fast -cfg-if -flate2 -crc32fast -miniz_oxide -hashbrown -ahash -cfg-if -once_cell -zerocopy -[build-dependencies] -version_check -indexmap -memchr -ruzstd -byteorder -derive_more -proc-macro2 -quote -syn -twox-hash -cfg-if -static_assertions -region -bitflags -libc -rkyv -self_cell -shared-buffer -smallvec -target-lexicon -thiserror -wasmer-types -wasmer-vm -backtrace -cfg-if -corosensei -cfg-if -libc -scopeguard -[build-dependencies] -autocfg -crossbeam-queue -crossbeam-utils -dashmap -cfg-if -crossbeam-utils -hashbrown -lock_api -scopeguard -[build-dependencies] -autocfg -once_cell -parking_lot_core -cfg-if -libc -smallvec -enum-iterator -fnv -indexmap -libc -libunwind -memoffset -[build-dependencies] -autocfg -more-asserts -region -scopeguard -thiserror -wasmer-types -[build-dependencies] -cc -shlex -wasmparser -bitflags -xxhash-rust -wasmer-types -wasmer-compiler -wasmer-derive -proc-macro-error2 -proc-macro-error-attr2 -proc-macro2 -quote -proc-macro2 -quote -syn -proc-macro2 -quote -syn -wasmer-types -wasmer-vm -wasmparser -wat -wast -bumpalo -leb128fmt -memchr -unicode-width -wasm-encoder -leb128fmt -wasmparser -bitflags -indexmap -semver -serde -[build-dependencies] -bindgen -bitflags -cexpr -nom -memchr -minimal-lexical -clang-sys -glob -libc -libloading -cfg-if -[build-dependencies] -glob -itertools -either -log -prettyplease -proc-macro2 -syn -proc-macro2 -quote -regex -aho-corasick -memchr -memchr -regex-automata -aho-corasick -memchr -regex-syntax -regex-syntax -rustc-hash -shlex -syn -cmake -cc -tar -filetime -cfg-if -libc -libc -xattr -rustix -bitflags -errno -libc -libc -linux-raw-sys -ureq -base64 -flate2 -log -once_cell -rustls-pki-types -rustls -log -once_cell -ring -cfg-if -getrandom -untrusted -[build-dependencies] -cc -rustls-pki-types -rustls-webpki -ring -rustls-pki-types -untrusted -subtle -zeroize -url -form_urlencoded -percent-encoding -idna -idna_adapter -icu_normalizer -displaydoc -proc-macro2 -quote -syn -icu_collections -displaydoc -yoke -serde -stable_deref_trait -yoke-derive -proc-macro2 -quote -syn -synstructure -proc-macro2 -quote -syn -zerofrom -zerofrom-derive -proc-macro2 -quote -syn -synstructure -zerofrom -zerovec -yoke -zerofrom -zerovec-derive -proc-macro2 -quote -syn -icu_normalizer_data -icu_properties -displaydoc -icu_collections -icu_locid_transform -displaydoc -icu_locid -displaydoc -litemap -tinystr -displaydoc -zerovec -writeable -zerovec -icu_locid_transform_data -icu_provider -displaydoc -icu_locid -icu_provider_macros -proc-macro2 -quote -syn -stable_deref_trait -tinystr -writeable -yoke -zerofrom -zerovec -tinystr -zerovec -icu_properties_data -icu_provider -tinystr -zerovec -icu_provider -smallvec -utf16_iter -utf8_iter -write16 -zerovec -icu_properties -smallvec -utf8_iter -percent-encoding -webpki-roots -rustls-pki-types -multiversx-chain-vm-executor-wasmer -multiversx-chain-vm-executor -wasmer -wasmer-compiler-singlepass -wasmer-compiler -wasmparser -wasmer-types -indexmap -loupe -rkyv -bitvec -funty -radium -tap -wyz -tap -bytecheck -bytes -hashbrown -ptr_meta -rend -bytecheck -rkyv_derive -proc-macro2 -quote -syn -seahash -tinyvec -uuid -serde -thiserror -wasmer-vm -wasmer-types -backtrace -cfg-if -enum-iterator -indexmap -libc -loupe -memoffset -[build-dependencies] -autocfg -more-asserts -region -rkyv -serde -thiserror -[build-dependencies] -cc -enumset -loupe -rkyv -serde -serde_bytes -serde -smallvec -target-lexicon -thiserror -wasmer-types -wasmer-vm -byteorder -dynasm -dynasmrt -lazy_static -loupe -more-asserts -rayon -smallvec -wasmer-compiler -wasmer-derive -proc-macro-error -proc-macro2 -quote -syn -wasmer-engine-dylib -wasmer-compiler -wasmer-engine -wasmer-compiler -wasmer-types -wasmer-vm -backtrace -enumset -lazy_static -loupe -memmap2 -more-asserts -rustc-demangle -serde -serde_bytes -target-lexicon -thiserror -wasmer-object -wasmer-compiler -wasmer-types -object -crc32fast -hashbrown -ahash -indexmap -memchr -thiserror -wasmer-types -wasmer-vm -cfg-if -enum-iterator -enumset -leb128 -libloading -cfg-if -loupe -object -rkyv -serde -tempfile -fastrand -getrandom -once_cell -rustix -tracing -which -either -home -rustix -bitflags -errno -libc -linux-raw-sys -wasmer-engine-universal -wasmer-compiler -wasmer-engine -wasmer-types -wasmer-vm -cfg-if -enum-iterator -enumset -leb128 -loupe -region -rkyv -wasmer-engine -wasmer-types -wasmer-vm -cfg-if -indexmap -loupe -more-asserts -target-lexicon -thiserror -wat -wasmer-types -wasmer-vm -anyhow -chrono -log -loupe -multiversx-chain-vm-executor -multiversx-chain-core -anyhow -bitflags -colored -ed25519-dalek -curve25519-dalek -cfg-if -cpufeatures -curve25519-dalek-derive -proc-macro2 -quote -syn -digest -subtle -zeroize -[build-dependencies] -rustc_version -semver -ed25519 -pkcs8 -der -const-oid -zeroize -spki -base64ct -der -signature -rand_core -getrandom -serde -sha2 -subtle -zeroize -hex-literal -hex -itertools -either -num-bigint -num-traits -rand -libc -rand_chacha -ppv-lite86 -zerocopy -rand_core -rand_core -rand_seeder -rand_core -serde -sha2 -sha3 -digest -keccak -toml -multiversx-sc -multiversx-sc-meta-lib -multiversx-sc -clap -clap_builder -anstream -anstyle-parse -utf8parse -anstyle-query -anstyle -colorchoice -is_terminal_polyfill -utf8parse -anstyle -clap_lex -strsim -clap_derive -heck -proc-macro2 -quote -syn -colored -convert_case -unicode-segmentation -hex -lazy_static -rustc_version -semver -serde -serde_json -indexmap -itoa -memchr -ryu -serde -toml -indexmap -serde -serde_spanned -toml_datetime -toml_edit -indexmap -serde -serde_spanned -toml_datetime -toml_write -winnow -memchr -wasmparser -bitflags -hashbrown -indexmap -semver -serde -wasmprinter -anyhow -termcolor -wasmparser -wat -multiversx-chain-scenario-format -bech32 -hex -num-bigint -num-traits -serde -serde_json -sha3 -base64 -bech32 -colored -hex -itertools -log -num-bigint -num-traits -pathdiff -serde -serde_json -sha2 -simple-error -unwrap-infallible -hex -num-bigint -num-traits - /home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig - -Found 1 contract crates. - -(1/1) -In /home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig/meta -Calling `cargo run clean` diff --git a/contracts/examples/multisig/file2.txt b/contracts/examples/multisig/file2.txt deleted file mode 100644 index de7456b3b2..0000000000 --- a/contracts/examples/multisig/file2.txt +++ /dev/null @@ -1,633 +0,0 @@ -multisig v1.0.0 (/home/bibi/Desktop/mx-sdk-rs/contracts/examples/multisig) -├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) -│ ├── bitflags v2.9.0 -│ ├── generic-array v1.2.0 -│ │ └── typenum v1.18.0 -│ ├── hex-literal v0.4.1 -│ ├── multiversx-chain-core v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/core) -│ │ ├── bitflags v2.9.0 -│ │ └── multiversx-sc-codec v0.22.0 (/home/bibi/Desktop/mx-sdk-rs/data/codec) -│ │ ├── arrayvec v0.7.6 -│ │ ├── bitflags v2.9.0 -│ │ ├── multiversx-sc-codec-derive v0.22.0 (proc-macro) (/home/bibi/Desktop/mx-sdk-rs/data/codec-derive) -│ │ │ ├── hex v0.4.3 -│ │ │ ├── proc-macro2 v1.0.94 -│ │ │ │ └── unicode-ident v1.0.18 -│ │ │ ├── quote v1.0.39 -│ │ │ │ └── proc-macro2 v1.0.94 (*) -│ │ │ └── syn v2.0.100 -│ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ ├── quote v1.0.39 (*) -│ │ │ └── unicode-ident v1.0.18 -│ │ ├── num-bigint v0.4.6 -│ │ │ ├── num-integer v0.1.46 -│ │ │ │ └── num-traits v0.2.19 -│ │ │ │ [build-dependencies] -│ │ │ │ └── autocfg v1.4.0 -│ │ │ └── num-traits v0.2.19 (*) -│ │ └── unwrap-infallible v0.1.5 -│ ├── multiversx-sc-codec v0.22.0 (/home/bibi/Desktop/mx-sdk-rs/data/codec) (*) -│ ├── multiversx-sc-derive v0.57.1 (proc-macro) (/home/bibi/Desktop/mx-sdk-rs/framework/derive) -│ │ ├── hex v0.4.3 -│ │ ├── proc-macro2 v1.0.94 (*) -│ │ ├── quote v1.0.39 (*) -│ │ ├── radix_trie v0.2.1 -│ │ │ ├── endian-type v0.1.2 -│ │ │ └── nibble_vec v0.1.0 -│ │ │ └── smallvec v1.15.0 -│ │ └── syn v2.0.100 (*) -│ ├── num-traits v0.2.19 (*) -│ └── unwrap-infallible v0.1.5 -└── multiversx-sc-modules v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/contracts/modules) - └── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) -[dev-dependencies] -├── hex v0.4.3 -├── multiversx-sc-scenario v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/scenario) -│ ├── base64 v0.22.1 -│ ├── bech32 v0.11.0 -│ ├── colored v3.0.0 -│ ├── hex v0.4.3 -│ ├── itertools v0.14.0 -│ │ └── either v1.15.0 -│ ├── log v0.4.27 -│ ├── multiversx-chain-scenario-format v0.23.1 (/home/bibi/Desktop/mx-sdk-rs/sdk/scenario-format) -│ │ ├── bech32 v0.11.0 -│ │ ├── hex v0.4.3 -│ │ ├── num-bigint v0.4.6 (*) -│ │ ├── num-traits v0.2.19 (*) -│ │ ├── serde v1.0.219 -│ │ │ └── serde_derive v1.0.219 (proc-macro) -│ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ ├── quote v1.0.39 (*) -│ │ │ └── syn v2.0.100 (*) -│ │ ├── serde_json v1.0.140 -│ │ │ ├── itoa v1.0.15 -│ │ │ ├── memchr v2.7.4 -│ │ │ ├── ryu v1.0.20 -│ │ │ └── serde v1.0.219 (*) -│ │ └── sha3 v0.10.8 -│ │ ├── digest v0.10.7 -│ │ │ ├── block-buffer v0.10.4 -│ │ │ │ └── generic-array v0.14.7 -│ │ │ │ └── typenum v1.18.0 -│ │ │ │ [build-dependencies] -│ │ │ │ └── version_check v0.9.5 -│ │ │ └── crypto-common v0.1.6 -│ │ │ ├── generic-array v0.14.7 (*) -│ │ │ └── typenum v1.18.0 -│ │ └── keccak v0.1.5 -│ ├── multiversx-chain-vm v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/vm) -│ │ ├── anyhow v1.0.98 -│ │ ├── bitflags v2.9.0 -│ │ ├── colored v3.0.0 -│ │ ├── ed25519-dalek v2.1.1 -│ │ │ ├── curve25519-dalek v4.1.3 -│ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ ├── cpufeatures v0.2.17 -│ │ │ │ ├── curve25519-dalek-derive v0.1.1 (proc-macro) -│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ ├── digest v0.10.7 (*) -│ │ │ │ ├── subtle v2.6.1 -│ │ │ │ └── zeroize v1.8.1 -│ │ │ │ [build-dependencies] -│ │ │ │ └── rustc_version v0.4.1 -│ │ │ │ └── semver v1.0.26 -│ │ │ ├── ed25519 v2.2.3 -│ │ │ │ └── signature v2.2.0 -│ │ │ ├── sha2 v0.10.9 -│ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ ├── cpufeatures v0.2.17 -│ │ │ │ └── digest v0.10.7 (*) -│ │ │ ├── subtle v2.6.1 -│ │ │ └── zeroize v1.8.1 -│ │ ├── hex v0.4.3 -│ │ ├── hex-literal v0.4.1 -│ │ ├── itertools v0.14.0 (*) -│ │ ├── multiversx-chain-core v0.14.0 (/home/bibi/Desktop/mx-sdk-rs/chain/core) (*) -│ │ ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) -│ │ │ ├── serde v1.0.219 (*) -│ │ │ └── toml v0.7.8 -│ │ │ ├── serde v1.0.219 (*) -│ │ │ ├── serde_spanned v0.6.8 -│ │ │ │ └── serde v1.0.219 (*) -│ │ │ ├── toml_datetime v0.6.9 -│ │ │ │ └── serde v1.0.219 (*) -│ │ │ └── toml_edit v0.19.15 -│ │ │ ├── indexmap v2.9.0 -│ │ │ │ ├── equivalent v1.0.2 -│ │ │ │ ├── hashbrown v0.15.2 -│ │ │ │ │ ├── foldhash v0.1.5 -│ │ │ │ │ └── serde v1.0.219 (*) -│ │ │ │ └── serde v1.0.219 (*) -│ │ │ ├── serde v1.0.219 (*) -│ │ │ ├── serde_spanned v0.6.8 (*) -│ │ │ ├── toml_datetime v0.6.9 (*) -│ │ │ └── winnow v0.5.40 -│ │ ├── multiversx-chain-vm-executor-wasmer-experimental v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) -│ │ │ ├── anyhow v1.0.98 -│ │ │ ├── chrono v0.4.41 -│ │ │ │ ├── iana-time-zone v0.1.63 -│ │ │ │ └── num-traits v0.2.19 (*) -│ │ │ ├── log v0.4.27 -│ │ │ ├── loupe v0.1.3 -│ │ │ │ ├── loupe-derive v0.1.3 (proc-macro) -│ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ └── syn v1.0.109 -│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ └── unicode-ident v1.0.18 -│ │ │ │ └── rustversion v1.0.20 (proc-macro) -│ │ │ ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) (*) -│ │ │ ├── rc-new-cyclic-fallible v1.0.0 -│ │ │ ├── wasmer v6.0.0 -│ │ │ │ ├── bytes v1.10.1 -│ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ ├── derive_more v1.0.0 -│ │ │ │ │ └── derive_more-impl v1.0.0 (proc-macro) -│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ ├── syn v2.0.100 (*) -│ │ │ │ │ └── unicode-xid v0.2.6 -│ │ │ │ ├── indexmap v2.9.0 (*) -│ │ │ │ ├── more-asserts v0.2.2 -│ │ │ │ ├── paste v1.0.15 (proc-macro) -│ │ │ │ ├── rustc-demangle v0.1.24 -│ │ │ │ ├── shared-buffer v0.1.4 -│ │ │ │ │ ├── bytes v1.10.1 -│ │ │ │ │ └── memmap2 v0.6.2 -│ │ │ │ │ └── libc v0.2.172 -│ │ │ │ ├── target-lexicon v0.12.16 -│ │ │ │ ├── thiserror v1.0.69 -│ │ │ │ │ └── thiserror-impl v1.0.69 (proc-macro) -│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ ├── tracing v0.1.41 -│ │ │ │ │ ├── pin-project-lite v0.2.16 -│ │ │ │ │ ├── tracing-attributes v0.1.28 (proc-macro) -│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ └── tracing-core v0.1.33 -│ │ │ │ │ └── once_cell v1.21.3 -│ │ │ │ ├── wasmer-compiler v6.0.0 -│ │ │ │ │ ├── backtrace v0.3.74 -│ │ │ │ │ │ ├── addr2line v0.24.2 -│ │ │ │ │ │ │ └── gimli v0.31.1 -│ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ ├── libc v0.2.172 -│ │ │ │ │ │ ├── miniz_oxide v0.8.8 -│ │ │ │ │ │ │ └── adler2 v2.0.0 -│ │ │ │ │ │ ├── object v0.36.7 -│ │ │ │ │ │ │ └── memchr v2.7.4 -│ │ │ │ │ │ └── rustc-demangle v0.1.24 -│ │ │ │ │ ├── bytes v1.10.1 -│ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ ├── enum-iterator v0.7.0 -│ │ │ │ │ │ └── enum-iterator-derive v0.7.0 (proc-macro) -│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ └── syn v1.0.109 (*) -│ │ │ │ │ ├── enumset v1.1.5 -│ │ │ │ │ │ └── enumset_derive v0.10.0 (proc-macro) -│ │ │ │ │ │ ├── darling v0.20.11 -│ │ │ │ │ │ │ ├── darling_core v0.20.11 -│ │ │ │ │ │ │ │ ├── fnv v1.0.7 -│ │ │ │ │ │ │ │ ├── ident_case v1.0.1 -│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ │ └── darling_macro v0.20.11 (proc-macro) -│ │ │ │ │ │ │ ├── darling_core v0.20.11 (*) -│ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ ├── leb128 v0.2.5 -│ │ │ │ │ ├── libc v0.2.172 -│ │ │ │ │ ├── memmap2 v0.6.2 (*) -│ │ │ │ │ ├── more-asserts v0.2.2 -│ │ │ │ │ ├── object v0.32.2 -│ │ │ │ │ │ ├── crc32fast v1.4.2 -│ │ │ │ │ │ │ └── cfg-if v1.0.0 -│ │ │ │ │ │ ├── flate2 v1.1.1 -│ │ │ │ │ │ │ ├── crc32fast v1.4.2 (*) -│ │ │ │ │ │ │ └── miniz_oxide v0.8.8 (*) -│ │ │ │ │ │ ├── hashbrown v0.14.5 -│ │ │ │ │ │ │ └── ahash v0.8.11 -│ │ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ │ ├── once_cell v1.21.3 -│ │ │ │ │ │ │ └── zerocopy v0.7.35 -│ │ │ │ │ │ │ [build-dependencies] -│ │ │ │ │ │ │ └── version_check v0.9.5 -│ │ │ │ │ │ ├── indexmap v2.9.0 (*) -│ │ │ │ │ │ ├── memchr v2.7.4 -│ │ │ │ │ │ └── ruzstd v0.5.0 -│ │ │ │ │ │ ├── byteorder v1.5.0 -│ │ │ │ │ │ ├── derive_more v0.99.20 (proc-macro) -│ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ └── twox-hash v1.6.3 -│ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ └── static_assertions v1.1.0 -│ │ │ │ │ ├── region v3.0.2 -│ │ │ │ │ │ ├── bitflags v1.3.2 -│ │ │ │ │ │ └── libc v0.2.172 -│ │ │ │ │ ├── rkyv v0.8.10 -│ │ │ │ │ │ ├── bytecheck v0.8.1 -│ │ │ │ │ │ │ ├── bytecheck_derive v0.8.1 (proc-macro) -│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ │ ├── ptr_meta v0.3.0 -│ │ │ │ │ │ │ │ └── ptr_meta_derive v0.3.0 (proc-macro) -│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ │ ├── rancor v0.1.0 -│ │ │ │ │ │ │ │ └── ptr_meta v0.3.0 (*) -│ │ │ │ │ │ │ └── simdutf8 v0.1.5 -│ │ │ │ │ │ ├── bytes v1.10.1 -│ │ │ │ │ │ ├── hashbrown v0.15.2 (*) -│ │ │ │ │ │ ├── indexmap v2.9.0 (*) -│ │ │ │ │ │ ├── munge v0.4.4 -│ │ │ │ │ │ │ └── munge_macro v0.4.4 (proc-macro) -│ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ ├── ptr_meta v0.3.0 (*) -│ │ │ │ │ │ ├── rancor v0.1.0 (*) -│ │ │ │ │ │ ├── rend v0.5.2 -│ │ │ │ │ │ │ └── bytecheck v0.8.1 (*) -│ │ │ │ │ │ └── rkyv_derive v0.8.10 (proc-macro) -│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ ├── self_cell v1.2.0 -│ │ │ │ │ ├── shared-buffer v0.1.4 (*) -│ │ │ │ │ ├── smallvec v1.15.0 -│ │ │ │ │ ├── target-lexicon v0.12.16 -│ │ │ │ │ ├── thiserror v1.0.69 (*) -│ │ │ │ │ ├── wasmer-types v6.0.0 -│ │ │ │ │ │ ├── bytecheck v0.6.12 -│ │ │ │ │ │ │ ├── bytecheck_derive v0.6.12 (proc-macro) -│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ └── syn v1.0.109 (*) -│ │ │ │ │ │ │ ├── ptr_meta v0.1.4 -│ │ │ │ │ │ │ │ └── ptr_meta_derive v0.1.4 (proc-macro) -│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ └── syn v1.0.109 (*) -│ │ │ │ │ │ │ └── simdutf8 v0.1.5 -│ │ │ │ │ │ ├── enum-iterator v0.7.0 (*) -│ │ │ │ │ │ ├── enumset v1.1.5 (*) -│ │ │ │ │ │ ├── getrandom v0.2.16 -│ │ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ │ └── libc v0.2.172 -│ │ │ │ │ │ ├── hex v0.4.3 -│ │ │ │ │ │ ├── indexmap v2.9.0 (*) -│ │ │ │ │ │ ├── more-asserts v0.2.2 -│ │ │ │ │ │ ├── rkyv v0.8.10 (*) -│ │ │ │ │ │ ├── sha2 v0.10.9 (*) -│ │ │ │ │ │ ├── target-lexicon v0.12.16 -│ │ │ │ │ │ ├── thiserror v1.0.69 (*) -│ │ │ │ │ │ └── xxhash-rust v0.8.15 -│ │ │ │ │ ├── wasmer-vm v6.0.0 -│ │ │ │ │ │ ├── backtrace v0.3.74 (*) -│ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ ├── corosensei v0.2.1 -│ │ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ │ ├── libc v0.2.172 -│ │ │ │ │ │ │ └── scopeguard v1.2.0 -│ │ │ │ │ │ │ [build-dependencies] -│ │ │ │ │ │ │ └── autocfg v1.4.0 -│ │ │ │ │ │ ├── crossbeam-queue v0.3.12 -│ │ │ │ │ │ │ └── crossbeam-utils v0.8.21 -│ │ │ │ │ │ ├── dashmap v6.1.0 -│ │ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ │ ├── crossbeam-utils v0.8.21 -│ │ │ │ │ │ │ ├── hashbrown v0.14.5 (*) -│ │ │ │ │ │ │ ├── lock_api v0.4.12 -│ │ │ │ │ │ │ │ └── scopeguard v1.2.0 -│ │ │ │ │ │ │ │ [build-dependencies] -│ │ │ │ │ │ │ │ └── autocfg v1.4.0 -│ │ │ │ │ │ │ ├── once_cell v1.21.3 -│ │ │ │ │ │ │ └── parking_lot_core v0.9.10 -│ │ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ │ ├── libc v0.2.172 -│ │ │ │ │ │ │ └── smallvec v1.15.0 -│ │ │ │ │ │ ├── enum-iterator v0.7.0 (*) -│ │ │ │ │ │ ├── fnv v1.0.7 -│ │ │ │ │ │ ├── indexmap v2.9.0 (*) -│ │ │ │ │ │ ├── libc v0.2.172 -│ │ │ │ │ │ ├── libunwind v1.3.3 -│ │ │ │ │ │ ├── memoffset v0.9.1 -│ │ │ │ │ │ │ [build-dependencies] -│ │ │ │ │ │ │ └── autocfg v1.4.0 -│ │ │ │ │ │ ├── more-asserts v0.2.2 -│ │ │ │ │ │ ├── region v3.0.2 (*) -│ │ │ │ │ │ ├── scopeguard v1.2.0 -│ │ │ │ │ │ ├── thiserror v1.0.69 (*) -│ │ │ │ │ │ └── wasmer-types v6.0.0 (*) -│ │ │ │ │ │ [build-dependencies] -│ │ │ │ │ │ └── cc v1.2.20 -│ │ │ │ │ │ └── shlex v1.3.0 -│ │ │ │ │ ├── wasmparser v0.224.1 -│ │ │ │ │ │ └── bitflags v2.9.0 -│ │ │ │ │ └── xxhash-rust v0.8.15 -│ │ │ │ ├── wasmer-compiler-singlepass v6.0.0 -│ │ │ │ │ ├── byteorder v1.5.0 -│ │ │ │ │ ├── dynasm v1.2.3 (proc-macro) -│ │ │ │ │ │ ├── bitflags v1.3.2 -│ │ │ │ │ │ ├── byteorder v1.5.0 -│ │ │ │ │ │ ├── lazy_static v1.5.0 -│ │ │ │ │ │ ├── proc-macro-error v1.0.4 -│ │ │ │ │ │ │ ├── proc-macro-error-attr v1.0.4 (proc-macro) -│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ └── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ [build-dependencies] -│ │ │ │ │ │ │ │ └── version_check v0.9.5 -│ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ └── syn v1.0.109 (*) -│ │ │ │ │ │ │ [build-dependencies] -│ │ │ │ │ │ │ └── version_check v0.9.5 -│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ └── syn v1.0.109 (*) -│ │ │ │ │ ├── dynasmrt v1.2.3 -│ │ │ │ │ │ ├── byteorder v1.5.0 -│ │ │ │ │ │ ├── dynasm v1.2.3 (proc-macro) (*) -│ │ │ │ │ │ └── memmap2 v0.5.10 -│ │ │ │ │ │ └── libc v0.2.172 -│ │ │ │ │ ├── enumset v1.1.5 (*) -│ │ │ │ │ ├── gimli v0.28.1 -│ │ │ │ │ │ ├── fallible-iterator v0.3.0 -│ │ │ │ │ │ ├── indexmap v2.9.0 (*) -│ │ │ │ │ │ └── stable_deref_trait v1.2.0 -│ │ │ │ │ ├── more-asserts v0.2.2 -│ │ │ │ │ ├── rayon v1.10.0 -│ │ │ │ │ │ ├── either v1.15.0 -│ │ │ │ │ │ └── rayon-core v1.12.1 -│ │ │ │ │ │ ├── crossbeam-deque v0.8.6 -│ │ │ │ │ │ │ ├── crossbeam-epoch v0.9.18 -│ │ │ │ │ │ │ │ └── crossbeam-utils v0.8.21 -│ │ │ │ │ │ │ └── crossbeam-utils v0.8.21 -│ │ │ │ │ │ └── crossbeam-utils v0.8.21 -│ │ │ │ │ ├── smallvec v1.15.0 -│ │ │ │ │ ├── wasmer-compiler v6.0.0 (*) -│ │ │ │ │ └── wasmer-types v6.0.0 (*) -│ │ │ │ ├── wasmer-derive v6.0.0 (proc-macro) -│ │ │ │ │ ├── proc-macro-error2 v2.0.1 -│ │ │ │ │ │ ├── proc-macro-error-attr2 v2.0.0 (proc-macro) -│ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ └── quote v1.0.39 (*) -│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ └── syn v1.0.109 (*) -│ │ │ │ ├── wasmer-types v6.0.0 (*) -│ │ │ │ ├── wasmer-vm v6.0.0 (*) -│ │ │ │ ├── wasmparser v0.224.1 (*) -│ │ │ │ └── wat v1.229.0 -│ │ │ │ └── wast v229.0.0 -│ │ │ │ ├── bumpalo v3.17.0 -│ │ │ │ ├── leb128fmt v0.1.0 -│ │ │ │ ├── memchr v2.7.4 -│ │ │ │ ├── unicode-width v0.2.0 -│ │ │ │ └── wasm-encoder v0.229.0 -│ │ │ │ └── leb128fmt v0.1.0 -│ │ │ │ [build-dependencies] -│ │ │ │ ├── bindgen v0.70.1 -│ │ │ │ │ ├── bitflags v2.9.0 -│ │ │ │ │ ├── cexpr v0.6.0 -│ │ │ │ │ │ └── nom v7.1.3 -│ │ │ │ │ │ ├── memchr v2.7.4 -│ │ │ │ │ │ └── minimal-lexical v0.2.1 -│ │ │ │ │ ├── clang-sys v1.8.1 -│ │ │ │ │ │ ├── glob v0.3.2 -│ │ │ │ │ │ ├── libc v0.2.172 -│ │ │ │ │ │ └── libloading v0.8.6 -│ │ │ │ │ │ └── cfg-if v1.0.0 -│ │ │ │ │ │ [build-dependencies] -│ │ │ │ │ │ └── glob v0.3.2 -│ │ │ │ │ ├── itertools v0.13.0 -│ │ │ │ │ │ └── either v1.15.0 -│ │ │ │ │ ├── log v0.4.27 -│ │ │ │ │ ├── prettyplease v0.2.32 -│ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ ├── regex v1.11.1 -│ │ │ │ │ │ ├── regex-automata v0.4.9 -│ │ │ │ │ │ │ └── regex-syntax v0.8.5 -│ │ │ │ │ │ └── regex-syntax v0.8.5 -│ │ │ │ │ ├── rustc-hash v1.1.0 -│ │ │ │ │ ├── shlex v1.3.0 -│ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ ├── cmake v0.1.54 -│ │ │ │ │ └── cc v1.2.20 (*) -│ │ │ │ ├── tar v0.4.44 -│ │ │ │ │ ├── filetime v0.2.25 -│ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ └── libc v0.2.172 -│ │ │ │ │ ├── libc v0.2.172 -│ │ │ │ │ └── xattr v1.5.0 -│ │ │ │ │ └── rustix v1.0.5 -│ │ │ │ │ ├── bitflags v2.9.0 -│ │ │ │ │ └── linux-raw-sys v0.9.4 -│ │ │ │ └── ureq v2.12.1 -│ │ │ │ ├── base64 v0.22.1 -│ │ │ │ ├── flate2 v1.1.1 (*) -│ │ │ │ ├── log v0.4.27 -│ │ │ │ ├── once_cell v1.21.3 -│ │ │ │ ├── rustls v0.23.26 -│ │ │ │ │ ├── log v0.4.27 -│ │ │ │ │ ├── once_cell v1.21.3 -│ │ │ │ │ ├── ring v0.17.14 -│ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ ├── getrandom v0.2.16 -│ │ │ │ │ │ │ ├── cfg-if v1.0.0 -│ │ │ │ │ │ │ └── libc v0.2.172 -│ │ │ │ │ │ └── untrusted v0.9.0 -│ │ │ │ │ │ [build-dependencies] -│ │ │ │ │ │ └── cc v1.2.20 (*) -│ │ │ │ │ ├── rustls-pki-types v1.11.0 -│ │ │ │ │ ├── rustls-webpki v0.103.1 -│ │ │ │ │ │ ├── ring v0.17.14 (*) -│ │ │ │ │ │ ├── rustls-pki-types v1.11.0 -│ │ │ │ │ │ └── untrusted v0.9.0 -│ │ │ │ │ ├── subtle v2.6.1 -│ │ │ │ │ └── zeroize v1.8.1 -│ │ │ │ ├── rustls-pki-types v1.11.0 -│ │ │ │ ├── url v2.5.4 -│ │ │ │ │ ├── form_urlencoded v1.2.1 -│ │ │ │ │ │ └── percent-encoding v2.3.1 -│ │ │ │ │ ├── idna v1.0.3 -│ │ │ │ │ │ ├── idna_adapter v1.2.0 -│ │ │ │ │ │ │ ├── icu_normalizer v1.5.0 -│ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) -│ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ │ │ ├── icu_collections v1.5.0 -│ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) -│ │ │ │ │ │ │ │ │ ├── yoke v0.7.5 -│ │ │ │ │ │ │ │ │ │ ├── stable_deref_trait v1.2.0 -│ │ │ │ │ │ │ │ │ │ ├── yoke-derive v0.7.5 (proc-macro) -│ │ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ │ │ │ ├── syn v2.0.100 (*) -│ │ │ │ │ │ │ │ │ │ │ └── synstructure v0.13.1 -│ │ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ │ │ │ │ └── zerofrom v0.1.6 -│ │ │ │ │ │ │ │ │ │ └── zerofrom-derive v0.1.6 (proc-macro) -│ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ │ │ ├── syn v2.0.100 (*) -│ │ │ │ │ │ │ │ │ │ └── synstructure v0.13.1 (*) -│ │ │ │ │ │ │ │ │ ├── zerofrom v0.1.6 (*) -│ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 -│ │ │ │ │ │ │ │ │ ├── yoke v0.7.5 (*) -│ │ │ │ │ │ │ │ │ ├── zerofrom v0.1.6 (*) -│ │ │ │ │ │ │ │ │ └── zerovec-derive v0.10.3 (proc-macro) -│ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ │ │ ├── icu_normalizer_data v1.5.1 -│ │ │ │ │ │ │ │ ├── icu_properties v1.5.1 -│ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) -│ │ │ │ │ │ │ │ │ ├── icu_collections v1.5.0 (*) -│ │ │ │ │ │ │ │ │ ├── icu_locid_transform v1.5.0 -│ │ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) -│ │ │ │ │ │ │ │ │ │ ├── icu_locid v1.5.0 -│ │ │ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) -│ │ │ │ │ │ │ │ │ │ │ ├── litemap v0.7.5 -│ │ │ │ │ │ │ │ │ │ │ ├── tinystr v0.7.6 -│ │ │ │ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) -│ │ │ │ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) -│ │ │ │ │ │ │ │ │ │ │ ├── writeable v0.5.5 -│ │ │ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) -│ │ │ │ │ │ │ │ │ │ ├── icu_locid_transform_data v1.5.1 -│ │ │ │ │ │ │ │ │ │ ├── icu_provider v1.5.0 -│ │ │ │ │ │ │ │ │ │ │ ├── displaydoc v0.2.5 (proc-macro) (*) -│ │ │ │ │ │ │ │ │ │ │ ├── icu_locid v1.5.0 (*) -│ │ │ │ │ │ │ │ │ │ │ ├── icu_provider_macros v1.5.0 (proc-macro) -│ │ │ │ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ │ │ │ │ │ │ │ │ │ ├── quote v1.0.39 (*) -│ │ │ │ │ │ │ │ │ │ │ │ └── syn v2.0.100 (*) -│ │ │ │ │ │ │ │ │ │ │ ├── stable_deref_trait v1.2.0 -│ │ │ │ │ │ │ │ │ │ │ ├── tinystr v0.7.6 (*) -│ │ │ │ │ │ │ │ │ │ │ ├── writeable v0.5.5 -│ │ │ │ │ │ │ │ │ │ │ ├── yoke v0.7.5 (*) -│ │ │ │ │ │ │ │ │ │ │ ├── zerofrom v0.1.6 (*) -│ │ │ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) -│ │ │ │ │ │ │ │ │ │ ├── tinystr v0.7.6 (*) -│ │ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) -│ │ │ │ │ │ │ │ │ ├── icu_properties_data v1.5.1 -│ │ │ │ │ │ │ │ │ ├── icu_provider v1.5.0 (*) -│ │ │ │ │ │ │ │ │ ├── tinystr v0.7.6 (*) -│ │ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) -│ │ │ │ │ │ │ │ ├── icu_provider v1.5.0 (*) -│ │ │ │ │ │ │ │ ├── smallvec v1.15.0 -│ │ │ │ │ │ │ │ ├── utf16_iter v1.0.5 -│ │ │ │ │ │ │ │ ├── utf8_iter v1.0.4 -│ │ │ │ │ │ │ │ ├── write16 v1.0.0 -│ │ │ │ │ │ │ │ └── zerovec v0.10.4 (*) -│ │ │ │ │ │ │ └── icu_properties v1.5.1 (*) -│ │ │ │ │ │ ├── smallvec v1.15.0 -│ │ │ │ │ │ └── utf8_iter v1.0.4 -│ │ │ │ │ └── percent-encoding v2.3.1 -│ │ │ │ └── webpki-roots v0.26.10 -│ │ │ │ └── rustls-pki-types v1.11.0 -│ │ │ └── wasmer-types v6.0.0 (*) -│ │ ├── num-bigint v0.4.6 (*) -│ │ ├── num-traits v0.2.19 (*) -│ │ ├── rand v0.8.5 -│ │ │ ├── libc v0.2.172 -│ │ │ ├── rand_chacha v0.3.1 -│ │ │ │ ├── ppv-lite86 v0.2.21 -│ │ │ │ │ └── zerocopy v0.8.25 -│ │ │ │ └── rand_core v0.6.4 -│ │ │ │ └── getrandom v0.2.16 (*) -│ │ │ └── rand_core v0.6.4 (*) -│ │ ├── rand_seeder v0.3.0 -│ │ │ └── rand_core v0.6.4 (*) -│ │ ├── serde v1.0.219 (*) -│ │ ├── sha2 v0.10.9 (*) -│ │ ├── sha3 v0.10.8 (*) -│ │ └── toml v0.7.8 (*) -│ ├── multiversx-chain-vm-executor v0.3.0 (https://github.com/multiversx/mx-vm-executor-rs?rev=9fd7896fdda750630229546680ae0c5e9fca0de6#9fd7896f) (*) -│ ├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) -│ ├── multiversx-sc-meta-lib v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/meta-lib) -│ │ ├── clap v4.5.37 -│ │ │ ├── clap_builder v4.5.37 -│ │ │ │ ├── anstream v0.6.18 -│ │ │ │ │ ├── anstyle v1.0.10 -│ │ │ │ │ ├── anstyle-parse v0.2.6 -│ │ │ │ │ │ └── utf8parse v0.2.2 -│ │ │ │ │ ├── anstyle-query v1.1.2 -│ │ │ │ │ ├── colorchoice v1.0.3 -│ │ │ │ │ ├── is_terminal_polyfill v1.70.1 -│ │ │ │ │ └── utf8parse v0.2.2 -│ │ │ │ ├── anstyle v1.0.10 -│ │ │ │ ├── clap_lex v0.7.4 -│ │ │ │ └── strsim v0.11.1 -│ │ │ └── clap_derive v4.5.32 (proc-macro) -│ │ │ ├── heck v0.5.0 -│ │ │ ├── proc-macro2 v1.0.94 (*) -│ │ │ ├── quote v1.0.39 (*) -│ │ │ └── syn v2.0.100 (*) -│ │ ├── colored v3.0.0 -│ │ ├── convert_case v0.8.0 -│ │ │ └── unicode-segmentation v1.12.0 -│ │ ├── hex v0.4.3 -│ │ ├── lazy_static v1.5.0 -│ │ ├── multiversx-sc v0.57.1 (/home/bibi/Desktop/mx-sdk-rs/framework/base) (*) -│ │ ├── rustc_version v0.4.1 (*) -│ │ ├── semver v1.0.26 -│ │ ├── serde v1.0.219 (*) -│ │ ├── serde_json v1.0.140 (*) -│ │ ├── toml v0.8.22 -│ │ │ ├── indexmap v2.9.0 (*) -│ │ │ ├── serde v1.0.219 (*) -│ │ │ ├── serde_spanned v0.6.8 (*) -│ │ │ ├── toml_datetime v0.6.9 (*) -│ │ │ └── toml_edit v0.22.26 -│ │ │ ├── indexmap v2.9.0 (*) -│ │ │ ├── serde v1.0.219 (*) -│ │ │ ├── serde_spanned v0.6.8 (*) -│ │ │ ├── toml_datetime v0.6.9 (*) -│ │ │ ├── toml_write v0.1.1 -│ │ │ └── winnow v0.7.7 -│ │ ├── wasmparser v0.227.1 -│ │ │ ├── bitflags v2.9.0 -│ │ │ ├── hashbrown v0.15.2 (*) -│ │ │ ├── indexmap v2.9.0 (*) -│ │ │ ├── semver v1.0.26 -│ │ │ └── serde v1.0.219 (*) -│ │ ├── wasmprinter v0.227.1 -│ │ │ ├── anyhow v1.0.98 -│ │ │ ├── termcolor v1.4.1 -│ │ │ └── wasmparser v0.227.1 (*) -│ │ └── wat v1.229.0 (*) -│ ├── num-bigint v0.4.6 (*) -│ ├── num-traits v0.2.19 (*) -│ ├── pathdiff v0.2.3 -│ ├── serde v1.0.219 (*) -│ ├── serde_json v1.0.140 (*) -│ ├── sha2 v0.10.9 (*) -│ ├── simple-error v0.3.1 -│ └── unwrap-infallible v0.1.5 -├── num-bigint v0.4.6 (*) -└── num-traits v0.2.19 (*) diff --git a/framework/meta/src/cmd/all.rs b/framework/meta/src/cmd/all.rs index 6ccc904257..6e4e5be92f 100644 --- a/framework/meta/src/cmd/all.rs +++ b/framework/meta/src/cmd/all.rs @@ -1,29 +1,9 @@ -use cargo_metadata::{DependencyKind, Metadata, Package, PackageId}; -use petgraph::{ - graph::NodeIndex, - prelude::StableGraph, - visit::{Dfs, EdgeRef}, - Direction, -}; - use super::print_util::{print_all_command, print_all_count, print_all_index}; use crate::{ cli::AllArgs, folder_structure::{dir_pretty_print, RelevantDirectories}, }; -use std::{ - collections::{HashMap, HashSet}, - env, - ffi::OsString, - path::Path, - process::{Command, Stdio}, -}; - -pub struct Graph { - pub graph: StableGraph, - pub nodes: HashMap, - pub root: Option, -} +use std::{path::Path, process::Command}; pub fn call_all_meta(args: &AllArgs) { let path = if let Some(some_path) = &args.path { @@ -38,84 +18,6 @@ pub fn call_all_meta(args: &AllArgs) { fn perform_call_all_meta(path: &Path, ignore: &[String], raw_args: Vec) { let dirs = RelevantDirectories::find_all(path, ignore); - let rustc = env::var_os("RUSTC").unwrap_or_else(|| OsString::from("rustc")); - let rustc_output = output(Command::new(rustc).arg("-Vv")); - - let default_target = rustc_output - .lines() - .find_map(|line| line.strip_prefix("host: ").map(str::trim)) - .map(str::to_string) - .unwrap_or_default(); - - let cargo = env::var_os("CARGO").unwrap_or_else(|| OsString::from("cargo")); - let mut command = Command::new(cargo); - command - .arg("metadata") - .arg("--format-version") - .arg("1") - .arg("--all-features") - .arg("--filter-platform") - .arg(default_target); - - let metadata_command = output(&mut command); - - let metadata: Metadata = - serde_json::from_str(&metadata_command).expect("unable to parse metadata"); - - let resolve = metadata.resolve.unwrap(); - - let mut graph = Graph { - graph: StableGraph::new(), - nodes: HashMap::new(), - root: resolve.root, - }; - - for package in metadata.packages { - let id = package.id.clone(); - let index = graph.graph.add_node(package); - graph.nodes.insert(id, index); - } - - for node in resolve.nodes { - let from = graph.nodes[&node.id]; - for dep in node.deps { - let mut kinds = vec![]; - for kind in dep.dep_kinds { - if !kinds.iter().any(|k| *k == kind.kind) { - kinds.push(kind.kind); - } - } - - let to = graph.nodes[&dep.pkg]; - for kind in kinds { - graph.graph.add_edge(from, to, kind); - } - } - } - - // prune nodes not reachable from the root package (directionally) - if let Some(root) = &graph.root { - let mut dfs = Dfs::new(&graph.graph, graph.nodes[root]); - while dfs.next(&graph.graph).is_some() {} - - let g = &mut graph.graph; - graph.nodes.retain(|_, idx| { - if !dfs.discovered.contains(idx.index()) { - g.remove_node(*idx); - false - } else { - true - } - }); - } - - let root = graph.root.as_ref().unwrap(); - let root = &graph.graph[graph.nodes[root]]; - - let direction = Direction::Outgoing; - - check_tree(&graph, root, direction); - dir_pretty_print(dirs.iter_contract_crates(), "", &|_| {}); let num_contract_crates = dirs.iter_contract_crates().count(); @@ -151,117 +53,3 @@ pub fn call_contract_meta(contract_crate_path: &Path, cargo_run_args: &[String]) assert!(exit_status.success(), "contract meta process failed"); } - -fn output(command: &mut Command) -> String { - let output = command - .stderr(Stdio::inherit()) - .output() - .expect("failed to execute process"); - - if !output.status.success() { - panic!("failed"); - } - - String::from_utf8(output.stdout).expect("error parsing output") -} - -fn check_tree<'a>(graph: &'a Graph, root: &'a Package, direction: Direction) { - let mut visited_deps = HashSet::new(); - let mut levels_continue = vec![]; - - check_package( - graph, - root, - direction, - &mut visited_deps, - &mut levels_continue, - ); -} - -fn check_package<'a>( - graph: &'a Graph, - package: &'a Package, - direction: Direction, - visited_deps: &mut HashSet<&'a PackageId>, - levels_continue: &mut Vec, -) { - let new = visited_deps.insert(&package.id); - - println!("{}", package.name); - - if !new { - return; - } - - for kind in &[ - DependencyKind::Normal, - DependencyKind::Build, - DependencyKind::Development, - ] { - check_dependencies( - graph, - package, - direction, - visited_deps, - levels_continue, - *kind, - ); - } -} - -fn check_dependencies<'a>( - graph: &'a Graph, - package: &'a Package, - direction: Direction, - visited_deps: &mut HashSet<&'a PackageId>, - levels_continue: &mut Vec, - kind: DependencyKind, -) { - let idx = graph.nodes[&package.id]; - let mut deps = vec![]; - for edge in graph.graph.edges_directed(idx, direction) { - if *edge.weight() != kind { - continue; - } - - let dep = match direction { - Direction::Incoming => &graph.graph[edge.source()], - Direction::Outgoing => &graph.graph[edge.target()], - }; - deps.push(dep); - } - - if deps.is_empty() { - return; - } - - // ensure a consistent output ordering - deps.sort_by_key(|p| &p.id); - - let name = match kind { - DependencyKind::Normal => None, - DependencyKind::Build => Some("[build-dependencies]"), - DependencyKind::Development => Some("[dev-dependencies]"), - _ => unreachable!(), - }; - - // println!("{}", name.unwr()); - - // if let Prefix::Indent = prefix { - if let Some(name) = name { - // for continues in &**levels_continue { - // let c = if *continues { symbols.down } else { " " }; - // print!("{} ", c); - // } - - println!("{}", name); - } - // } - - let mut it = deps.iter().peekable(); - while let Some(dependency) = it.next() { - levels_continue.push(it.peek().is_some()); - check_package(graph, dependency, direction, visited_deps, levels_continue); - levels_continue.pop(); - } -} diff --git a/framework/meta/src/folder_structure/relevant_directory.rs b/framework/meta/src/folder_structure/relevant_directory.rs index b56848e19f..92734d34eb 100644 --- a/framework/meta/src/folder_structure/relevant_directory.rs +++ b/framework/meta/src/folder_structure/relevant_directory.rs @@ -5,8 +5,6 @@ use std::{ path::{Path, PathBuf}, }; -// use super::{version_req::VersionReq, DependencyReference, GitReference}; - /// Used for retrieving crate versions. pub const FRAMEWORK_CRATE_NAMES: &[&str] = &[ "multiversx-sc", From 65f8b32eccf53b03df50494bd572f0b0fb4bcaa8 Mon Sep 17 00:00:00 2001 From: BiancaIalangi Date: Mon, 12 May 2025 12:37:57 +0300 Subject: [PATCH 5/7] check executor --- Cargo.lock | 63 ------------------- framework/meta/Cargo.toml | 2 - framework/meta/src/cmd.rs | 2 +- framework/meta/src/cmd/all.rs | 7 ++- framework/meta/src/cmd/cargo_toml.rs | 57 ----------------- framework/meta/src/cmd/check_executor.rs | 80 ++++++++++++++++++++++++ 6 files changed, 87 insertions(+), 124 deletions(-) delete mode 100644 framework/meta/src/cmd/cargo_toml.rs create mode 100644 framework/meta/src/cmd/check_executor.rs diff --git a/Cargo.lock b/Cargo.lock index aebe12034d..407757e7ec 100755 --- a/Cargo.lock +++ b/Cargo.lock @@ -121,12 +121,6 @@ dependencies = [ "multiversx-sc-meta-lib", ] -[[package]] -name = "allocator-api2" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" - [[package]] name = "android-tzdata" version = "0.1.1" @@ -537,38 +531,6 @@ version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" -[[package]] -name = "camino" -version = "1.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" -dependencies = [ - "serde", -] - -[[package]] -name = "cargo-platform" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" -dependencies = [ - "serde", -] - -[[package]] -name = "cargo_metadata" -version = "0.19.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" -dependencies = [ - "camino", - "cargo-platform", - "semver", - "serde", - "serde_json", - "thiserror 2.0.12", -] - [[package]] name = "cc" version = "1.2.20" @@ -1524,12 +1486,6 @@ dependencies = [ "multiversx-sc-meta-lib", ] -[[package]] -name = "fixedbitset" -version = "0.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" - [[package]] name = "flate2" version = "1.1.1" @@ -2130,8 +2086,6 @@ version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" dependencies = [ - "allocator-api2", - "equivalent", "foldhash", "serde", ] @@ -3228,7 +3182,6 @@ name = "multiversx-sc-meta" version = "0.57.1" dependencies = [ "bip39", - "cargo_metadata", "clap", "colored 3.0.0", "common-path", @@ -3239,7 +3192,6 @@ dependencies = [ "multiversx-sc-meta-lib", "multiversx-sc-snippets", "pathdiff", - "petgraph", "reqwest", "ruplacer", "semver", @@ -3801,18 +3753,6 @@ version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" -[[package]] -name = "petgraph" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a98c6720655620a521dcc722d0ad66cd8afd5d86e34a89ef691c50b7b24de06" -dependencies = [ - "fixedbitset", - "hashbrown 0.15.2", - "indexmap 2.9.0", - "serde", -] - [[package]] name = "pin-project" version = "1.1.10" @@ -4903,9 +4843,6 @@ name = "semver" version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" -dependencies = [ - "serde", -] [[package]] name = "send-tx-repeat" diff --git a/framework/meta/Cargo.toml b/framework/meta/Cargo.toml index 11e10cb088..bef6e422be 100644 --- a/framework/meta/Cargo.toml +++ b/framework/meta/Cargo.toml @@ -41,8 +41,6 @@ pathdiff = "0.2.1" common-path = "1.0.0" bip39 = "2.0.0" home = "=0.5.11" -cargo_metadata = "0.19.2" -petgraph = "0.8.1" [dependencies.multiversx-sc-meta-lib] version = "=0.57.1" diff --git a/framework/meta/src/cmd.rs b/framework/meta/src/cmd.rs index 70371c03dc..6f2ca4bfca 100644 --- a/framework/meta/src/cmd.rs +++ b/framework/meta/src/cmd.rs @@ -1,6 +1,6 @@ pub mod all; -pub mod cargo_toml; pub mod chain_simulator; +mod check_executor; pub mod code_report; pub mod info; pub mod install; diff --git a/framework/meta/src/cmd/all.rs b/framework/meta/src/cmd/all.rs index 6e4e5be92f..570b534986 100644 --- a/framework/meta/src/cmd/all.rs +++ b/framework/meta/src/cmd/all.rs @@ -1,4 +1,7 @@ -use super::print_util::{print_all_command, print_all_count, print_all_index}; +use super::{ + check_executor::check_wasmer_executor, + print_util::{print_all_command, print_all_count, print_all_index}, +}; use crate::{ cli::AllArgs, folder_structure::{dir_pretty_print, RelevantDirectories}, @@ -18,6 +21,8 @@ pub fn call_all_meta(args: &AllArgs) { fn perform_call_all_meta(path: &Path, ignore: &[String], raw_args: Vec) { let dirs = RelevantDirectories::find_all(path, ignore); + check_wasmer_executor(path); + dir_pretty_print(dirs.iter_contract_crates(), "", &|_| {}); let num_contract_crates = dirs.iter_contract_crates().count(); diff --git a/framework/meta/src/cmd/cargo_toml.rs b/framework/meta/src/cmd/cargo_toml.rs deleted file mode 100644 index 5d4480c568..0000000000 --- a/framework/meta/src/cmd/cargo_toml.rs +++ /dev/null @@ -1,57 +0,0 @@ -use std::collections::{HashMap, HashSet}; - -use serde::Deserialize; - -use crate::folder_structure::RelevantDirectories; - -const CARGO_TOML: &str = "Cargo.toml"; -const SCENARIO: &str = "multiversx-sc-scenario"; -const WASMER: &str = "wasmer"; - -#[derive(Debug, Deserialize)] -struct CargoToml { - #[serde(default, rename = "dev-dependencies")] - dev_dependencies: HashMap, -} - -#[derive(Debug, Deserialize)] -#[serde(untagged)] -#[allow(dead_code)] -enum Dependency { - Simple(String), - Detailed(DependencyDetail), -} - -#[derive(Debug, Deserialize)] -struct DependencyDetail { - #[serde(default)] - pub features: Vec, -} - -pub fn check_executor(relevant_directories: &RelevantDirectories) { - let mut scenario_features: HashSet = HashSet::new(); - - for dir in relevant_directories.iter() { - let toml_dir = dir.path.join(CARGO_TOML); - let content = std::fs::read_to_string(toml_dir).unwrap(); - let cargo_toml_content: CargoToml = toml::from_str(&content).unwrap(); - let dependencies = &cargo_toml_content.dev_dependencies; - - if let Some(Dependency::Detailed(dependency)) = dependencies.get(SCENARIO) { - for feature in dependency.features.iter() { - if !scenario_features.contains(feature) { - scenario_features.insert(feature.clone()); - } - } - } - } - - let count = scenario_features - .iter() - .filter(|s| s.contains(WASMER)) - .count(); - - if count > 1 { - panic!("Cannot import two different executors: found multiple wasmer components"); - } -} diff --git a/framework/meta/src/cmd/check_executor.rs b/framework/meta/src/cmd/check_executor.rs new file mode 100644 index 0000000000..ce04bf39ba --- /dev/null +++ b/framework/meta/src/cmd/check_executor.rs @@ -0,0 +1,80 @@ +use std::{ + env, + error::Error, + ffi::OsString, + fmt::{Display, Formatter}, + path::Path, + process::{Command, ExitStatus, Stdio}, +}; + +use colored::Colorize; + +const WASMER_PRODUCT: &str = "multiversx-chain-vm-executor-wasmer "; +const WASMER_EXPERIMENTAL: &str = "multiversx-chain-vm-executor-wasmer-experimental "; + +#[derive(Debug)] +pub enum ExecuteCommandError { + ErrorRunning(String), + JobFailed(String, ExitStatus), + ErrorParsing(String), +} + +impl Error for ExecuteCommandError {} + +impl Display for ExecuteCommandError { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + let message = match self { + ExecuteCommandError::ErrorRunning(job) => format!("Error running {}", job), + ExecuteCommandError::JobFailed(job, status) => { + format!("Command {} returned {}", job, status) + }, + ExecuteCommandError::ErrorParsing(job) => format!("Error parsing {} output", job), + }; + write!(f, "ExecuteCommandError: {}", message) + } +} + +pub fn check_wasmer_executor(path: &Path) { + let cargo = env::var_os("CARGO").unwrap_or_else(|| OsString::from("cargo")); + + let mut command = Command::new(cargo); + command.arg("tree").arg("-e").arg("features"); + + match execute_command(&mut command, path, "cargo") { + Ok(output) => { + if output.contains(WASMER_PRODUCT) && output.contains(WASMER_EXPERIMENTAL) { + println!( + "{}", + "Cannot import two different executors: found multiple wasmer components." + .to_string() + .red() + .bold(), + ); + } + }, + Err(err) => { + println!("{}", err.to_string().to_string().red().bold()); + }, + }; +} + +fn execute_command( + command: &mut Command, + path: &Path, + job: &str, +) -> Result { + let output = command + .current_dir(path) + .stderr(Stdio::inherit()) + .output() + .map_err(|_| ExecuteCommandError::ErrorRunning(job.to_string()))?; + + if !output.status.success() { + return Err(ExecuteCommandError::JobFailed( + job.to_string(), + output.status, + )); + } + + String::from_utf8(output.stdout).map_err(|_| ExecuteCommandError::ErrorParsing(job.to_string())) +} From fb0df1dd1f8047e367187ff829e3bf976f7f1c53 Mon Sep 17 00:00:00 2001 From: BiancaIalangi Date: Mon, 12 May 2025 18:11:10 +0300 Subject: [PATCH 6/7] check executor - apply reviews --- framework/meta/src/cmd.rs | 2 +- framework/meta/src/cmd/all.rs | 4 ++-- ...check_executor.rs => check_wasmer_dependencies.rs} | 11 ++++++----- 3 files changed, 9 insertions(+), 8 deletions(-) rename framework/meta/src/cmd/{check_executor.rs => check_wasmer_dependencies.rs} (81%) diff --git a/framework/meta/src/cmd.rs b/framework/meta/src/cmd.rs index 6f2ca4bfca..0c359342ff 100644 --- a/framework/meta/src/cmd.rs +++ b/framework/meta/src/cmd.rs @@ -1,6 +1,6 @@ pub mod all; pub mod chain_simulator; -mod check_executor; +mod check_wasmer_dependencies; pub mod code_report; pub mod info; pub mod install; diff --git a/framework/meta/src/cmd/all.rs b/framework/meta/src/cmd/all.rs index 570b534986..d470276708 100644 --- a/framework/meta/src/cmd/all.rs +++ b/framework/meta/src/cmd/all.rs @@ -1,5 +1,5 @@ use super::{ - check_executor::check_wasmer_executor, + check_wasmer_dependencies::check_wasmer_dependencies, print_util::{print_all_command, print_all_count, print_all_index}, }; use crate::{ @@ -21,7 +21,7 @@ pub fn call_all_meta(args: &AllArgs) { fn perform_call_all_meta(path: &Path, ignore: &[String], raw_args: Vec) { let dirs = RelevantDirectories::find_all(path, ignore); - check_wasmer_executor(path); + check_wasmer_dependencies(path); dir_pretty_print(dirs.iter_contract_crates(), "", &|_| {}); diff --git a/framework/meta/src/cmd/check_executor.rs b/framework/meta/src/cmd/check_wasmer_dependencies.rs similarity index 81% rename from framework/meta/src/cmd/check_executor.rs rename to framework/meta/src/cmd/check_wasmer_dependencies.rs index ce04bf39ba..04fba708dd 100644 --- a/framework/meta/src/cmd/check_executor.rs +++ b/framework/meta/src/cmd/check_wasmer_dependencies.rs @@ -9,8 +9,8 @@ use std::{ use colored::Colorize; -const WASMER_PRODUCT: &str = "multiversx-chain-vm-executor-wasmer "; -const WASMER_EXPERIMENTAL: &str = "multiversx-chain-vm-executor-wasmer-experimental "; +const WASMER_CRATE_NAME: &str = "multiversx-chain-vm-executor-wasmer "; +const WASMER_EXPERIMENTAL_CRATE_NAME: &str = "multiversx-chain-vm-executor-wasmer-experimental "; #[derive(Debug)] pub enum ExecuteCommandError { @@ -34,7 +34,7 @@ impl Display for ExecuteCommandError { } } -pub fn check_wasmer_executor(path: &Path) { +pub fn check_wasmer_dependencies(path: &Path) { let cargo = env::var_os("CARGO").unwrap_or_else(|| OsString::from("cargo")); let mut command = Command::new(cargo); @@ -42,10 +42,11 @@ pub fn check_wasmer_executor(path: &Path) { match execute_command(&mut command, path, "cargo") { Ok(output) => { - if output.contains(WASMER_PRODUCT) && output.contains(WASMER_EXPERIMENTAL) { + if output.contains(WASMER_CRATE_NAME) && output.contains(WASMER_EXPERIMENTAL_CRATE_NAME) + { println!( "{}", - "Cannot import two different executors: found multiple wasmer components." + "WARNING: Importing both wasmer and wasmer-experimental will crash on some operating systems." .to_string() .red() .bold(), From 20d25e385fb8f54f8be827cd8645ddaca75a0e80 Mon Sep 17 00:00:00 2001 From: Andrei Marinica Date: Tue, 13 May 2025 11:11:19 +0300 Subject: [PATCH 7/7] check executor - added to sc-meta info --- framework/meta/src/cmd/all.rs | 4 ++-- framework/meta/src/cmd/info.rs | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/framework/meta/src/cmd/all.rs b/framework/meta/src/cmd/all.rs index d470276708..b7aea93e42 100644 --- a/framework/meta/src/cmd/all.rs +++ b/framework/meta/src/cmd/all.rs @@ -19,10 +19,10 @@ pub fn call_all_meta(args: &AllArgs) { } fn perform_call_all_meta(path: &Path, ignore: &[String], raw_args: Vec) { - let dirs = RelevantDirectories::find_all(path, ignore); - check_wasmer_dependencies(path); + let dirs = RelevantDirectories::find_all(path, ignore); + dir_pretty_print(dirs.iter_contract_crates(), "", &|_| {}); let num_contract_crates = dirs.iter_contract_crates().count(); diff --git a/framework/meta/src/cmd/info.rs b/framework/meta/src/cmd/info.rs index 0b40c40af0..0a05324de4 100644 --- a/framework/meta/src/cmd/info.rs +++ b/framework/meta/src/cmd/info.rs @@ -6,7 +6,9 @@ use crate::{ version_history::LAST_UPGRADE_VERSION, }; -use super::print_util::print_tree_dir_metadata; +use super::{ + check_wasmer_dependencies::check_wasmer_dependencies, print_util::print_tree_dir_metadata, +}; pub fn call_info(args: &InfoArgs) { let path = if let Some(some_path) = &args.path { @@ -15,6 +17,8 @@ pub fn call_info(args: &InfoArgs) { Path::new("./") }; + check_wasmer_dependencies(path); + let dirs = RelevantDirectories::find_all(path, args.ignore.as_slice()); dir_pretty_print(dirs.iter(), "", &|dir| { print_tree_dir_metadata(dir, &LAST_UPGRADE_VERSION)